/* ============================================================
   雨花台烈士陵园 — 首页样式 (LESS)
   ============================================================ */
body {
  font-family: "Microsoft YaHei", "PingFang SC", "Helvetica Neue", Arial, sans-serif;
  color: #333;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}
.icon {
  width: 1em;
  height: 1em;
  vertical-align: -0.15em;
  fill: currentColor;
  overflow: hidden;
}
.w-100 {
  width: 100%;
}
.hero-wave {
  position: absolute;
  bottom: -2px;
  z-index: 999;
  width: 100%;
}
.site-wrapper {
  max-width: 100%;
  margin: 0 auto;
  overflow: hidden;
}
.content-wrapper {
  max-width: 1280px;
  position: relative;
  z-index: 1;
  margin: 0 auto;
}
/* ============================================================
   HEADER
   ============================================================ */
.section-bg1 {
  height: 100vh;
  max-height: 1080px;
  min-height: 600px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.header-bg {
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  z-index: 0;
}
.header {
  z-index: 100;
  padding: 56px 0 0 0;
}
.header-top {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0px 68px;
  margin-top: 30px;
}
.header-top-links {
  font-size: 18px;
  color: #000;
}
.header-top-links a,
.header-top-links .active {
  padding: 0 4px;
  cursor: pointer;
}
.header-top-links a {
  color: #333;
  text-decoration: none;
}
.header-top-links a:hover {
  color: #9f0303;
  text-decoration: underline;
}
.header-top-links .active {
  color: #000;
  font-weight: 600;
}
.header-top-links .sep {
  color: #999;
  padding: 0 6px;
  font-size: 16px;
  user-select: none;
}
.nav ul {
  gap: 0;
  height: 100%;
}
.nav ul > li {
  position: relative;
  list-style: none;
}
.nav ul > li > a {
  display: flex;
  align-items: center;
  height: 70px;
  padding: 0 16px;
  font-size: 22px;
  color: #000;
  letter-spacing: 4px;
  white-space: nowrap;
  text-decoration: none;
  transition: color 0.25s;
}
/* .nav ul > li.active > a {
  color: #9f0303;
  font-weight: 700;
} */
.nav ul > li:hover > a {
  color: #9f0303;
}
.nav ul > li.has-dropdown .dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 100%;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s, transform 0.25s, visibility 0.25s;
  z-index: 200;
  padding: 6px 0;
  white-space: nowrap;
}
.nav ul > li.has-dropdown:hover .dropdown,
.nav ul > li.has-dropdown.touch-open .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.dropdown a {
  display: block;
  padding: 0 24px;
  height: 34px;
  line-height: 34px;
  font-size: 0.88rem;
  color: #000;
  text-decoration: none;
  text-align: center;
  letter-spacing: 0.5px;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
}
.dropdown a:last-child {
  border-bottom: none;
}
.dropdown a:hover {
  background: #9f0303;
  color: #fff;
}
/* ============================================================
   吸顶导航（滚动后显示）
   ============================================================ */
.header-sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 12px rgba(0, 0, 0, 0.08);
  transform: translateY(-100%);
  transition: transform 0.35s ease;
}
.header-sticky.visible {
  transform: translateY(0);
}
.header-sticky .header-sticky-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 30px;
}
.header-sticky .header-sticky-logo img {
  width: 200px;
  height: auto;
  display: block;
}
.header-sticky .nav-sticky ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 4px;
}
.header-sticky .nav-sticky ul > li > a {
  display: flex;
  align-items: center;
  height: 56px;
  padding: 0 18px;
  font-size: 16px;
  color: #333;
  letter-spacing: 2px;
  text-decoration: none;
  transition: color 0.25s;
}
.header-sticky .nav-sticky ul > li.active > a {
  /* color: #9f0303;
  font-weight: 700; */
}
.header-sticky .nav-sticky ul > li > a:hover {
  color: #9f0303;
}
.header-sticky .nav-sticky ul > li.has-dropdown {
  position: relative;
}
.header-sticky .nav-sticky ul > li.has-dropdown .dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 100%;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s, transform 0.25s, visibility 0.25s;
  z-index: 200;
  padding: 6px 0;
  white-space: nowrap;
}
.header-sticky .nav-sticky ul > li.has-dropdown:hover .dropdown,
.header-sticky .nav-sticky ul > li.has-dropdown.touch-open .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
/* ============================================================
   MENU TOGGLE
   ============================================================ */
.menu-toggle {
  background: none;
  border: none;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: #000;
  border-radius: 2px;
  transition: all 0.3s;
}
.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}
/* ============================================================
   SECTION BACKGROUNDS — 4张背景图对应4个区域
   ============================================================ */
.section1 {
  position: relative;
}
.section1 .swiper,
.section1 .swiper-wrapper,
.section1 .swiper-slide {
  height: 1250px !important;
}
.section1 .swiper-slide {
  background-size: cover !important;
  background-position: center !important;
}
.section1 .swiper-pagination-bullet {
  width: 40px;
  height: 4px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
}
.section1 .swiper-pagination-bullet-active {
  background: #ffd700;
}
.section1 .swiper-button-prev,
.section1 .swiper-button-next {
  color: rgba(255, 255, 255, 0.7);
  transform: scale(0.7);
}
.section1 .swiper-button-prev:hover,
.section1 .swiper-button-next:hover {
  color: #fff;
}
.section1 .headerbg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section1 .header-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}
.section1 .header-main {
  width: 100%;
}
.section1 .header-main-inner {
  display: flex;
  justify-content: space-between;
  padding: 0px 50px;
}
.section1 .logo img {
  width: 714px;
  height: auto;
}
.section2 {
  position: relative;
  padding-bottom: 30px;
}
.section2 .bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
.section2 .part01-left-top {
  position: relative;
}
.section2 .part01-left-top .part01-left-top-bg {
  position: relative;
  width: 100%;
  z-index: 0;
}
.section2 .part01-left-top .part01-left-top-content {
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  text-align: center;
  padding-top: 50px;
}
.section2 .part01-left-top .part01-left-top-content .part01-left-top-content-inner1 {
  color: #ffd781;
}
.section2 .part01-left-top .part01-left-top-content .pltc1 {
  line-height: 28px;
  font-weight: bold;
  font-size: 22px;
  color: #ffd781;
  text-align: center;
  margin-bottom: 20px;
}
.section2 .part01-left-top .part01-left-top-content .pltc2 {
  line-height: 18px;
  font-weight: bold;
  font-size: 18px;
  color: #ffd781;
  line-height: 36px;
  text-align: center;
}
.section2 .part01-left-top .part01-left-top-content-inner2 {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
  flex-wrap: wrap;
  padding: 20px;
}
.section2 .part01-left-top .inner2-item {
  width: 100%;
  background: #ffffff;
  border-radius: 20px 20px 20px 20px;
  color: #990306;
  line-height: 40px;
  font-size: 16px;
  display: flex;
  justify-content: center;
  text-align: right;
}
.section2 .part01-left-top .inner2-item div {
  width: 40%;
}
.section2 .part01-left-top .inner2-item .num {
  color: #000;
}
.section2 .part01-left-top .inner2-item .num2 {
  color: #07b753;
}
.section2 .yyfw {
  background-color: #fff2dd;
  padding: 20px;
}
.section2 .yyfw .yyfw-text {
  font-weight: bold;
  font-size: 24px;
  color: #9f0303;
  margin: 10px;
}
.section2 .yyfw .yyfw-item {
  background: #a90507;
  border-radius: 20px;
  color: #ffc039;
  display: flex;
  justify-content: space-between;
  padding: 10px 20px;
  margin-top: 10px;
  align-items: center;
  text-decoration: none;
  transition: background 0.2s;
}
.section2 .yyfw .yyfw-item:hover {
  background: #7a0305;
}
.section2 .yyfw .erweima {
  text-align: center;
}
.section2 .section2-topSwiper {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
}
.section2 .section2-topSwiper .swiper-slide .top-swiper-inner {
  display: flex;
  gap: 16px;
}
.section2 .section2-topSwiper .swiper-slide .top-swiper-col {
  flex: 0 0 calc(50% - 8px);
  max-width: calc(50% - 8px);
}
.section2 .section2-topSwiper .swiper-slide .top-swiper-col img {
  width: 100%;
  display: block;
  border-radius: 6px;
}
.section2 .section2-topSwiper .top-swiper-prev,
.section2 .section2-topSwiper .top-swiper-next {
  position: absolute;
  bottom: 16px;
  z-index: 10;
  border-radius: 50%;
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  font-size: 40px;
  background-color: transparent;
}
.section2 .section2-topSwiper .top-swiper-prev {
  left: 16px;
}
.section2 .section2-topSwiper .top-swiper-next {
  right: 16px;
}
.section2 .jj-wrapper {
  padding: 40px 0px 45px 0px;
}
.section2 .more-chanal {
  text-align: right;
}
.section2 .chanal-tab {
  background: #990000;
  border-radius: 14px 14px 14px 14px;
  color: #fff;
  font-size: 14px;
  padding: 5px 14px;
  text-decoration: none;
}
.section2 .jj-header {
  font-family: SourceHanSerifSCVF, SourceHanSerifSCVF;
  color: #9f0303;
  font-weight: bold;
  font-size: 24px;
}
.section2 .jj-name {
  position: relative;
}
.section2 .jj-name::after {
  content: "";
  position: absolute;
  background-color: #ffd781;
  width: 280px;
  height: 10px;
  bottom: -5px;
  left: 140px;
}
.section2 .jj-content {
  font-family: MicrosoftYaHei;
  font-size: 16px;
  color: #000000;
  line-height: 38px;
  text-align: justifyLeft;
  font-style: normal;
  text-transform: none;
}
.section2 .htTab {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 0;
  margin-top: 20px;
}
.section2 .htTab .htTab-nav {
  display: flex;
  gap: 0;
}
.section2 .htTab .htTab-nav a {
  display: block;
  padding: 15px 10px;
  font-size: 24px;
  color: #000;
  text-decoration: none;
  position: relative;
  transition: color 0.25s;
  letter-spacing: 2px;
}
.section2 .htTab .htTab-nav a:hover {
  color: #9f0303;
}
.section2 .htTab .htTab-nav a.active {
  color: #9f0303;
  font-weight: 600;
}
.section2 .htTab .htTab-nav a.active::before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 4px;
  background: transparent;
  transition: background 0.25s;
  background: #ffd781;
}
.section2 .htTab .htTab-nav a.active::after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0;
  right: 0;
  height: 4px;
  background: transparent;
  transition: background 0.25s;
  background: #a90507;
}
.section2 .htTab .htTab-more {
  font-size: 16px;
  color: #999;
  text-decoration: none;
  transition: color 0.25s;
  padding-bottom: 15px;
}
.section2 .htTab .htTab-more:hover {
  color: #9f0303;
}
.section2 .htTabSwiper {
  margin-top: 16px;
  overflow: hidden;
}
.section2 .htTabSwiper .swiper-slide ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.section2 .htTabSwiper .swiper-slide ul li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  transition: background 0.2s;
}
.section2 .htTabSwiper .swiper-slide ul li:hover {
  background: #faf5f0;
  padding-left: 8px;
  padding-right: 8px;
}
.section2 .htTabSwiper .swiper-slide ul li a {
  color: #333;
  text-decoration: none;
  font-size: 15px;
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: color 0.2s;
}
.section2 .htTabSwiper .swiper-slide ul li a:hover {
  color: #9f0303;
}
.section2 .htTabSwiper .swiper-slide ul li span {
  color: #999;
  font-size: 13px;
  white-space: nowrap;
  margin-left: 24px;
}
.section2 .baseinfo-row {
  /* display: flex;
  gap: 12px; */
  margin-top: 35px;
}
.section2 .baseinfo {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  /* width: 400px; */
  height: 88px;
  background: #a90507;
  font-weight: 500;
  font-size: 24px;
  color: #ffd781;
  text-decoration: none;
  transition: background 0.2s;
}
.section2 .baseinfo:hover {
  background: #7a0305;
}
.section2 .baseinfo .icon {
  position: absolute;
  right: 0;
  top: 0;
  font-size: 30px;
}
.section3 {
  position: relative;
  padding: 60px 0 0 0;
}
.section3 .bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  object-fit: cover;
}
.section3 .section3-list {
  position: relative;
  z-index: 1;
}
.section3 .section3-item {
  display: block;
  text-align: center;
  margin-bottom: 40px;
  text-decoration: none;
  transition: transform 0.3s;
}
.section3 .section3-item:hover {
  transform: translateY(-4px);
}
.section3 .section3-item img {
  width: 100%;
  display: block;
}
.section3 .section3-item .section3-title {
  color: #ffd781;
  font-size: 24px;
  margin-top: 16px;
  text-align: center;
  font-weight: 500;
}
.section4 {
  position: relative;
}
.section4 .bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  object-fit: cover;
}
.section4 .sec4-media {
  padding: 30px 0;
}
.section4 .sec4-media .sec4-media-title {
  font-size: 28px;
  color: #9f0303;
  font-weight: 700;
  margin-bottom: 24px;
  letter-spacing: 4px;
}
.section4 .sec4-media .sec4-media-item {
  text-align: center;
}
.section4 .sec4-media .sec4-media-item img {
  width: 100%;
  display: block;
  background: #fff;
  padding: 20px;
}
.section4 .sec4-media .sec4-media-item .sec4-media-label {
  background: #9f0303;
  color: #fff;
  font-size: 16px;
  text-align: center;
  padding: 10px 0;
  font-weight: 500;
  letter-spacing: 2px;
}
/* ============================================================
   RED SECTION — 第三区红色主题
   ============================================================ */
.red-section {
  min-height: 700px;
  background: rgba(159, 3, 3, 0.15);
}
.red-section h2 {
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}
.sec4-interact {
  padding: 0 0 30px;
}
.sec4-interact .sec4-interact-title {
  font-size: 28px;
  color: #9f0303;
  font-weight: 700;
  margin-bottom: 24px;
  letter-spacing: 4px;
}
.sec4-interact a{
  text-decoration: none;
}
.sec4-interact .sec4-interact-item {
  text-align: center;
  cursor: pointer;
  background: #fff;
  padding: 24px 10px;
  border-radius: 2px;
  transition: all 0.3s;
  border: 1px solid #a90507;
}
.sec4-interact .sec4-interact-item .sec4-interact-icon {
  font-size: 48px;
  color: #9f0303;
  display: block;
  margin: 0 auto 12px;
}
.sec4-interact .sec4-interact-item .sec4-interact-label {
  font-size: 15px;
  color: #9f0303;
  text-align: center;
  display: block;
  font-weight: 500;
}
.sec4-interact .sec4-interact-item:hover {
  box-shadow: 0 4px 15px rgba(159, 3, 3, 0.15);
  transform: translateY(-2px);
}
.sec4-interact .sec4-interact-item:hover .sec4-interact-icon {
  transform: scale(1.1);
}
.weibo-panel {
  background: rgba(255, 255, 255, 0.96);
  /* border-radius: 16px; */
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  margin: 20px 0;
  height: 542px;
}
.weibo-panel-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  padding: 10px;
}
.weibo-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #ff7b00;
  color: #fff;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}
.weibo-title {
  font-size: 18px;
  font-weight: 700;
  color: #1f1f1f;
}
.weibo-verified {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 8px;
  padding: 2px 8px;
  background: #ff7b00;
  color: #fff;
  font-size: 12px;
  border-radius: 999px;
}
.weibo-subtitle {
  color: #666;
  font-size: 13px;
  margin-top: 4px;
}
.weibo-posts {
  display: flex;
  flex-direction: column;
}
.weibo-post {
  background: #fff;
  border-radius: 14px;
  padding: 16px 18px;
  border-bottom: 1px #f1f1f1 solid;
}
.weibo-post p {
  margin: 0 0 10px;
  color: #333;
  font-size: 14px;
  line-height: 1.7;
}
.weibo-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: #999;
  gap: 14px;
}
.weibo-meta a {
  color: #999;
  text-decoration: none;
  margin-right: 10px;
}
.weibo-more {
  display: inline-block;
  margin-top: 18px;
  color: #9f0303;
  font-size: 14px;
  text-decoration: none;
  font-weight: 600;
}
/* ============================================================
   FOOTER
   ============================================================ */
.section5 {
  background: #9f0303;
  padding: 30px 0 30px;
  position: relative;
  z-index: 1;
}
.section5 .footer {
  background: transparent;
  color: #fff;
  font-size: 16px;
}
.section5 .footer .container {
  max-width: 1280px;
  margin: 0 auto;
  font-size: 16px;
  color: #fff;
}
.section5 .footer a {
  color: #fff;
  text-decoration: none;
  line-height: 20px;
  transition: color 0.2s;
}
.section5 .footer a:hover {
  color: #ffd781;
}
/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-top {
  bottom: 40px;
  right: 40px;
  width: 44px;
  height: 44px;
  background: #9f0303;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(159, 3, 3, 0.3);
  z-index: 999;
}
.back-top.visible {
  opacity: 1;
  visibility: visible;
}
.back-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(159, 3, 3, 0.4);
}
/* ============================================================
   RESPONSIVE — 移动端导航
   ============================================================ */
@media (max-width: 991.98px) {
  .header {
    padding: 16px 0 0 0 !important;
  }
  .header-inner {
    padding: 0 20px !important;
  }
  .section-bg1 {
    height: auto;
    min-height: auto;
    max-height: none;
  }
  .header-bg {
    height: 60vh;
    min-height: 350px;
    position: relative !important;
  }
  .header {
    position: absolute !important;
  }
  .logo img {
    width: 280px;
    height: auto;
  }
  .nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    z-index: 300;
  }
  .nav.open {
    opacity: 1;
    visibility: visible;
  }
  .nav ul {
    flex-direction: column;
    padding: 20px 0;
    height: auto;
    text-align: center;
  }
  .nav ul > li > a {
    padding: 16px 30px;
    height: auto;
    font-size: 20px;
    justify-content: center;
    color: rgba(255, 255, 255, 0.9);
  }
  .nav ul > li + li {
    margin-left: 0;
  }
  .nav ul > li.active > a {
    color: #9f0303;
  }
  .nav ul > li.has-dropdown .dropdown {
    position: static;
    background: rgba(255, 255, 255, 0.06);
    box-shadow: none;
    border-radius: 0;
    opacity: 1;
    visibility: visible;
    transform: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s;
    padding: 0;
  }
  .nav ul > li.has-dropdown:hover .dropdown,
  .nav ul > li.has-dropdown.touch-open .dropdown {
    max-height: 300px;
    transform: none;
  }
  .dropdown a {
    padding: 0 40px;
    height: 34px;
    line-height: 34px;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    font-size: 16px;
  }
  .dropdown a:hover {
    background: #9f0303;
    color: #fff;
  }
  .menu-toggle span {
    background: #000;
  }
  .hero {
    height: calc(60vh - 96px);
    min-height: 254px;
  }
}
@media (max-width: 767.98px) {
  .content-wrapper {
    max-width: 100%;
    padding: 0 16px;
  }
  .section2 {
    padding: 10px;
  }
  .section3 {
    padding: 10px;
  }
  .section4 {
    padding: 10px;
  }
  .section5 {
    padding: 10px;
  }
  .section-tabs {
    padding: 10px;
  }
  .section-links {
    padding: 10px;
  }
  .section1 .swiper {
    height: 300px !important;
  }
  .section1 .headerbg {
    height: 300px;
    object-fit: cover;
  }
  .section1 .logo img {
    width: 200px;
  }
  .section1 .header-main-inner {
    padding: 6px 16px;
    flex-wrap: wrap;
  }
  .section1 .swiper-pagination {
    bottom: 4px !important;
  }
  .section1 .swiper-button-prev,
  .section1 .swiper-button-next {
    display: none;
  }
  .section2 .jj-name::after {
    width: 120px;
  }
  .col-3{
    width: 100%;
  }
  .header-top {
    padding: 0px 20px;
    margin-top: 0;
  }
  .header-top-links {
    font-size: 12px;
  }
  .header-sticky .header-sticky-inner {
    padding: 4px 12px;
  }
  .header-sticky .header-sticky-logo img {
    width: 120px;
  }
  .header-sticky .nav-sticky ul > li > a {
    height: 40px;
    padding: 0 8px;
    font-size: 13px;
    letter-spacing: 0;
  }
  .section2 .row {
    flex-direction: column;
  }
  .section2 .col-4,
  .section2 .col-8 {
    width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
    padding: 8px 0;
  }
  .section2 .col-6 {
    width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
  }
  .section2 .baseinfo {
    width: 100%;
    height: 60px;
    font-size: 18px;
    line-height: 60px;
  }
  .section2 .htTab-nav a {
    font-size: 16px !important;
    padding: 10px 8px !important;
  }
  .jj-wrapper .col-9,
  .jj-wrapper .col-3 {
    width: 100%;
    flex: 0 0 100%;
  }
  .jj-header {
    font-size: 18px !important;
  }
  .jj-content {
    font-size: 14px !important;
    line-height: 1.8 !important;
  }
  .baseinfo-row {
    flex-direction: column;
    gap: 8px;
  }
  .baseinfo-row .col-4 {
    width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
  }
  .section2 .part01-left-top .part01-left-top-content {
      padding-top: 40px;
  }
  .section2 .part01-left-top .inner2-item div {
    width: 50%;
  }
  .section2 .part01-left-top .part01-left-top-content-inner2 {
      gap: 12px;
      margin-top: 0px;
  }
  .htTabSwiper .news-list li {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  .htTabSwiper .news-list li a {
    font-size: 14px;
    white-space: normal;
  }
  .htTabSwiper .news-list li .news-date {
    margin-left: 0;
    font-size: 12px;
  }
  .section3 .section3-list .col-4 {
    width: 50%;
    flex: 0 0 50%;
  }
  .section3 .section3-item .section3-title {
    font-size: 16px !important;
  }
  .section4 .row {
    flex-direction: column;
  }
  .section4 .col-8,
  .section4 .col-4 {
    width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
  }
  .section4 .row .row {
    flex-direction: row !important;
  }
  .section4 .row .row .col-3 {
    width: 50% !important;
    flex: 0 0 50% !important;
    max-width: 50% !important;
    margin-top: 15px;
  }
  .sec4-media-title,
  .sec4-interact-title {
    font-size: 18px !important;
  }
  .sec4-media-label {
    font-size: 13px !important;
    padding: 6px 0 !important;
  }
  .sec4-interact-item {
    padding: 16px 8px !important;
  }
  .sec4-interact-icon {
    font-size: 32px !important;
  }
  .section5 {
    padding: 20px 0;
  }
  .section5 .footer-copyright {
    font-size: 12px !important;
  }
  .section5 .footer-icp {
    font-size: 11px !important;
  }
  .section5 .footer-phone {
    font-size: 12px !important;
  }
  .back-top {
    width: 36px;
    height: 36px;
    bottom: 20px;
    right: 20px;
  }
}
@media (max-width: 390px) {
    .header-sticky .nav-sticky ul > li > a {
        padding: 0 4px;
    }
}
