/* ===== 全局重置 ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
}
/* 除特定元素外无圆角 */
*:not(.header-actions):not(.header-actions *):not(.play-btn):not(.search-overlay):not(.search-overlay *):not(.close-search-overlay):not(.tag-menu):not(.tag-menu *) {
  border-radius: 0 !important;
}
a{ text-decoration:none;
color:#036;
	
	}
body {
  background: #F8F8F8;
  color: #1e2a3a;
  line-height: 1.5;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== 导航 ===== */
.top-nav {
  background: #fff;
  border-bottom: 1px solid #eaeef2;
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}
.nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 20px;
}
.logo-area img {
  max-height: 50px;
  width: auto;
  transition: transform 0.3s ease;
}
.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f0f0f0;
  padding: 5px 12px;
  border-radius: 50px !important;
}
.search-icon {
  font-size: 1.2rem;
  color: #2c3e50;
  cursor: pointer;
}
.english-link {
  font-weight: 600;
  color: #0b4f8b;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
}
.menu-toggle {
  background: none;
  border: none;
  font-size: 1.8rem;
  color: #0b4f8b;
  cursor: pointer;
  display: none;
  padding: 0 5px;
}
.nav-menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
  font-size: 1.05rem;
  font-weight: 500;
  color: #2c3e50;
  margin: 0;
  padding: 0 0 0 0px;
  transition: max-height 0.3s ease;
}
.nav-menu > li {
  position: relative;
  padding: 16px 0;
  margin: 0 4px;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: 0.2s;
}
.nav-menu > li > a {
  text-decoration: none;
  color: inherit;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 4px;
}
.nav-menu > li:hover,
.nav-menu > li.active {
  border-bottom-color: #0b4f8b;
  color: #0b4f8b;
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.85) 100%);
  box-shadow: 0 12px 28px rgba(0,0,0,0.1), 0 4px 12px rgba(0,0,0,0.05);
  padding: 10px 0;
  min-width: 200px;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.35s cubic-bezier(0.25,0.46,0.45,0.94), transform 0.35s cubic-bezier(0.25,0.46,0.45,0.94), visibility 0.35s;
  border: 1px solid #eef2f6;
  z-index: 1000;
}
.nav-menu > li:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition-delay: 0.1s;
}
.dropdown-menu li a {
  display: block;
  padding: 10px 20px;
  text-decoration: none;
  color: #2c3e50;
  font-weight: 400;
  font-size: 0.9rem;
  transition: 0.15s;
  white-space: nowrap;
}
.dropdown-menu li a:hover {
  background: rgba(11,79,139,0.1);
  color: #0b4f8b;
}
.arrow {
  font-size: 0.7rem;
  transition: transform 0.2s;
}
.nav-menu > li:hover .arrow {
  transform: rotate(180deg);
}

/* 移动端导航 */
@media (max-width: 900px) {
  .nav-header {
    height: 60px;
  }
  .menu-toggle {
    display: block;
  }
  .nav-menu {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    visibility: hidden;
    background: white;
    padding: 0 20px;
    gap: 0;
    transition: max-height 0.4s ease, visibility 0.4s;
    border-top: 1px solid #eaeef2;
  }
  .nav-menu.show {
    max-height: 1000px;
    visibility: visible;
    padding: 10px 20px 20px;
  }
  .nav-menu > li {
    width: 100%;
    padding: 0;
    margin: 0;
    border-bottom: none;
  }
  .nav-menu > li > a {
    width: 100%;
    padding: 14px 0;
    font-size: 1.1rem;
    border-bottom: 1px solid #eef2f6;
    justify-content: space-between;
  }
  .nav-menu > li:hover {
    border-bottom-color: transparent;
  }
  .dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    background: linear-gradient(135deg, rgba(248,250,253,0.95), rgba(248,250,253,0.85));
    padding: 0;
    margin: 0 0 0 16px;
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: max-height 0.3s ease, padding 0.3s ease;
    max-height: 0;
    overflow: hidden;
    padding: 0 16px;
  }
  .dropdown-menu.show {
    max-height: 500px;
    padding: 12px 16px;
  }
  .dropdown-menu li a {
    white-space: normal;
    padding: 10px 0;
    border-bottom: 1px dashed #d0ddee;
  }
  .dropdown-menu li:last-child a {
    border-bottom: none;
  }
  .nav-menu > li.open > a .arrow {
    transform: rotate(180deg);
  }
  .header-right {
    gap: 12px;
  }
  .english-link {
    padding-left: 8px;
  }
  .logo-area img {
    max-height: 40px;
  }
}

/* ===== 搜索蒙版 ===== */
.search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
}
.search-overlay.active {
  display: flex;
}
.close-search-overlay {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: white;
  font-size: 3rem;
  cursor: pointer;
  z-index: 1001;
  line-height: 1;
  padding: 0 10px;
}
.close-search-overlay:hover {
  color: #ffb347;
}
.search-container {
  display: flex;
  width: 90%;
  max-width: 600px;
  background: white;
}
.search-container input {
  flex: 1;
  padding: 20px;
  font-size: 1.5rem;
  border: none;
  outline: none;
}
.search-submit {
  padding: 0 30px;
  background: #0b4f8b;
  color: white;
  font-size: 1.2rem;
  border: none;
  cursor: pointer;
  transition: 0.2s;
}
.search-submit:hover {
  background: #ffb347;
  color: #1e2a3a;
}

/* ===== 二级横幅 (共用) ===== */
.secondary-banner {
  background: linear-gradient(0deg, rgba(11,47,74,0.7), rgba(11,47,74,0.7)), url('../images/bar1.png');
  background-size: cover;
  background-position: center;
  color: white;
  padding: 40px 0;
  margin-bottom: 30px;
}
.banner-breadcrumb {
  font-size: 0.95rem;
  margin-bottom: 20px;
  color: rgba(255,255,255,0.7);
}
.banner-breadcrumb a {
  color: #ffb347;
  text-decoration: none;
}
.banner-breadcrumb i {
  margin: 0 8px;
  font-size: 0.8rem;
}
.banner-title {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.2;
  max-width: 900px;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}
.banner-title div {
  line-height: 1.3;
}
.banner-sub {
  margin-top: 15px;
}
.sub-line {
  font-size: 1.2rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}
.rect {
  display: inline-block;
  width: 10px;
  height: 1.2rem;
  background-color: #DFFF75;
  margin-right: 12px;
  flex-shrink: 0;
}
@media (max-width: 700px) {
  .banner-title {
    font-size: 2rem;
  }
  .sub-line {
    font-size: 1rem;
  }
}

/* ===== 首页特有 ===== */
.hero-swiper {
  width: 100%;
  margin-bottom: 40px;
  position: relative;
}
.hero-swiper .swiper-slide {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-swiper .swiper-slide img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}
.hero-swiper .swiper-slide:hover img {
  transform: scale(1.1);
}
.slide-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
  color: white;
  width: 100%;
  max-width: 1000px;
  padding: 20px;
  text-shadow: 0 4px 20px rgba(0,0,0,0.4);
}
.slide-content h1 {
  font-size: 60px;
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}
.slide-content p {
  font-size: 30px;
  margin-bottom: 2rem;
  opacity: 0.95;
  line-height: 1.4;
}
.btn {
  display: inline-block;
  background: #ffb347;
  color: #1e2a3a;
  font-weight: 600;
  padding: 12px 32px;
  text-decoration: none;
  font-size: 1.1rem;
  transition: 0.2s;
  box-shadow: 0 4px 14px rgba(0,0,0,0.1);
  border: none;
  cursor: pointer;
}
.btn:hover {
  background: #ffa01e;
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  border: 2px solid white;
  color: white;
  box-shadow: none;
}
.btn-outline:hover {
  background: white;
  color: #0b4f8b;
}
@media (max-width: 768px) {
  .slide-content h1 {
    font-size: 36px;
  }
  .slide-content p {
    font-size: 20px;
  }
}
.hero-swiper .swiper-pagination {
  bottom: 20px !important;
  left: 0 !important;
  right: 0 !important;
  text-align: center !important;
}
.hero-swiper .swiper-pagination-bullet {
  width: 20px !important;
  height: 20px !important;
  background: white !important;
  opacity: 0.8 !important;
  margin: 0 4px !important;
  border-radius: 50% !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
}
.hero-swiper .swiper-pagination-bullet-active {
  background: transparent !important;
  opacity: 1 !important;
}
.hero-swiper .swiper-pagination-bullet-active i {
  font-size: 20px;
  color: #ffb347;
}

.video-banner-section {
  margin: 0 0 40px 0;
}
.video-wrapper {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}
.video-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}
.video-wrapper:hover img {
  transform: scale(1.1);
}
.video-wrapper::after,
.news-card::after,
.ad-left::after,
.promo-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0) 80%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  z-index: 2;
}
.video-wrapper:hover::after,
.news-card:hover::after,
.ad-left:hover::after,
.promo-card:hover::after {
  opacity: 1;
}
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90px;
  height: 90px;
  background: rgba(255,255,255,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0b4f8b;
  font-size: 2.5rem;
  cursor: pointer;
  transition: 0.2s;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  border-radius: 50% !important;
  z-index: 3;
}
.play-btn:hover {
  background: white;
  transform: translate(-50%, -50%) scale(1.1);
}
@media (max-width: 600px) {
  .play-btn {
    width: 60px;
    height: 60px;
    font-size: 1.8rem;
  }
}

.why-choose-section {
  background-image: url('../images/a_xz_bg.png');
  background-size: 100%;
  background-position: top;
  background-repeat: no-repeat;
  padding: 40px 0 60px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.why-choose-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.section-title-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin: 0 0 24px;
  flex-wrap: wrap;
  gap: 20px;
  position: relative;
  z-index: 2;
}
.section-title {
  font-size: 2.6rem;
  font-weight: 600;
  color: #0b2b44;
  position: relative;
  padding-bottom: 12px;
  margin: 0;
}
.section-title:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 70px;
  height: 4px;
}
.right-text {
  text-align: right;
  font-size: 1.8rem;
  color: #1e2a3a;
  line-height: 1.5;
  padding-bottom: 12px;
}
.right-text p {
  margin: 0;
}
.right-text strong {
  color: #0b4f8b;
  font-weight: 600;
}
@media (max-width: 700px) {
  .section-title-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }
  .right-text {
    text-align: left;
    width: 100%;
  }
}

.feature-card {
  padding: 28px 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.02);
  border: 0px solid #eef2f6;
  transition: 0.15s;
}
.feature-card:hover {
  box-shadow: 0 12px 28px rgba(0,40,80,0.08);
}

.features-row1 {
  margin: 0 150px 30px 150px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  text-align: center;
}
.features-row1 .feature-stat {
  font-size: 36px;
  font-weight: 700;
  color: #0b4f8b;
  margin-bottom: 8px;
  line-height: 1.5;
}
.features-row1 .feature-desc {
  color: #2c3e50;
  font-size: 16px;
  line-height: 1.5;
  text-align: center;
}
.features-rows2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.features-rows2 .feature-card {
  display: flex;
  flex-direction: column;
}
.features-rows2 .card-row {
  display: flex;
  align-items: center;
  gap: 15px;
}
.features-rows2 .card-row i {
  font-size: 36px;
  width: 36px;
  height: 36px;
  color: #0b4f8b;
  flex-shrink: 0;
}
.features-rows2 .card-text {
  display: flex;
  flex-direction: column;
}
.features-rows2 .feature-stat {
  font-size: 18px;
  font-weight: 700;
  color: #0b4f8b;
  line-height: 1.4;
}
.features-rows2 .feature-desc {
  color: #2c3e50;
  font-size: 18px;
  line-height: 1.5;
}
@media (max-width: 1200px) {
  .features-row1 {
    margin: 0 100px 30px 100px;
  }
}
@media (max-width: 1000px) {
  .features-row1 {
    margin: 0 50px 30px 50px;
  }
  .features-row1, .features-rows2 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 800px) {
  .features-row1 {
    margin: 0 20px 30px 20px;
  }
}
@media (max-width: 600px) {
  .features-row1, .features-rows2 {
    grid-template-columns: 1fr;
  }
  .features-row1 {
    margin: 0 0 30px 0;
  }
}

.news-notice-row {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin: 40px 0 30px;
}
.news-column {
  flex: 0 0 calc(60% - 15px);
  min-width: 0;
}
.notice-column {
  flex: 0 0 calc(40% - 15px);
  min-width: 0;
}
@media (max-width: 900px) {
  .news-column, .notice-column {
    flex: 0 0 100%;
  }
}
.title-with-more {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 24px;
}
.title-with-more .section-title {
  margin: 0;
}
.more-link {
  color: #0b4f8b;
  font-weight: 500;
  text-decoration: none;
  font-size: 1rem;
  padding-bottom: 12px;
}
.more-link i {
  font-size: 0.8rem;
  margin-left: 4px;
}
.news-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.news-card {
  background: #ffffff;
  box-shadow: 0 6px 18px rgba(0,0,0,0.03);
  border: 1px solid #eef2f6;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
}
.news-card.featured {
  grid-column: 1 / -1;
}
.news-card img {
  width: 100%;
  transition: transform 0.5s ease;
  display: block;
}
.news-card:hover img {
  transform: scale(1.1);
}

.card-overlay {
  position: relative;
}
.card-overlay img {
  height: 280px;
  object-fit: cover;
}
.overlay-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 24px;
  color: white;
  z-index: 3;
}
.overlay-content .news-date {
  color: #000;
  font-size: 28px;
}
.overlay-content .news-title {
  color: #0E1646;
  font-size: 30px;
  border-left: #DFFF75 solid 30px;
  padding-left: 20px;
  width:380px;
  line-height:30px;
}
.overlay-content .news-summary {
  color: rgba(22,29,76,0.8);
}
.overlay-content .more-link {
  color: #ffb347;
}
.card-normal img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.card-content {
  padding: 24px;
  z-index: 3;
  position: relative;
  background: white;
}
.news-date {
  color: #0b4f8b;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 8px;
}
.news-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #0b2b44;
}
.news-summary {
  color: #3e5569;
  margin-bottom: 16px;
  font-size: 0.95rem;
  flex: 1;
}
.more-link i {
  transition: 0.2s;
}
.more-link:hover i {
  transform: translateX(4px);
}

.notice-panel {
  background: #f8fafd;
  padding: 24px 20px;
  border: 1px solid #e6edf4;
  height: fit-content;
}
.notice-panel h3 {
  font-size: 1.5rem;
  color: #0b2b44;
  position: relative;
  padding-bottom: 12px;
  margin: 0;
}
.notice-panel h3:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 70px;
  height: 4px;
  background: #ffb347;
}
.notice-list {
  list-style: none;
  margin-top: 24px;
}
.notice-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px dashed #d0ddee;
}
.notice-list li a{
color: #0b2b44;
text-decoration:none;
}
.notice-list li a:hover{
color: #0b2b44;
text-decoration:none;
}
.notice-list li:last-child {
  border-bottom: none;
}
.notice-date {
  background: #e0e9f2;
  color: #0b4f8b;
  font-weight: 600;
  padding: 12px 16px;
  min-width: 100px;
  text-align: center;
  line-height: 1.3;
  display: flex;
  flex-direction: column;
  white-space: nowrap;
}
.notice-date .year-month {
  font-size: 18px;
  font-weight: 500;
}
.notice-date .day {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2;
}
.notice-text {
  color: #1e3a5c;
  font-weight: 700;
  font-size: 18px;
  font-family: 'Microsoft YaHei','微软雅黑','Inter',sans-serif;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hero-ad {
  display: flex;
  flex-wrap: wrap;
  background: #f0f7fe;
  overflow: hidden;
  margin: 60px 0 30px;
  box-shadow: 0 20px 40px rgba(0,20,40,0.1);
  position: relative;
}
.ad-left {
  flex: 1 1 50%;
  min-width: 280px;
  position: relative;
  overflow: hidden;
}
.ad-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.ad-left:hover img {
  transform: scale(1.1);
}
.ad-left .play-btn {
  width: 70px;
  height: 70px;
  font-size: 2rem;
  z-index: 3;
}
.ad-right {
  flex: 1 1 50%;
  padding: 50px 40px;
  background: linear-gradient(135deg, #0b2f4a, #123b5e);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.ad-right::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 150px;
  height: 150px;
  background-image: url('../images/b_jz-2.png');
  background-size: cover;
  background-position: center;
  opacity: 0.2;
  pointer-events: none;
  z-index: -1;
}
.ad-line1 {
  font-size: 30px;
  font-weight: 300;
  margin-bottom: 10px;
  color: #ffd966;
  position: relative;
  z-index: 2;
}
.ad-line2 {
  font-size: 60px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  color: white;
  position: relative;
  z-index: 2;
}
.ad-line3 {
  font-size: 1.1rem;
  margin-bottom: 30px;
  opacity: 0.9;
  max-width: 600px;
  position: relative;
  z-index: 2;
}
.ad-btn {
  background: #ffb347;
  color: #0b2b44;
  border: none;
  padding: 14px 36px;
  font-weight: 700;
  font-size: 1.2rem;
  align-self: flex-start;
  text-decoration: none;
  transition: 0.2s;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  position: relative;
  z-index: 2;
}
.ad-btn:hover {
  background: #ffc15e;
  transform: scale(1.02);
}
@media (max-width: 800px) {
  .hero-ad {
    flex-direction: column;
  }
  .ad-right {
    padding: 40px 24px;
  }
  .ad-line1 {
    font-size: 24px;
  }
  .ad-line2 {
    font-size: 40px;
  }
  .ad-right::after {
    width: 100px;
    height: 100px;
  }
}

.promo-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin: 40px 0;
}
.promo-card {
  background: linear-gradient(145deg, #0b2f4a, #123b5e);
  color: white;
  padding: 0px 0px;
  position: relative;
  overflow: hidden;
}
.promo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.promo-card:hover img {
  transform: scale(1.1);
}
.promo-card .play-btn {
  width: 70px;
  height: 70px;
  font-size: 2rem;
  z-index: 3;
}
.promo-card h4 {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 16px;
}
.promo-btn {
  background: #ffb347;
  color: #0b2b44;
  font-weight: 600;
  padding: 12px 24px;
  text-decoration: none;
  display: inline-block;
}
.brochure-card {
  background: #fff;
  border: 2px solid #ffb347;
  padding: 24px;
  text-align: center;
}
.brochure-card h4 {
  font-size: 1.5rem;
  color: #0b2b44;
}
.download-banner {
  background: #faf5e9;
  padding: 20px 32px;
  margin: 40px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* ===== 学院简介特有 ===== */
.tag-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  background: #ffffffd9;
  padding: 16px 24px;
  border-radius: 30px !important;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  margin-bottom: 40px;
  border: 1px solid #e0eaf2;
}
.tag-item {
  padding: 8px 22px;
  background: #f0f7fe;
  color: #0b4f8b;
  font-weight: 600;
  text-decoration: none;
  transition: 0.2s;
  font-size: 1rem;
  border: 1px solid transparent;
}
.tag-item:hover {
  background: #ffb347;
  color: #0b2b44;
}
.intro-text {
  font-size: 1.3rem;
  line-height: 1.8;
  background: #eef4fa;
  padding: 40px;
  margin: 40px 0;
  border-left: 10px solid #ffb347;
}
.card-swiper {
  margin: 40px 0 60px;
  padding: 0 10px 50px;
  position: relative;
}
.card-swiper .swiper-slide {
  height: auto;
}
.card-swiper .feature-card {
  background: white;
  border: 1px solid #eef2f6;
  padding: 30px 20px;
  height: 100%;
  box-shadow: 0 10px 25px rgba(0,0,0,0.03);
  position: relative;
}
.card-swiper .feature-card .card-icon {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 1.8rem;
  color: #ffb347;
  opacity: 0.6;
}
.card-swiper .feature-card .feature-stat {
  font-size: 2.8rem;
  font-weight: 700;
  color: #0b4f8b;
  margin-bottom: 10px;
}
.card-swiper .feature-card .feature-desc {
  font-size: 1.1rem;
  color: #2c3e50;
}
.card-swiper .swiper-button-prev,
.card-swiper .swiper-button-next {
  top: auto;
  bottom: 20px;
  width: 44px;
  height: 44px;
  margin-top: 0;
  background: rgba(255,255,255,0.9);
  border-radius: 50% !important;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.card-swiper .swiper-button-prev {
  right: 70px;
  left: auto;
}
.card-swiper .swiper-button-next {
  right: 20px;
  left: auto;
}
.card-swiper .swiper-button-prev:after,
.card-swiper .swiper-button-next:after {
  font-size: 1.2rem;
  color: #0b4f8b;
}
.course-row {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin: 50px 0;
  background: #f9fcff;
  border: 1px solid #dde9f5;
}
.course-text {
  flex: 1 1 45%;
  padding: 40px;
  min-width: 280px;
}
.course-text h3 {
  font-size: 2.2rem;
  color: #0b2b44;
  margin-bottom: 20px;
}
.course-text p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  word-break: break-word;
}
.course-text ul {
  list-style: none;
}
.course-text li {
  margin-bottom: 12px;
  font-weight: 500;
}
.course-text i {
  color: #ffb347;
  width: 24px;
}
.course-image {
  flex: 1 1 45%;
  min-height: 300px;
  background: #e6edf6;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.course-image img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  background: #e6edf6;
  transition: transform 0.3s ease;
}
.course-image img:hover {
  transform: scale(1.1);
}
.program-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 40px 0;
}
.program-card {
  position: relative;
  overflow: hidden;
  background: #f0f4fa;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  transition: transform 0.3s;
}
.program-card:hover {
  transform: translateY(-5px);
}
.program-card img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  background: #f0f4fa;
  transition: transform 0.3s ease;
}
.program-card img:hover {
  transform: scale(1.1);
}
.program-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.8) 0%, transparent 100%);
  padding: 20px;
  color: white;
}
.program-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}
.program-degree-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.program-degree {
  display: inline-block;
  background: rgba(255,255,255,0.9);
  color: #0b2b44;
  padding: 6px 14px;
  border-radius: 10px !important;
  font-size: 1rem;
  font-weight: 600;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.program-link {
  color: #ffb347;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  margin-left: 10px;
  white-space: nowrap;
}
.program-link i {
  transition: 0.2s;
}
.program-link:hover i {
  transform: translateX(5px);
}
@media (max-width: 900px) {
  .program-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .program-grid {
    grid-template-columns: 1fr;
  }
}
.why-best {
  margin: 60px 0;
}
.why-best h2 {
  font-size: 2.6rem;
  color: #0b2b44;
  margin-bottom: 30px;
  text-align: center;
}
.row-first {
  margin: 0 60px 30px 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.row-first .feature-card {
  text-align: center;
  background: white;
  padding: 28px 20px;
}
.row-first .feature-stat {
  font-size: 36px;
  font-weight: 700;
  color: #0b4f8b;
}
.rows-icon {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.rows-icon .feature-card {
  display: flex;
  align-items: center;
  gap: 15px;
  background: white;
  padding: 24px;
}
.rows-icon .feature-card i {
  font-size: 40px;
  color: #0b4f8b;
  width: 50px;
}
.rows-icon .card-text {
  display: flex;
  flex-direction: column;
}
.rows-icon .card-text strong {
  font-size: 1.2rem;
  font-weight: 700;
  color: #0b2b44;
}
.rows-icon .card-text span {
  font-size: 1rem;
  color: #2c3e50;
}
@media (max-width: 1000px) {
  .row-first {
    margin: 0 30px 30px 30px;
  }
}
@media (max-width: 800px) {
  .row-first {
    margin: 0 15px 30px 15px;
  }
  .row-first, .rows-icon {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .row-first, .rows-icon {
    grid-template-columns: 1fr;
  }
  .row-first {
    margin: 0 0 30px 0;
  }
}
.cta-banner {
  position: relative;
  background-image: url('../images/b_jz_1.png');
  background-size: cover;
  background-position: center;
  height: 400px;
  margin: 60px 0;
  display: flex;
  align-items: center;
  color: white;
}
.cta-overlay {
  background: linear-gradient(90deg, rgba(11,47,74,0.9) 0%, rgba(0,0,0,0.4) 100%);
  padding: 60px 40px;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cta-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 10px;
}
.cta-sub {
  font-size: 1.3rem;
  margin-bottom: 25px;
  max-width: 600px;
}
.cta-btn {
  background: #ffb347;
  color: #0b2b44;
  padding: 14px 36px;
  font-weight: 700;
  font-size: 1.2rem;
  text-decoration: none;
  display: inline-block;
  align-self: flex-start;
  border: none;
}
@media (max-width: 600px) {
  .cta-title {
    font-size: 2.2rem;
  }
}

/* ===== 本科教育特有 ===== */
.split-hero {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin: 50px 0;
}
.split-hero-left {
  flex: 1 1 45%;
  min-width: 300px;
}
.split-hero-left .small-title {
  font-size: 18px;
  color: #0b4f8b;
  font-weight: 600;
  margin-bottom: 5px;
}
.split-hero-left .large-title {
  font-size: 30px;
  font-weight: 700;
  color: #0b2b44;
  margin-bottom: 20px;
}
.split-hero-left .desc {
  font-size: 1rem;
  color: #2c3e50;
  margin-bottom: 10px;
  line-height: 1.6;
}
.btn-group {
  display: flex;
  gap: 16px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.btn-outline-sm {
  padding: 10px 24px;
  border: 2px solid #0b4f8b;
  color: #0b4f8b;
  font-weight: 600;
  text-decoration: none;
  transition: 0.2s;
  display: inline-block;
}
.btn-outline-sm:hover {
  background: #0b4f8b;
  color: white;
}
.split-hero-right {
  flex: 1 1 45%;
  min-width: 300px;
}
.video-placeholder {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #b0c6dd url('../images/v_1.png') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.play-btn-small {
  width: 70px;
  height: 70px;
  background: rgba(255,255,255,0.9);
  border-radius: 50% !important;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0b4f8b;
  font-size: 2rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: 0.2s;
  cursor: pointer;
}
.play-btn-small:hover {
  transform: scale(1.05);
}
.program-cards {
  display: flex;
  gap: 40px;
  justify-content: space-between;
  margin: 60px 0;
}
.program-cards .program-item {
  flex: 1;
  position: relative;
  overflow: hidden;
  background: #f0f4fa;
}
.program-cards .program-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s;
}
.program-cards .program-item:hover img {
  transform: scale(1.05);
}
.program-cards .program-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.8) 0%, transparent 100%);
  padding: 20px;
  color: white;
}
.program-cards .program-name {
  font-size: 1.5rem;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
  margin-bottom: 10px;
}
.program-cards .program-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.program-cards .program-degree-badge {
  background: rgba(255,255,255,0.9);
  color: #0b2b44;
  padding: 6px 14px;
  font-weight: 600;
  font-size: 0.9rem;
}
.program-cards .program-arrow {
  color: #ffb347;
  font-size: 1.2rem;
  text-decoration: none;
}
.program-cards .program-arrow i {
  transition: 0.2s;
}
.program-cards .program-arrow:hover i {
  transform: translateX(5px);
}
.cta-image-banner {
  background: linear-gradient(0deg, rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('../images/b_jz_1.png');
  background-size: cover;
  background-position: center;
  padding: 60px 40px;
  margin: 60px 0;
  display: flex;
  justify-content: flex-end;
}
.cta-text-box {
  background: #DFFF75;
  padding: 40px;
  max-width: 500px;
}
.cta-text-box .small-title {
  font-size: 1rem;
  color: #0b4f8b;
  font-weight: 600;
  margin-bottom: 5px;
}
.cta-text-box .large-title {
  font-size: 30px;
  font-weight: 700;
  color: #0b2b44;
  margin-bottom: 15px;
}
.cta-text-box p {
  margin-bottom: 10px;
  color: #2c3e50;
}
.cta-text-box .more-link {
  color: #0b4f8b;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  margin-top: 15px;
}
.cta-text-box .more-link i {
  transition: 0.2s;
}
.cta-text-box .more-link:hover i {
  transform: translateX(5px);
}
.meet-split {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin: 60px 0;
}
.meet-left {
  flex: 0 0 30%;
  min-width: 280px;
}
.meet-left .small-title {
  font-size: 1rem;
  color: #0b4f8b;
  font-weight: 600;
  margin-bottom: 10px;
}
.meet-left .big-text {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.2;
  color: #0b2b44;
  margin-bottom: 20px;
}
.meet-left .desc {
  color: #2c3e50;
  margin-bottom: 20px;
}
.meet-left .btn-oval {
  display: inline-block;
  padding: 8px 20px;
  background: #ffb347;
  color: #0b2b44;
  border-radius: 40px !important;
  font-weight: 600;
  text-decoration: none;
  margin-right: 8px;
  margin-bottom: 8px;
  font-size: 0.9rem;
}
.meet-right {
  flex: 0 0 65%;
  min-width: 300px;
}
.leader-swiper {
  width: 100%;
  overflow: hidden;
}
.leader-card {
  background: white;
  border: 10px solid #eef2f6;
  overflow: hidden;
  position: relative;
  height: 100%; 
  border-radius: 15%!important; /* 卡片整体圆角15% */
}
.leader-card img {
  width: 100%;
  height: 290px;
  object-fit: cover;
  display: block;

}
.leader-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.8) 0%, transparent 100%);
  padding: 20px;
  color: white;
}
.leader-name {
  font-size: 1.3rem;
  font-weight: 700;
}
.leader-title {
  font-size: 0.9rem;
  opacity: 0.9;
}
.leader-swiper .swiper-pagination-bullet {
  background: #b0c6dd;
  opacity: 1;
}
.leader-swiper .swiper-pagination-bullet-active {
  background: #0b4f8b;
}
/* ===== 本科教育特有 ===== */
/* ... 原有样式保持不变 ... */

.leader-swiper {
  position: relative;
  padding-bottom: 50px; /* 为箭头和分页器预留空间 */
}

/* 分页器移到右下角 */
.leader-swiper .swiper-pagination {
  bottom: 10px !important;
  right: 80px !important;
  left: auto !important;
  width: auto !important;
}

/* 导航箭头样式 */
.leader-swiper .swiper-button-prev,
.leader-swiper .swiper-button-next {
  top: auto;
  bottom: 10px;
  width: 36px;
  height: 36px;
  background: white;
  border-radius: 50% !important;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  margin-top: 0;
}

.leader-swiper .swiper-button-prev {
  right: 50px; /* 位于分页器左边 */
  left: auto;
}

.leader-swiper .swiper-button-next {
  right: 10px; /* 位于最右边 */
  left: auto;
}

.leader-swiper .swiper-button-prev:after,
.leader-swiper .swiper-button-next:after {
  font-size: 1rem;
  color: #0b4f8b;
}

/* 保持原有卡片圆角 */
.leader-card {
  border-radius: 15% !important;
}


.image-gallery {
  margin: 60px 0;
}
.gallery-row1 {
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
}
.gallery-left {
  flex: 1;
  overflow: hidden;
}
.gallery-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.gallery-left:hover img {
  transform: scale(1.05);
}
.gallery-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.info-card-solid {
  background: #0b4f8b;
  color: white;
  padding: 30px;
  text-align: center;
}
.info-card-solid h4 {
  font-size: 1.6rem;
  margin-bottom: 10px;
}
.info-card-solid p {
  font-size: 1rem;
  opacity: 0.9;
}
.video-small {
  position: relative;
  overflow: hidden;
}
.video-small img {
  width: 100%;
  height: auto;
  display: block;
}
.play-icon-tiny {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(255,255,255,0.9);
  border-radius: 50% !important;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0b4f8b;
  font-size: 1.6rem;
  cursor: pointer;
}
.gallery-row2 {
  display: flex;
  gap: 30px;
}
.info-card-image {
  flex: 1;
  position: relative;
  overflow: hidden;
}
.info-card-image img {
  width: 100%;
  height: auto;
  display: block;
}
.image-overlay-text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.7), transparent);
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: white;
}
.image-overlay-text span {
  font-weight: 600;
  font-size: 1.1rem;
}
.image-overlay-text a {
  color: #ffb347;
  font-size: 1.2rem;
}
.contact-split {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin: 60px 0;
  padding: 40px;
  background: #eef4fa;
}
.contact-left {
  flex: 1 1 45%;
}
.contact-left h3 {
  font-size: 1.2rem;
  color: #0b4f8b;
  margin-bottom: 10px;
}
.contact-left h2 {
  font-size: 2rem;
  color: #0b2b44;
  margin-bottom: 20px;
}
.contact-left .btn-oval {
  display: inline-block;
  padding: 14px 32px;
  background: #ffb347;
  color: #0b2b44;
  border-radius: 40px !important;
  font-weight: 700;
  text-decoration: none;
  margin-top: 20px;
}
.contact-right {
  flex: 1 1 45%;
}
.contact-right h4 {
  font-size: 1.3rem;
  color: #0b2b44;
  margin-bottom: 15px;
}
.contact-right p {
  margin-bottom: 10px;
  color: #2c3e50;
  font-size: 1.1rem;
}
.contact-right i {
  width: 30px;
  color: #0b4f8b;
}

/* ===== 师资队伍特有 ===== */
.metrics-swiper {
  margin: 40px 0 50px;
  padding-bottom: 50px;
  position: relative;
}
.metrics-swiper .swiper-slide {
  height: auto;
}
.metric-card {
  background: white;
  border: 1px solid #eef2f6;
  padding: 30px 20px;
  position: relative;
  box-shadow: 0 8px 20px rgba(0,0,0,0.02);
  text-align: center;
  height: 100%;
}
.metric-icon {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 1.8rem;
  color: #ffb347;
  opacity: 0.8;
}
.metric-number {
  font-size: 3rem;
  font-weight: 700;
  color: #0b4f8b;
  line-height: 1.2;
  margin-bottom: 8px;
}
.metric-label {
  font-size: 1rem;
  color: #2c3e50;
}
.metrics-swiper .swiper-pagination {
  bottom: 10px !important;
  right: 80px !important;
  left: auto !important;
  width: auto !important;
}
.metrics-swiper .swiper-button-prev,
.metrics-swiper .swiper-button-next {
  top: auto;
  bottom: 10px;
  width: 36px;
  height: 36px;
  background: white;
  border-radius: 50% !important;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.metrics-swiper .swiper-button-prev {
  right: 50px;
  left: auto;
}
.metrics-swiper .swiper-button-next {
  right: 10px;
  left: auto;
}
.metrics-swiper .swiper-button-prev:after,
.metrics-swiper .swiper-button-next:after {
  font-size: 1rem;
  color: #0b4f8b;
}
.tag-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 40px 0 30px;
  justify-content: center;
}
.tag-btn {
  padding: 10px 28px;
  background: #f0f7fe;
  color: #0b4f8b;
  font-weight: 600;
  border: 1px solid #d0ddee;
  cursor: pointer;
  transition: 0.2s;
}
.tag-btn.active {
  background: #0b4f8b;
  color: white;
  border-color: #0b4f8b;
}
.teacher-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin: 20px 0;
}
.teacher-card {
  position: relative;
  overflow: hidden;
  background: #f0f4fa;
  aspect-ratio: 10 / 4;
}
.teacher-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.3s;
}
.teacher-card:hover img {
  transform: scale(1.05);
}
.teacher-overlay {
  position: absolute;
  top: 0px;
  left: 400px;
  right: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, transparent 100%);
  padding: 15px;
  color: white;
  display: flex;
  flex-direction: column;
  text-align: right;
}
.teacher-name {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 5px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}
.teacher-desc {
  font-size: 0.9rem;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}
.more-circle {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  background: #ffb347;
  border-radius: 50% !important;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0b2b44;
  font-size: 1rem;
  text-decoration: none;
  transition: 0.2s;
  z-index: 2;
}
.more-circle:hover {
  transform: scale(1.1);
}
.teacher-list {
  display: none;
}
.teacher-list.active {
  display: block;
}
.pagination-wrapper {
  display: flex;
  justify-content: flex-end;
  margin: 30px 0 50px;
}
.pagination {
  display: flex;
  gap: 8px;
}
.page-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border: 1px solid #d0ddee;
  color: #0b4f8b;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s;
}
.page-btn:hover,
.page-btn.active {
  background: #0b4f8b;
  color: white;
  border-color: #0b4f8b;
}

/* ===== 通知公告特有 ===== */
.page-header {
  margin: 40px 0 30px;
}
.page-header h1 {
  font-size: 3rem;
  font-weight: 700;
  color: #0b2b44;
}
.notice-list {
 /* background: white;*/
  border-bottom: 1px solid #eef2f6;
  margin-bottom: 40px;
}
.notice-item {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  padding: 24px 30px;
  border-bottom: 1px solid #eef2f6;
  transition: 0.2s;
}
.notice-item:last-child {
  border-bottom: none;
}
.notice-item:hover {
  background: #f9fcff;
}
.notice-list .notice-date {
  min-width: 100px;
  background: #e0e9f2;
  color: #0b4f8b;
  font-weight: 600;
  padding: 12px 0;
  text-align: center;
  line-height: 1.3;
  display: flex;
  flex-direction: column;
}
.notice-list .notice-date .year-month {
  font-size: 18px;
  font-weight: 500;
}
.notice-list .notice-date .day {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
}
.notice-title {
  flex: 1;
  font-size: 1.2rem;
  font-weight: 600;
  color: #1e3a5c;
  text-decoration: none;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.2s;
}
.notice-title:hover {
  color: #0b4f8b;
}
.notice-title i {
  margin-left: 8px;
  font-size: 0.9rem;
  opacity: 0.7;
}
@media (max-width: 700px) {
  .notice-item {
    flex-direction: column;
    gap: 15px;
    padding: 20px;
  }
  .notice-list .notice-date {
    flex-direction: row;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    min-width: auto;
  }
  .notice-list .notice-date .year-month {
    font-size: 16px;
  }
  .notice-list .notice-date .day {
    font-size: 28px;
  }
  .page-header h1 {
    font-size: 2.4rem;
  }
}
@media (max-width: 600px) {
  .pagination-wrapper {
    justify-content: center;
  }
}

/* ===== 党建党群特有 ===== */
.party-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 40px 0 20px;
}
.party-card {
  background: white;
  border: 1px solid #eef2f6;
  box-shadow: 0 8px 20px rgba(0,0,0,0.03);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.party-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(0,40,80,0.1);
}
.party-card .card-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.party-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.party-card .card-image img:hover {
  transform: scale(1.1);
}
.party-card .card-content {
  padding: 20px;
}
.party-card .card-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #0b2b44;
  margin-bottom: 10px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.party-card .card-date {
  color: #0b4f8b;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 5px;
}
.party-card .card-summary {
  color: #3e5569;
  font-size: 0.95rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (max-width: 900px) {
  .party-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .party-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== 新闻详情特有 ===== */
.news-detail {
  background: white;
  border: 1px solid #eef2f6;
  padding: 40px;
  margin: 40px 0;
}
.news-detail img{
	width:100%;
}
.news-detail h1 {
  font-size: 2.4rem;
  font-weight: 700;
  color: #0b2b44;
  margin-bottom: 20px;
  line-height: 1.3;
}
.news-meta {
  color: #0b4f8b;
  font-weight: 600;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eef2f6;
}
.news-content p {
  font-size: 1.1rem;
  color: #2c3e50;
  margin-bottom: 20px;
  line-height: 1.8;
}
.more-news {
  margin: 60px 0;
}
.more-news h2 {
  font-size: 2rem;
  color: #0b2b44;
  margin-bottom: 30px;
}
.news-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.news-card {
  background: white;
  border: 1px solid #eef2f6;
  overflow: hidden;
  transition: 0.3s;
}
.news-card:hover {
  box-shadow: 0 12px 28px rgba(0,40,80,0.1);
  transform: translateY(-5px);
}
.news-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}
.news-card-content {
  padding: 20px;
}
.news-card-date {
  color: #0b4f8b;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 8px;
}
.news-card-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #0b2b44;
  margin-bottom: 10px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-card-summary {
  color: #3e5569;
  font-size: 0.95rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.read-more {
  color: #0b4f8b;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  margin-top: 12px;
}
.read-more i {
  transition: 0.2s;
  margin-left: 4px;
}
.read-more:hover i {
  transform: translateX(5px);
}
@media (max-width: 900px) {
  .more-news .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .more-news .news-grid {
    grid-template-columns: 1fr;
  }
  .news-detail {
    padding: 20px;
  }
  .news-detail h1 {
    font-size: 1.8rem;
  }
}
 /* ===== 领导列表区域 ===== */
    .leader2-page {
      padding: 60px 0;
    }
    .page-title {
      font-size: 2.5rem;
      font-weight: 700;
      color: #0b2b44;
      margin-bottom: 40px;
      position: relative;
      padding-bottom: 12px;
    }
    .page-title:after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 80px;
      height: 4px;
      background: #ffb347;
    }
    .leader2-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 30px;
    }
    .leader2-card {
      background: #ffffff;
      border: 1px solid #eef2f6;
      display: flex;
      flex-direction: row;
      align-items: center;
      gap: 24px;
      padding: 28px;
      transition: 0.2s;
      position: relative;
      overflow: hidden;
    }
    .leader2-card:hover {
      box-shadow: 0 12px 28px rgba(0, 40, 80, 0.08);
    }
    /* 光线蒙版效果 */
    .leader2-card::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0) 80%);
      opacity: 0;
      transition: opacity 0.5s ease;
      pointer-events: none;
      z-index: 2;
    }
    .leader2-card:hover::after {
      opacity: 1;
    }
    .leader2-avatar {
      flex-shrink: 0;
      width: 120px;
      height: 160px;
      background: #f0f5fa;
      overflow: hidden;
    }
    .leader2-avatar img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.5s ease;
    }
    .leader2-card:hover .leader-avatar img {
      transform: scale(1.1);
    }
    .leader2-info {
      flex: 1;
    }
    .leader2-name {
      font-size: 1.5rem;
      font-weight: 700;
      color: #0b2b44;
      margin-bottom: 6px;
    }
    .leader2-title {
      font-size: 1rem;
      color: #0b4f8b;
      font-weight: 600;
      margin-bottom: 12px;
    }
    .leader2-bio {
      font-size: 0.95rem;
      color: #3e5569;
      line-height: 1.5;
    }
    @media (max-width: 900px) {
      .leader2-grid {
        grid-template-columns: 1fr;
      }
      .leader2-card {
        flex-direction: column;
        text-align: center;
      }
      .leader2-info {
        text-align: center;
      }
    }
/* ===== 页脚 ===== */
.footer-links {
  background: #0E1646;
  margin-top: 60px;
  padding: 50px 0 30px;
  color: white;
}
.footer-links,
.footer-links h5,
.footer-links p,
.footer-links a,
.footer-links .social-icons a {
  color: white !important;
}
.footer-links .social-icons a {
  background: rgba(255,255,255,0.2);
  box-shadow: none;
}
.footer-links .social-icons a:hover {
  background: #ffb347;
  color: #0E1646 !important;
}
.footer-links .copyright {
  border-top-color: rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.8);
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
  gap: 40px;
}
.footer-col h5 {
  font-size: 1.2rem;
  margin-bottom: 22px;
}
.footer-col p,
.footer-col a {
  margin-bottom: 10px;
  display: block;
  text-decoration: none;
  font-size: 0.95rem;
}
.footer-col i {
  width: 24px;
  color: inherit;
}
.social-icons {
  display: flex;
  gap: 16px;
  margin-top: 16px;
  overflow: hidden;
}
.social-icons img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  background: white;
  transition: transform 0.3s ease;
}
.social-icons img:hover {
  transform: scale(1.1);
}
.copyright {
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.2);
  margin-top: 40px;
  padding-top: 25px;
  font-size: 0.9rem;
}
@media (max-width: 600px) {
  .section-title {
    font-size: 1.8rem;
  }
  .promo-row {
    grid-template-columns: 1fr;
  }
  .ad-line2 {
    font-size: 32px;
  }
}