.board1 {
  width: 100%;
  height: 800px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 150px;
  flex-direction: column;
}
.board1 img {
  width: 470px;
  height: auto;
}
.board1 .text {
  display: flex;
  flex-direction: column;
  margin-bottom: 50px;
  justify-content: center;
  align-items: center;
}
.board1 .text h1 {
  font-size: 32pt;
  color: #fff;
  background-color: #00a0d5;
  font-family: "Cabin-Bold";
  padding: 0 10px;
  display: inline-block;
}
.board1 .text h2 {
  font-size: 28pt;
  color: #00a0d5;
  font-family: "Cabin-Regular";
  margin-bottom: 10px;
}
.board1 .text p {
  color: #696969;
}
.board2 {
  background-color: #f1f1f1;
}
.board2 .center {
  padding: 10px;
  margin: 0 auto;
  max-width: 1200px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.board2 .center .item {
  height: 270px;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.board2 .center .item p {
  margin-top: 20px;
  line-height: 1.5;
  font-size: 10pt;
  color: #696969;
  text-align: center;
  height: 20px;
}
.board2 .center .item .img {
  height: 100px;
  width: auto;
}
.board2 .center .item .img img {
  height: 100%;
  width: auto;
}
.board3 {
  width: 100%;
  background-color: #ffffff;
  padding-top: 72px;
  padding-bottom: 54px;
}
.board3 .center {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
.board3 .table-head {
  width: 100%;
  height: 84px;
  background-color: #00a0d5;
  display: flex;
  align-items: center;
  padding: 0 50px;
}
.board3 .table-head img {
  margin-right: 26px;
}
.board3 .table-head .table-head-info {
  display: flex;
  flex-direction: column;
  font-size: 12pt;
  line-height: 15pt;
  color: #ffffff;
}
.board3 .table-body {
  width: 100%;
}
.board3 .table-body .table-column {
  margin-top: 13px;
  display: flex;
  justify-content: space-between;
  height: 40px;
  align-items: center;
  color: #696969;
  cursor: pointer;
}
.board3 .table-body .table-column .table-row1 {
  width: 284px;
  margin-right: 12px;
  text-align: center;
  height: 100%;
  font-size: 9pt;
  line-height: 40px;
  transition: all .2s;
  box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.1);
}
.board3 .table-body .table-column .table-row2 {
  flex: 1;
  height: 100%;
  font-size: 9pt;
  line-height: 40px;
  padding-left: 48px;
  transition: all .2s;
  box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.1);
}
.board3 .table-body .table-column:nth-of-type(2n - 1) .table-row1,
.board3 .table-body .table-column:nth-of-type(2n - 1) .table-row2 {
  background-color: #f7f8f8;
}
.board3 .table-body .table-column:nth-of-type(2n) .table-row1,
.board3 .table-body .table-column:nth-of-type(2n) .table-row2 {
  background-color: #eff0f1;
}
.board3 .table-body .table-column:hover .table-row1,
.board3 .table-body .table-column:hover .table-row2 {
  box-shadow: 1px 1px 6px rgba(0, 0, 0, 0.1);
  transition: all .2s;
}
