.notifyTitleArea {
  margin-top: 39px;
}

/* 首页Banner文字描述（PC端） */
.banner-caption {
  position: absolute;
  left: 166px;
  /* bottom: 166px; */
  top: 327px;
  z-index: 5;
  color: #fff;
  max-width: 640px;
}

.banner-caption-title {
  font-weight: bold;
  font-size: 54px;
  line-height: 1.2;
  margin-bottom: 16px;

  font-size: 60px;
  font-weight: 700;
  letter-spacing: 0px;
  line-height: 86.88px;
  color: rgba(255, 255, 255, 1);
  text-align: left;
  vertical-align: top;
}

.banner-caption-time {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0px;
  line-height: 22.99px;
  color: rgba(255, 255, 255, 1);
  text-align: left;
  vertical-align: top;

  margin-bottom: 45px;

}

.banner-caption-sub {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 10px;
  opacity: 0.95;

  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0px;
  line-height: 28px;
  color: rgba(255, 255, 255, 1);
  text-align: left;
  vertical-align: middle;
}

.banner-caption-desc {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 18px;

  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0px;
  line-height: 24px;
  color: rgba(255, 255, 255, 1);
  text-align: left;
  vertical-align: middle;

  display: -webkit-box;
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;


}

.banner-caption-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 110px;
  height: 36px;
  /* border-radius: 18px; */
  background: #c13432;
  color: #fff;
  font-size: 14px;
  text-decoration: none;
  border-radius: 4px;
  background: rgba(193, 52, 50, 1);
  position: relative;
  z-index: 25;

  width: 210px;
  height: 54px;

  font-size: 26px;
  font-weight: 400;
  letter-spacing: 0px;
  line-height: 37.65px;
  color: rgba(255, 255, 255, 1);
  text-align: left;
  vertical-align: top;
}

.banner-caption-btn:hover {
  background: #a92c2a;
  color: #fff;
  text-decoration: none;
}

@media screen and (max-width: 768px) {

  /* 移动端不展示覆盖文字（保持简洁） */
  .banner-caption {
    display: none;
  }
}

/* 首页Banner移除左右箭头 */
#bannerCarousel .carousel-control-prev,
#bannerCarousel .carousel-control-next {
  display: none !important;
}

/* PC端轮播图指示器样式 - 参考移动端实现 */
#bannerCarousel .carousel-indicators {
  position: absolute !important;
  right: 166px !important;
  left: auto !important;
  top: 50% !important;
  bottom: auto !important;
  transform: translateY(-50%) !important;
  margin: 0 !important;
  z-index: 20 !important;
  flex-direction: column !important;
  display: flex !important;
}

#bannerCarousel .carousel-indicators li {
  width: 32px !important;
  height: 32px !important;
  border-radius: 50% !important;
  background-color: rgba(255, 255, 255, 0.2) !important;
  border: 2px solid rgba(255, 255, 255, 0.5) !important;
  margin: 6px 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  text-indent: 0 !important;
  overflow: visible !important;
}

#bannerCarousel .carousel-indicators li.active {
  background-color: rgba(128, 128, 128, 0.4) !important;
  border-color: white !important;
  transform: scale(1.1) !important;
}

#bannerCarousel .carousel-indicators .indicator-number {
  color: white !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  line-height: 1 !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3) !important;
  display: block !important;
  text-indent: 0 !important;
  position: relative !important;
  z-index: 21 !important;
}

/* PC端轮播指示器hover效果 */
#bannerCarousel .carousel-indicators li:hover {
  background-color: rgba(255, 255, 255, 0.4) !important;
  border-color: rgba(255, 255, 255, 0.8) !important;
  transform: scale(1.05) !important;
}

/* 右侧数字指示器（PC） */
.banner-number-indicators {
  position: absolute;
  right: 166px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  pointer-events: auto;
}

.banner-number-indicators .num-item {
  position: relative;
  font-size: 20px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  cursor: pointer;
  user-select: none;
  transition: transform 0.2s ease, color 0.2s ease;
}

.banner-number-indicators .num-item:hover {
  transform: scale(1.05);
  color: #ffffff;
}

.banner-number-indicators .num-item.active {
  color: #ffffff;
}

.banner-number-indicators .num-item.active::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.5);
}

/* 增加外边框与内浅白色之间的间距：使用更小的内圆 */
.banner-number-indicators .num-item.active::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}

/* 全端：首页Banner纵向轮播（Y轴切换） */
#bannerCarousel.carousel-vertical-mobile .carousel-item {
  transition: transform 0.6s ease;
}

#bannerCarousel.carousel-vertical-mobile .carousel-item.next,
#bannerCarousel.carousel-vertical-mobile .carousel-item.active.carousel-item-right,
#bannerCarousel.carousel-vertical-mobile .carousel-item-next,
#bannerCarousel.carousel-vertical-mobile .active.carousel-item-right {
  transform: translateY(100%);
}

#bannerCarousel.carousel-vertical-mobile .carousel-item.prev,
#bannerCarousel.carousel-vertical-mobile .carousel-item.active.carousel-item-left,
#bannerCarousel.carousel-vertical-mobile .carousel-item-prev,
#bannerCarousel.carousel-vertical-mobile .active.carousel-item-left {
  transform: translateY(-100%);
}

#bannerCarousel.carousel-vertical-mobile .carousel-item.next.carousel-item-left,
#bannerCarousel.carousel-vertical-mobile .carousel-item.prev.carousel-item-right,
#bannerCarousel.carousel-vertical-mobile .carousel-item-next.carousel-item-left,
#bannerCarousel.carousel-vertical-mobile .carousel-item-prev.carousel-item-right {
  transform: translateY(0);
}

/* Style for science research icon size */
.scienceResearchArea .icon {
  width: 21px;
  height: 29px;
}

/* Style for science research section */
.scienceResearchArea {
  margin-top: 50px;
}

.scienceResearchArea .titleArea {
  margin-bottom: 0px;
}

/* 语言按钮院长邮箱 */
.language {
  text-align: center;
  font-size: 14px;
  color: #fff;

}

.between a .logo:last-child {
  margin-left: 10px;

}

.yanTimeArea {
  display: flex;
  flex-direction: column;
  margin-right: 23px;
  width: auto;
  min-width: 50px;
  height: 71px;
  align-items: center;
  justify-content: center;
  border: none;
  position: relative;
}

.yanDay {
  font-family: Times New Roman, serif;
  font-weight: bold;
  font-size: 26px;
  color: #c13432;
  line-height: 1;
}

.yanLine {
  width: 100%;
  height: 1px;
  background-color: #c13432;
  margin: 5px 0;
}

.yanYearMonth {
  font-family: Times New Roman, serif;
  font-weight: 400;
  font-size: 14px;
  color: #c13432;
  line-height: 1;
}

.yanArea {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 446px;
  margin-top: 20px;
  width: 100%;
}

.yanItem {
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
}

.yanItem:hover .yanTitle {
  color: #c13432;
}

.yanItem~.yanItem {
  /* margin-top: 5px; */
}

.yanContent {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
}

.yanImg {
  width: 200px;
  height: 130px;
  border-radius: 4px;
  margin-right: 33px;
}

.yanTitle {
  font-size: 18px;
  color: #333333;
  line-height: 27px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}

.yanDesc {
  font-size: 14px;
  color: #8c8c8c;
  margin-top: 20px;
}

.benTimeArea {
  margin-top: 10px;
}

.benTimeIcon {
  width: 14px;
  height: 14px;
  margin-right: 9px;
  margin-top: -3px;
}

.benTime {
  font-family: Arial;
  font-weight: 400;
  font-size: 18px;
  color: #a6a6a6;
}

.benContent {
  width: 100%;
}

.benTitle {
  font-weight: 400;
  font-size: 18px;
  color: #333333;
  display: block;
  white-space: nowrap;
}

.benArea {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
  margin-top: 10px;
  width: 100%;
}

.benItem {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 110px;
  box-sizing: border-box;
  transition: all 0.8s linear;
  position: relative;
}

.benItem ::after {
  content: "";
  width: 0%;
  height: 1px;
  background: #c7d9ec;
  position: absolute;
  left: 0;
  bottom: 0;
  transition: width 0.8s;
}

.benItem ::before {
  content: "";
  width: 100%;
  height: 1px;
  background: #c7d9ec;
  position: absolute;
  left: 0;
  bottom: 0;
  transition: width 0.8s;
}

.benItem:hover.benItem ::after {
  background: #c13432;
  width: 100%;
}

/* .benItem:hover {
  border-bottom: 1px solid #2975bb;
} */

.benItem:hover .benTitle,
.benItem:hover .benDate,
.benItem:hover .benDay {
  color: #c13432;
}

.benItem~.benItem {}

.benYanBg {
  background: #ffffff;
  width: 100%;

  padding-top: 65px;
  padding-bottom: 0;
  padding-left: 13px;
  padding-right: 13px;
}

.earthTimeArea {
  margin-top: 22px;
}

.earthTime {
  font-family: Arial;
  font-weight: 400;
  font-size: 15px;
  color: #ffffff;
}

.earthDetailIcon {
  width: 31.1px;
}

.whiteLine {
  height: 1px;
  background: #6291bb;
  margin-top: 26px;
}

.earthBannerDesc {
  font-weight: 400;
  font-size: 14px;
  color: #ffffff;
  margin-top: 10px;
}

.earthBannerTitle {
  font-weight: bold;
  font-size: 18px;
  color: #ffffff;
}

.earthArea {
  background: url("../new_image/newsBg.png");
  background-size: 100% 100%;
  width: 100%;
  min-height: 742px;
  padding-top: 60px;
  padding-bottom: 75px;
  padding: 0 36px;
}

#earthCarousel .carousel-control-prev,
#earthCarousel .carousel-control-next {
  top: 30px;
  height: 59%;
}

#earthCarousel .carousel-control-prev .bannerIcon,
#earthCarousel .carousel-control-next .bannerIcon {
  width: 40px;
}

#earthCarousel .carousel-indicators {
  bottom: 20px;
}

#earthCarousel .carousel-indicators li {
  width: 8px;
  height: 8px;
  border: 1px solid #739cc0;
  background: transparent;
}

#earthCarousel .carousel-indicators .active {
  background: #ffffff;
}

#earthCarousel {
  width: 741px;
  height: 518px;
}

#newsCarousel .carousel-control-prev,
#newsCarousel .carousel-control-next {
  top: -100px;
}

#newsCarousel .carousel-control-prev .bannerIcon,
#newsCarousel .carousel-control-next .bannerIcon {
  width: 50px;
  height: 46px;
}

#newsCarousel .carousel-indicators li {
  width: 6px;
  height: 6px;
  background: #d6d6d6;
  border: 0;
}

#newsCarousel .carousel-indicators .active {
  background: #c13432;
}

.newsBannerArea {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 741px;
  height: 100px;
  background: linear-gradient(0deg,
      rgba(0, 0, 0, 0.9) 0%,
      rgba(0, 0, 0, 0) 100%);
  padding: 0;
  align-items: flex-end;
  display: flex;
}

.time {
  font-family: Arial;
  font-size: 15px;
  color: #a6a6a6;
}

.timeIcon {
  width: 12px;
  height: 12px;
  margin-right: 9px;
  margin-top: -1px;
}

#newsCarousel .timeIcon {
  background: url("../new_image/calendar.png");
  background-size: 100% 100%;
}

.blueLine {
  width: 3px;
  height: 17px;
  background: #c13432;
  margin-right: 10px;
  color: #fff;
  font-size: 14px;
}

.news-date {
  width: 66px;
  height: 66px;
  background: rgba(193, 52, 50, 0.8);
  border-radius: 0px 8px 0px 0px;
  margin-right: 0;
  padding: 5px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.news-date .day {
  font-family: Arial;
  font-weight: 400;
  font-size: 24px;
  color: #ffffff;
}

.news-date .month-year {
  font-family: Arial;
  font-weight: 400;
  font-size: 12px;
  color: #ffffff;
}

.news-content {
  padding: 10px 20px;
  height: 70px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
}

.newsBannerTitle {
  font-weight: bold;
  font-size: 18px;
  color: #ffffff;
  flex: 1;
}

.newsBannerDesc {
  font-weight: 400;
  font-size: 14px;
  color: #ffffff;
}

.redArea {
  background: #c13432;
  height: 46px;
  padding: 0 31px 0 17px;
  display: flex;
  justify-content: space-between;
  color: white;
  align-items: center;
  position: relative;
}

.whiteArea {
  border: none;
}

.mainRightArea {
  margin-left: 44px;
  width: 335px;

  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.titleArea {
  width: 100%;
}

.dongTaiTimeArea {
  width: 89px;
  border-radius: 0px 42px 42px 0px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  margin-left: 45px;
  margin-right: 20px;
}

/* .dongTaiTimeArea::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 54px;
  background: #4f9897;
} */

.dongTaiDay {
  font-family: Arial;
  font-weight: 400;
  font-size: 16px;
  color: #333333;
  margin-top: -2px;
}

.dongTaiDay::before {
  content: "/";
  margin-right: 5px;
}

.dongTaiTimeLine {
  width: 32px;
  height: 1px;
  background: #c13432;
  margin-top: -2px;
  margin-bottom: 2px;
  display: none;
}

.dongTaiDate {
  font-family: Arial;
  font-weight: 400;
  font-size: 28px;
  color: #c13432;
  margin-top: -4px;
}

.dongTaiArea {
  margin-left: 59px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.dongTaiItem {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #ffffff;
  /* box-shadow: 0px 3px 7px 0px rgba(41, 117, 187, 0.11); */
  height: 110px;
  width: 560px;
  border: 1px solid #f0f0f0;
  position: relative;
}

.dongTaiItem:hover {
  background: #c13432;
}

.dongTaiItem:hover .dongTaiDay,
.dongTaiItem:hover .dongTaiDate {
  color: #ffffff;
}

.dongTaiItem:hover .dongTaiTitle {
  color: #ffffff;
}

.dongTaiItem:hover .dongTaiDesc {
  color: #dde2e6;
}

.dongTaiItem~.dongTaiItem {
  /* margin-top: 17px; */
}

.dongTaiContent {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
  margin-right: 25px;
}

.dongTaiImg {
  width: 200px;
  height: 130px;
  border-radius: 4px;
  margin-right: 33px;
}

.dongTaiTitle {
  font-size: 18px;
  color: #333333;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.4;
  height: 2.8em;
  /* 垂直居中 */
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  text-align: left;
  margin-right: 10px;
}

.dongTaiDesc {
  font-size: 14px;
  color: #8c8c8c;
  height: 3em;
  margin-top: 6px;
}

.notifyTimeArea {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 73px;
  height: 73px;
  background: #c13432;
  border-radius: 12px 12px 0px 12px;
}

.notifyDay {
  font-family: Times New Roman;
  font-weight: 400;
  font-size: 14px;
  color: #ffffff;
  margin-top: 5px;
}

.notifyDate {
  font-family: Times New Roman;
  font-weight: 400;
  font-size: 14px;
  color: #ffffff;
  margin-top: 5px;
}

.notifyArea {
  background: url("../new_image/notifyBg.png") no-repeat;
  background-size: 100% 100%;
  height: 542px;
  padding: 60px 0;
  width: 100%;
}

.notifyItem {
  width: 420px;
  height: 152px;
  background-color: #ffffff;
  background-image: url("../new_image/notifyItemBg.png");
  background-repeat: no-repeat;
  background-size: 224px 114px;
  background-position: left 63px bottom 4px;
  border-top: 2px solid #c13432;
  box-shadow: 0px 3px 7px 0px rgba(41, 117, 187, 0.11);
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-decoration: none;
  position: relative;
  margin-top: 20px;
  border-radius: 8px;
}

.notifyItem:hover {
  background-color: #fdfdfd;
}

.notifyItem::after {
  display: none;
}

.notify-top {
  display: flex;
  align-items: baseline;
}

.notify-main-date {
  font-family: Arial;
  font-weight: 400;
  font-size: 28px;
  color: #c13432;
}

.notify-year {
  font-family: Arial;
  font-weight: 400;
  font-size: 16px;
  color: #c44745;
  margin-left: 5px;
}

.notify-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.notifyTitle {
  font-weight: 400;
  font-size: 18px;
  color: #333333;
  line-height: 27px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1;
}

.notify-more-icon {
  width: 18px;
  height: 14px;
  margin-left: 15px;
}

/* Remove old time area styles */
.notifyTimeArea,
.notifyDay,
.notifyDate {
  display: none;
}

.notifyItem~.notifyItem {}

.notifyContent {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.notifyImg {
  width: 200px;
  height: 130px;
  border-radius: 4px;
  margin-right: 33px;
}

.notifyDesc {
  font-size: 14px;
  color: #8c8c8c;
  margin-top: 22px;
}

.btn {
  display: flex;
  align-items: center;

  border: 1px solid #c13432;

  color: #c13432;
  justify-content: center;
}

.btn:hover {
  background: #c13432;
  color: #ffffff;
}

a:hover {
  color: #c13432;
  cursor: pointer;
  text-decoration: none;
}

.bangFuImg {
  width: 335px;
  height: 240px;
}

.earthBg {
  background: url("../new_image/earthBg.png") !important;
  background-size: 100% 100% !important;
}

.notifyListArea {
  width: 100%;
  padding-left: 36.5px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.notifyRow {
  width: 100%;
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
}

.notifyItemTitle {
  font-size: 16px;
  color: #333333;
  line-height: 24px;
  margin-bottom: 15px;
}

.notifyItemBottom {
  justify-content: space-between;
}

.notifyItemTime {
  font-family: Arial;
  font-size: 14px;
  color: #a6a6a6;
  margin-left: 5px;
}

.notifyItemTag {
  padding: 2px 15px;
  background: #c13432;
  border-radius: 15px;
  color: #ffffff;
  font-size: 12px;
}

/* Adjust mobile styles */
@media screen and (max-width: 768px) {
  .notifyItem {
    width: 100%;
    height: auto;
    min-height: 0;
    padding: 15px;
    margin-bottom: 10px;
    margin-left: 0;
  }

  .notifyTitle {
    font-size: 16px;
    line-height: 1.5;
  }

  .notify-main-date {
    font-size: 24px;
  }

  .notify-year {
    font-size: 14px;
  }

  .notify-more-icon {
    width: 16px;
    height: 12px;
  }

  .news-content {
    padding: 0;
    height: auto;
  }
}



/* 大于768 pc*/
@media screen and (min-width: 768px) {
  #bannerCarousel {
    /* position: absolute; */
    top: 0;
    z-index: 1;
  }

  #bannerCarousel .bannerImg {
    width: 100%;
  }

  /* Banner轮播指示器样式 - PC端右侧垂直排列 */
  #bannerCarousel .carousel-indicators {
    position: absolute !important;
    right: 166px !important;
    left: auto !important;
    top: 50% !important;
    bottom: auto !important;
    transform: translateY(-50%) !important;
    margin: 0 !important;
    z-index: 20 !important;
    flex-direction: column !important;
    display: flex !important;
  }

  #bannerCarousel .carousel-indicators li {
    width: 32px !important;
    height: 32px !important;
    border-radius: 50% !important;
    background-color: rgba(255, 255, 255, 0.2) !important;
    border: 2px solid rgba(255, 255, 255, 0.5) !important;
    margin: 6px 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    text-indent: 0 !important;
    overflow: visible !important;
  }

  #bannerCarousel .carousel-indicators li.active {
    background-color: rgba(128, 128, 128, 0.4) !important;
    border-color: white !important;
    transform: scale(1.1) !important;
  }

  #bannerCarousel .carousel-indicators .indicator-number {
    color: white !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    line-height: 1 !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3) !important;
    display: block !important;
    text-indent: 0 !important;
    position: relative !important;
    z-index: 21 !important;
  }

  /* PC端轮播指示器hover效果 */
  #bannerCarousel .carousel-indicators li:hover {
    background-color: rgba(255, 255, 255, 0.4) !important;
    border-color: rgba(255, 255, 255, 0.8) !important;
    transform: scale(1.05) !important;
  }

  /* Banner轮播控制按钮样式 - 隐藏PC端左右按钮 */
  #bannerCarousel .carousel-control-prev,
  #bannerCarousel .carousel-control-next {
    display: none !important;
  }

  #bannerCarousel .carousel-control-prev .bannerIcon,
  #bannerCarousel .carousel-control-next .bannerIcon {
    width: 40px;
    height: 40px;
  }

  .earthImg {
    height: 376px;
    margin-top: 30px;
    border-radius: 4px;
  }

  .boxArea {
    height: 726px;
    padding-top: 52px;
  }

  #newsCarousel .carousel-indicators {
    right: -70px !important;
    left: unset;
    bottom: 7px;
  }

  .newsImg {
    height: 411px;
  }

  .newsTitleArea {
    margin-bottom: 46px;
  }

  .newsArea {
    /* background: url("../new_image/newsBg.png"); */
    background-size: 100% 100%;
    width: 100%;
    height: 830px;
    padding-top: 140px;
    padding-bottom: 75px;
  }

  .notifyAllArea {
    width: 596px;
  }

  .yanjiuItem:hover,
  .yanjiuItem:hover .svgIcon {
    background: #c13432;
    color: #ffffff !important;
    text-decoration: none !important;
  }

  .mainRightArea {
    height: 746px;
  }

  .btn {
    width: 76px;
    height: 26px;
    border-radius: 13px;
    font-size: 14px;
  }

  .linkArea {
    width: 1300px;
    margin: 0 auto;
    margin-top: 66px;
    margin-bottom: 57px;
  }

  .mainBox {
    width: 100%;
  }

  .icon {
    width: 28px;
    height: 28px;
    margin-right: 12px;
  }

  .title {
    font-weight: bold;
    font-size: 32px;
    color: #333333;
  }

  .moreIcon {
    width: 22px;
    height: 19px;
    margin-right: 7px;
  }

  .more {
    cursor: pointer;
    font-size: 16px;
    color: #666666;
  }

  .blueLine {
    width: 46px;
    height: 20px;
    margin-right: 10px;
    background: #c13432;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  /* REMOVED the rule for all .notifyRow */
  /* .notifyListArea .notifyRow {
    justify-content: flex-start; 
    gap: 2%; 
  } */

  /* ADDED rule specifically for the last row */
  .notifyListArea .notifyRow:last-child {
    justify-content: flex-start;
    /* 最后一行靠左对齐 */
    gap: 5.5%;
    /* 保留项目之间的间隙 */
  }
}

/* 移动端样式 */
@media screen and (max-width: 768px) {
  .notifyListArea {
    margin-top: 15px;
    padding: 0 13px 30px 13px;
  }

  .notifyRow {
    flex-direction: column;
    margin-bottom: 0;
  }

  .notifyItem {
    width: 93%;
    height: auto;
    min-height: 90px;
    padding: 20px 48px 20px 69px;
    margin-bottom: 10px;
    margin-left: 23px;
    background: #f6fbfb;
    box-shadow: 0px 2px 4px 0px rgba(135, 164, 164, 0.35);
    border-radius: 2px;
  }

  .notifyItem~.notifyItem {
    margin-top: 10px;
  }

  .notifyItemTitle {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .notifyItemTime {
    font-size: 12px;
  }

  .notifyItemTag {
    padding: 1px 10px;
    font-size: 11px;
  }
}

.academic-scroll-container {
  display: none;
}

.academic-list-wrapper {
  display: none;
}

.academic-list {
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
  width: 100%;
}

.academic-item {
  width: 287px;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 4px;
  overflow: hidden;
}

.academic-img {
  width: 100%;
  height: 236px;
  object-fit: cover;
  display: block;
}

.academic-content {
  width: 100%;
  background-size: 100% 100%;
  padding: 13px 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-top: -1px;
  box-sizing: border-box;
}

.academic-header {
  margin-bottom: 15px;
}

.academic-icon {
  width: 16px;
  height: 16px;
  margin-right: 8px;
}

.academic-time {
  color: #fff;
  font-size: 14px;
}

.academic-more {
  color: #fff;
  font-size: 14px;
  text-decoration: none;
}

.academic-more:hover {
  color: #ffcc9d;
  text-decoration: none;
}

.academic-title {
  font-size: 16px;
  color: #333333;
  font-weight: 500;
  line-height: 1.4;
  display: block;
  margin-bottom: 0;
}

.academic-title:hover {
  color: #c13432;
  text-decoration: none;
}

.academic-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 10px;
}

.info-item {
  display: flex;
  align-items: center;
  color: #8c8c8c;
  font-size: 14px;
}

/* .info-icon {
  width: 13px;
  height: 13px;
  margin-right: 10px;
} */

@media screen and (max-width: 768px) {
  .academic-scroll-container {
    width: 100%;
    padding-bottom: 50px;
    overflow: hidden;
  }

  .academic-list-wrapper {
    width: 100%;
    overflow: hidden;
    box-sizing: border-box;
    padding: 0;
  }

  .academic-list {
    display: flex;
    position: relative;
    left: 0;
    transition: left 0.5s ease;
    width: max-content;
    gap: 0;
  }

  .academic-item {
    width: 100vw;
    max-width: 100%;
    flex-shrink: 0;
    box-sizing: border-box;
  }

  .academic-img {
    width: 100%;
    height: 254px;
    object-fit: cover;
  }

  .academic-content {
    width: 100%;
    height: 195px;
    min-height: auto;
    background: url("../new_image/xueshuBg-wap.png") no-repeat;
    background-size: 100% 100%;
    padding: 15px 0;
    margin-top: 0;
    box-sizing: border-box;
  }

  .academic-title {
    font-size: 16px;
    margin-bottom: 15px;
  }

  .info-item {
    font-size: 12px;
  }

  /* .info-icon {
    width: 12px;
    height: 12px;
    margin-right: 8px;
  } */

  .academic-info {
    gap: 8px;
  }

  /* 移除导航按钮样式，只保留分页样式 */
  .academic-pagination {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    z-index: 5;
  }
}

.mainArea {
  margin-left: auto;
  margin-right: auto;
  width: 1360px;
  display: flex;
  justify-content: space-between;
}

/* 学术交流区域 */
.notifyAllArea {
  width: 720px;
}

/* 廉政动态区域 */
.yanTitleArea {
  flex: 1;
}

@media screen and (max-width: 768px) {
  .mainArea {
    width: 100% !important;
    flex-direction: column;
  }

  .notifyAllArea {
    width: 100%;
    overflow: hidden;
  }

  .yanTitleArea {
    margin-left: 0;
    margin-top: -20px;
    width: 100%;
  }
}

/* Style for Integrity Dynamics icon size */
.yanTitleArea .icon {
  width: 25px;
  height: 28px;
}

.scienceContentArea {
  position: relative;
  width: 100%;
  height: auto;
  margin: -20px 0 60px;
  overflow: visible;
}

/* Coverflow效果样式 */
.science-carousel {
  position: relative;
  height: 550px;
  /* 调整高度以适应740px × 410px的图片 */
  margin: 0 auto;
  overflow: visible;
}

/* 确保轮播内容容器有足够的高度 */
.science-carousel .carousel-inner {
  height: 100%;
  position: relative;
  overflow: visible;
}

/* 轮播项样式 */
.science-carousel .carousel-item {
  position: absolute;
  transition: none;
  text-align: center;
  width: auto;
  height: auto;
  display: block !important;
  /* 确保所有项目都显示 */
  max-width: 1300px;
}

/* 图片样式 */
.science-carousel .science-img {
  display: block;
  max-width: none;
  /* 防止图片被max-width限制 */
  height: auto;
  object-fit: cover;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  max-width: 740px;
}

/* 隐藏原始说明文字 */
.science-carousel .science-caption {
  display: none;
}

/* 控制按钮容器 */
.carousel-controls {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  max-width: 1000px;
  margin: -40px auto 0;
  padding: 0;
}

/* 活动说明文字容器 */
.science-caption-container {
  flex: 1;
  text-align: center;
  padding: 0 20px;
  max-width: 70%;
}

/* 活动说明文字样式 */
.science-active-caption {
  color: #333;
  font-size: 16px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.science-active-caption .science-title {
  font-weight: bold;
  font-size: 18px;
  color: #333333;
  text-decoration: none;
  cursor: pointer;
}

.science-active-caption .science-title:hover {
  color: #c13432;
  text-decoration: none;
}

/* 响应式样式 */
@media (max-width: 1200px) {
  .science-carousel {
    max-width: 90%;
    height: 500px;
  }
}

@media (max-width: 992px) {
  .science-carousel {
    max-width: 95%;
    height: 450px;
  }
}

@media (max-width: 768px) {
  .scienceContentArea {
    margin: 10px 0 30px;
    overflow: visible;
  }

  .science-carousel {
    height: 400px;
  }

  .carousel-controls {
    width: 95%;
    margin: 20px auto 0;
  }

  .science-caption-container {
    max-width: 60%;
  }

  .science-active-caption .science-title {
    font-size: 16px;
    margin-bottom: 0;
    line-height: 1.2;
  }

  /* 移除描述样式 */
  /* .science-active-caption p {
    font-size: 12px;
    -webkit-line-clamp: 2;
  } */
}

/* 添加或更新科学研究轮播图的按钮样式 */

/* 科学研究轮播图的按钮样式 */
.science-prev,
.science-next {
  width: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;

  cursor: pointer;
  transition: all 0.3s ease;
  margin: 0;
  border: none;
  outline: none;
  position: relative;
  padding: 0;
}

/* 按钮图标样式 */
.science-prev img,
.science-next img {
  width: 100%;
  height: 100%;
  display: block;
}

/* 按钮悬停和点击效果 */
.science-prev:hover,
.science-next:hover {
  transform: scale(1.1);
}

.science-prev:active,
.science-next:active {
  transform: scale(0.95);
}

/* 移动端调整 */
@media (max-width: 768px) {

  .science-prev,
  .science-next {
    width: 44px;
  }

  .science-prev img,
  .science-next img {
    width: 18px;
    height: 18px;
  }
}

/* 移动端科学研究 Swiper 样式 - 新样式 */
@media screen and (max-width: 768px) {
  .science-swiper-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    margin: 0 auto 40px;
    padding: 0;
  }

  .science-swiper-wrapper {
    display: flex;
    transition: transform 0.3s ease;
    width: 100%;
    will-change: transform;
  }

  .science-swiper-slide {
    flex-shrink: 0;
    width: 100% !important;
    flex: 0 0 100%;
    overflow: hidden;
    margin-right: 0;
    margin-top: 25px;
    box-sizing: border-box;
    padding-top: 0;
    padding-bottom: 40px;
    padding-left: 0;
    padding-right: 0;
    height: auto;
  }

  .science-swiper-item {
    display: block;
    background: #fff;
    border-radius: 0;
    overflow: hidden;
    text-decoration: none;
  }

  .science-swiper-img-wrapper {
    width: 100%;
    height: 225px;
    overflow: hidden;
  }

  .science-swiper-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .science-swiper-content {
    padding: 15px;
    background: #fff;
    color: #333;
    border-top: none;
  }

  .science-swiper-title {
    font-size: 16px;
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
    line-height: 1.4;
    height: 1.4em;
    /* 设置高度为一行 */
    max-height: 1.4em;
    /* 确保最大高度为一行 */
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    /* 防止换行 */
    /* display: -webkit-box; */
    /* 移除多行省略相关 */
    /* -webkit-line-clamp: 1; */
    /* -webkit-box-orient: vertical; */
  }

  .science-swiper-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    height: 3em;
    /* 设置高度为两行 */
    max-height: 3em;
    /* 确保最大高度为两行 */
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    /* 限制为两行 */
    -webkit-box-orient: vertical;
    margin-bottom: 0;
    display: none;
  }

  .science-swiper-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    margin-top: 20px;
    margin-bottom: 10px;
  }

  .science-swiper-pagination-bullet {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #d8d8d8;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .science-swiper-pagination-bullet-active {
    background: #c13432;
    transform: scale(1.2);
  }

  /* 隐藏PC端的科学研究轮播 */
  .scienceContentArea {
    display: none;
  }
}

/* 确保PC端不显示移动端科学研究轮播 */
@media screen and (min-width: 769px) {
  .science-swiper-container {
    display: none;
  }
}

/* 移动端学术交流 Swiper 样式 */
.academic-swiper-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin: 0 auto 40px;
  padding: 0;
  box-sizing: border-box;
}

.academic-swiper-wrapper {
  display: flex;
  transition: transform 0.3s ease;
  width: 100%;
  /* 确保不能同时看到两个slide */
  transform: translateX(0);
}

.academic-swiper-slide {
  flex-shrink: 0;
  width: 100%;
  /* 关键设置：每个slide占据100%宽度 */
  overflow: hidden;
  margin-right: 0;
  /* 移除右边距，防止下一张漏出 */
  margin-top: 20px;
}

.academic-swiper-item {
  display: block;
  background-size: cover;
  border-radius: 0;
  /* 移除圆角 */
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  text-decoration: none;
}

.academic-swiper-img-wrapper {
  width: 100%;
  height: 240px;
  overflow: hidden;
}

.academic-swiper-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  /* 移除圆角 */
}

.academic-swiper-content {
  padding: 18px 28px 33px 22px;
  color: #fff;
  background-size: 100% 100%;
  height: 195px;
}

.academic-swiper-title {
  font-size: 16px;
  font-weight: 500;
  color: #333333;
  margin-bottom: 12px;
  line-height: 1.4;
  height: 2.8em;
  /* 固定两行高度 */
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.academic-swiper-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.academic-swiper-info-item {
  display: flex;
  align-items: center;
  color: #8c8c8c;
  font-size: 14px;
}

/* .info-icon {
  width: 13px;
  height: 13px;
  margin-right: 8px;
} */

.academic-swiper-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  margin-bottom: 10px;
}

.academic-swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d8d8d8;
  cursor: pointer;
  transition: all 0.3s ease;
}

.academic-swiper-pagination-bullet-active {
  background: #c13432;
  transform: scale(1.2);
}

/* 确保移动端学术交流内容不会溢出 */
@media screen and (max-width: 768px) {
  .academic-swiper-pagination {
    display: none;
  }

  .academic-swiper-container {
    overflow: visible;
    width: 100%;
    position: relative;
    margin-bottom: 0;
  }

  .academic-swiper-wrapper {
    width: 100%;
    /* 强制宽度为100% */
    display: flex;
    flex-wrap: nowrap;
    transform: translateX(0);
    /* 初始位置 */
    will-change: transform;
    /* 优化性能 */
  }

  .academic-swiper-slide {
    width: calc(100% - 44px) !important;
    /* 强制每个slide占据100%容器宽度 */
    flex: 0 0 calc(100% - 44px) !important;
    /* 不缩小，不增长，固定宽度 */
    box-sizing: border-box;
    overflow: hidden;
    /* 防止内容溢出 */
    margin-top: 25px;
  }

  /* 确保图片容器完全适应slide宽度 */
  .academic-swiper-img-wrapper {
    width: 100%;
    overflow: hidden;
  }

  /* 确保内容完全适应slide宽度 */
  .academic-swiper-content {
    width: 100%;
    box-sizing: border-box;
    padding: 10px 0;
  }
}

.feature-area {
  display: flex;
  justify-content: center;
  gap: 10px;
  position: absolute;
  bottom: -82px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.feature-item {
  width: 252px;
  height: 143px;
  background-image: url("../new_image/boxBg.png");
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #333333;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
}

.feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 10px;
}

.carousel-item {
  position: relative;
}

#newsCarousel,
.newsBannerArea {
  width: 741px;
}

.newsArea .mainArea>.mainBox:first-child {
  width: 741px;
  flex-shrink: 0;
}

.newsImg {
  height: 518px;
  object-fit: cover;
  width: 100%;
}

.newsTitleArea {
  margin-bottom: 46px;
}

.newsArea {
  /* background: url("../new_image/newsBg.png"); */
  background-size: 100% 100%;
  width: 100%;
  height: 830px;
  padding-top: 140px;
  padding-bottom: 75px;
}

.mainBox {
  width: 100%;
}

.newsBannerArea {
  height: 100px;
  background: linear-gradient(0deg,
      rgba(0, 0, 0, 0.9) 0%,
      rgba(0, 0, 0, 0) 100%);
  padding: 0;
  align-items: flex-end;
}

/* 通知公告区域 */

.notifyArea .mainArea {
  width: 1360px;
  margin: 0 auto;
}

.notifyArea .titleArea {
  margin-bottom: 30px;
}

.notifyArea .notifyListArea {
  width: 100%;
  padding-left: 36.5px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

#newsCarousel .carousel-control-prev {
  left: -30px;
  top: 198px;
  bottom: 274px;
}

#newsCarousel .carousel-control-next {
  right: -30px;
  top: 198px;
  bottom: 274px;
}

/* 学生风采背景样式 */
.xueShengBg {
  background-image: url("../new_image/xueShengBg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 703px;
  width: 100%;
  margin-top: 40px;
}

/* 分页器样式 */
.science-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 0;
  margin-bottom: 10px;
}

.science-pagination-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d8d8d8;
  cursor: pointer;
  transition: all 0.3s ease;
}

.science-pagination-dot:hover {
  background: #c13432;
  transform: scale(1.2);
}

.science-pagination-dot.active {
  background: #c13432;
  transform: scale(1.2);
}

/* 移动端隐藏PC端分页器 */
@media screen and (max-width: 768px) {
  .science-pagination {
    display: none;
  }

  /* 移动端只显示前4个通知公告 */
  .notifyItem:nth-child(5),
  .notifyItem:nth-child(6) {
    display: none;
  }

  /* 移动端feature-area样式 */
  .feature-area {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: -20px;
    margin-bottom: 20px;
    width: 100%;
    box-sizing: border-box;
  }

  /* 移动端feature-item样式 */
  .feature-item {
    width: 116px;
    height: 72px;
    background-image: url("../new_image/boxBg.png");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #333333;
    font-size: 12px;
    cursor: pointer;
    flex-shrink: 0;
    text-decoration: none;
  }

  /* 移动端feature-icon样式 */
  .feature-icon {
    width: 30px;
    height: 30px;
    margin-bottom: 4px;
  }

  /* 移动端feature-area特殊布局：第一排space-between，第二排居中 */
  .feature-area {
    justify-content: space-between;
  }

  /* 第二排的feature-item居中显示 */
  .feature-item:nth-child(4) {
    margin-left: auto;
    margin-right: 2px;
  }

  .feature-item:nth-child(5) {
    margin-left: 2px;
    margin-right: auto;
  }

  /* 确保第一排的3个item均匀分布 */
  .feature-item:nth-child(1) {
    margin-right: auto;
  }

  .feature-item:nth-child(3) {
    margin-left: auto;
  }
}

/* 小于768 ipad和手机*/
@media screen and (max-width: 768px) {
  #bannerCarousel .bannerImg {
    width: 100%;
  }

  /* 移动端Banner轮播指示器样式 */
  #bannerCarousel .carousel-indicators {
    bottom: 15px;
    z-index: 10;
  }

  #bannerCarousel .carousel-indicators li {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    margin: 0 3px;
  }

  #bannerCarousel .carousel-indicators .active {
    background-color: #ffffff;
  }

  /* 移动端Banner轮播控制按钮样式 */
  #bannerCarousel .carousel-control-prev,
  #bannerCarousel .carousel-control-next {
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
  }

  #bannerCarousel .carousel-control-prev {
    left: 10px;
  }

  #bannerCarousel .carousel-control-next {
    right: 10px;
  }

  #bannerCarousel .carousel-control-prev .bannerIcon,
  #bannerCarousel .carousel-control-next .bannerIcon {
    width: 16px;
    height: 16px;
  }

  /* 移动端：首页Banner纵向轮播（Y轴切换） */
  #bannerCarousel.carousel-vertical-mobile .carousel-item {
    transition: transform 0.6s ease;
  }

  #bannerCarousel.carousel-vertical-mobile .carousel-item.next,
  #bannerCarousel.carousel-vertical-mobile .carousel-item.active.carousel-item-right,
  #bannerCarousel.carousel-vertical-mobile .carousel-item-next,
  #bannerCarousel.carousel-vertical-mobile .active.carousel-item-right {
    transform: translateY(100%);
  }

  #bannerCarousel.carousel-vertical-mobile .carousel-item.prev,
  #bannerCarousel.carousel-vertical-mobile .carousel-item.active.carousel-item-left,
  #bannerCarousel.carousel-vertical-mobile .carousel-item-prev,
  #bannerCarousel.carousel-vertical-mobile .active.carousel-item-left {
    transform: translateY(-100%);
  }

  #bannerCarousel.carousel-vertical-mobile .carousel-item.next.carousel-item-left,
  #bannerCarousel.carousel-vertical-mobile .carousel-item.prev.carousel-item-right,
  #bannerCarousel.carousel-vertical-mobile .carousel-item-next.carousel-item-left,
  #bannerCarousel.carousel-vertical-mobile .carousel-item-prev.carousel-item-right {
    transform: translateY(0);
  }

  .earthImg {
    height: 208px;
    margin-top: 15px;
  }

  .boxArea {
    padding-top: 27px;
    margin-top: 18px;
    background: white;
  }

  #newsCarousel .carousel-indicators {
    position: absolute;
    right: 15px;
    bottom: -3px;
    left: auto;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    display: flex;
    justify-content: flex-end;
  }

  /* Add box-shadow to news carousel for mobile */
  #newsCarousel {
    box-shadow: 0px 2px 4px 0px rgba(41, 117, 187, 0.11);
    width: 100% !important;
  }

  /* 移动端隐藏news-date */
  .news-date {
    display: none;
  }

  .newsTimeArea {
    margin: 5px auto;
  }

  .blueLine {
    width: 36px;
    height: 18px;
    background: #c13432;
    border-radius: 9px;
    margin-right: 10px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 400;
  }

  .newsBannerArea {
    height: 61px;
    padding: 8px 9px;
    box-sizing: border-box;
    width: 100% !important;
  }

  .newsBannerTitle {
    font-weight: bold;
    font-size: 14px;
    color: #ffffff;
    flex: 1;
  }

  .newsImg {
    height: 206px;
  }

  .icon {
    width: 16px;
    height: 16px;
    margin-right: 8px;
  }

  .title {
    font-weight: bold;
    font-size: 18px;
    color: #333333;
    text-align: center;
  }

  .moreIcon {
    width: 15px;
    height: 12px;
    margin-right: 4px;
  }

  .more {
    font-weight: 400;
    font-size: 12px;
    color: #666666;
  }

  /* Increase specificity for titleArea within mainArea */
  .mainArea.titleArea {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 13px;
    position: relative;
    /* 添加相对定位作为绝对定位的参考 */
  }

  /* 移动端标题居中方案：使用绝对定位 */
  .mainArea.titleArea .flex:nth-child(2) {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
  }

  /* 确保"更多"按钮保持在右侧 */
  .mainArea.titleArea a.flex {
    position: absolute;
    right: 13px;
    z-index: 2;
  }

  .newsArea {
    padding-top: 20px !important;
    padding-bottom: 20px;
    height: auto;
    background: #fff;
  }

  .newsTitleArea {
    margin-bottom: 20px !important;
  }

  .newsArea .mainArea>.mainBox:first-child {
    width: 100% !important;
    flex-shrink: 1;
  }

  .mainRightArea {
    margin-left: 0;
    width: 100%;
  }

  .dongTaiContent {
    height: 100%;
    justify-content: center;
    margin-right: 10px;
  }

  .dongTaiItem~.dongTaiItem {
    margin-top: 29px;
  }

  .dongTaiTitle {
    font-family: "Microsoft YaHei";
    font-weight: 400;
    font-size: 15px;
    color: #333333;

    /* Keep text overflow styles */
    display: -webkit-box;
    text-overflow: ellipsis;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .timeIcon {
    width: 10px;
    height: 10px;
    margin-right: 5px;
    margin-top: -2px;
  }

  #newsCarousel .timeIcon {
    background: url("../new_image/phonecalendar.png");
    background-size: 100% 100%;
  }

  .time {
    font-family: Arial;
    font-weight: 400;
    font-size: 12px;
    color: #a6a6a6;
  }

  .btn {
    width: 55px;
    height: 20px;
    border-radius: 10px;
    font-size: 12px;
    white-space: nowrap;
  }

  main {
    background: #fff;
  }

  .mainBox {
    padding: 0 13px;
    margin-top: 13px;
  }

  .dongTaiItem {
    height: 69px;
    background: #ffffff;
    border: 1px solid #f0f0f0;
    width: 100% !important;
  }

  .dongTaiItem~.dongTaiItem {
    margin-top: 13px;
  }

  .dongTaiTimeArea {
    width: 59px;
    height: 50px;
    padding-top: 3px;
    margin-left: 20px;
    margin-right: 21px;
  }

  /* Override height for mobile */
  /* .dongTaiTimeArea::after {
      height: 36px;
  } */

  .dongTaiImg {
    width: 100%;
    height: auto;
  }

  .redArea {
    height: 34px;
    padding: 0 12px;
  }

  .dongTaiDay {
    font-family: Arial;
    font-weight: 400;
    font-size: 12px;
    color: #c13432;
    margin-top: 2px;
  }

  .dongTaiTimeLine {
    width: 32px;
    height: 1px;
    background: #c13432;
    margin-top: -2px;
    margin-bottom: 2px;
    display: none;
  }

  .dongTaiDate {
    font-family: Arial;
    font-weight: 400;
    font-size: 20px;
    color: #c13432;
  }

  .dongTaiArea {
    margin-left: 0;
  }

  .yanjiuItem {
    font-size: 14px;
  }

  .bangFuImg {
    width: 100%;
    height: auto;
  }

  .notifyContent {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
  }

  .notifyImg {
    width: 200px;
    height: 130px;
    border-radius: 4px;
    margin-right: 33px;
  }

  .notifyDesc {
    font-size: 14px;
    color: #8c8c8c;
    margin-top: 22px;
  }

  .notifyTimeArea {
    width: 55px;
    height: 55px;
    background: #c13432;
    border-radius: 6px 6px 0px 6px;
    margin-left: 15px;
  }

  .notifyDay {
    font-size: 22px;
  }

  .notifyDate {
    font-size: 12px;
    margin-top: 3px;
  }

  .notifyTitle {
    font-size: 14px;
    line-height: 21px;
  }

  .notifyArea .mainArea {
    width: 100%;
    margin: 0;
    padding: 0 13px;
  }

  .notifyArea .notifyListArea {
    padding: 0 13px 30px 13px;
  }

  .earthArea {
    padding: 0 13px;
    padding-top: 25px;
    padding-bottom: 40px;

    min-height: auto;
  }

  .earthArea .titleArea {
    padding: 0;
  }

  .earthTimeArea {
    margin-top: 19px;
  }

  .earthTime {
    font-family: Arial;
    font-weight: 400;
    font-size: 12px;
    color: #ffffff;
  }

  .earthDetailIcon {
    width: 16px;
  }

  .whiteLine {
    height: 1px;
    background: #5690c4;
    margin-top: 21px;
  }

  .earthBannerDesc {
    font-weight: 400;
    font-size: 14px;
    color: #ffffff;
    margin-top: 10px;
    display: none;
  }

  .earthBannerTitle {
    font-weight: 400;
    font-size: 14px;
    color: #ffffff;
    margin-top: 17px;
  }

  .earthArea {
    /* background: url("../new_image/newsBg.png");
    background-size: 100% 100%;
    width: 100%;
    min-height: 742px;
    padding-top: 60px;
    padding-bottom: 75px;
    padding: 0 36px; */
    margin-top: 0;
  }

  #earthCarousel .carousel-indicators {
    bottom: -40px;
  }

  .benYanBg {
    background: url("../new_image/lz-bg-wap.png") no-repeat #ffffff;
    background-size: 100% 455px;
    background-position: 0 520px;
    width: 100%;
    min-height: auto;
    padding-top: 0;
    padding-bottom: 30px;
    padding-left: 0;
    padding-right: 0;
    height: auto;
  }

  .benYanBg .notifyAllArea {
    padding-top: 30px;
  }

  .benArea {
    padding: 0 13px;
  }

  .mainArea {
    width: 100%;
    flex-direction: column;
  }

  .benTitle {
    font-weight: 400;
    font-size: 14px;
    color: #333333;
  }

  .benItem {
    height: 77px;
  }

  .benTime {
    font-family: Arial;
    font-weight: 400;
    font-size: 12px;
    color: #a6a6a6;
  }

  .benTimeIcon {
    width: 10px;
    height: 10px;
    margin-top: -0px;
    margin-right: 5px;
  }

  .yanTitleArea {
    margin-left: 0;
    margin-top: -20px;
    width: 100%;
  }

  .yanTimeArea {
    margin-right: 15px;
    min-width: 40px;
    height: auto;
  }

  .yanDay {
    font-size: 20px;
  }

  .yanYearMonth {
    font-size: 12px;
  }

  .yanArea {
    margin-top: 15px;
    padding: 0 10px;
    height: 350px;
  }

  .yanItem {
    padding: 10px 0;
    box-sizing: border-box;
  }

  .yanContent {}

  .yanTitle {
    font-size: 16px;
    line-height: 1.4;
    -webkit-line-clamp: 2;
  }

  .earthIcon {
    width: 19px;
    height: auto;
  }

  .notifyItem::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -5px;
    width: 120px;
    height: 60px;
  }

  .scienceResearchArea {
    margin-top: 10px;
  }

  #newsCarousel .carousel-control-prev .bannerIcon,
  #newsCarousel .carousel-control-next .bannerIcon {
    width: 25px;
    height: 23px;
  }

  #newsCarousel .carousel-control-prev {
    left: -12.5px;
    top: 50%;
  }

  #newsCarousel .carousel-control-next {
    right: -12.5px;
    top: 50%;
  }

  .notifyArea {
    background: url("../new_image/notifyBgPhone.png") no-repeat;
    background-size: 100% 100%;
    height: 536px;
    width: 100%;
    padding: 40px 0 30px;
  }

  .notifyItem {
    height: 103px;
    background: #ffffff;
    box-shadow: 0px 1px 4px 0px rgba(151, 151, 151, 0.35);
    border-radius: 4px;
    margin: 0;
    width: 100%;
    padding-left: 17px;
    padding-top: 19px;
    padding-right: 16px;
    padding-bottom: 14px;
  }

  .notifyListArea {
    padding: 0 !important;
    margin-top: 30px;
  }

  .xueShengBg {
    height: 372px;
    background-image: url("../new_image/xueShengPhoneBg.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 0 13px;
    margin-top: -60px;
  }

  .xueShengBg .notifyAllArea {
    padding-top: 20px;
  }

  .science-swiper-pagination {
    margin-top: -40px;
  }

  .science-swiper-content,
  .science-swiper-item {
    background: transparent;
  }
}