/* ============================================
   天辰司法鉴定中心 - 首页专用样式 v3
   ============================================ */
html { max-width: 100vw; -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
body { overflow-x: hidden; max-width: 100vw; }

/* ============================================
   1. BANNER 轮播
   ============================================ */
.hero-banner {
  margin-top: 80px;
  position: relative;
  height: 580px;
  overflow: hidden;
}
.hero-slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  opacity: 0;
  transition: opacity 1.2s cubic-bezier(.4,0,.2,1), transform 1.2s cubic-bezier(.4,0,.2,1);
  display: flex;
  align-items: center;
  transform: scale(1.01);
}
.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}
.hero-slide:nth-child(2) { background: linear-gradient(135deg, var(--secondary-color) 0%, #004d40 40%, var(--primary-color) 100%); }
.hero-slide:nth-child(3) { background: linear-gradient(135deg, #004d40 0%, var(--primary-color) 40%, var(--secondary-color) 100%); }
.hero-slide:nth-child(4) { background: linear-gradient(135deg, var(--secondary-color) 0%, #004456 40%, #006B7D 100%); }

.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.3);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  backdrop-filter: blur(8px);
}
.btn-hero:hover {
  background: #fff;
  color: var(--primary);
  border-color: #fff;
  box-shadow: 0 8px 30px rgba(255,255,255,0.2);
}

.hero-content {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  color: #fff;
  text-align: center;
}
.hero-text { max-width: 720px; }
.hero-title {
  font-size: 44px !important;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(30px);
  animation: heroFadeUp 0.8s ease forwards;
}
.hero-title p { font-size: inherit !important; margin: 0; }
.hero-title span { font-size: inherit !important; }
.hero-subtitle {
  font-size: 17px !important;
  line-height: 1.9;
  opacity: 0;
  margin-bottom: 32px;
  transform: translateY(20px);
  animation: heroFadeUp 0.8s ease 0.25s forwards;
}
.hero-subtitle p { font-size: inherit !important; margin: 0; }
.hero-subtitle span { font-size: inherit !important; }
.hero-text .btn {
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeUp 0.8s ease 0.45s forwards;
}
@keyframes heroFadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* 右侧图片区隐藏 */
.hero-image { display: none; }
.hero-image .placeholder-img { display: none; }

.hero-indicators {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  gap: 10px;
  z-index: 15;
  padding: 6px 14px;
  margin-top: 0;
  background: rgba(0,46,59,0.25);
  border-radius: 20px;
  backdrop-filter: blur(4px);
}
.hero-dot {
  width: 11px; height: 11px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.5);
}
.hero-dot.active {
  background: #fff;
  width: 34px;
  border-radius: 6px;
  border-color: #fff;
  box-shadow: 0 0 8px rgba(255,255,255,0.5);
}
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px; height: 48px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(6px);
  border-radius: 50%;
  color: #fff;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition);
}
.hero-arrow:hover { background: rgba(255,255,255,0.25); }
.hero-arrow.prev { left: 24px; }
.hero-arrow.next { right: 24px; }

/* ============================================
   2. 预约/咨询条
   ============================================ */
/* ============================================
   2.5 预约咨询悬浮条 - 浮于Banner与服务之间
   ============================================ */
.booking-float {
  position: relative;
  z-index: 10;
  margin-top: 0;
  margin-bottom: 0;
  padding: 0;
  background: #007564;
}
.booking-card {
  max-width: 100%;
  margin: 0 auto;
  background: transparent;
  border-radius: 0;
  padding: 26px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  box-shadow: none;
  border: none;
}
.booking-left {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.booking-icon {
  width: 54px; height: 54px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 24px;
  border: 2px solid rgba(255,255,255,0.3);
}
.booking-intro .booking-title {
  font-size: 18px !important;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
  letter-spacing: 0.5px;
  line-height: 1.4;
}
.booking-intro .booking-title p,
.booking-intro .booking-title span {
  font-size: inherit !important;
  color: inherit;
}
.booking-intro .booking-sub {
  font-size: 13px !important;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
}
.booking-intro .booking-sub p,
.booking-intro .booking-sub span {
  font-size: inherit !important;
  color: inherit;
}
.booking-fields {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}
.booking-fields select,
.booking-fields input[type="datetime-local"],
.booking-fields input[type="text"].booking-datetime {
  flex: 1;
  min-width: 160px;
  padding: 11px 16px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 10px;
  font-size: 14px;
  color: #fff;
  background: rgba(255,255,255,0.12);
  transition: var(--transition);
  box-sizing: border-box;
  -webkit-appearance: none;
}
.booking-fields input[type="datetime-local"]::-webkit-calendar-picker-indicator {
  filter: invert(1);
  cursor: pointer;
}
.booking-fields select:focus,
.booking-fields input:focus {
  border-color: rgba(255,255,255,0.6);
  box-shadow: 0 0 0 3px rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.2);
}
.booking-fields select option {
  color: var(--secondary);
  background: #fff;
}
.btn-glass {
  background: #fff;
  border: none;
  color: #00994D;
  padding: 11px 24px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.btn-glass:hover {
  background: #f0f0f0;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(0,0,0,0.15);
}
.booking-submit {
  background: #fff !important;
  color: #00994D !important;
  border: none !important;
  padding: 11px 28px !important;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.booking-submit:hover {
  background: #f0f0f0 !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(0,0,0,0.15);
}

/* ====3. 鉴定服务 - 参考999专业卡片样式
   ============================================ */
.services-section { padding: 60px 0; background: #f0fcf8; }
.services-section .section-title { justify-content: center; text-align: center; align-items: center; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.service-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
  cursor: pointer;
  color: inherit;
  display: block;
  text-decoration: none;
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 32px rgba(0,46,59,0.12);
  border-color: var(--primary);
}
.service-card .svc-img {
  height: 200px;
  position: relative;
  overflow: hidden;
  background: #f0f4f8;
}
.svc-img .svc-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(2px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
  z-index: 2;
}
.svc-overlay span {
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 10px 24px;
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 8px;
}
.service-card:hover .svc-overlay { opacity: 1; }
.service-card .svc-info { padding: 22px 20px; }
.service-card h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.service-card h4 .arrow {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(0,153,76,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #999;
  transition: var(--transition);
}
.service-card:hover h4 .arrow {
  background: var(--primary);
  color: #fff;
  transform: translateX(4px);
}
.service-card:hover h4 { color: var(--primary); }
.svc-desc {
  font-size: 13px;
  color: var(--text-gray);
  line-height: 1.8;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.service-card:hover .svc-desc { color: #555; }

/* ============================================
   4. 关于天辰
   ============================================ */
.about-section { padding: 60px 0; background: #f0fcf8; }
.about-section .section-title { justify-content: center; text-align: center; align-items: center; }
.about-content {
  display: grid;
  grid-template-columns: 0.9fr 1.3fr;
  gap: 0;
  align-items: stretch;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
}
.about-visual {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.about-visual-card {
  background: linear-gradient(135deg, var(--secondary) 0%, #004d40 100%);
  border-radius: 20px;
  padding: 56px 36px;
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.about-visual-card::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  background: rgba(0,153,76,0.15);
  border-radius: 50%;
}
.about-visual-card .av-badge {
  display: inline-block;
  background: rgba(0,153,76,0.25);
  border: 1px solid rgba(0,153,76,0.4);
  color: #4de6a3;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 16px;
  border-radius: 20px;
  margin-bottom: 24px;
}
.about-visual-card .av-icon {
  font-size: 48px;
  color: var(--primary);
  margin-bottom: 18px;
}
.about-visual-card h4 { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.about-visual-card p { font-size: 14px; color: rgba(255,255,255,0.6); }
.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 24px;
}
.about-stats-grid .stat-item {
  border-radius: 14px;
  padding: 20px 16px;
  text-align: center;
  border: none;
  background: transparent;
  transition: var(--transition);
}
.about-stats-grid .stat-item:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}
.about-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 32px;
  padding-left: 40px;
}
.about-info h3 {
  font-size: 22px;
  color: var(--secondary);
  font-weight: 700;
  margin-bottom: 12px;
}
.about-info p {
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 8px;
  font-size: 14px;
}
.about-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  font-size: 14px;
  font-weight: 600;
  margin: 6px 0 0;
  transition: var(--transition);
}
.about-link:hover { gap: 10px; color: var(--primary-dark); }
.about-link i { font-size: 12px; transition: var(--transition); }
.stat-number {
  font-size: 40px;
  font-weight: 800;
  color: #000;
  line-height: 1.2;
}
.stat-number span { font-size: 18px; font-weight: 600; color: #000; }
.stat-label { font-size: 14px; color: #333; margin-top: 4px; }

/* ============================================
   5. 资质荣誉 - 与其他板块文字协调
   ============================================ */
.qualifications-section { padding: 60px 0; background: #007564; }
.qualifications-section .section-title { text-align: left; }
.qualifications-section .section-tag {
  color: rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
}
.qualifications-section .section-title h2 { font-size: 30px; font-weight: 700; text-align: left; color: #fff; }
.qualifications-section .section-title h2::after {
  background: linear-gradient(90deg, #fff, rgba(255,255,255,0.4));
}
.qualifications-section .section-title p {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  margin: 8px 0 0;
  line-height: 1.7;
  text-align: left;
  flex: 0 0 100%;
  order: 3;
}
.qual-scroll-wrapper { overflow: hidden; position: relative; padding: 10px 0; }
.qual-scroll-track {
  display: flex;
  gap: 24px;
  animation: qualScroll 50s linear infinite;
  width: max-content;
  will-change: transform;
}
.qual-scroll-track:hover { animation-play-state: paused; }
@keyframes qualScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.qual-item {
  flex: 0 0 270px;
  height: 382px;
  display: block;
  border-radius: 0;
  overflow: hidden;
  background: #f8faf8;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: var(--transition);
  text-decoration: none;
  color: inherit;
  border: 1px solid rgba(0,0,0,0.06);
}
.qual-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  border-color: rgba(0,153,76,0.2);
}
.qual-item .placeholder-img {
  width: 100%;
  height: 380px;
  border: none;
  border-radius: 0;
  flex-shrink: 0;
  background: linear-gradient(135deg, rgba(0,153,76,0.06), rgba(0,153,76,0.02));
  color: var(--text-gray);
  font-size: 13px;
}
.qual-item-info {
  display: none;
}

/* ============================================
   6. 新闻中心 - 左大图+右小图文列表
   ============================================ */
.news-section { padding: 60px 0; background: #f0fcf8; }
.news-layout {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 28px;
  align-items: start;
}
/* 左侧大图新闻 */
.news-main {
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
  transition: var(--transition);
  color: inherit;
  text-decoration: none;
}
.news-main:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.news-main-img {
  height: 340px;
  background-size: cover;
  background-position: center;
  transition: var(--transition);
}
.news-main:hover .news-main-img { transform: scale(1.02); }
.news-main-body { padding: 28px; }
.news-tag {
  display: inline-block;
  background: var(--primary-bg);
  color: var(--primary);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.news-main-body h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--secondary);
  line-height: 1.5;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-main:hover h3 { color: var(--primary); }
.news-main-body p {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-date { font-size: 13px; color: #aaa; }

/* 右侧小图文列表 */
.news-side { display: flex; flex-direction: column; gap: 0; background: #fff; border-radius: var(--radius-lg); padding: 20px; box-shadow: var(--shadow); }
.news-side-title { font-size: 18px; font-weight: 700; color: var(--secondary); margin: 0 0 16px; padding-bottom: 12px; border-bottom: 1px solid var(--border); }
/* 新闻摘要两行截断 */
.news-summary-clamp {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-clamp: 2;
}
.news-side .news-card-featured {
  display: block;
  padding: 0;
  border: none;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 16px;
  box-shadow: 0 2px 12px rgba(0,46,59,0.06);
  transition: var(--transition);
}
.news-side .news-card-featured:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,46,59,0.1);
}
.news-side .news-side-img {
  width: 100%;
  height: 160px;
  background-size: cover;
  background-position: center;
}
.news-side .news-card-featured h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  padding: 12px 14px;
  line-height: 1.5;
  transition: var(--transition);
}
.news-side .news-card-featured:hover h4 { color: var(--primary); }

.news-side .news-card-text {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border: none;
  border-bottom: 1px solid var(--border);
  background: none;
  box-shadow: none;
  transition: var(--transition);
}
.news-side .news-card-text:first-of-type { border-top: none; }
.news-side .news-card-text:last-child { border-bottom: none; }
.news-side .news-card-text:hover { padding-left: 6px; background: none; box-shadow: none; }
.news-side .news-card-text .news-date {
  flex-shrink: 0;
  font-size: 12px;
  color: var(--text-light);
  min-width: 80px;
}
.news-side .news-card-text h4 {
  flex: 1;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.5;
  transition: var(--transition);
}
.news-side .news-card-text:hover h4 { color: var(--primary); }
.news-side .news-card-text .news-more { display: none; }
.news-side .news-card-text .news-card-img { display: none; }
.news-side .news-card-text .news-card-body { display: contents; }
.news-card {
  display: flex;
  gap: 18px;
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  color: inherit;
  text-decoration: none;
}
.news-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }
.news-card-img {
  width: 140px;
  min-height: 120px;
  flex-shrink: 0;
  background-size: cover;
  background-position: center;
  transition: var(--transition);
}
.news-card:hover .news-card-img { transform: scale(1.05); }
.news-card-body {
  padding: 16px 18px 16px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}
.news-card-body h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--secondary);
  line-height: 1.5;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: var(--transition);
}
.news-card:hover h4 { color: var(--primary); }
.news-card-body p {
  font-size: 13px;
  color: var(--text-gray);
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 8px;
}

/* ============================================
   7. 经典案例 - 上图下文卡片
   ============================================ */
.cases-section { padding: 60px 0; background: #f0fcf8; }
.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.case-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--border);
  transition: var(--transition);
  text-decoration: none;
  color: inherit;
}
.case-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0,46,59,0.1);
  border-color: var(--primary);
}
.case-img {
  height: 200px;
  overflow: hidden;
  position: relative;
  transition: var(--transition);
}
.case-card:hover .case-img { transform: scale(1.03); }
.case-body {
  padding: 22px 20px;
}
.case-tag {
  display: inline-block;
  background: var(--primary-bg);
  color: var(--primary);
  font-size: 12px;
  font-weight: 600;
  padding: 3px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.case-body h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 10px;
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
}
.case-body h4 .arrow {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(0,153,76,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #999;
  flex-shrink: 0;
  transition: var(--transition);
}
.case-card:hover h4 .arrow {
  background: var(--primary);
  color: #fff;
  transform: translateX(4px);
}
.case-card:hover h4 { color: var(--primary); }
.case-body p {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.case-card:hover p { color: #555; }

/* ============================================
   TEAM SECTION
   ============================================ */
.team-section {
  padding: 60px 0;
  background: #f0fcf8;
  color: var(--secondary);
}
.team-section .section-title h2 { color: var(--secondary); }
.team-section .section-title p { color: var(--text-gray); }
/* 专家团队：在标准 container 宽度内横滚，不再全屏 */
.team-section .container {
  /* 恢复默认：max-width: var(--max-width); margin: 0 auto; padding: 0 24px; */
  overflow: hidden;
}
.experts-scroll-wrap {
  overflow: hidden;
  position: relative;
  padding: 10px 30px 20px;
  margin-top: 8px;
}
.experts-scroll-wrap::-webkit-scrollbar { display: none; }
.experts-grid {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: none;
}
.experts-grid:hover { animation-play-state: paused; }
@keyframes expertScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.expert-card {
  flex: 0 0 260px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  background: transparent;
  border: none;
  border-radius: 0;
  overflow: visible;
  transition: var(--transition);
  text-decoration: none;
  color: var(--secondary);
  flex-shrink: 0;
}
.expert-card:hover {
  transform: translateY(-5px);
}
.ec-photo {
  position: relative;
  width: 100%;
  aspect-ratio: 270/380;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: #f0f4f0;
}
.ec-photo img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  border-radius: var(--radius-lg);
}
.ec-photo .placeholder-img {
  width: 100%; height: 100%;
  border-radius: 0; border: none; margin: 0;
  background: var(--primary-bg);
  color: var(--primary);
  font-size: 14px;
  transition: transform 0.5s ease;
}
.expert-card:hover .ec-photo .placeholder-img {
  transform: scale(1.08);
}
.ec-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,153,76,0.35);
  backdrop-filter: blur(2px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}
.ec-overlay span {
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 7px 18px;
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 16px;
  background: rgba(0,153,76,0.8);
}
.expert-card:hover .ec-overlay { opacity: 1; }
.ec-body { padding: 10px 4px 0; text-align: center; background: transparent; }
.ec-body h4 { font-size: 14px; font-weight: 700; margin-bottom: 2px; transition: var(--transition); }
.expert-card:hover h4 { color: var(--primary); }
.ec-title { font-size: 12px; color: var(--text-light); }
.expert-card:hover .ec-title { color: var(--primary); }
.ec-service { display: none; }
.ec-bio { display: none; }
.expert-card:hover .ec-bio { color: var(--secondary); }

/* ============================================
   9. 鉴定预约申请 - 左右等高
   ============================================ */
/* 鉴定预约与经典案例紧贴：padding-top 缩小 */
.appointment-section { padding: 20px 0 60px; background: #f0fcf8; }
.appointment-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.appointment-visual {
  display: flex;
  height: 100%;
  min-height: 100%;
}
.appt-info-card {
  width: 100%;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
  padding: 36px 32px;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-radius: 0;
  height: 100%;
}
.appt-info-card::before {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 240px; height: 240px;
  background: rgba(0,153,76,0.06);
  border-radius: 50%;
}
.appt-info-card .appt-icon {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: #fff;
  margin-bottom: 24px;
  box-shadow: 0 8px 24px rgba(0,153,76,0.3);
}
.appt-info-card h4 { font-size: 24px; font-weight: 700; margin-bottom: 10px; }
.appt-info-card p { font-size: 15px; color: rgba(255,255,255,0.7); line-height: 1.7; margin-bottom: 30px; }
.appt-contact { display: flex; flex-direction: column; gap: 14px; width: 100%; max-width: 260px; }
.appt-contact-item {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 400;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.3px;
  transition: all 0.2s ease;
}
.appt-contact-item:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(0,153,76,0.3);
}
.appt-contact-item i { color: var(--primary); font-size: 14px; width: 20px; text-align: center; }
.appointment-form {
  padding: 36px;
  display: flex;
  flex-direction: column;
}
.appointment-form h3 {
  font-size: 22px;
  color: var(--secondary);
  font-weight: 700;
  margin-bottom: 20px;
}
.form-group { margin-bottom: 14px; }
.form-group label {
  display: block; font-size: 14px; font-weight: 500; color: var(--text); margin-bottom: 5px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 10px 14px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-size: 14px; color: var(--text);
  transition: var(--transition);
  background: var(--bg);
}
.form-group select option {
  background: var(--primary);
  color: #fff;
  padding: 8px;
}
.form-group select option:checked,
.form-group select option:hover {
  background: var(--primary-dark);
  color: #fff;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(0,153,76,0.08);
}
.form-group textarea { height: 80px; resize: vertical; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

/* ============================================
   10. 信息卡片区
   ============================================ */
.info-section { padding: 60px 0; background: #f0fcf8; }
.info-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.info-card {
  background: linear-gradient(135deg, var(--primary-bg2), #fff);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid var(--border);
}
.info-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary);
}
.info-card-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  line-height: 1;
  text-align: center;
}
.info-card-icon img,
.info-card-icon .info-card-icon-img {
  display: block;
  width: 32px !important;
  height: 32px !important;
  max-width: 32px;
  max-height: 32px;
  object-fit: contain !important;
  object-position: center center !important;
  margin: 0 auto !important;
}
.info-card h4 { font-size: 17px; color: var(--secondary); font-weight: 700; margin-bottom: 10px; }
.info-card p { font-size: 16px; color: var(--text); line-height: 1.7; margin-bottom: 10px; font-weight: 500; }
.info-card-more {
  font-size: 13px; color: var(--primary); font-weight: 600;
  transition: var(--transition);
}
.info-card:hover .info-card-more { letter-spacing: 1px; }
/* ============================================
   11. 五大特色 - 底部横排图标条
   ============================================ */
.features-strip {
  padding: 40px 0;
  background: #f0fcf8;
  color: var(--secondary);
}
.features-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}
.feat-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  border-radius: 14px;
  cursor: pointer;
  transition: var(--transition);
  user-select: none;
  position: relative;
  overflow: hidden;
}
.feat-item::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 14px;
  border: 1px solid transparent;
  transition: var(--transition);
}
.feat-item:hover::before {
  border-color: var(--primary);
}
.feat-item:hover {
  background: var(--primary-bg);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,153,76,0.08);
}
.feat-icon {
  width: 48px; height: 48px;
  background: none;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--primary);
  flex-shrink: 0;
  transition: var(--transition);
}
.feat-item:hover .feat-icon {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
  transform: rotate(-8deg) scale(1.08);
  box-shadow: 0 4px 14px rgba(0,153,76,0.25);
}
.feat-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.feat-text strong {
  font-size: 15px;
  color: var(--secondary);
  font-weight: 700;
  transition: var(--transition);
}
.feat-item:hover .feat-text strong { color: var(--primary); }
.feat-text span {
  font-size: 12px;
  color: var(--text-gray);
  transition: var(--transition);
}
.feat-item:hover .feat-text span { color: var(--primary); opacity: 0.7; }

/* ============================================
   12. Feature Modal - 大弹窗+背景图+居中滚动
   ============================================ */
.modal .feature-modal-content {
  max-width: 1100px;
  width: 92vw;
  padding: 0;
  overflow: hidden;
  border-radius: 20px;
}
.feature-modal-layout {
  display: flex;
  min-height: 520px;
}
.feature-modal-text {
  flex: 0 0 400px;
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fff;
}
.feature-modal-text h3 {
  font-size: 26px;
  color: var(--secondary);
  margin-bottom: 20px;
  font-weight: 700;
  padding-left: 16px;
  position: relative;
  line-height: 1.4;
}
.feature-modal-text h3::before {
  content: '';
  position: absolute;
  left: 0; top: 4px; bottom: 4px;
  width: 4px;
  background: linear-gradient(180deg, var(--primary), var(--primary-light));
  border-radius: 2px;
}
.feature-modal-text p {
  color: var(--text-gray);
  line-height: 1.9;
  margin-bottom: 14px;
  font-size: 15px;
}
.feature-modal-text .btn {
  align-self: flex-start;
  margin-top: 8px;
  font-size: 14px;
  padding: 8px 20px;
}
/* 右侧：深色背景+2张照片居中滚动 */
.feature-modal-photos {
  flex: 1;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 36px;
  background: linear-gradient(135deg, var(--secondary-dark) 0%, var(--secondary) 50%, var(--primary-dark) 100%);
}
.feature-modal-photos::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(0,153,76,0.12) 0%, transparent 70%);
  z-index: 0;
}
.feature-modal-photos .feature-photo-track {
  display: flex;
  gap: 22px;
  animation: photoScroll 20s linear infinite;
  width: max-content;
  position: relative;
  z-index: 1;
}
.feature-modal-photos .feature-photo-track:hover { animation-play-state: paused; }
@keyframes photoScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.feature-modal-photos .placeholder-img {
  width: 220px; height: 310px;
  border: none; border-radius: 14px;
  flex-shrink: 0;
  box-shadow: 0 8px 32px rgba(0,0,0,0.35);
  transition: var(--transition);
  object-fit: fill;
}
.feature-modal-photos .placeholder-img:hover {
  transform: scale(1.04);
  box-shadow: 0 12px 40px rgba(0,0,0,0.45);
}

/* ============================================
   13. Success Modal
   ============================================ */
.success-modal { text-align: center; padding: 40px 20px; }
.success-modal .check-icon {
  width: 72px; height: 72px;
  background: var(--primary-bg);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 36px; color: var(--primary);
  margin: 0 auto 18px;
}
.success-modal h3 { font-size: 20px; color: var(--secondary); margin-bottom: 8px; }
.success-modal p { color: var(--text-gray); font-size: 14px; }

/* ============================================
   RESPONSIVE - 首页
   ============================================ */
@media (max-width: 1024px) {
  .booking-fields { flex-wrap: wrap; gap: 10px; }
  .booking-fields select,
  .booking-fields input {
    flex: 1 1 calc(50% - 5px); min-width: 0; width: calc(50% - 5px); height: 44px;
    padding: 10px 14px; font-size: 14px;
    box-sizing: border-box;
    background: rgba(255,255,255,0.15); color: #fff;
    border: 1px solid rgba(255,255,255,0.3); border-radius: 8px;
  }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .about-content { grid-template-columns: 1fr; }
  .appointment-content { grid-template-columns: 1fr; }
  .news-layout { grid-template-columns: 1fr; }
  .news-main-img { height: 240px; }
  .news-card-img { width: 110px; min-height: 100px; }
}

@media (max-width: 768px) {
  .section-title {
    text-align: center;
    justify-content: center;
  }
  .section-title h2 { order: 2; }
  .section-tag { order: 1; }
  .section-title p { order: 3; width: 100%; }

  .hero-banner { height: auto; min-height: 340px; margin-top: 56px; }
  .hero-slide { transform: scale(1) !important; }
  .hero-content { flex-direction: column; text-align: center; padding: 60px 14px 70px; }
  .hero-text { max-width: 100%; }
  .hero-title { font-size: 24px !important; }
  .hero-image { display: none; }
  .hero-arrow { display: none; }

  .booking-card { flex-direction: column; gap: 14px; padding: 18px 20px; }
  .booking-left { width: 100%; flex-direction: row; align-items: center; gap: 12px; }
  .booking-icon { width: 40px; height: 40px; border-radius: 50%; font-size: 18px; flex-shrink: 0; }
  .booking-intro .booking-title { font-size: 16px !important; margin-bottom: 1px; }
  .booking-intro .booking-sub { font-size: 12px !important; }
  .booking-fields { flex-direction: column; gap: 10px; width: 100%; }
  .booking-fields select,
  .booking-fields input {
    width: 100% !important;
    height: 48px !important;
    flex: none !important;
    box-sizing: border-box !important;
    margin: 0 !important;
    padding: 12px 16px !important;
    font-size: 16px !important;
    border-radius: 8px !important;
    border: 1px solid rgba(255,255,255,0.3) !important;
    background: rgba(255,255,255,0.15) !important;
    color: #fff !important;
    -webkit-appearance: none !important;
    appearance: none !important;
    outline: none !important;
  }
  .booking-fields select option { color: #333; background: #fff; }
  .booking-fields .btn-primary,
  .booking-fields .btn-glass {
    width: 100% !important;
    height: 48px !important;
    text-align: center !important;
    padding: 12px 20px !important;
    font-size: 15px !important;
    box-sizing: border-box !important;
  }
  .booking-submit { order: 1; }
  .booking-consult { order: 2; }

  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .svc-thumb { height: 130px; }

  .about-content { grid-template-columns: 1fr; gap: 20px; }
  .about-info { padding: 20px; }
  .about-info h3 { font-size: 18px; }
  .about-info p { font-size: 15px; line-height: 1.65; }
  .about-image .placeholder-img { min-height: 220px; }
  .about-stats { grid-template-columns: repeat(2, 1fr); gap: 10px; }

  .qual-item { flex: 0 0 62vw; height: 87.7vw; }
  .qual-item .placeholder-img { height: auto; aspect-ratio: 270/380; }

  .news-layout { grid-template-columns: 1fr; }

  .cases-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }

  .expert-card { flex: 0 0 62vw; }
  .ec-photo { aspect-ratio: 270/380; }
  position: relative;
  width: 100%;
  aspect-ratio: 270/380;
  overflow: visible;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: linear-gradient(135deg, rgba(0,46,59,0.6), rgba(0,153,76,0.15));
  .ec-body { padding: 12px 10px 14px; }
  .ec-body h4 { font-size: 14px; }
  .ec-title, .ec-service { font-size: 11px; }
  .ec-bio { font-size: 12px; }
  .experts-grid { gap: 12px; padding: 0 16px; }
  .team-section .section-title { padding: 0 16px; }
  .team-section { padding: 60px 0; }

  .appointment-content { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  .info-cards { grid-template-columns: repeat(3, 1fr); gap: 12px; }

  .features-row { flex-wrap: wrap; gap: 10px; }
  .feat-item { flex: 0 0 calc(50% - 5px); }
  .feat-icon { width: 40px; height: 40px; font-size: 18px; }
  .feat-text strong { font-size: 14px; }

  .modal { padding: 0; align-items: flex-end; }
  .modal .modal-content { border-radius: 20px 20px 0 0; max-height: 80vh; }
  .modal .feature-modal-content { padding: 0; max-width: 100%; width: 100%; height: auto; max-height: 80vh; border-radius: 20px 20px 0 0; overflow-y: auto; margin-top: auto; -webkit-overflow-scrolling: touch; }
  .modal .feature-modal-content::before { content: ''; display: block; width: 40px; height: 4px; background: rgba(0,0,0,0.15); border-radius: 2px; margin: 10px auto 0; }
  .modal .modal-close { position: sticky; top: 0; right: 0; z-index: 10; background: rgba(0,46,59,0.85); color: #fff; border-radius: 50%; width: 36px; height: 36px; font-size: 20px; display: flex; align-items: center; justify-content: center; margin: 8px 12px 0 auto; float: right; }
  .feature-modal-layout { flex-direction: column; width: 100%; }
  .feature-modal-text { flex: none; padding: 16px 20px 8px; }
  .feature-modal-text h3 { font-size: 20px; margin-bottom: 12px; }
  .feature-modal-text p { font-size: 14px; line-height: 1.8; }
  .feature-modal-photos { min-height: auto; flex: none; padding: 12px 16px 24px; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; gap: 12px; }
  .feature-photo-item { flex-shrink: 0; scroll-snap-align: start; margin: 0 4px; }
  .feature-photo-item img { width: 44vw; height: calc(44vw * 1.35); border-radius: 10px; object-fit: fill; }
  .feature-modal-photos .placeholder-img { width: 44vw; height: calc(44vw * 1.35); }

  .section-title h2 { font-size: 22px; }
  .footer-main, .footer-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .footer-top-row { flex-wrap: wrap; gap: 12px; }
}

@media (max-width: 480px) {
  .section-title .title-more { font-size: 12px; }

  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .svc-thumb { height: 120px; }
  .svc-info { padding: 14px 12px; }
  .svc-info h4 { font-size: 14px; }
  .svc-desc p { font-size: 12px; -webkit-line-clamp: 2; }
  .hero-title { font-size: 20px !important; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .stat-number { font-size: 26px; }
  .cases-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .case-card .placeholder-img { height: 140px; }
  .info-cards { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .info-card { padding: 16px 8px; }
  .info-card-icon { font-size: 24px; }
  .info-card h4 { font-size: 13px; }
  .info-card p { font-size: 11px; }
  .info-card-more { font-size: 11px; }
  .features-row { gap: 8px; }
  .feat-item { flex: 0 0 calc(50% - 4px); }
  .feat-icon { width: 36px; height: 36px; font-size: 16px; }
  .feat-text strong { font-size: 13px; }
  .feat-text span { font-size: 11px; }
  .footer-main, .footer-grid { grid-template-columns: 1fr 1fr; gap: 16px; }

  .expert-card { width: 140px; }
  .ec-body h4 { font-size: 13px; }
  .ec-bio { display: none; }
  .experts-grid { gap: 10px; }
  .team-section { padding: 40px 0; }

  .feature-modal-photos { min-height: auto; padding: 10px 16px 20px; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; }
  .feature-modal-photos .placeholder-img { width: 60vw; height: calc(60vw * 1.35); }
  .feature-photo-item { flex-shrink: 0; scroll-snap-align: start; margin: 0 6px; }
  .feature-photo-item img { width: 60vw; height: calc(60vw * 1.35); border-radius: 10px; object-fit: fill; }
  .feature-photo-item .photo-caption { font-size: 12px; }

  /* 手机端预约栏字段等宽 */
  .booking-fields select,
  .booking-fields input {
    width: 100%;
    height: 48px;
    padding: 12px 16px;
    font-size: 16px;
    -webkit-appearance: none;
    appearance: none;
    box-sizing: border-box;
  }
}

/* ============================================
   SCROLL ARROWS - 资质荣誉 & 专家团队
   ============================================ */
.scroll-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  background: rgba(255,255,255,0.85);
  color: var(--secondary);
  box-shadow: 0 2px 12px rgba(0,46,59,0.12);
  backdrop-filter: blur(4px);
  transition: all 0.3s ease;
  opacity: 0;
}
.qual-scroll-wrapper:hover .scroll-arrow,
.experts-scroll-wrap:hover .scroll-arrow {
  opacity: 1;
}
.scroll-arrow:hover {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 20px rgba(0,153,76,0.3);
  transform: translateY(-50%) scale(1.1);
}
.scroll-arrow-left { left: 0px; }
.scroll-arrow-right { right: 0px; }

/* 手机端始终显示箭头 */

/* 新闻列表新布局 - 无图片纯文字 */
.news-layout-list {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
}
.news-list-main {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow);
}
.news-item-featured {
  display: block;
  padding: 24px;
  background: linear-gradient(135deg, rgba(0,153,76,0.05), rgba(0,46,59,0.05));
  border-radius: var(--radius);
  margin-bottom: 20px;
  text-decoration: none;
  transition: all 0.3s ease;
  border-left: 4px solid var(--primary);
}
.news-item-featured:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-hover);
}
.news-item-featured .news-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: var(--primary);
  background: rgba(0,153,76,0.15);
  padding: 4px 12px;
  border-radius: 15px;
  margin-bottom: 12px;
}
.news-item-featured h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--secondary);
  margin: 0 0 12px;
  line-height: 1.4;
}
.news-item-featured:hover h3 { color: var(--primary); }
.news-item-featured p {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.7;
  margin: 0 0 16px;
}
.news-item-featured .news-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.news-item-featured .news-date {
  font-size: 13px;
  color: var(--text-light);
}
.news-item-featured .news-more {
  font-size: 13px;
  color: var(--primary);
  font-weight: 500;
}
.news-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px dashed var(--border);
  text-decoration: none;
  transition: all 0.2s ease;
}
.news-item:last-child { border-bottom: none; }
.news-item:hover { padding-left: 8px; }
.news-item .news-tag {
  flex-shrink: 0;
  font-size: 11px;
  font-weight: 600;
  color: var(--primary);
  background: rgba(0,153,76,0.1);
  padding: 3px 10px;
  border-radius: 12px;
}
.news-item h4 {
  flex: 1;
  font-size: 14px;
  font-weight: 500;
  color: var(--secondary);
  margin: 0;
  line-height: 1.5;
}
.news-item:hover h4 { color: var(--primary); }
.news-item .news-date {
  flex-shrink: 0;
  font-size: 12px;
  color: var(--text-light);
}

@media (max-width: 900px) {
  .news-layout-list {
    grid-template-columns: 1fr;
  }
}

/* 专家团队顶部通栏 - 参考图效果 */
.team-banner {
  width: 100%;
  background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
  overflow: hidden;
  position: relative;
}
.team-banner-bg {
  width: 100%;
  height: 220px;
  background: linear-gradient(135deg, rgba(0,46,59,0.97), rgba(0,68,86,0.95));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 0 60px;
}
/* 多层装饰元素 */
.team-banner-bg::before {
  content: '';
  position: absolute;
  width: 420px;
  height: 420px;
  border: 2px solid rgba(0,153,76,0.12);
  border-radius: 50%;
  top: 50%;
  left: -8%;
  transform: translateY(-50%);
}
.team-banner-bg::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border: 1.5px dashed rgba(0,153,76,0.1);
  border-radius: 50%;
  top: -35%;
  right: -3%;
}
.team-banner-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.team-banner-decor::before {
  content: '';
  position: absolute;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(0,153,76,0.12) 0%, transparent 70%);
  border-radius: 50%;
  top: 15%;
  left: 18%;
}
.team-banner-decor::after {
  content: '';
  position: absolute;
  width: 90px;
  height: 90px;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 50%;
  bottom: 20%;
  left: 32%;
}
.team-banner-circle {
  position: absolute;
  border-radius: 50%;
}
.team-banner-circle-1 {
  width: 70px;
  height: 70px;
  border: 1.5px solid rgba(0,153,76,0.15);
  top: 12%;
  right: 18%;
}
.team-banner-circle-2 {
  width: 50px;
  height: 50px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  bottom: 28%;
  right: 12%;
}
.team-banner-circle-3 {
  width: 120px;
  height: 120px;
  border: 1px dashed rgba(255,255,255,0.05);
  top: -25%;
  left: 42%;
}
/* 方框装饰 */
.team-banner-square {
  position: absolute;
  border-radius: 4px;
}
.team-banner-square-1 {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(0,153,76,0.12);
  top: 25%;
  left: 5%;
  transform: rotate(15deg);
}
.team-banner-square-2 {
  width: 30px;
  height: 30px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  bottom: 15%;
  right: 25%;
  transform: rotate(-10deg);
}
.team-banner-square-3 {
  width: 55px;
  height: 55px;
  border: 1px dashed rgba(0,153,76,0.1);
  top: 60%;
  left: 8%;
  transform: rotate(20deg);
}
.team-banner-square-4 {
  width: 25px;
  height: 25px;
  border: 1px solid rgba(255,255,255,0.06);
  top: 8%;
  right: 35%;
  transform: rotate(-5deg);
}
.team-banner-content {
  display: flex;
  align-items: center;
  gap: 50px;
  position: relative;
  z-index: 2;
}
.team-banner-text {
  text-align: center;
}
.team-banner-line1 {
  font-size: 32px;
  font-weight: 600;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
  color: rgba(255,255,255,0.95);
  margin: 0 0 10px;
  letter-spacing: 10px;
}
.team-banner-line2 {
  font-size: 32px;
  font-weight: 600;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
  color: var(--primary);
  margin: 0;
  letter-spacing: 10px;
}
.team-banner-divider {
  width: 1px;
  height: 95px;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,0.12), transparent);
}
.team-banner-tags {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.team-banner-tag {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
  color: rgba(255,255,255,0.8);
  letter-spacing: 1px;
}
.team-banner-tag i {
  font-size: 18px;
  color: var(--primary);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,153,76,0.15);
  border-radius: 8px;
}
.team-section .container {
  margin-top: 40px;
}
@media (max-width: 900px) {
  .team-banner-bg { height: 140px; padding: 0 24px; }
  .team-banner-content { gap: 24px; }
  .team-banner-line1 { font-size: 20px; letter-spacing: 5px; }
  .team-banner-line2 { font-size: 24px; letter-spacing: 6px; }
  .team-banner-tags, .team-banner-divider { display: none; }
  .team-banner-bg::before, .team-banner-bg::after { display: none; }
  .team-section .container { margin-top: 24px; }
}

/* 新闻主卡片底部查看更多标绿 */
.news-main-more {
  color: var(--primary);
  font-weight: 500;
  transition: color 0.2s;
}
.news-main-footer:hover .news-main-more {
  color: var(--primary-dark);
}

/* FAQ 常见问题 */
.faq-section { padding: 80px 0; background: #f8f9fa; }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { background: #fff; border-radius: 12px; margin-bottom: 12px; overflow: hidden; box-shadow: 0 2px 8px rgba(0,0,0,0.04); transition: box-shadow 0.3s; }
.faq-item:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.08); }
.faq-question { display: flex; justify-content: space-between; align-items: center; padding: 18px 24px; cursor: pointer; font-weight: 600; font-size: 15px; color: var(--secondary-color); transition: color 0.2s; }
.faq-question:hover { color: var(--primary-color); }
.faq-icon { transition: transform 0.3s; font-size: 12px; color: var(--primary-color); }
.faq-item.open .faq-icon { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s; padding: 0 24px; color: #555; font-size: 14px; line-height: 1.8; }
.faq-item.open .faq-answer { max-height: 500px; padding: 0 24px 18px; }

/* ===== 5大特色弹窗：真实图片样式（PC端） ===== */
@media (min-width: 769px) {
.feature-photo-item {
  flex-shrink: 0;
  text-align: center;
}
.feature-photo-item img {
  width: 220px; height: 300px;
  border-radius: 14px;
  object-fit: fill;
  box-shadow: 0 8px 32px rgba(0,0,0,0.35);
  transition: var(--transition);
  cursor: pointer;
}
.feature-photo-item img:hover {
  transform: scale(1.04);
  box-shadow: 0 12px 40px rgba(0,0,0,0.45);
}
.feature-photo-item .photo-caption {
  margin-top: 8px;
  font-size: 12px;
  color: #666;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 220px;
}
} /* 关闭 @media (min-width: 769px) */

/* ===== 手机横屏适配 ===== */
@media (max-width: 900px) and (orientation: landscape) {
  .about-info h3 { font-size: 16px; margin-bottom: 8px; }
  .about-info p { font-size: 13px; line-height: 1.6; margin-bottom: 4px; }
  .about-info { padding: 16px; }
  .about-section { padding: 30px 0; }
  .about-stats-grid { gap: 8px; }
  .stat-number { font-size: 22px; }
  .stat-label { font-size: 12px; }
}
