/* ============================================
   Homepage Redesign 鈥?asmik.com Style
   Primary: #00A4A6 (teal/cyan)
   ============================================ */

:root {
  --primary: #00a4a6;
  --primary-dark: #008a8c;
  --primary-light: #e0f7f7;
  --dark-bg: #1a2a3a;
  --dark-bg-light: #243648;
  --text-dark: #333;
  --text-gray: #666;
  --text-light: #999;
  --section-bg: #f5f7fa;
  --white: #fff;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.12);
  --transition: all 0.3s ease;
}

/* ===== Reset & Base ===== */
body.redesign {
  font-family:
    'Microsoft YaHei',
    'PingFang SC',
    'Hiragino Sans GB',
    -apple-system,
    sans-serif;
  color: var(--text-dark);
  overflow-x: hidden;
}

.nav-redesign {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  transition:
    background 0.4s ease,
    box-shadow 0.4s ease;
  padding: 0;
}

.nav-redesign.nav-transparent {
  background: transparent;
}

.nav-redesign.nav-transparent .nav-links > li > a {
  color: var(--white) !important;
}

.nav-redesign.nav-transparent .nav-links > li > a:hover {
  color: var(--primary) !important;
}

.nav-redesign.nav-transparent .mobile-toggle {
  color: var(--text-dark) !important;
}

.nav-redesign.nav-scrolled {
  background: var(--white);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
}

.nav-redesign.nav-scrolled .nav-links > li > a {
  color: var(--text-dark) !important;
}

.nav-redesign.nav-scrolled .nav-links > li > a:hover,
.nav-redesign.nav-scrolled .nav-links > li.active > a {
  color: var(--primary) !important;
}

.nav-redesign.nav-scrolled .mobile-toggle {
  color: var(--text-dark) !important;
}

/* Logo切换 - 使用CSS控制，减少JS DOM操作 */
.nav-redesign #logoDefault,
.nav-redesign #logoActive {
  transition: opacity 0.3s ease;
}

.nav-redesign.nav-transparent #logoDefault {
  display: block;
  opacity: 1;
}

.nav-redesign.nav-transparent #logoActive {
  display: none;
  opacity: 0;
}

.nav-redesign.nav-scrolled #logoDefault {
  display: none;
  opacity: 0;
}

.nav-redesign.nav-scrolled #logoActive {
  display: block;
  opacity: 1;
}

.nav-redesign .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.nav-redesign .navbar-brand {
  padding: 0;
  margin: 0;
}

.nav-redesign .navbar-brand img {
  height: 36px;
}

.nav-redesign .nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0;
}

.nav-redesign .nav-links > li {
  position: relative;
}

.nav-redesign .nav-links > li > a {
  display: block;
  padding: 0 20px;
  line-height: 70px;
  font-size: 15px;
  color: var(--text-dark);
  text-decoration: none;
  transition: color 0.3s;
  letter-spacing: 1px;
}

.nav-redesign .nav-links > li > a:hover,
.nav-redesign .nav-links > li.active > a {
  color: var(--primary);
}

.nav-underline {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: var(--primary);
  transition: width 0.3s ease;
  display: block;
}

.nav-redesign .nav-links > li:hover .nav-underline,
.nav-redesign .nav-links > li.active .nav-underline {
  width: 28px;
}

/* ===== Mega Dropdown (鍙傜収绫崇) ===== */
.mega-dropdown {
  position: absolute;
  top: 70px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  border-radius: 0 0 8px 8px;
  border-top: 3px solid var(--primary);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(8px);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease,
    visibility 0.3s;
  z-index: 100;
  padding: 20px 0;
}

.nav-redesign .nav-links > li:hover .mega-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.mega-inner {
  display: flex;
  gap: 36px;
  padding: 0 28px;
}

.mega-col h6 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid #f0f0f0;
  letter-spacing: 1px;
}

.mega-col a {
  display: block;
  padding: 6px 0;
  font-size: 14px;
  color: var(--text-gray) !important;
  text-decoration: none;
  line-height: 1.6 !important;
  transition:
    color 0.2s,
    padding-left 0.2s;
}

.mega-col a:hover {
  color: var(--primary) !important;
  padding-left: 6px;
}

.nav-redesign.nav-transparent .mega-dropdown {
  background: var(--white);
}

.nav-redesign.nav-transparent .mega-col h6 {
  color: var(--text-dark) !important;
}

.nav-redesign.nav-transparent .mega-col a {
  color: var(--text-gray) !important;
}

.nav-redesign.nav-transparent .mega-col a:hover {
  color: var(--primary) !important;
}

/* Mobile toggle */
.nav-redesign .mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--text-dark);
  cursor: pointer;
}

/* Spacer */
.nav-spacer {
  height: 70px;
}

@media (max-width: 991px) {
  .nav-redesign .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: var(--white);
    flex-direction: column;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }

  .nav-redesign .nav-links.show {
    display: flex;
  }

  .nav-redesign .nav-links li a {
    line-height: 50px;
    padding: 0 20px;
    border-bottom: 1px solid #f0f0f0;
  }

  .nav-redesign .nav-links li::after {
    display: none;
  }

  .nav-redesign .mobile-toggle {
    display: block;
  }
}

/* ===== Footer Redesign ===== */
.footer-redesign {
  background: var(--dark-bg);
  color: rgba(255, 255, 255, 0.7);
  padding: 50px 0 0;
}

.footer-redesign h5 {
  color: var(--white);
  font-size: 16px;
  margin-bottom: 20px;
  letter-spacing: 1px;
  font-weight: 600;
}

.footer-redesign ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-redesign ul li {
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 1.8;
}

.footer-redesign ul li a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-redesign ul li a:hover {
  color: var(--primary);
}

.footer-redesign .footer-qr img {
  height: 100px;
  width: 100px;
  border-radius: 4px;
}

.footer-redesign .footer-qr p {
  margin-top: 8px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-redesign .copyright-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 16px 0;
  margin-top: 40px;
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}

.footer-redesign .copyright-bar a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
}

.footer-redesign .copyright-bar a:hover {
  color: var(--primary);
}

/* ===== Animations ===== */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Utility ===== */
.text-primary-teal {
  color: var(--primary) !important;
}

.bg-primary-teal {
  background-color: var(--primary) !important;
}

/* ===== News Swiper Carousel (姘稿浐 style) ===== */
.news-swiper-wrap {
  max-width: 100%;
  overflow: hidden;
}

.news-swiper {
  padding-bottom: 50px;
}

.news-slide-item {
  display: flex;
  align-items: stretch;
  text-decoration: none;
  color: inherit;
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 320px;
}

.news-slide-text {
  flex: 1;
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.news-slide-text h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
  line-height: 1.4;
}

.news-slide-date {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 16px;
}

.news-slide-text p {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 24px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--primary);
  font-weight: 500;
  transition: gap 0.3s;
}

.news-slide-item:hover .news-read-more {
  gap: 10px;
}

.news-slide-img {
  flex: 1;
  overflow: hidden;
  max-width: 50%;
}

.news-slide-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.news-slide-item:hover .news-slide-img img {
  transform: scale(1.05);
}

.news-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #ccc;
  opacity: 1;
}

.news-pagination .swiper-pagination-bullet-active {
  background: var(--primary);
  width: 24px;
  border-radius: 5px;
}

@media (max-width: 768px) {
  .news-slide-item {
    flex-direction: column-reverse;
    min-height: auto;
  }

  .news-slide-img {
    max-width: 100%;
    height: 200px;
  }

  .news-slide-text {
    padding: 24px 20px;
  }

  .news-slide-text h3 {
    font-size: 18px;
  }
}

/* ===== Application Domains Section ===== */
.section-applications {
  padding: 0;
  background: #1c4d73;
}

.industry-stage {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.industry-stage-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(17, 39, 57, 0.32), rgba(17, 39, 57, 0.32)),
    url('/templates/default/static/images/site/home-culture.jpg') center center / cover no-repeat;
  transform: scale(1.03);
}

.industry-stage-title {
  position: absolute;
  top: 16%;
  left: 50%;
  z-index: 3;
  transform: translateX(-50%);
  text-align: center;
  color: #fff;
}

.industry-stage-title h2 {
  margin: 0;
  font-size: 56px;
  font-weight: 500;
  letter-spacing: 1px;
}

.industry-columns {
  position: relative;
  z-index: 2;
  min-height: 500px;
  display: flex;
}

.industry-col {
  position: relative;
  display: flex;
  flex: 1 1 0;
  align-items: stretch;
  justify-content: center;
  text-decoration: none;
  color: #fff;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(16, 64, 96, 0.16);
  padding: 0;
  transition:
    flex 0.45s ease,
    background 0.35s ease;
  overflow: hidden;
}

.industry-col::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--industry-image) center center / cover no-repeat;
  opacity: 0;
  transform: scale(1.08);
  transition:
    opacity 0.35s ease,
    transform 0.45s ease;
}

.industry-col-auto {
  --industry-image: url('/static/upload/home-industry-auto.jpg?v=2');
}

.industry-col-environment {
  --industry-image: url('/static/upload/home-industry-energy.jpg?v=2');
}

.industry-col-chemical {
  --industry-image: url('/static/upload/home-industry-environment.jpg?v=2');
}

.industry-col-energy {
  --industry-image: url('/static/upload/home-industry-chemical.jpg?v=2');
}

.industry-col-semiconductor {
  --industry-image: url('/static/upload/home-industry-semiconductor.jpg?v=2');
}

.industry-col:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.industry-col::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(10, 44, 67, 0.24), rgba(7, 38, 55, 0.56));
  opacity: 1;
  transition: opacity 0.35s ease;
}

.industry-col-name {
  position: absolute;
  left: 50%;
  bottom: 22%;
  transform: translateX(-50%);
  z-index: 2;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 1px;
  white-space: nowrap;
  transition: bottom 0.35s ease;
}

.industry-col-action {
  position: absolute;
  left: 50%;
  bottom: 14%;
  transform: translateX(-50%);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 108px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 999px;
  color: #fff;
  font-size: 14px;
  opacity: 0;
  transition:
    opacity 0.3s ease,
    bottom 0.35s ease;
}

.industry-col:hover {
  flex: 1.7 1 0;
  background: rgba(23, 169, 210, 0.34);
}

.industry-col:hover::after {
  opacity: 1;
  transform: scale(1.01);
}

.industry-col:hover::before {
  opacity: 1;
}

.industry-col:hover .industry-col-name {
  bottom: 28%;
}

.industry-col:hover .industry-col-action {
  opacity: 1;
  bottom: 20%;
}

.industry-sub {
  margin-top: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.72);
}

@media (max-width: 991px) {
  .industry-columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .industry-col {
    flex: none;
    min-height: 180px;
  }

  .industry-stage-title {
    top: 14%;
  }

  .industry-stage-title h2 {
    font-size: 36px;
  }

  .industry-sub {
    font-size: 12px;
  }
}

@media (max-width: 576px) {
  .industry-columns {
    grid-template-columns: 1fr;
  }

  .industry-col {
    min-height: 120px;
  }
}

/* ===== Nav Dropdown ===== */
.nav-redesign .nav-links li .nav-dropdown {
  display: none;
  position: absolute;
  top: 70px;
  left: 50%;
  transform: translateX(-50%);
  min-width: 160px;
  background: var(--white);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  border-radius: 0 0 6px 6px;
  padding: 8px 0;
  z-index: 100;
}

.nav-redesign .nav-links li:hover .nav-dropdown {
  display: block;
}

.nav-dropdown a {
  display: block;
  padding: 8px 20px !important;
  line-height: 1.6 !important;
  font-size: 14px !important;
  color: var(--text-gray) !important;
  white-space: nowrap;
}

.nav-dropdown a:hover {
  color: var(--primary) !important;
  background: var(--primary-light);
}

/* Technical Consultation Section */
.service-consultation-section {
  padding: 60px 0;
  background: #f8f9fa;
}

.section-title {
  font-size: 32px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.consultation-card {
  border-radius: 8px;
  padding: 40px;
}

.consultation-logo {
  height: 36px;
}

.vertical-divider {
  width: 1px;
  height: 120px;
  background: #eaeaea;
}

.qr-col {
  width: 140px;
}

.qr-box {
  width: 120px;
  height: 120px;
  margin: 0 auto;
  border: 1px solid #ebebeb;
  padding: 5px;
  background: #fff;
  border-radius: 4px;
}

.qr-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Data Download Section */
.service-download-section {
  padding: 80px 0;
  background: var(--white);
}

.download-tabs {
  border-right: 1px solid #eaeaea;
  padding-right: 20px;
}

.download-tabs .nav-link {
  color: var(--text-dark) !important;
  padding: 16px 24px;
  font-size: 16px;
  border-radius: 0;
  margin-bottom: 8px;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
  background: transparent !important;
}

.download-tabs .nav-link:hover {
  color: var(--primary) !important;
  background: #fcfcfc !important;
}

.download-tabs .nav-link.active {
  background: #eef7ff !important;
  color: var(--primary) !important;
  border-left-color: var(--primary);
  font-weight: 500;
}

.download-list {
  min-height: 300px;
}

.download-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid #f0f0f0;
  transition: background 0.3s;
}

.download-row:hover {
  background: #fafafa;
}

.download-info {
  display: flex;
  align-items: center;
  color: var(--text-dark);
  font-size: 15px;
}

.download-info i {
  font-size: 20px;
  color: #e53935;
  /* PDF Red */
  margin-right: 15px;
  width: 24px;
  text-align: center;
}

.download-info i.fa-file-archive-o {
  color: var(--primary);
  /* ZIP Blue */
}

.btn-download {
  display: inline-block;
  padding: 6px 20px;
  font-size: 14px;
  color: var(--primary);
  border: 1px solid var(--primary);
  border-radius: 20px;
  text-decoration: none;
  transition: all 0.3s;
}

.btn-download:hover {
  background: var(--primary);
  color: var(--white);
  text-decoration: none;
}

/* =========================================================================
   Application Domain Detail (琛屼笟璇︾粏/椤圭洰搴旂敤)
   ========================================================================= */

.industry-detail-header {
  border-bottom: 2px solid var(--primary);
}

.industry-desc p {
  margin-bottom: 15px;
  color: #666;
}

.client-card {
  border: 1px solid transparent;
}

.client-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05) !important;
  border-color: #eee;
}

.btn-back-list {
  border: 1px solid #ccc;
  color: #555;
  background: transparent;
  border-radius: 30px;
  font-size: 14px;
  letter-spacing: 1px;
  transition: all 0.3s;
}

.btn-back-list:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  text-decoration: none;
}

/* =========================================================================
   Product Center List (3-Column Layout)
   ========================================================================= */

.product-center-card {
  transition: all 0.3s ease;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid #eee;
}

.product-center-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
  border-color: var(--primary);
}

.product-center-card .card-img-wrap {
  overflow: hidden;
}

.product-center-card .card-img-wrap img {
  transition: transform 0.3s ease;
}

.product-center-card:hover .card-img-wrap img {
  transform: scale(1.05);
}

.product-center-card .card-title a:hover {
  color: var(--primary) !important;
  text-decoration: none;
}

.btn-detail-hover {
  transition: all 0.3s ease;
}

.product-center-card:hover .btn-detail-hover {
  background-color: var(--primary);
  color: var(--white);
}

/* =========================================================================
   Contact Us Page
   ========================================================================= */

/* Banner 鈥?鍥剧墖鎾戦珮锛屾枃瀛楃粷瀵瑰畾浣嶈鐩?*/
.ct-banner {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.ct-banner-img {
  width: 100%;
  line-height: 0;
}

.ct-banner-img img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.ct-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.5) 100%);
  z-index: 1;
}

.ct-banner-content {
  position: absolute;
  top: 50%;
  left: max(40px, calc((100% - 1320px) / 2 + 40px));
  transform: translateY(-50%);
  z-index: 2;
  color: var(--white);
  text-align: left;
  width: calc(100% - 80px);
  max-width: 1240px;
}

.ct-banner-content h1 {
  font-size: 52px;
  font-weight: 700;
  letter-spacing: 10px;
  margin-bottom: 20px;
}

.ct-banner-line {
  width: 40px;
  height: 3px;
  /* background: var(--primary); */
  margin: 0 0 20px 0;
}

.ct-banner-content p {
  font-size: 20px;
  letter-spacing: 8px;
  opacity: 0.75;
  text-transform: uppercase;
}

/* =========================================================================
   Industry Detail Page (搴旂敤棰嗗煙璇︽儏)
   ========================================================================= */

/* 闈㈠寘灞?*/
.ind-breadcrumb {
  padding: 88px 0px 18px 0;
  background: var(--white);
  border-bottom: 1px solid #eee;
  font-size: 14px;
  color: var(--text-light);
}

.ind-breadcrumb a {
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.3s;
}

.ind-breadcrumb a:hover {
  color: var(--primary);
}

.ind-breadcrumb-sep {
  margin: 0 10px;
  color: #ccc;
}

.ind-breadcrumb-cur {
  color: var(--text-dark);
}

.ind-detail-header {
  padding: 80px 0;
  background: var(--white);
}

.ind-detail-img {
  border-radius: 6px;
  overflow: hidden;
}

.ind-detail-img img {
  width: 100%;
  display: block;
  object-fit: cover;
  border-radius: 6px;
}

.ind-detail-text {
  padding-left: 30px;
}

.ind-detail-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.ind-detail-line {
  width: 40px;
  height: 3px;
  background: var(--primary);
  margin-bottom: 24px;
}

.ind-detail-desc {
  font-size: 16px;
  line-height: 2;
  color: var(--text-gray);
  text-align: justify;
}

.ind-detail-desc p {
  margin-bottom: 12px;
}

/* 绗簩鍖? 椤圭洰搴旂敤 */
.ind-projects {
  padding: 80px 0 60px;
  background: var(--section-bg);
}

.ind-projects-title {
  text-align: center;
  margin-bottom: 50px;
}

.ind-projects-cn {
  font-size: 42px;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: 4px;
  margin-bottom: 10px;
}

.ind-projects-en {
  font-size: 16px;
  color: var(--text-light);
  letter-spacing: 2px;
}

/* 瀹㈡埛鍗＄墖 */
.ind-client-card {
  background: var(--white);
  border-radius: 8px;
  padding: 30px 16px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
  cursor: default;
}

.ind-client-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.ind-client-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 50%;
  background: var(--primary-light);
}

.ind-client-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}

.ind-client-icon i {
  font-size: 28px;
  color: var(--primary);
}

.ind-client-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.4;
}

/* 鍝嶅簲寮?*/
@media (max-width: 991px) {
  .ind-detail-text {
    padding-left: 0;
    margin-top: 30px;
  }
}

@media (max-width: 768px) {
  .ind-detail-header {
    padding: 50px 0;
  }

  .ind-detail-title {
    font-size: 26px;
  }

  .ind-detail-desc {
    font-size: 14px;
  }

  .ind-projects {
    padding: 50px 0 40px;
  }

  .ind-projects-cn {
    font-size: 30px;
  }
}

@media (max-width: 576px) {
  .ind-detail-title {
    font-size: 22px;
  }

  .ind-projects-cn {
    font-size: 24px;
  }

  .ind-client-card {
    padding: 20px 12px;
  }
}

/* =========================================================
   新闻资讯页面 (News)
   ========================================================= */

.news-banner {
  position: relative;
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.news-banner-bg {
  position: absolute;
  inset: 0;
  background-color: #0d47a1;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -1;
}

.news-banner-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

.news-banner-text h1 {
  font-size: 42px;
  color: #fff;
  margin-bottom: 15px;
  letter-spacing: 2px;
}

.news-banner-text p {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 4px;
  text-transform: uppercase;
}

.news-tabs {
  display: inline-flex;
  justify-content: center;
  gap: 30px;
  border-bottom: 2px solid #eee;
  padding-bottom: 10px;
  width: 100%;
}

.news-tab-item {
  font-size: 20px;
  color: #333;
  text-decoration: none;
  padding: 10px 5px;
  position: relative;
  transition: all 0.3s;
}

.news-tab-item:hover,
.news-tab-item.active {
  color: var(--primary, #1a73e8);
  text-decoration: none;
}

.news-tab-item.active::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 4px;
  background: var(--primary, #1a73e8);
  border-radius: 2px;
}

/* News List */
.news-list .news-item {
  padding: 30px 0;
  border-bottom: 1px solid #f0f0f0;
  transition: all 0.3s;
}

.news-list .news-item:hover {
  background: #fafafa;
  transform: translateX(10px);
  box-shadow: -5px 0 0 var(--primary, #1a73e8);
}

.news-txt {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.news-date {
  font-size: 14px;
  color: #888;
  margin-bottom: 12px;
}

.news-title {
  font-size: 22px;
  font-weight: 600;
  color: #222;
  margin-bottom: 15px;
  transition: color 0.3s;
}

.news-list .news-item:hover .news-title {
  color: var(--primary, #1a73e8);
}

.news-summary {
  font-size: 15px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 20px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.news-arrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--primary, #1a73e8);
  font-size: 20px;
  opacity: 0;
  transform: translateX(-15px);
  transition: all 0.3s;
}

.news-list .news-item:hover .news-arrow {
  opacity: 1;
  transform: translateX(0);
}

.news-img {
  width: 320px;
  height: 200px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

.news-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.news-list .news-item:hover .news-img img {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .news-banner {
    height: 200px;
  }
  .news-banner-text h1 {
    font-size: 28px;
  }
  .news-banner-text p {
    font-size: 14px;
  }
  .news-tabs {
    gap: 15px;
  }
  .news-tab-item {
    font-size: 16px;
  }
  .news-img {
    width: 100%;
    height: 200px;
    margin-top: 20px;
  }
  .news-list .news-item:hover {
    transform: translateY(-5px);
    box-shadow: none;
  }
}

/* Pill Tab Redesign */
.news-page-wrapper {
  background-color: #f7f8fa;
}

.news-tabs-container {
  display: flex;
  justify-content: center;
}

.news-tabs {
  display: inline-flex;
  background: #fff;
  border-radius: 40px;
  padding: 6px;
  gap: 0;
  width: auto;
  border-bottom: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.news-tab-item {
  font-size: 16px;
  color: #333;
  text-decoration: none;
  padding: 12px 35px;
  border-radius: 30px;
  transition: all 0.3s ease;
  font-weight: 500;
}

.news-tab-item:after {
  content: none !important;
}

.news-tab-item:hover,
.news-tab-item.active {
  color: #fff;
  background: var(--primary, #00b4d8);
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 180, 216, 0.3);
}

.news-list .news-item {
  background: #fff;
  padding: 25px;
  margin-bottom: 25px;
  border-radius: 8px;
  border-bottom: none;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
  transition: all 0.3s ease;
}

.news-list .news-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.news-list .news-item .news-title {
  font-size: 22px;
  font-weight: 600;
  color: #222;
  margin-bottom: 15px;
}

.news-list .news-item:hover .news-title {
  color: var(--primary, #00b4d8);
}

.news-list .news-txt {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.news-list .news-date {
  font-size: 14px;
  color: #999;
  margin-bottom: 10px;
}

.news-list .news-summary {
  font-size: 15px;
  color: #666;
  line-height: 1.8;
}

.news-list .news-img {
  width: 320px;
  height: 180px;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
}

/* ===== 新闻列表页 Wrapper ===== */
.news-page-wrapper {
  background: #f5f6fa;
}

.news-page-wrapper .container.pages {
  background: #f5f6fa;
}

/* ===== 产品型号字体样式 ===== */
.prod-model {
  font-size: 0.72em;
  color: #888;
  font-weight: normal;
  margin-left: 0.3em;
}
