@media screen and (max-width: 1023px) {
  html {
    font-size: 24px;
  }
}

@media screen and (max-width: 1024px) and (max-width: 1439px) {
  html {
    font-size: 26px;
  }
}

@media screen and (min-width: 1440px) {
  html {
    font-size: 28px;
  }
}

.part2Contain {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 200px 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  height: 100vh;
}

.part2Contain .titleBox {
  grid-area: 1 / 1 / 2 / 3;
  text-align: center;
  position: relative;
}

.part2Contain .titleBox img {
  height: 170px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0%);
}


.part2Contain .infoBox {
  grid-area: 2 / 1 / 3 / 2;
  text-align: center;
  position: relative;

}

.part2Contain .info-window-bg {
  background-image: url("/static/image/website/Notification.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  height: 95%;
  width: 95%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.part2Contain .infoBox .info-window-bg .carousel-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 80%;
  width: 90%;
}

.part2Contain .infoBox .info-window-bg .carousel-box .layui-carousel-ind {
  position: absolute;
  top: 95%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.part2Contain .infoBox .info-window-bg .info-window-content {
  background-color: transparent;
}

.part2Contain .infoBox .info-window-bg .carousel-div {
  background-color: transparent;
}

.part2Contain .infoBox .info-window-bg .layui-carousel img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}

.part2Contain .noticeBox {
  grid-area: 2 / 2 / 3 / 3;
  text-align: center;
  position: relative;
  /*background-size: contain;*/
  /*background-repeat: no-repeat;*/
  /*background-position: center center;*/
}

.part2Contain .noticeBox .newsBox {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 1fr 10fr 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  height: 75%;
  margin: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
}

.part2Contain .noticeBox .newsBox .noticeTitle {
  grid-area: 1 / 1 / 2 / 5;
}

.part2Contain .noticeBox .newsBox .noticeTitle li {
  font-size: 30px !important;
}

.part2Contain .noticeBox .newsBox .noticeList {
  grid-area: 2 / 1 / 3 / 5;
}

.part2Contain .noticeBox .newsBox .noticeList ul li a {
  font-size: 22px !important;
}

.part2Contain .noticeBox .newsBox .noticeBottom {
  grid-area: 3 / 2 / 4 / 4;
}