/* ===== Reset & Base ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Microsoft YaHei', sans-serif;
  color: #1A1A1A;
  background: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  list-style: none;
}

img { max-width: 100%; display: block; }

/* ===== Layout ===== */
.content-container {
  width: 100%;
 
  margin: 0 auto;
  padding: 0 100px;
}

.commonweb {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 100px;
}

.section-padding {
  padding: 70px 0; padding-bottom: 80px;
}

/* ===== Top Bar ===== */
.top-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1001;
  height: 36px;
  background: transparent;
  transition: all 0.5s ease;
  background: rgba(0, 0, 0, .16);
  backdrop-filter: blur(4px);
}

.top-bar.scrolled {
  background: #f8f8f8;
 
}

.top-bar-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.top-bar .nav-top-links {
  display: flex;
  align-items: center;
  gap: 0;
  font-size: 12px;
}

.top-bar .nav-top-links a {
  color: rgba(255,255,255,0.7);
  transition: color 0.3s;
  padding: 0 8px;
}

.top-bar .nav-top-links a:hover {
  color: #fff;
}

.top-bar.scrolled .nav-top-links a {
  color: #666;
}

.top-bar.scrolled .nav-top-links a:hover {
  color: #0B7CCB;
}

.lang-switcher {
  position: relative;
}

.lang-trigger {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  color: rgba(255,255,255,0.7);
  transition: color 0.3s;
  cursor: pointer;
  font-size: 12px;
}

.lang-trigger svg {
  transition: transform 0.3s;
}

.lang-switcher.open .lang-trigger {
  color: #fff;
}

.top-bar.scrolled .lang-trigger {
  color: #666;
}

.top-bar.scrolled .lang-switcher.open .lang-trigger {
  color: #0B7CCB;
}

.lang-switcher.open .lang-trigger svg {
  transform: rotate(180deg);
}

.lang-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 6px;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  padding: 10px;
  
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all 0.25s ease;
  z-index: 9999;
}


.lang-switcher.open .lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-switcher.open .lang-dropdown a{  color: #333;}
.lang-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  color: #333;
  font-size: 13px;
  transition: all 0.2s;
  white-space: nowrap;
  line-height: 30px;
}

.lang-option:hover {
  background: #F5F7FA;
  color: #0B7CCB;
}

.lang-option.active {
  color: #0B7CCB;
  font-weight: 500;
}

.lang-option svg {
  flex-shrink: 0;
  border-radius: 50%;
}

.top-bar .nav-divider {
  color: rgba(255,255,255,0.3);
  font-size: 11px;
}

.top-bar.scrolled .nav-divider {
  color: #ccc;
}

/* ===== Navbar ===== */
.navbar {
  position: fixed;
  top: 35px; left: 0; right: 0;
  z-index: 1000;
  height: 60px;
  transition: all 0.5s ease;
  background: transparent;
}

.navbar.scrolled {
  top: 35px;
  background: rgba(255,255,255,1);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.navbar-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo img { height: 36px; }

/* Nav Contact Info */
.nav-contact {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  margin-left: 40px;
}

.nav-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.nav-contact-item .icon-circle {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.navbar.scrolled .nav-contact-item .icon-circle {
  background: #E8F4FD;
}

.nav-contact-item .icon-circle svg {
  width: 18px;
  height: 18px;
  color: rgba(255,255,255,0.8);
}

.navbar.scrolled .nav-contact-item .icon-circle svg {
  color: #0B7CCB;
}

.nav-contact-item .contact-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.nav-contact-item .contact-label {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.5px;
}

.navbar.scrolled .nav-contact-item .contact-label {
  color: #0B7CCB;
}

.nav-contact-item .contact-detail {
  font-size: 11px;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}

.navbar.scrolled .nav-contact-item .contact-detail {
  color: #666;
}

.nav-center {
  display: flex;
  align-items: center;
  flex: 1;
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  margin-left: auto;
  gap:10px;
  margin-right: 80px;
}

.nav-links li { position: relative; }

.nav-links a {
  display: block;
  padding: 8px 14px;
  font-size: 16px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  transition: color 0.3s;
  position: relative;
}

.navbar.scrolled .nav-links a { color: #333; }
.nav-links a:hover, .nav-links a.active { color: #fff; }
.navbar.scrolled .nav-links a:hover,
.navbar.scrolled .nav-links a.active { color: #0B7CCB; font-weight: 600; }

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  border-radius: 1px;
  background: #fff;
  transition: width 0.3s;
}

.navbar.scrolled .nav-links a::after { background: #0B7CCB; }
.nav-links a:hover::after, .nav-links a.active::after { width: 20px; }

/* Nav Submenu */
.nav-links .has-sub > a { padding-right: 22px; }

.nav-links .has-sub > a::before {
  content: '';
  position: absolute;
  right: 9px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 3px solid transparent;
  border-right: 3px solid transparent;
  border-top: 4px solid rgba(255,255,255,0.5);
  transition: all 0.3s;
}

.navbar.scrolled .nav-links .has-sub > a::before {
  border-top-color: #999;
}

.nav-links .has-sub:hover > a::before {
  border-top-color: #fff;
  transform: translateY(-65%) rotate(180deg);
}

.navbar.scrolled .nav-links .has-sub:hover > a::before {
  border-top-color: #036eb7;
}

.nav-submenu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(14px);
  background: rgba(255,255,255,1);
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  padding: 10px 10px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
  z-index: 9999;
  pointer-events: none;
}

.nav-links .has-sub:hover .nav-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.nav-submenu a {
  display: block;
  padding: 8px 22px;
  font-size: 14px;
  font-weight: 400;
  color: #555 !important;
  white-space: nowrap;
  transition: all 0.15s;
  text-align: center;
}

.nav-submenu a::after { display: none !important; }

.nav-submenu a:hover {
  color: #036eb7 !important;
  background: #f5f9fc;
}

.navbar.scrolled .nav-submenu a:hover {
  color: #036eb7 !important;
  background: #f5f9fc;
}

/* Nav Right */
.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: 16px;
}

.search-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
  color: rgba(255,255,255,0.8);
  transition: all 0.3s;
}

.navbar.scrolled .search-btn { color: #333; }
.search-btn:hover { background: rgba(255,255,255,0.1); color: #fff; }
.navbar.scrolled .search-btn:hover { background: #F5F7FA; color: #0B7CCB; }

.search-box {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.15);
  border-radius: 20px;
  padding: 4px 8px;
  margin-right: 8px;
  transition: all 0.3s;
}
.navbar.scrolled .search-box { background: #F5F7FA; }
.search-box input {
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-size: 14px;
  width: 160px;
  padding: 4px 8px;
}
.navbar.scrolled .search-box input { color: #333; }
.search-box input::placeholder { color: rgba(255,255,255,0.5); }
.navbar.scrolled .search-box input::placeholder { color: #999; }
.search-submit, .search-close {
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(255,255,255,0.8);
  padding: 4px;
  display: flex;
  align-items: center;
}
.navbar.scrolled .search-submit, .navbar.scrolled .search-close { color: #666; }
.search-submit:hover, .search-close:hover { color: #fff; }
.navbar.scrolled .search-submit:hover, .navbar.scrolled .search-close:hover { color: #0B7CCB; }

/* Search Overlay - centered card style */
.search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 22, 40, 0.8);
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s ease;
  backdrop-filter: blur(4px);
}

.search-overlay.active {
  opacity: 1;
  visibility: visible;
}

.search-overlay-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 640px;
  max-width: 90vw;
}

.search-overlay.active .search-overlay-inner {
  transform: translate(-50%, -50%);
}

.search-overlay .search-close {
  position: absolute;
  top: -50px;
  right: 0;
  width: 40px;
  height: 40px;
  border: none;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  cursor: pointer;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.search-overlay .search-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(90deg);
}

.search-overlay .search-box {
  position: relative;
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.search-overlay .search-box input {
  flex: 1;
  height: 56px;
  padding: 0 20px;
  border: none;
  background: transparent;
  font-size: 16px;
  font-weight: 400;
  color: #333;
  outline: none;
  letter-spacing: 0.5px;
}

.search-overlay .search-box input::placeholder {
  color: #aaa;
  font-weight: 400;
}

.search-overlay .search-box .search-submit {
  width: 56px;
  height: 56px;
  border: none;
  background: #036eb7;
  cursor: pointer;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  flex-shrink: 0;
}

.search-overlay .search-box .search-submit:hover {
  background: #025a94;
}

/* Video Popup */
.video-popup {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s ease;
}

.video-popup.active {
  opacity: 1;
  visibility: visible;
}

.video-popup-inner {
  position: relative;
  width: 90%;
  max-width: 960px;
  background: #000;
  border-radius: 8px;
  overflow: hidden;
  transform: scale(0.9);
  transition: transform 0.35s ease;
  border: 2px solid #fff;
}

.video-popup.active .video-popup-inner {
  transform: scale(1);
}

.video-popup-inner video {
  width: 100%;
  display: block;
  outline: none;
}

.video-popup-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  border: none;
  background: #0B7CCB;
  border-radius: 50%;
  cursor: pointer;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  z-index: 10;
}

.video-popup-close:hover {
  background: rgba(255,255,255,0.3);
  transform: rotate(90deg);
}

/* Mobile Menu */
.mobile-toggle {
  display: none;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: none;
  background: transparent;
  color: #fff;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.navbar.scrolled .mobile-toggle { color: #333; }

.mobile-menu {
  display: none;
  position: fixed;
  top: 80px; left: 0; right: 0;
  background: #fff;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  z-index: 999;
  padding: 8px 0;
}

.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  padding: 12px 24px;
  font-size: 15px;
  color: #333;
  transition: all 0.2s;
}
.mobile-menu a:hover, .mobile-menu a.active {
  color: #0B7CCB;
  background: #E8F4FD;
}

/* ===== Banner ===== */
.banner {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: #0A1628;
}

.banner-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
}

.banner-slide.active { opacity: 1; }

.banner-slide .bg-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.08);
  transition: transform 8s ease-out;
}

.banner-slide.active .bg-img { transform: scale(1); }

.banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10,22,40,0.9), rgba(10,22,40,0.6) 50%, transparent);
  z-index: 1;
}

.banner-overlay-bottom {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,22,40,0.7), transparent 40%);
  z-index: 1;
}

.banner-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
}



.banner-text .pretitle {
  font-size: 18px;
  font-weight: 500;
  color: #7BC142;
  letter-spacing: 3px;
  margin-bottom: 16px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s 0.3s forwards;
}

.banner-slide.active .pretitle {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s 0.3s forwards;
}

.banner-text h1 {
  font-size: 72px;
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  letter-spacing: 2px;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(30px);
}

.banner-slide.active .banner-text h1 {
  animation: fadeInUp 0.7s 0.45s forwards;
}

.banner-text .subtitle {
  font-size: 22px;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  margin-bottom: 8px;
  opacity: 0;
  transform: translateY(20px);
}

.banner-slide.active .banner-text .subtitle {
  animation: fadeInUp 0.6s 0.6s forwards;
}

.banner-text .desc {
  font-size: 16px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(20px);
}

.banner-slide.active .banner-text .desc {
  animation: fadeInUp 0.6s 0.7s forwards;
}

.banner-text .btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 24px;
  border: 1px solid rgba(255,255,255,0.35);
  color: #fff;
  font-size: 14px;
  letter-spacing: 1px;
  border-radius: 30px;
  transition: all 0.5s;
  opacity: 0;
  transform: translateY(20px);
  margin-top: 60px;
}

.banner-slide.active .banner-text .btn-outline {
  animation: fadeInUp 0.6s 0.85s forwards;
}

.banner-text .btn-outline:hover {
  background: #036eb7;
  color: #fff;
  border-color: #036eb7;
}

.banner-text .btn-outline svg {
  transition: transform 0.3s;
}

.banner-text .btn-outline:hover svg {
  transform: translateX(4px);
}

/* Banner Indicators */
.banner-indicators {
  position: absolute;
  right: 60px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.banner-indicators button {
  width: 3px;
  border-radius: 2px;
  border: none;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0;
}

.banner-indicators button.active {
  height: 48px;
  background: #fff;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.4);
}

.banner-indicators button:not(.active) {
  height: 20px;
}

.banner-indicators button:not(.active):hover {
  background: rgba(255, 255, 255, 0.5);
  height: 28px;
}

/* Scroll Down */
.scroll-down {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  opacity: 0;
  animation: fadeIn 1s 1.5s forwards;
}

.scroll-down span {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 3px;
}

.scroll-down .scroll-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: bounce 2s infinite;
}

.scroll-down .scroll-icon svg {
  width: 12px;
  height: 12px;
  color: rgba(255,255,255,0.5);
}

/* ===== Solutions ===== */
.solutions {
  position: relative;
  overflow: hidden;
}

.solutions-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.solutions-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.solutions-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.4);
}

.solutions .content-container { position: relative; z-index: 1; }

.section-label {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: #999;
  letter-spacing: 1px;
  text-transform: Capitalize;
  margin-bottom: 10px;
  margin-top: 10px;
}

.solutions-header {
  display: flex;
  flex-wrap: wrap;
  gap: 80px;
  margin-bottom: 60px;
  align-items: flex-start;
}

.solutions-header .left { flex: 1; min-width: 300px; }
.solutions-header .right { flex: 1.1; min-width: 300px; }

.section-title-group h2 {
  font-size: 36px;
  font-weight: 700;
  color: #1A1A1A;
  line-height: 1.3;
  letter-spacing: 1px;
  margin-bottom: 0px;
  margin-top: 20px;
}
.solution_detailA .right .section-title-group h2{ margin-top: 0;}
.solutions-desc {
  font-size: 15px;
  color: #333;
  line-height: 1.9;
  margin-bottom: 40px;
  margin-top: 40px;
}
.solution_detailA .right{ padding-top:0!important;;}

.solutions-header .right img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.btn-outline-blue {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 24px;
  border: 1px solid #036eb7;
  color: #036eb7;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 1px;
  border-radius: 30px;
  transition: all 0.4s;
  margin-top: 20px;
}

.btn-outline-blue:hover {
  background: #036eb7;
  color: #fff;
  border-color: #036eb7;
}

.btn-outline-blue svg {
  width: 14px;
  height: 14px;
  transition: transform 0.3s;
}

.btn-outline-blue:hover svg { transform: translateX(4px); }

/* Solution Cards */
.solution-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.solution-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 258px;
  cursor: pointer;
}

.solution-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}

.solution-card:hover img { transform: scale(1.08); }

.solution-card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75), rgba(0,0,0,0.2) 50%, transparent);
  z-index: 1;
}

.solution-card .card-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px;
  z-index: 2;
}

.solution-card .card-label {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 8px;
}

.solution-card h3 {
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(255,255,255,0.8);
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.4s;
}

.solution-card:hover .card-link {
  opacity: 1;
  transform: translateX(0);
}

/* ===== Products ===== */
.products {
  background: #ddedf8;
}

.section-header-left {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 56px;
}

.section-header-left h2 {
  font-size: 40px;
  font-weight: 700;
  color: #1A1A1A;
  line-height: 1.3;
  letter-spacing: 1px;
}

.section-sub-en {
  font-size: 15px;
  font-weight: 500;
  color: #999;
  letter-spacing: 1px;
  margin-top: 8px;
  text-transform: Capitalize;
}

.products .section-header-left h2 {

}

.products .section-sub-en {

}

.section-header-left .section-title-group {
  flex: 1;
  min-width: 0;
}

.products-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 24px;
  border: 1px solid #036eb7;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 1px;
  color: #036eb7;
  transition: all 0.3s;
  flex-shrink: 0;
}

.products-more-btn svg {
  transition: transform 0.3s;
}

.products-more-btn:hover {
  background: #036eb7;
  color: #fff;
  border-color: #036eb7;
}

.products-more-btn:hover svg {
  transform: translateX(4px);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
}

.product-card {
  display: block;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s;
  color: #1A3A6B;
  text-decoration: none;
  box-shadow: 0 2px 16px rgba(11,124,203,0.06);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(11,124,203,0.14);
}

.product-body {
  display: flex;
  gap: 40px;
  padding: 38px;
  align-items: stretch;
}

.product-img {
  width: 52%;
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
  background: #f0f5fb;
  border-radius: 12px;
  min-height: 280px;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}

.product-card:hover .product-img img {
  transform: scale(1.05);
}

.product-right {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.product-info {
  margin-bottom: 20px;
}

.product-info h3 {
  font-size: 20px;
  font-weight: 800;
  color: #036eb7;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.product-scene {
  font-size: 13px;
  color: #8ba3c1;
  font-weight: 400;
}

.product-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.product-features li {
  font-size: 14px;
  color: #4a6a8a;
  line-height: 1.6;
  padding-left: 18px;
  position: relative;
}

.product-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #036eb7;
}

/* ===== About ===== */
.about {
  background: url(../images/bjbj.jpg) no-repeat top center;
  background-size: cover;
}

.about-body {
  display: flex;
  gap: 80px;
  align-items: stretch;
  margin-bottom: 60px;
}

.about-left {
  width: 50%;
  padding-top: 24px;
}
@media (max-width: 1680px){

.about-left {

  padding-top: 0px;
}

}

.about-tag {
  display: block;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 500;
  color: #999;
  letter-spacing: 1px;
  text-transform: Capitalize;
  margin-bottom: 25px;
}

.about-tag svg {
  color: #0B7CCB;
}

.about-left h2 {
  font-size: 38px;
  font-weight: 700;
  color: #1A1A1A;
  line-height: 1.3;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.about-desc{ margin-top: 32px;}

.about-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 24px;
  border: 1px solid #036eb7;
  color: #036eb7;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 1px;
  border-radius: 30px;
  transition: all 0.4s;
 
  margin-top: 38px;
}

.about-btn:hover {
  background: #036eb7;
  color: #fff;
  border-color: #036eb7;
}

.about-btn svg {
  width: 14px;
  height: 14px;
  transition: transform 0.3s;
}

.about-btn:hover svg {
  transform: translateX(4px);
}

.about-desc p {
  font-size: 16px;
  color: #333;
  line-height: 1.7;
  margin-bottom: 12px;
}

.about-desc p:last-child {
  margin-bottom: 0;
}

.about-right {
  width: 48%;
  flex-shrink: 0;
}

.about-video {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  width: 100%;
  height: 100%;
}

.about-video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}

.about-video:hover img {
  transform: scale(1.05);
}

.about-video::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.2);
  transition: background 0.4s;
  z-index: 1;
  border-radius: 16px;
}

.about-video:hover::after {
  background: rgba(0,0,0,0.1);
}

.about-video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
}

.about-video-play svg {
  width: 24px;
  height: 24px;
  color: #036eb7;
  margin-left: 3px;
}

.about-video:hover .about-video-play {
  background: #036eb7;
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 6px 32px rgba(3,110,183,0.4);
}

.about-video:hover .about-video-play svg {
  color: #fff;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.about-stat-card {
  background: #F0F7FF;
  border-radius: 12px;
  padding: 28px 16px;
  text-align: center;
  transition: all 0.4s;
  position: relative;
  overflow: hidden;


background: linear-gradient(135deg, #F0F7FF 0%, #E8F4FD 100%);
    border-radius: 20px;
    padding: 30px 24px;
    text-align: center;
    border: 1px solid rgba(11, 124, 203, 0.08);

}

.about-stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, #0B7CCB, #7BC142);
  opacity: 0;
  transition: opacity 0.4s;
}

.about-stat-card:hover {
  background: linear-gradient(135deg, #0B7CCB, #036eb7);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(11,124,203,0.3);
}

.about-stat-card:hover::before {
  opacity: 1;
}

.about-stat-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #0B7CCB;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  transition: background 0.4s;
}

.about-stat-card:hover .about-stat-icon {
  background: rgba(255,255,255,0.2);
}

.about-stat-icon svg {
  width: 22px;
  height: 22px;
  color: #fff;
}

.about-stat-value {
  font-size: 36px;
  font-weight: 700;
  color: #1A1A1A;
  line-height: 1;
  margin-bottom: 6px;
  transition: color 0.4s;
}

.about-stat-card:hover .about-stat-value {
  color: #fff;
}

.about-stat-unit {
  font-size: 16px;
  font-weight: 700;
  color: #7BC142;
  transition: color 0.4s;
}

.about-stat-card:hover .about-stat-unit {
  color: #7BC142;
}

.about-stat-label {
  font-size: 14px;
  color: #666;
  margin-top: 8px;
  transition: color 0.4s;
}

.about-stat-card:hover .about-stat-label {
  color: rgba(255,255,255,0.8);
}

/* ===== Core Values ===== */
.core-values { background: #fff; }

.values-header { text-align: center; margin-bottom: 56px; }

.values-header h2 {
  font-size: 38px;
  font-weight: 700;
  color: #1A1A1A;
  letter-spacing: 1px;
}

.values-header p {
  font-size: 16px;
  color: #555;
  margin-top: 12px;
}

.values-accordion {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.value-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: default;
  min-height: 420px;
}

.value-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.value-card .vc-overlay {
  position: absolute;
  inset: 0;
 
  z-index: 1;
}
body .vc-metric{ color: #fff!important;}

.value-card .vc-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px 20px;
  box-sizing: border-box;
}

.vc-top {
  display: flex;
  align-items: center;
  gap: 10px;
}

.vc-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(3,110,183,0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  display: none;
}

.vc-icon svg {
  width: 20px;
  height: 20px;
  color: #fff;
}

.vc-title {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
}

.vc-subtitle {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
}

.vc-bottom {
  opacity: 1;
  transform: none;
}

.vc-metric {
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 4px;
}

.vc-metric-label {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 16px;
}

.vc-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  max-width: 320px;
  min-height: 74px;
}

/* ===== News ===== */
.news {
  background: #fff;
  padding-top: 0px;
  padding-bottom: 80px;
}

.news-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 24px;
  border: 1px solid #036eb7;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 1px;
  color: #036eb7;
  transition: all 0.3s;
  flex-shrink: 0;
}

.news-more-btn svg {
  transition: transform 0.3s;
}

.news-more-btn:hover {
  background: #036eb7;
  color: #fff;
  border-color: #036eb7;
}

.news-more-btn:hover svg {
  transform: translateX(4px);
}

.news-bd {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  padding: 60px 0 0;
  padding-top: 10px;
}

.news-bd-left {
  width: 46%;
  display: flex;
  flex-direction: column;
  padding-bottom: 21px;
}

.news-featured {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.news-featured-img {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.news-featured-img::before {
  content: "";
  display: block;
  padding-top: 51%;
}

.news-featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  transition: transform 0.7s ease;
}

.news-featured:hover .news-featured-img img {
  transform: scale(1.15);
}

.news-featured-name {
  font-size: 22px;
  font-weight: 600;
  color: #1A1A1A;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  margin: 12px 0 8px;
  transition: all 0.3s;
  margin-top: 40px;
}

.news-featured:hover .news-featured-name {
  text-decoration: underline;
  color: #1c80f3;
}

.news-featured .news-date {
  margin-top: auto;
}

.news-bd-right {
  width: 49%;
  border-left: 1px solid #e5e9eb;
  padding: 0 0 0 80px;
  margin: 0 0 0 44px;
  display: flex;
  flex-direction: column;
}

.news-date {
  font-size: 14px;
  color: #7a7a7a;
  font-family: Arial, sans-serif;
  display: block;
  align-items: center;
}

.news-date svg {
  margin: 0 6px 0 0;
}

.news-list {
  display: flex;
  flex-direction: column;
}

.news-item {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #e5e9eb;
  padding: 20px 0;
  overflow: hidden;
}

.news-item:first-child {
  padding-top: 0;
}

.news-item:last-child {
  border: 0;
}

.news-item-info {
  width: 57%;
  display: flex;
  flex-wrap: wrap;
  align-content: space-between;
  padding: 2px 0;
}

.news-item-name {
  font-size: 20px;
  font-weight: 500;
  color: #1A1A1A;
  display: -webkit-box;
  height: 64px;
  line-height: 24px;
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  width: 100%;
  transition: all 0.3s;
  line-height: 30px;

}

.news-item:hover .news-item-name {
  text-decoration: underline;
  color: #1c80f3;
}

.news-item-img {
  width: 30%;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.news-item-img::before {
  content: "";
  display: block;
  padding-top: 67.57%;
}

.news-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  transition: transform 0.7s ease;
}

.news-item:hover .news-item-img img {
  transform: scale(1.15);
}

/* ===== Footer ===== */
.footer-wrap {
  background: #036eb7;
  color: #fff;
  padding-top: 50px;
  overflow: hidden;
}

.footer-wrap a {
  color: #8ebef4;
  transition: color 0.3s;
}

.footer-wrap a:hover {
  color: #fff;
}

.footer-hd {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0 0 28px;
}

.footer-company-name {
  text-align: left;
}

.fc-name-zh {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 2px;
  margin: 0;
  line-height: 1.2;
}

.fc-name-en {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  margin: 6px 0 0;
  letter-spacing: 0.5px;
  line-height: 1.4;
}

.footer-bd {
  display: flex;
  justify-content: space-between;
  padding: 36px 0 30px;
}

.footer-bd-left {
  width: 40%;
}

.footer-offices {
  display: flex;
  gap: 48px;
  
  padding-bottom: 28px;
  
}

.footer-office {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-office-title {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  margin-bottom: 6px;
}

.footer-office-info p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}

.footer-info-icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  flex-shrink: 0;
}

.footer-info-icon {
  width: 11px;
  height: 11px;
  color: rgba(255, 255, 255, 0.85);
}

.footer-qr-row {
  display: flex;
  gap: 28px;
  align-items: flex-start;
}

.footer-qr-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-qr-img {
  width: 110px;
  height: 110px;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
}

.footer-qr-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.footer-qr-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.footer-qr-icon {
  width: 16px;
  height: 14px;
  flex-shrink: 0;
}

.footer-nav {
  width: 56%;
  line-height: 2.25;
}

.footer-nav ul {
  display: flex;
  justify-content: space-between;
}

.footer-nav ul li h4 a {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}

.footer-subnav {
  font-size: 14px;
  line-height: 2.25;
  padding: 8px 0 0;
}

.footer-subnav a {
  display: block;
  color: rgba(255, 255, 255, 0.7);
}

.footer-copyright {
  font-size: 13px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: #8ebef4;
}

.footer-copyright a {
  color: #8ebef4;
  display: inline-block;
  margin: 0 0 0 6px;
}

.footer-copyright a:hover {
  color: #fff;
}

/* ===== Animations ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* Scroll Reveal */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.25,0.46,0.45,0.94),
              transform 0.8s cubic-bezier(0.25,0.46,0.45,0.94);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .content-container { padding: 0 40px; }
  .nav-contact { display: none; }
  .banner-text h1 { font-size: 48px; }
  .solution-cards { grid-template-columns: 1fr; }
  .values-accordion { flex-direction: column; height: auto; }
  .value-card { flex: 1 !important; height: 200px; }
  .value-card.active { height: 380px; }
  .vc-bottom { opacity: 1; transform: none; }
  .products-grid { grid-template-columns: 1fr; }
  .product-body { flex-direction: column; }
  .product-img { width: 100%; }
  .about-body { flex-direction: column; }
  .about-left { width: 100%; }
  .about-right { width: 100%; }
  .about-stats { grid-template-columns: repeat(3, 1fr); }
  .news-bd { flex-wrap: wrap; padding: 15px 0 0; }
  .news-bd-left { width: 100%; }
  .news-featured-name { font-size: 14px; margin: 10px 0; }
  .news-bd-right { width: 100%; padding: 15px 0 0; margin: 15px 0 0; border-top: 1px solid #e5e9eb; border-left: 0; }
  .news-date { font-size: 13px; }
  .news-item { padding: 10px 0; }
  .news-item:last-child { border-bottom: 1px solid #e5e9eb; }
  .news-item-info { width: 60%; }
  .news-item-name { font-size: 14px; line-height: 20px; height: 40px; margin: 0 0 8px; }
  .footer-bd { flex-wrap: wrap; padding: 24px 0 30px; }
  .footer-bd-left { width: 100%; }
  .footer-offices { flex-direction: column; gap: 20px; }
  .footer-office { gap: 12px; }
  .footer-office-info p { font-size: 13px; }
  .footer-qr-row { gap: 20px; margin-top: 20px; }
  .footer-qr-img { width: 90px; height: 90px; }
  .fc-name-zh { font-size: 18px; }
  .fc-name-en { font-size: 12px; }
  .footer-nav { width: 100%; padding: 20px 0 0; }
  .footer-nav ul { flex-wrap: wrap; margin: 0 -12px; justify-content: space-between; }
  .footer-nav ul li { padding: 0 12px; }
  .footer-nav ul li h4 a { font-size: 14px; }
  .footer-subnav a { font-size: 13px; color: #fff; }
  .footer-copyright { font-size: 12px; flex-wrap: wrap; padding: 16px 0; margin: 20px 0 0; }
}

@media (max-width: 768px) {
  .content-container { padding: 0 20px; }
  .section-padding { padding: 60px 0; }
  .nav-links { display: none; }
  .mobile-toggle { display: flex; }
  .banner-text h1 { font-size:24px; }
  .solutions-header h2,
  .values-header h2, .section-header-left h2 { font-size: 28px; }
  .about-body { flex-direction: column; }
  .about-left { width: 100%; }
  .about-right { width: 100%; }
  .about-stats { grid-template-columns: repeat(2, 1fr); }
  .about-stat-value { font-size: 28px; }
  .product-body { flex-direction: column; padding: 0 20px 20px; }
  .product-img { width: 100%; }
  .product-info h3 { font-size: 20px; }
  .news-item-name { font-size: 14px; }
  .news-item-info { width: 60%; }
  .footer-offices { flex-direction: column; gap: 16px; }
  .footer-office { flex-direction: column; gap: 4px; }
  .footer-qr-row { flex-direction: column; align-items: center; gap: 16px; }
  .fc-name-zh { font-size: 16px; }
  .footer-nav ul { justify-content: flex-start; gap: 16px; }
  .footer-nav ul li { flex: 0 0 calc(33.33% - 12px); }
  .footer-copyright { flex-direction: column; gap: 6px; text-align: center; }
  .banner-indicators { right: 20px; }
  .banner-text .btn-outline{ margin-top: 30px;}
  .banner-text h1{ margin-bottom: 15px;}
  .scroll-down{ bottom: 20px!important;}
  
  
}







/*内页开始*/
/* =====================================================
   PAGE BANNER SECTION
   ===================================================== */
.strp-page-banner-x7k9m2 {
  position: relative;
  width: 100%;
  height: 480px;
  min-height: 480px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.strp-page-banner-x7k9m2 .strp-banner-bg-x7k9m2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
  transform: scale(1.05);
  transition: transform 8s ease-out;
}

.strp-page-banner-x7k9m2:hover .strp-banner-bg-x7k9m2 {
  transform: scale(1);
}

.strp-page-banner-x7k9m2 .strp-banner-overlay-x7k9m2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(10,22,40,0.88) 0%, rgba(10,22,40,0.65) 40%, rgba(26,90,180,0.35) 100%);
  z-index: 2;
}

.strp-page-banner-x7k9m2 .strp-banner-content-x7k9m2 {
  position: relative;
  z-index: 3;
  max-width: var(--strp-max-width);
  width: 100%;
  margin: 0 auto;
  padding: 0 60px 80px;
}

.strp-page-banner-x7k9m2 .strp-banner-subtitle-x7k9m2 {
  font-size: 18px;
  font-weight: 400;
  color: rgba(255,255,255,0.7);
  letter-spacing: 6px;
  text-transform: uppercase;
  margin-bottom: 12px;
  opacity: 0;
  transform: translateY(20px);
  animation: strpFadeInUp 0.8s ease forwards 0.2s;
}

.strp-page-banner-x7k9m2 .strp-banner-title-x7k9m2 {
  font-size: 72px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 2px;
  line-height: 1.1;
  opacity: 0;
  transform: translateY(30px);
  animation: strpFadeInUp 0.8s ease forwards 0.4s;
}

.strp-page-banner-x7k9m2 .strp-banner-title-cn-x7k9m2 {
  font-size: 20px;
  font-weight: 400;
  color: rgba(255,255,255,0.8);
  letter-spacing: 4px;
  margin-top: 12px;
  opacity: 0;
  transform: translateY(20px);
  animation: strpFadeInUp 0.8s ease forwards 0.6s;
}

/* =====================================================
   CONTENT SECTIONS
   ===================================================== */
.strp-section-x7k9m2 {
  max-width: var(--strp-max-width);
  margin: 0 auto;
  padding: 80px 60px;
}

.strp-section-narrow-x7k9m2 {
  max-width: var(--strp-content-width);
  margin: 0 auto;
  padding: 50px 40px;
  padding-bottom: 40px;
}

.cpjli{ padding-bottom: 50px;}

.strp-section-bg-x7k9m2 {
  background: var(--strp-bg-light);
}

.strp-section-dark-x7k9m2 {
  background: var(--strp-primary);
  color: #fff;
}

/* Section Header */
.strp-section-header-x7k9m2 {
  margin-bottom: 60px;
}

.strp-section-header-x7k9m2 .strp-section-label-x7k9m2 {
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  color: var(--strp-accent);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 16px;
  padding-left: 20px;
  position: relative;
}

.strp-section-header-x7k9m2 .strp-section-label-x7k9m2::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 16px;
  background: var(--strp-accent);
  border-radius: 2px;
}

.strp-section-header-x7k9m2 .strp-section-title-x7k9m2 {
  font-size: 36px;
  font-weight: 600;
  color: var(--strp-text-primary);
  line-height: 1.3;
  margin-bottom: 16px;
}

.strp-section-header-x7k9m2 .strp-section-desc-x7k9m2 {
  font-size: 16px;
  color: var(--strp-text-secondary);
  line-height: 1.8;
  max-width: 800px;
}

/* Dark section header */
.strp-section-dark-x7k9m2 .strp-section-header-x7k9m2 .strp-section-title-x7k9m2 {
  color: #fff;
}

.strp-section-dark-x7k9m2 .strp-section-header-x7k9m2 .strp-section-desc-x7k9m2 {
  color: rgba(255,255,255,0.7);
}

/* =====================================================
   GRID LAYOUTS
   ===================================================== */
.strp-grid-2-x7k9m2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.strp-grid-3-x7k9m2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.strp-grid-4-x7k9m2 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* =====================================================
   CARDS
   ===================================================== */
.strp-card-x7k9m2 {
  background: var(--strp-bg-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--strp-shadow-sm);
  border: 1px solid var(--strp-border-light);
  transition: var(--strp-transition-smooth);
}

.strp-card-x7k9m2:hover {
  box-shadow: var(--strp-shadow-lg);
  transform: translateY(-4px);
}

.strp-card-img-x7k9m2 {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.strp-card-x7k9m2:hover .strp-card-img-x7k9m2 {
  transform: scale(1.05);
}

.strp-card-body-x7k9m2 {
  padding: 28px;
}

.strp-card-title-x7k9m2 {
  font-size: 20px;
  font-weight: 600;
  color: var(--strp-text-primary);
  margin-bottom: 12px;
}

.strp-card-text-x7k9m2 {
  font-size: 14px;
  color: var(--strp-text-secondary);
  line-height: 1.7;
}

/* =====================================================
   FEATURE CARDS (Icon + Title + Description)
   ===================================================== */
.strp-feature-card-x7k9m2 {
  background: var(--strp-bg-white);
  border-radius: 16px;
  padding: 40px 32px;
  text-align: center;
  border: 1px solid var(--strp-border-light);
  transition: var(--strp-transition-smooth);
  position: relative;
  overflow: hidden;
}

.strp-feature-card-x7k9m2::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--strp-gradient-blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.strp-feature-card-x7k9m2:hover::before {
  transform: scaleX(1);
}

.strp-feature-card-x7k9m2:hover {
  box-shadow: var(--strp-shadow-lg);
  transform: translateY(-6px);
}

.strp-feature-icon-x7k9m2 {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(26,95,180,0.1) 0%, rgba(0,200,255,0.1) 100%);
  border-radius: 16px;
  font-size: 28px;
  color: var(--strp-accent);
}

.strp-feature-title-x7k9m2 {
  font-size: 18px;
  font-weight: 600;
  color: var(--strp-text-primary);
  margin-bottom: 12px;
}

.strp-feature-desc-x7k9m2 {
  font-size: 14px;
  color: var(--strp-text-secondary);
  line-height: 1.7;
}

/* Dark feature cards */
.strp-feature-card-dark-x7k9m2 {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 40px 32px;
  text-align: center;
  transition: var(--strp-transition-smooth);
}

.strp-feature-card-dark-x7k9m2:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-6px);
}

.strp-feature-card-dark-x7k9m2 .strp-feature-icon-x7k9m2 {
  background: rgba(255,255,255,0.1);
  color: var(--strp-accent-cyan);
}

.strp-feature-card-dark-x7k9m2 .strp-feature-title-x7k9m2 {
  color: #fff;
}

.strp-feature-card-dark-x7k9m2 .strp-feature-desc-x7k9m2 {
  color: rgba(255,255,255,0.7);
}

/* =====================================================
   SOLUTION CARDS (Large, with image on side)
   ===================================================== */
.strp-solution-row-x7k9m2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: center;
  background: var(--strp-bg-white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--strp-shadow-md);
  margin-bottom: 40px;
}

.strp-solution-row-x7k9m2:nth-child(even) {
  direction: rtl;
}

.strp-solution-row-x7k9m2:nth-child(even) > * {
  direction: ltr;
}

.strp-solution-img-x7k9m2 {
  width: 100%;
  height: 100%;
  min-height: 400px;
  object-fit: cover;
}

.strp-solution-content-x7k9m2 {
  padding: 60px 48px;
}

.strp-solution-tag-x7k9m2 {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  color: var(--strp-accent);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 16px;
  padding: 6px 16px;
  background: rgba(26,95,180,0.08);
  border-radius: 20px;
}

.strp-solution-title-x7k9m2 {
  font-size: 28px;
  font-weight: 600;
  color: var(--strp-text-primary);
  margin-bottom: 20px;
  line-height: 1.3;
}

.strp-solution-desc-x7k9m2 {
  font-size: 15px;
  color: var(--strp-text-secondary);
  line-height: 1.8;
}

.strp-solution-list-x7k9m2 {
  margin-top: 24px;
}

.strp-solution-list-x7k9m2 li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 14px;
  color: var(--strp-text-secondary);
  line-height: 1.6;
}

.strp-solution-list-x7k9m2 li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--strp-accent);
  border-radius: 50%;
  margin-top: 8px;
  flex-shrink: 0;
}

/* =====================================================
   STATS / DATA DISPLAY
   ===================================================== */
.strp-stats-row-x7k9m2 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.strp-stat-item-x7k9m2 {
  text-align: center;
  padding: 48px 24px;
  position: relative;
}

.strp-stat-item-x7k9m2:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 60px;
  background: var(--strp-border);
}

.strp-stat-number-x7k9m2 {
  font-size: 48px;
  font-weight: 700;
  color: var(--strp-accent);
  line-height: 1;
  margin-bottom: 8px;
  font-variant-numeric: tabular-nums;
}

.strp-stat-unit-x7k9m2 {
  font-size: 18px;
  font-weight: 400;
  color: var(--strp-accent-light);
}

.strp-stat-label-x7k9m2 {
  font-size: 14px;
  color: var(--strp-text-muted);
  margin-top: 8px;
}

/* Dark stats */
.strp-section-dark-x7k9m2 .strp-stat-item-x7k9m2:not(:last-child)::after {
  background: rgba(255,255,255,0.1);
}

.strp-section-dark-x7k9m2 .strp-stat-number-x7k9m2 {
  color: var(--strp-accent-cyan);
}

.strp-section-dark-x7k9m2 .strp-stat-unit-x7k9m2 {
  color: rgba(255,255,255,0.8);
}

.strp-section-dark-x7k9m2 .strp-stat-label-x7k9m2 {
  color: rgba(255,255,255,0.6);
}

/* =====================================================
   TIMELINE
   ===================================================== */
.strp-timeline-x7k9m2 {
  position: relative;
  padding: 40px 0;
}

.strp-timeline-line-x7k9m2 {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--strp-border);
  transform: translateX(-50%);
}

.strp-timeline-item-x7k9m2 {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
  align-items: center;
}

.strp-timeline-item-x7k9m2:last-child {
  margin-bottom: 0;
}

.strp-timeline-dot-x7k9m2 {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 16px;
  background: var(--strp-accent);
  border-radius: 50%;
  border: 3px solid var(--strp-bg-white);
  box-shadow: 0 0 0 3px var(--strp-accent);
  z-index: 2;
}

.strp-timeline-year-x7k9m2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--strp-accent);
  line-height: 1;
  margin-bottom: 8px;
}

.strp-timeline-content-x7k9m2 {
  padding: 24px 0;
}

.strp-timeline-title-x7k9m2 {
  font-size: 18px;
  font-weight: 600;
  color: var(--strp-text-primary);
  margin-bottom: 8px;
}

.strp-timeline-text-x7k9m2 {
  font-size: 14px;
  color: var(--strp-text-secondary);
  line-height: 1.7;
}

/* =====================================================
   PRODUCT LIST CARDS
   ===================================================== */
.strp-product-card-x7k9m2 {
  background: var(--strp-bg-white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--strp-shadow-sm);
  border: 1px solid var(--strp-border-light);
  transition: var(--strp-transition-smooth);
  cursor: pointer;
}

.strp-product-card-x7k9m2:hover {
  box-shadow: var(--strp-shadow-xl);
  transform: translateY(-8px);
}

.strp-product-img-wrap-x7k9m2 {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f0f4f8 0%, #e8eef5 100%);
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
}

.strp-product-img-x7k9m2 {
  max-width: 100%;
  max-height: 260px;
  object-fit: contain;
  transition: transform 0.6s ease;
}

.strp-product-card-x7k9m2:hover .strp-product-img-x7k9m2 {
  transform: scale(1.08);
}

.strp-product-badge-x7k9m2 {
  position: absolute;
  top: 20px;
  left: 20px;
  padding: 6px 16px;
  background: var(--strp-gradient-blue);
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  border-radius: 20px;
}

.strp-product-body-x7k9m2 {
  padding: 28px;
}

.strp-product-name-x7k9m2 {
  font-size: 22px;
  font-weight: 600;
  color: var(--strp-text-primary);
  margin-bottom: 10px;
}

.strp-product-summary-x7k9m2 {
  font-size: 14px;
  color: var(--strp-text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
}

.strp-product-meta-x7k9m2 {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.strp-product-tag-x7k9m2 {
  font-size: 12px;
  padding: 4px 12px;
  background: var(--strp-bg-gray);
  color: var(--strp-text-muted);
  border-radius: 12px;
}

/* =====================================================
   PRODUCT DETAIL PAGE
   ===================================================== */
.strp-product-hero-x7k9m2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.strp-product-gallery-x7k9m2 {
  background: linear-gradient(135deg, #f0f4f8 0%, #e8eef5 100%);
  border-radius: 20px;
  padding: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 480px;
}

.strp-product-gallery-img-x7k9m2 {
  max-width: 100%;
  max-height: 400px;
  object-fit: contain;
}

.strp-product-info-x7k9m2 {
  padding: 20px 0;
}

.strp-product-info-tag-x7k9m2 {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  color: var(--strp-accent);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 16px;
  padding: 6px 18px;
  background: rgba(26,95,180,0.08);
  border-radius: 20px;
}

.strp-product-info-name-x7k9m2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--strp-text-primary);
  margin-bottom: 20px;
  line-height: 1.2;
}

.strp-product-info-desc-x7k9m2 {
  font-size: 15px;
  color: var(--strp-text-secondary);
  line-height: 1.8;
  margin-bottom: 32px;
}

.strp-product-specs-x7k9m2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

.strp-product-spec-item-x7k9m2 {
  padding: 16px 20px;
  background: var(--strp-bg-light);
  border-radius: 10px;
  border-left: 3px solid var(--strp-accent);
}

.strp-product-spec-label-x7k9m2 {
  font-size: 12px;
  color: var(--strp-text-muted);
  margin-bottom: 4px;
}

.strp-product-spec-value-x7k9m2 {
  font-size: 18px;
  font-weight: 600;
  color: var(--strp-text-primary);
}

.strp-product-cta-x7k9m2 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 36px;
  background: var(--strp-gradient-blue);
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: var(--strp-transition);
  box-shadow: 0 4px 15px rgba(26,95,180,0.3);
}

.strp-product-cta-x7k9m2:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(26,95,180,0.4);
}

/* Feature highlight grid */
.strp-highlight-grid-x7k9m2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.strp-highlight-item-x7k9m2 {
  padding: 32px;
  background: var(--strp-bg-white);
  border-radius: 12px;
  border: 1px solid var(--strp-border-light);
  text-align: center;
  transition: var(--strp-transition);
}

.strp-highlight-item-x7k9m2:hover {
  border-color: var(--strp-accent);
  box-shadow: var(--strp-shadow-md);
}

.strp-highlight-icon-x7k9m2 {
  font-size: 32px;
  margin-bottom: 16px;
}

.strp-highlight-title-x7k9m2 {
  font-size: 16px;
  font-weight: 600;
  color: var(--strp-text-primary);
  margin-bottom: 8px;
}

.strp-highlight-desc-x7k9m2 {
  font-size: 13px;
  color: var(--strp-text-secondary);
  line-height: 1.6;
}

/* =====================================================
   CONTACT PAGE
   ===================================================== */
.strp-contact-grid-x7k9m2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--strp-shadow-lg);
}

.strp-contact-map-x7k9m2 {
  min-height: 500px;
  background: var(--strp-bg-gray);
  position: relative;
}

.strp-contact-map-placeholder-x7k9m2 {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  color: var(--strp-text-muted);
  min-height: 500px;
}

.strp-contact-info-panel-x7k9m2 {
  padding: 60px 48px;
  background: var(--strp-bg-white);
}

.strp-contact-location-tag-x7k9m2 {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  color: var(--strp-accent);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
  padding: 6px 16px;
  background: rgba(26,95,180,0.08);
  border-radius: 20px;
}

.strp-location-title-x7k9m2 {
  font-size: 24px;
  font-weight: 600;
  color: var(--strp-text-primary);
  margin-bottom: 24px;
}

.strp-contact-detail-list-x7k9m2 {
  list-style: none;
  padding: 0;
}

.strp-contact-detail-list-x7k9m2 li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--strp-border-light);
}

.strp-contact-detail-list-x7k9m2 li:last-child {
  border-bottom: none;
}

.strp-contact-icon-x7k9m2 {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--strp-bg-light);
  border-radius: 10px;
  color: var(--strp-accent);
  font-size: 18px;
  flex-shrink: 0;
}

.strp-contact-detail-content-x7k9m2 {
  flex: 1;
}

.strp-contact-detail-label-x7k9m2 {
  font-size: 12px;
  color: var(--strp-text-muted);
  margin-bottom: 4px;
}

.strp-contact-detail-value-x7k9m2 {
  font-size: 15px;
  color: var(--strp-text-primary);
  font-weight: 500;
}

/* =====================================================
   ANIMATIONS
   ===================================================== */
@keyframes strpFadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes strpFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes strpSlideInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes strpSlideInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes strpCountUp {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.strp-animate-fade-in-x7k9m2 {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.strp-animate-fade-in-x7k9m2.strp-visible-x7k9m2 {
  opacity: 1;
  transform: translateY(0);
}

.strp-animate-slide-left-x7k9m2 {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.strp-animate-slide-left-x7k9m2.strp-visible-x7k9m2 {
  opacity: 1;
  transform: translateX(0);
}

.strp-animate-slide-right-x7k9m2 {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.strp-animate-slide-right-x7k9m2.strp-visible-x7k9m2 {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger delays */
.strp-stagger-1 { transition-delay: 0.1s; }
.strp-stagger-2 { transition-delay: 0.2s; }
.strp-stagger-3 { transition-delay: 0.3s; }
.strp-stagger-4 { transition-delay: 0.4s; }
.strp-stagger-5 { transition-delay: 0.5s; }
.strp-stagger-6 { transition-delay: 0.6s; }

/* =====================================================
   BREADCRUMB
   ===================================================== */
.strp-breadcrumb-x7k9m2 {
  padding: 20px 60px;
  max-width: var(--strp-max-width);
  margin: 0 auto;
  font-size: 13px;
  color: var(--strp-text-muted);
}

.strp-breadcrumb-x7k9m2 a {
  color: var(--strp-text-secondary);
  transition: color 0.2s;
}

.strp-breadcrumb-x7k9m2 a:hover {
  color: var(--strp-accent);
}

.strp-breadcrumb-x7k9m2 .strp-separator-x7k9m2 {
  margin: 0 8px;
  color: var(--strp-text-light);
}

.strp-breadcrumb-x7k9m2 .strp-current-x7k9m2 {
  color: var(--strp-text-primary);
  font-weight: 500;
}

/* =====================================================
   SCROLL PROGRESS BAR
   ===================================================== */
.strp-scroll-progress-x7k9m2 {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: var(--strp-gradient-blue);
  z-index: 9999;
  transition: width 0.1s linear;
}

/* =====================================================
   SCROLL TO TOP
   ===================================================== */
.strp-scroll-top-x7k9m2 {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 48px;
  height: 48px;
  background: var(--strp-primary);
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--strp-transition);
  z-index: 999;
  box-shadow: var(--strp-shadow-md);
}

.strp-scroll-top-x7k9m2.strp-visible-x7k9m2 {
  opacity: 1;
  transform: translateY(0);
}

.strp-scroll-top-x7k9m2:hover {
  background: var(--strp-accent);
  transform: translateY(-4px);
}

/* =====================================================
   PATENT / IMAGE GRID
   ===================================================== */
.strp-image-grid-x7k9m2 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.strp-image-grid-item-x7k9m2 {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--strp-shadow-sm);
  transition: var(--strp-transition);
}

.strp-image-grid-item-x7k9m2:hover {
  box-shadow: var(--strp-shadow-md);
  transform: translateY(-4px);
}

.strp-image-grid-item-x7k9m2 img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* =====================================================
   CULTURE CARDS (Mission / Vision / Values)
   ===================================================== */
.strp-culture-card-x7k9m2 {
  text-align: center;
  padding: 48px 32px;
  border-radius: 16px;
  background: var(--strp-bg-white);
  border: 1px solid var(--strp-border-light);
  transition: var(--strp-transition-smooth);
}

.strp-culture-card-x7k9m2:hover {
  box-shadow: var(--strp-shadow-lg);
  transform: translateY(-6px);
}

.strp-culture-en-x7k9m2 {
  font-size: 13px;
  font-weight: 500;
  color: var(--strp-accent);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.strp-culture-title-x7k9m2 {
  font-size: 24px;
  font-weight: 600;
  color: var(--strp-text-primary);
  margin-bottom: 16px;
}

.strp-culture-text-x7k9m2 {
  font-size: 15px;
  color: var(--strp-text-secondary);
  line-height: 1.7;
}

/* =====================================================
   DIVIDER
   ===================================================== */
.strp-divider-x7k9m2 {
  height: 1px;
  background: var(--strp-border);
  margin: 0 auto;
  max-width: var(--strp-max-width);
}

.strp-divider-light-x7k9m2 {
  background: var(--strp-border-light);
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1200px) {
  .strp-section-x7k9m2 {
    padding: 60px 40px;
  }
  .strp-page-banner-x7k9m2 .strp-banner-content-x7k9m2 {
    padding: 0 40px 60px;
  }
  .strp-page-banner-x7k9m2 .strp-banner-title-x7k9m2 {
    font-size: 56px;
  }
  .strp-grid-4-x7k9m2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .strp-section-x7k9m2 {
    padding: 40px 20px;
  }
  .strp-section-narrow-x7k9m2 {
    padding: 40px 20px;
  }
  .strp-page-banner-x7k9m2 {
    height: 360px;
    min-height: 360px;
  }
  .strp-page-banner-x7k9m2 .strp-banner-content-x7k9m2 {
    padding: 0 20px 40px;
  }
  .strp-page-banner-x7k9m2 .strp-banner-title-x7k9m2 {
    font-size: 40px;
  }
  .strp-grid-2-x7k9m2,
  .strp-grid-3-x7k9m2,
  .strp-grid-4-x7k9m2 {
    grid-template-columns: 1fr;
  }
  .strp-solution-row-x7k9m2 {
    grid-template-columns: 1fr;
  }
  .strp-solution-row-x7k9m2:nth-child(even) {
    direction: ltr;
  }
  .strp-stats-row-x7k9m2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .strp-stat-item-x7k9m2:not(:last-child)::after {
    display: none;
  }
  .strp-timeline-x7k9m2 {
    padding-left: 30px;
  }
  .strp-timeline-line-x7k9m2 {
    left: 0;
  }
  .strp-timeline-item-x7k9m2 {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .strp-timeline-dot-x7k9m2 {
    left: 0;
  }
  .strp-product-hero-x7k9m2 {
    grid-template-columns: 1fr;
  }
  .strp-contact-grid-x7k9m2 {
    grid-template-columns: 1fr;
  }
  .strp-highlight-grid-x7k9m2 {
    grid-template-columns: 1fr;
  }
  .strp-image-grid-x7k9m2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===== Inside Banner (内页Banner) ===== */
.inside-banner {
  position: relative;
  overflow: hidden;
  margin-top: 0px;
}

.inside-banner > img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  display: block;
}

.inside-banner .inside-banner-info {
  position: absolute;
  left: 0;
  width: 100%;
  top: 39%;
  color: #fff;
  z-index: 2;
}
.wen_sem{ color: #666; font-size: 16px; text-align: left; line-height: 26px;}
.inside-banner h2 {
  font-size: 48px;
  line-height: 1.3;
  font-weight: 600;
  letter-spacing: 6px;
}

.inside-banner-info p {
  font-size: 16px;
  line-height: 1.6;
  margin-top: 12px;
  letter-spacing: 2px;
  opacity: 0.85;
}

.inside-banner.pic-m img {
  animation: insideBannerPicM 3s ease;
}

@keyframes insideBannerPicM {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

/* ===== Inside Subnav (内页子导航) ===== */
.inside-subnav {
  margin-top: -73px;
  position: relative;
  z-index: 2;
}

.inside-subnav ul {
  position: relative;
  display: flex;
  
  border-bottom: 1px solid #dfdfdf;
}

.inside-subnav ul li {
  flex: 1;
  position: relative;
  border-right: 1px solid #dfdfdf; overflow: hidden;
  background-color: #fff;
}


.inside-subnav .content-container ul li:first-child {
  border-top-left-radius: 15px;    /* 按需修改圆角大小 */

}

/* 最后一个li右上角、右下角圆角 */
.inside-subnav .content-container ul li:last-child {
  border-top-right-radius: 15px;
 
}


.product_big_se{ display: flex;gap:60px; padding-top: 40px;}
.product_big_se_re h2{ font-size: 30px; margin-bottom: 15px;}
.product_big_se_re section{ font-size: 16px; color: #333; line-height: 28px;}
.product_big_se_le{ width: 30%;}
.product_big_se_re{ width: 70%;}
.product-highlights{display:flex;gap:16px;margin-top:20px;}
.product-highlight-item{flex:1;background:linear-gradient(135deg,#036eb7 0%,#0a8fd4 100%);color:#fff;text-align:center;padding:14px 12px 14px;border-radius:10px;position:relative;overflow:hidden;transition:transform 0.3s ease,box-shadow 0.3s ease;}
.product-highlight-item::before{content:'';position:absolute;top:-30px;right:-30px;width:80px;height:80px;border-radius:50%;background:rgba(255,255,255,0.08);}
.product-highlight-item::after{content:'';position:absolute;bottom:-20px;left:-20px;width:60px;height:60px;border-radius:50%;background:rgba(255,255,255,0.05);}
.product-highlight-item:hover{transform:translateY(-4px);box-shadow:0 8px 24px rgba(3,110,183,0.3);}
.product-highlight-num{font-size:23px;font-weight:800;color:#fff;line-height:1.2;position:relative;z-index:1;}
.product-highlight-num span{font-size:16px;font-weight:600;margin-left:2px;}
.product-highlight-label{font-size:13px;color:rgba(255,255,255,0.85);margin-top:2px;font-weight:500;position:relative;z-index:1;}
.inside-subnav ul li a {
  display: block;
  position: relative;
  z-index: 2;
  text-align: center;
  font-size: 20px;
  color: #6d6d6d;
  font-weight: 500;
  padding: 20px 0;
  transition: all 0.3s;
}

.inside-subnav ul li a img {
  margin: 0 12px 0 0;
}

.inside-subnav ul li a:hover,
.inside-subnav ul li.cur a {
  color: #fff;
  background-color: #036eb7;
}

.inside-subnav ul li a:hover img,
.inside-subnav ul li.cur a img {
  filter: invert(100) brightness(100);
}

/* ===== AboutA (公司简介) ===== */
.aboutA {
  background-size: cover;
  background-position: 0 100%;
  background-repeat: no-repeat;
  padding: 70px 0 10px;
}

.aboutA-hd {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.aboutA-hd .aboutA-left {
  width: 38%;
}

.aboutA-hd .aboutA-right {
  width: 46%;
}

.inside-title {
  position: relative;
  z-index: 3;
}

.inside-title h4 {
  font-size: 36px;
  line-height: 1.3;
  font-weight: 600;
  color: #1A1A1A;
}

.comnums {
  display: flex;
  width: 100%;
  position: relative;
  z-index: 2;
  justify-content: space-between;
}

.comnums dl {
  text-align: center;
}

.comnums dl dt {
  line-height: 1;
}

.comnums dl dt p {
  color: #036eb7;
  display: flex;
  align-items: baseline;
  justify-content: center;
  font-weight: 700;
}

.comnums dl dt p .cnums {
  font-size: 48px;
  line-height: 1;
  font-family: 'Times New Roman', Times, serif;
  font-weight: bold;
}

.comnums dl dt p i {
  font-size: 18px;
  font-style: normal;
  margin-left: 4px;
  font-weight: 700;
}

.comnums dl dd {
  font-size: 14px;
  color: #6d6d6d;
  padding-top: 10px;
  font-weight: 400;
}

.aboutA .comnums {
  padding-top: 16px;
}

.aboutA .comnums dl dt p .cnums {
  font-size: 42px;
}

.aboutA-bd {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-top: 20px;
  margin-bottom: 40px;
}
.aboutA .aboutA-desc{ margin-top: 20px;}
.aboutA-bd .aboutA-left {
  width: 38%;
}



.aboutA-bd .aboutA-right {
  width: 58%;
}

.aboutA-img {
  border-radius: 8px;
  overflow: hidden;
}

.aboutA-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 300px;
  display: block;
}

.aboutA-desc {
  font-size: 15px;
  color: #6d6d6d;
  line-height: 2.1;
}

.aboutA-desc p {
  margin-bottom: 0;
}

@media (max-width: 1200px) {
  .inside-banner > img {
    height: 400px;
  }
  .inside-banner h2 {
    font-size: 40px;
  }
}

@media (max-width: 992px) {
  .inside-banner {
    margin-top: 80px;
  }
  .inside-banner > img {
    height: 320px;
  }
  .inside-banner h2 {
    font-size: 32px;
  }
  .inside-subnav {
    margin-top: 0;
    border-bottom: 1px solid #dfdfdf;
    padding: 0;
  }
  .inside-subnav ul {
    overflow-x: auto;
    border-bottom: 0;
  }
  .inside-subnav ul li {
    border-right: none;
  }
  .inside-subnav ul li a {
    font-size: 16px;
    padding: 16px 0;
    white-space: nowrap;
  }
  .inside-subnav ul li a img {
    display: none;
  }
  .aboutA {
    padding: 40px 0 50px;
  }
  .aboutA-hd .aboutA-left,
  .aboutA-hd .aboutA-right,
  .aboutA-bd .aboutA-left,
  .aboutA-bd .aboutA-right {
    width: 100%;
  }
  .aboutA-hd .aboutA-right {
    margin-top: 20px;
  }
  .aboutA-bd {
    padding-top: 30px;
  }
  .aboutA-bd .aboutA-right {
    margin-top: 20px;
  }
  .inside-title h4 {
    font-size: 28px;
  }
  .comnums dl dt p .cnums {
    font-size: 36px;
  }
  .aboutA .comnums dl dt p .cnums {
    font-size: 32px;
  }
  .aboutA-desc {
    font-size: 14px;
    line-height: 1.9;
  }
}

@media (max-width: 768px) {
  .inside-banner {
    margin-top: 72px;
  }
  .inside-banner > img {
    height: 260px;
  }
  .inside-banner h2 {
    font-size: 26px;
    letter-spacing: 3px;
  }
  .inside-subnav ul li a {
    font-size: 14px;
    padding: 12px 0;
  }
  .inside-title h4 {
    font-size: 24px;
  }
  .comnums dl dt p .cnums {
    font-size: 30px;
  }
  .aboutA .comnums dl dt p .cnums {
    font-size: 28px;
  }
}


/* ===== About Section Common ===== */
.about-section {
  padding: 80px 0;
}

.about-section:nth-child(even) {
  background: #F7F9FC;
}

.about-section-header {
  text-align: left;
  margin-bottom: 56px;
}



.about-section-header h2 {
  font-size: 36px;
  font-weight: 700;
  color: #1A1A1A;
  letter-spacing: 2px;
}

/* ===== About Innovation (技术创新能力) ===== */
.about-innovation-body {
  display: flex;
  align-items: flex-start;
  gap: 60px;
}

.about-innovation-img {
  flex: 0 0 48%;
  border-radius: 12px;
  overflow: hidden;
}

.about-innovation-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about-innovation-img:hover img {
  transform: scale(1.03);
}

.about-innovation-text {
  flex: 1;
  display: flex;
  align-items: flex-start;
}

.jscxnl_jj {
  font-size: 16px;
  color: #4A4A4A;
  line-height: 1.8;
  text-align: justify;
  margin-top: 20px;
}

/* ===== About Lab (数字电网实验室) ===== */
.about-lab-body {
  display: flex;
  align-items: flex-start;
  gap: 60px;
}

.about-lab-text {
  flex: 1;
  display: flex;
  align-items: flex-start;
}



.about-lab-img {
  flex: 0 0 48%;
  border-radius: 12px;
  overflow: hidden;
}

.about-lab-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about-lab-img:hover img {
  transform: scale(1.03);
}

/* ===== About Manufacture (制造交付能力) ===== */
.about-manufacture-body {
  display: flex;
  align-items: flex-start;
  gap: 60px;
}

.about-manufacture-img {
  flex: 0 0 48%;
  border-radius: 12px;
  overflow: hidden;
}

.about-manufacture-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about-manufacture-img:hover img {
  transform: scale(1.03);
}

.about-manufacture-text {
  flex: 1;
  display: flex;
  align-items: flex-start;
}
.section-title-group2 h2{ font-size: 30px;}


/* ===== About Timeline (发展历程) ===== */
.about-history {
  background: #0A1628 !important;
  padding: 80px 0 100px;
}

.about-history .about-tag {
  color: #4DB5FF;
}

.about-history .about-tag::before {
  background: #4DB5FF;
}

.about-history .about-section-header h2 {
  color: #fff;
}

.about-timeline {
  display: flex;
  gap: 0;
  position: relative;
  padding-top: 40px;
  overflow-x: auto;
  scrollbar-width: none;
}

.about-timeline::-webkit-scrollbar {
  display: none;
}

.about-timeline::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(77,181,255,0.1), rgba(77,181,255,0.6), rgba(77,181,255,0.1));
}

.about-timeline-item {
  flex: 1;
  min-width: 200px;
  position: relative;
  padding: 0 24px;
  text-align: center;
  cursor: default;
}

.about-timeline-item::before {
  content: '';
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #036eb7;
  border: 3px solid #0A1628;
  box-shadow: 0 0 0 2px #036eb7;
  transition: all 0.3s ease;
  z-index: 1;
}

.about-timeline-item:hover::before {
  background: #4DB5FF;
  box-shadow: 0 0 0 2px #4DB5FF, 0 0 16px rgba(77,181,255,0.4);
  transform: translateX(-50%) scale(1.3);
}

.about-timeline-year {
  font-size: 28px;
  font-weight: 700;
  color: #4DB5FF;
  margin-bottom: 16px;
  letter-spacing: 1px;
  transition: all 0.3s;
}

.about-timeline-item:hover .about-timeline-year {
  color: #fff;
  text-shadow: 0 0 20px rgba(77,181,255,0.5);
}

.about-timeline-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  transition: color 0.3s;
}

.about-timeline-item:hover .about-timeline-desc {
  color: rgba(255,255,255,0.9);
}

/* ===== About Honors (资质&荣誉) ===== */
.about-honors-carousel {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
}

.about-honors-prev,
.about-honors-next {
  width: 44px;
  height: 44px;
  border: 1px solid #d0d0d0;
  background: #fff;
  border-radius: 50%;
  cursor: pointer;
  color: #666;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  flex-shrink: 0;
}

.about-honors-prev:hover,
.about-honors-next:hover {
  background: #036eb7;
  border-color: #036eb7;
  color: #fff;
}

.about-honors-track {
  flex: 1;
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.about-honors-track::-webkit-scrollbar {
  display: none;
}

.about-honors-item {
  flex: 0 0 auto;
  width: calc(20% - 16px);
  min-width: 160px;
  text-align: center;
  cursor: pointer;
  transition: transform 0.4s ease;
}

.about-honors-item:hover {
  transform: translateY(-4px);
}

.about-honors-item img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  border: 1px solid #e8e8e8;
  display: block;
}

.about-honors-item p {
  margin-top: 12px;
  font-size: 16px;
  color: #333;
  font-weight: 500;
}

/* Honor Image Lightbox */
.honor-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 20000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
}

.honor-lightbox.active {
  opacity: 1;
  visibility: visible;
}

.honor-lightbox img {
  max-width: 80vw;
  max-height: 80vh;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.honor-lightbox-close {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 44px;
  height: 44px;
  border: none;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  cursor: pointer;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.honor-lightbox-close:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* ===== Scroll Reveal for About ===== */
.aboutA .aboutA-hd,
.aboutA .aboutA-bd,
.about-section .about-section-header,
.about-section .about-innovation-body,
.about-section .about-lab-body,
.about-section .about-manufacture-body,
.about-section .about-timeline,
.about-section .about-culture-grid {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.aboutA .aboutA-hd.visible,
.aboutA .aboutA-bd.visible,
.about-section .about-section-header.visible,
.about-section .about-innovation-body.visible,
.about-section .about-lab-body.visible,
.about-section .about-manufacture-body.visible,
.about-section .about-timeline.visible,
.about-section .about-culture-grid.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 1200px) {
  .about-innovation-body,
  .about-lab-body,
  .about-manufacture-body {
    gap: 40px;
  }

  .about-innovation-img,
  .about-lab-img,
  .about-manufacture-img {
    flex: 0 0 45%;
  }

  .about-culture-grid {
    gap: 28px;
  }

  .about-culture-card {
    padding: 36px 28px 32px;
  }
}

@media (max-width: 992px) {
  .about-section {
    padding: 60px 0;
  }

  .about-section-header {
    margin-bottom: 40px;
  }

  .about-section-header h2 {
    font-size: 30px;
  }

  .about-lab-body {
    flex-direction: column;
  }

  .about-innovation-body,
  .about-manufacture-body {
    flex-direction: column-reverse;
  }

  .about-innovation-img,
  .about-lab-img,
  .about-manufacture-img {
    flex: none;
    width: 100%;
    max-height: 300px;
  }

  .about-innovation-img img,
  .about-lab-img img,
  .about-manufacture-img img {
    height: 240px;
  }

  .about-timeline {
    padding-left: 8px;
    padding-right: 8px;
  }

  .about-timeline-item {
    min-width: 180px;
    padding: 0 16px;
  }

  .about-timeline-year {
    font-size: 22px;
  }

  .about-timeline-desc {
    font-size: 13px;
  }

  .about-culture-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .about-culture-card {
    padding: 28px 20px 24px;
  }

  .about-culture-icon {
    width: 52px;
    height: 52px;
  }

  .about-culture-icon svg {
    width: 26px;
    height: 26px;
  }

  .about-culture-card h3 {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .about-section {
    padding: 48px 0;
  }

  .about-section-header {
    margin-bottom: 32px;
  }

  .about-section-header h2 {
    font-size: 26px;
  }

  .about-tag {
    font-size: 11px;
    letter-spacing: 3px;
  }

  .about-innovation-body,
  .about-lab-body,
  .about-manufacture-body {
    gap: 24px;
    flex-direction: column;
  }

  .about-innovation-text p,
  .about-lab-text p,
  .about-manufacture-text p {
    font-size: 14px;
    line-height: 1.9;
  }

  .about-timeline-item {
    min-width: 160px;
    padding: 0 12px;
  }

  .about-timeline-year {
    font-size: 20px;
  }

  .about-culture-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .about-culture-card {
    display: flex;
    align-items: center;
    text-align: left;
    padding: 28px 24px;
    gap: 20px;
  }

  .about-culture-icon {
    flex-shrink: 0;
    margin-bottom: 0;
  }

  .about-culture-en {
    margin-bottom: 8px;
  }
}

@media (max-width: 480px) {
  .about-section {
    padding: 36px 0;
  }

  .about-section-header h2 {
    font-size: 22px;
  }

  .about-innovation-img img,
  .about-lab-img img,
  .about-manufacture-img img {
    height: 200px;
  }

  .about-timeline-item {
    min-width: 140px;
    padding: 0 8px;
  }

  .about-timeline-year {
    font-size: 18px;
  }

  .about-timeline-desc {
    font-size: 12px;
  }
}

/* ===== News List (新闻列表) ===== */
.news_dam .news-list {
  padding: 60px 0 90px;
}

.news_dam .news-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.news_dam .news-list li {
  position: relative;
  padding: 22px 0;
  margin-bottom: 40px;
}

.news_dam .news-list li::after {
  content: "";
  display: block;
  width: 70.4%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  background-color: #fff;
  box-shadow: 0 5px 13px 0 rgba(175, 180, 187, 0.45);
  border-radius: 10px;
  transition: all 0.6s;
  opacity: 0;
  transform: scale(0.8);
  transform-origin: 100% 50%;
}

.news_dam .news-list li a {
  display: flex;
  align-items: flex-start;
  position: relative;
  z-index: 2;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
}

.news_dam .news-list li a:hover img {
  transform: scale(1.15);
}

.news_dam .news-list li a img {
  transition: transform ease 0.7s;
}

.news_dam .news-date {
  flex-shrink: 0;
 
  transition: all 0.4s;
}

.news_dam .news-date .day {
  font-size: 40px;
  line-height: 1;
  color: #373737;
  font-family: 'InterM', 'Times New Roman', Times, serif;
  font-weight: 700;
}

.news_dam .news-date .year {
  font-size: 22px;
  color: #6d6d6d;
  transition: all 0.6s;
}

.news_dam .news-img {
  flex-shrink: 0;
  width: 27.7%;
  border-radius: 5px;
  position: relative;
  overflow: hidden;
  transition: all 0.8s;
  margin-left: 40px;
  height: 200px;
}

.news_dam .news-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.news_dam .news-info {
    flex: 1;
    overflow: hidden;
    padding: 0 99px 0 75px;
    display: flex;
    flex-direction: column;
    height: 200px;
}

.news_dam .news-info .name {
  font-size: 22px;
  display: -webkit-box;
  font-weight: 500;
  line-height: 30px;
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  color: #373737;
  transition: color 0.3s;
  margin-bottom: 8px;
}

.news_dam .news-info .date {
  font-size: 14px;
  color: #999;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
}

.news_dam .news-info .date svg {
  flex-shrink: 0;
}

.news_dam .news-list li:hover .info .name {
  color: #036eb7;
}

.news_dam .news-info .text {
  font-size: 15px;
  display: -webkit-box;
  line-height: 25px;
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  color: #6d6d6d;
  margin-bottom: 15px;
  margin-top: 9px;
}

.news_dam .news-more {
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  transition: all 0.4s;
  border: 1px solid #c3c3c3;
  padding: 0 11px;
  line-height: 34px;
  border-radius: 20px;
  color: #373737;
  margin-top: auto;
  width: fit-content;
  align-self: flex-start;
}

.news-more .arrow-icon {
  margin-left: 8px;
  transition: all 0.2s;
  color: #036eb7;
  font-size: 14px;
}

.news_dam .news-more:hover {
  color: #036eb7;
  padding-left: 5px;
}

.news_dam .news-more:hover .arrow-icon {
  margin-left: 10px;
  color: #036eb7;
}

.news_dam .news-list li:hover::after {
  opacity: 1;
  transform: scale(1);
}

.news_dam .news-list li:hover .news-date {
  color: #036eb7;
}

.news_dam .news-list li:hover .news-date .day {
  color: #036eb7;
}

.news_dam .news-list li:hover .news-date .year {
  color: #036eb7;
}

.news_dam .news-list li:hover .news-img {
  transform: translateX(18px);
}

.news_dam .news-list li:hover .news-more {
  background-color: #036eb7;
  color: #fff;
  border-color: #036eb7;
  transform: translateX(0);
}

.news_dam .news-list li:hover .news-more .arrow-icon {
  color: #fff;
}

/* ===== News Pagination ===== */
.inside-pages {
  display: flex;
  align-items: center;
  justify-content: center;
}

.inside-pages a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: all 0.3s;
  margin: 0 5px;
  width: 40px;
  height: 40px;
  border: 1px solid transparent;
  border-radius: 20px;
  color: #8c8e91;
  text-decoration: none;
}

.inside-pages a.cur,
.inside-pages a.current {
  color: #fff;
  background-color: #036eb7;
  font-weight: bold;
  border-color: #036eb7;
}

.inside-pages a:hover {
  border-color: #dddfe1;
}

.inside-pages a.cur:hover,
.inside-pages a.current:hover {
  border-color: #036eb7;
}

.inside-pages a.prev,
.inside-pages a.next {
  width: 56px;
  border-color: #dddfe1;
}

.inside-pages a.prev:hover,
.inside-pages a.next:hover {
  color: #fff;
  background-color: #036eb7;
  border-color: #036eb7;
}

.inside-pages a.disabled {
  cursor: default;
  pointer-events: none;
  opacity: 0.4;
}

/* ===== News Detail (新闻详情) ===== */
.news-detail {
  margin-top: 95px;
  padding: 56px 0 77px;

}

.news-detail > .content-container {
  display: flex;
  justify-content: space-between;
  padding: 0 150px;
}

.news-detail-left {
  width: 66%;
}

.news-detail-title {
  border-bottom: 1px solid #e6e6e6;
  padding: 0 0 26px;
}

.news-detail-title h1 {
  font-size: 32px;
  line-height: 1.4;
  color: #373737;
  font-weight: normal;
}

.news-detail-meta {
  display: flex;
  font-size: 14px;
  color: #717476;
  padding-top: 16px;
}

.news-detail-meta span {
  margin-right: 17px;
  display: flex;
  align-items: center;
}

.news-detail-meta span img,
.news-detail-meta span svg {
  vertical-align: middle;
  margin-right: 6px;
}

.news-detail-content {
  padding: 36px 0;
  font-size: 15px;
  line-height: 1.875;
  color: #717476;
}

.news-detail-content p {
  margin-bottom: 10px;
}

.news-detail-content img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
  margin: 10px 0;
}

.news-detail-return {
  padding-top: 20px;
}

.news-detail-return a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: #373737;
  text-decoration: none;
  transition: all 0.3s;
}

.news-detail-return a:hover {
  color: #0077cf;
}

.news-detail-right {
  width: 27%;
}

.news-detail-sticky {
  position: sticky;
  top: 110px;
}

.news-relate {
  background-color: #f5f8fa;
  border-top: 4px solid #0b7ccb;
  padding: 50px;
  margin-bottom: 0;
}

.news-relate h4 {
  font-size: 18px;
  font-weight: 600;
  color: #373737;
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.news-relate ul {
  list-style: none;
  padding: 4px 0 0;
  margin: 0;
}

.news-relate li {
  border-bottom: 1px solid #e6e6e6;
  padding: 13px 0 14px;
  padding: 26px 0 27px;
}

.news-relate li:last-child {
  border-bottom: 0;
}

.news-relate li a {
  text-decoration: none;
  color: inherit;
  display: block;
}

.news-relate li .date {
  font-size: 14px;
  color: #999;
  margin-bottom: 8px;
}

.news-relate li .name {
  font-size: 16px;
  color: #373737;
  line-height: 24px;
  display: -webkit-box;
  height: 48px;
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  transition: color 0.3s;
}

.news-relate li a:hover .name {
  color: #0077cf;
}

.news-page-nav {
  padding: 34px 14px;
}

.news-page-nav a {
  display: block;
  width: 100%;
  border: 1px solid #d5d5d5;
  border-radius: 15px;
  line-height: 36px;
  text-align: center;
  font-size: 15px;
  margin-bottom: 13px;
  text-decoration: none;
  color: #373737;
  transition: all 0.3s;
}

.news-page-nav a:last-child {
  margin-bottom: 0;
}

.news-page-nav a:hover {
  background-color: #0b7ccb;
  color: #fff;
  border-color: #0b7ccb;
}

/* ===== News Responsive ===== */
@media (max-width: 1200px) {
  .news-list li a {
    gap: 16px;
  }

  .news-img {
    width: 30%;
  }

  .news-info {
    padding-left: 40px;
  }
}

@media (max-width: 992px) {
  .news-list li a {
    flex-wrap: wrap;
  }

  .news-date {
    display: none;
  }

  .news-img {
    width: 100%;
  }

  .news-img::before {
    padding-top: 45%;
  }

  .news-info {
    width: 100%;
    padding: 15px 0 0;
  }

  .news-info .name {
    font-size: 16px;
    line-height: 24px;
    height: auto;
    max-height: 48px;
  }

  .news-info .text {
    font-size: 13px;
    line-height: 20px;
    height: 40px;
    margin: 10px 0;
  }

  .news-more {
    padding: 0 8px;
    line-height: 30px;
    transform: translateX(-8px);
  }

  .news-list li::after {
    display: none;
  }

  .news-list li:hover .news-img {
    transform: none;
  }

  .news-detail > .content-container {
    flex-wrap: wrap;
  }

  .news-detail-left {
    width: 100%;
  }

  .news-detail-right {
    width: 100%;
    padding-top: 20px;
  }

  .news-detail-sticky {
    position: static;
  }

  .news-detail-title h1 {
    font-size: 20px;
    line-height: 1.2;
  }

  .news-detail-meta {
    font-size: 13px;
    padding-top: 12px;
  }

  .news-detail-content {
    padding: 20px 0;
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .news-list {
    padding: 30px 0;
  }

  .news-list li {
    padding: 10px 0;
    margin-bottom: 10px;
  }

  .news-list li a {
    flex-wrap: wrap;
  }

  .news-detail {
    padding: 30px 0;
  }

  .news-detail-title h1 {
    font-size: 18px;
  }

  .news-detail-meta {
    flex-direction: column;
    gap: 6px;
  }

  .inside-pages a {
    margin: 0 1px;
    width: 32px;
    height: 32px;
    font-size: 12px;
  }

  .inside-pages a.prev,
  .inside-pages a.next {
    width: 48px;
  }

  .news-relate {
    padding: 13px;
  }

  .news-relate h4 {
    font-size: 16px;
  }

  .news-relate li {
    padding: 10px 0;
  }

  .news-relate li .date {
    font-size: 12px;
    margin-bottom: 5px;
  }

  .news-relate li .name {
    font-size: 13px;
    line-height: 20px;
    height: 40px;
  }

  .news-page-nav {
    padding: 20px 10px 0;
  }

  .news-page-nav a {
    line-height: 36px;
    font-size: 14px;
    margin-bottom: 10px;
  }
}



/* 产品列表 */
.product .list {
  padding: 0px 0 0 0
}

.product .list ul {
  display: flex;
  flex-wrap: wrap;
  margin: -30px -20px
}

.product .list ul li {
  width: 50%;
  padding: 30px 20px
}

.product .list ul li a {
  display: block;
 background: url(../images/plibg.jpg) no-repeat 0 0;
    -webkit-background-size: cover;
    background-size: cover;
  position: relative;
  border-radius: 20px;
  padding: 80px 60px 55px;
  overflow: hidden;
  transition: all 0.5s
}

.product .list ul li .img {
  position: relative;
  padding: 0 0 30px;
  text-align: center
}

.product .list ul li .img img {
  max-width: 100%;
  height: auto
}

.product .list ul li .title {
  position: absolute;
  top: 30px;
  width: 100%;
  padding: 0 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  left: 50%;
  transform: translateX(-50%);
  text-align: center
}

.product .list ul li .title .text {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.5s
}

.product .list ul li .title .text .cn {
  font-size: 20px;
  font-weight: 400;
  color: #a1abb6;
  transition: all 0.5s
}

.product .list ul li .title .text .en {
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
  padding: 10px 0 0 0
}

.product .list ul li .amore {
  pointer-events: none;
  width: 45px;
  height: 45px;
  position: absolute;
  right: 60px;
  top: 50%;
  margin-top: -22px;
  transform: translateX(-15px);
  opacity: 0;
  transition: all 0.5s;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1)
}

.product .list ul li .amore::after {
  content: "";
  display: block;
  width: 58px;
  height: 58px;
  background-color: rgba(255, 255, 255, 0.1);
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -29px 0 0 -29px;
  border-radius: 50%
}

.product .list ul li:hover a {
 background-image: url(../images/plibg2.jpg);
    background-position: center 100%;
  background-position: center 100%
}

.product .list ul li:hover a .text {
  color: #fff;
  left: 60px;
  text-align: left;
  transform: translateX(0)
}

.product .list ul li:hover a .text .cn {
  color: #fff
}

.product .list ul li:hover a .amore {
  transform: translateX(0);
  opacity: 1
}

@media (max-width: 992px) {
  .product .list ul {
    margin: -15px -10px
  }
  .product .list ul li {
    width: 50%;
    padding: 15px 10px
  }
  .product .list ul li a {
    border-radius: 12px;
    padding: 60px 30px 30px
  }
  .product .list ul li .img {
    padding: 0 0 15px
  }
  .product .list ul li .title {
    top: 20px;
    padding: 0 30px
  }
  .product .list ul li .title .text .cn {
    font-size: 16px
  }
  .product .list ul li .title .text .en {
    font-size: 24px;
    padding: 5px 0 0 0
  }
  .product .list ul li .amore {
    width: 36px;
    height: 36px;
    right: 30px
  }
  .product .list ul li:hover a .text {
    left: 30px
  }
}

@media (max-width: 768px) {
  .product .list {
    padding: 40px 0 0 0
  }
  .product .list ul {
    margin: -10px
  }
  .product .list ul li {
    width: 100%;
    padding: 10px
  }
  .product .list ul li a {
    border-radius: 10px;
    padding: 50px 20px 20px
  }
  .product .list ul li .title {
    top: 15px;
    padding: 0 20px
  }
  .product .list ul li .title .text .cn {
    font-size: 14px
  }
  .product .list ul li .title .text .en {
    font-size: 20px
  }
  .product .list ul li .amore {
    width: 30px;
    height: 30px;
    right: 20px
  }
  .product .list ul li:hover a .text {
    left: 20px
  }
}

.product_detail {
   background: url(../images/pdbg.jpg) no-repeat 0 0;
    -webkit-background-size: 100% 100%;
    background-size: 100%;
    padding-top: 100px
}

.product_detail .box {
    margin: 0 auto
}

.prd_top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    color: #fff;
    padding: 60px 0 0 0
}

.prd_top .left .cn {
    font-size: 24px;
    font-weight: 500
}

.prd_top .left .en {
    font-size: 80px;
    line-height: 1;
    font-weight: 700;
    padding: 20px 0 0 0
}

.prd_top .dls {
    display: flex;
    padding: 47px 0 42px 0;
}

.prd_top .dls dl {
    display: flex;
    align-items: center;
    padding: 0 40px 0 0
}

.prd_top .dls dl dt img {
    height: 46px
}

.prd_top .dls dl dd {
    padding: 0 0 0 20px;
    font-size: 16px;
    line-height: 1.43
}

.prd_top .dls dl:last-child {
    padding: 0
}

.prd_top .right {
    width: 40%;
    text-align: center;
    padding: 0 0 60px
}

.prd_top .pdxz {
    display: inline-flex;
    align-items: center;
    background-color: #036eb7;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    padding: 0 34px;
    height: 62px;
    border-radius: 31px;
    transition: all 0.3s
}

.prd_top .pdxz svg {
    width: 18px;
    height: 18px;
    margin: 0 15px 0 0;
    transition: margin 0.3s
}

.prd_top .pdxz:hover {
    box-shadow: 0px 6px 20px 0px rgba(3, 110, 183, 0.3);
    padding: 0 30px
}

.prd_top .pdxz:hover svg {
    margin: 0 24px 0 0
}

.pro_bot {
    padding: 0px 0 80px 0
}

.pro_bot .tabb ul {
    display: flex;
    border-bottom: 1px solid rgba(0,0,0,0.2);
    padding-bottom: 0
}

.pro_bot .tabb ul li {
    font-size: 22px;
    color: #95a2b0;
    font-weight: 500;
    margin: 0 110px 0 0;
    cursor: pointer;
    padding: 0 0 20px 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s
}

.pro_bot .tabb ul li:last-child {
    margin: 0
}

.pro_bot .tabb ul li.cur {
    color: #036eb7;
    border-bottom-color: #036eb7
}

.pro_bot .ctitle {
    font-size: 30px;
    line-height: 1;
    font-weight: 700;
    color: #333
}

.pro_bot .louceng {
    padding: 70px 0 0 0
}

.pro_ted ul {
    display: flex;
    flex-wrap: wrap;
    margin: -15px;
    padding: 38px 0 0 0
}

.pro_ted ul li {
    padding: 15px;
    width: 25%
}

.pro_ted ul li .cont {
    background-color: #fff;
    box-shadow: 0px 6px 20px 0px rgba(189, 192, 198, 0.3);
    border-radius: 20px;
    height: 100%;
    padding: 30px;
    transition: all 0.5s
}

.pro_ted ul li .icon svg {
    width: 44px;
    height: 44px;
    transition: transform 0.6s
}

.pro_ted ul li:hover .icon svg {
    transform: rotateY(360deg)
}

.pro_ted ul li .title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    padding: 18px 0 14px;
}

.pro_ted ul li .text {
    font-size: 15px;
    color: #666;
    line-height: 1.6
}

.pro_ted ul li .text p {
    margin: 0 0 10px;
    padding: 0 0 0 13px;
    position: relative
}

.pro_ted ul li .text p::before {
    content: "";
    display: block;
    width: 5px;
    height: 5px;
    background-color: #036eb7;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 9px
}

.pro_ted ul li:hover .cont {
    transform: translateY(-10px)
}

.pro_ted ul li:hover .icon svg {
    transform: rotateY(360deg)
}

.pro_table .table {
    padding: 25px 0 0 0
}

.pro_table table {
    width: 100%;
    font-size: 16px;
    border: none;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08)
}

.pro_table table thead {
    font-weight: bold
}

.pro_table table .bgc {
    background-color: #f8fafc
}

.pro_table table tr {
    transition: all 0.3s ease
}

.pro_table table tr:hover {
    background-color: #f0f7ff
}

.pro_table table tr td {
    padding: 10px 30px;
    border-bottom: 1px solid #eef2f7;
    color: #333;
    font-size: 15px;
    vertical-align: middle
}

.pro_table table tr:last-child td {
    border-bottom: none
}

.pro_table table tr td:first-child {
    width: 22%;
    font-weight: 600;
    color: #1a1a1a;
    font-size: 15px;
    background: linear-gradient(90deg, #f5f8fb 0%, #fff 100%);
    border-right: 1px solid #eef2f7
}

.pro_table table tbody .bgc td {
    background: #f8fafc
}

.pro_table table tbody .bgc td:first-child {
    background: linear-gradient(90deg, #eef4fa 0%, #f8fafc 100%)
}

.pro_table table tbody .bgc:hover td {
    background-color: #f0f7ff
}

.pro_table table tbody .bgc:hover td:first-child {
    background: linear-gradient(90deg, #e5f0fd 0%, #f0f7ff 100%)
}

.pro_product .hd {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.pro_product .bd {
    padding: 38px 0 0
}

.pro_product .mySwiper {
    overflow: hidden
}

.pro_product .mySwiper ul {
    display: flex;
    margin: -10px
}

.pro_product .mySwiper ul li {
    padding: 10px;
    width: 33.333%
}

.pro_product .mySwiper ul li a {
    display: flex;
    flex-direction: column;
    background: #f0f4f8;
    position: relative;
    border-radius: 20px;
    padding: 30px;
    transition: all 0.5s
}

.pro_product .mySwiper ul li .img {
    position: relative;
    padding: 0 0 20px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px
}

.pro_product .mySwiper ul li .img img {
    max-width: 100%;
    max-height: 200px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
    border-radius: 4px;
}

.pro_product .mySwiper ul li .title {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.pro_product .mySwiper ul li .title .text {

    transition: all 0.5s
}

.pro_product .mySwiper ul li .title .text .cn {
    font-size: 18px;
    color: #333;
    transition: all 0.5s
}

.pro_product .mySwiper ul li .title .text .en {
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
    padding: 10px 0 0 0;
    text-align: left;
}

.pro_product .mySwiper ul li .amore {
    pointer-events: none;
    width: 45px;
    height: 45px;
    flex-shrink: 0;
    transform: translateX(-15px);
    opacity: 0;
    transition: all 0.5s;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: none;
}

.pro_product .mySwiper ul li .amore::after {
    content: "";
    display: block;
    width: 58px;
    height: 58px;
    background-color: rgba(255, 255, 255, 0.1);
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -29px 0 0 -29px;
    border-radius: 50%
}

.pro_product .mySwiper ul li:hover a {
    
    background-position: center 100%
}

.pro_product .mySwiper ul li:hover a .text {
    color: #fff;
    left: 60px;
    text-align: left;
    transform: translateX(0)
}

.pro_product .mySwiper ul li:hover a .text .cn {
    color: #036eb7
}

.pro_product .mySwiper ul li:hover a .amore {
    transform: translateX(0);
    opacity: 1
}

@media (max-width: 992px) {
    .product_detail {
        padding-top: 50px
    }

    .product_detail .box {
        padding: 0
    }

    .prd_top {
        padding: 80px 0 0 0
    }

    .prd_top .left .en {
        font-size: 60px
    }

    .prd_top .dls {
        padding: 40px 0 60px 0
    }

    .prd_top .right {
        width: 40%;
        padding: 0 0 40px
    }

    .pro_bot .tabb ul li {
        font-size: 18px;
        margin: 0 40px 0 0
    }

    .pro_bot .ctitle {
        font-size: 30px
    }

    .pro_bot .louceng {
        padding: 80px 0 0 0
    }

    .pro_ted ul {
        padding: 40px 0 0 0;
        margin: -5px
    }

    .pro_ted ul li {
        padding: 5px;
        width: 50%
    }

    .pro_ted ul li .cont {
        border-radius: 12px;
        padding: 30px 25px
    }

    .pro_ted ul li .icon svg {
        width: 30px;
        height: 30px
    }

    .pro_ted ul li .title {
        font-size: 20px;
        padding: 20px 0 15px
    }

    .pro_ted ul li .text {
        font-size: 14px
    }

    .pro_table .table {
        padding: 50px 0 0 0
    }

    .pro_table table tr td {
        padding: 12px 25px
    }

    .pro_product .bd {
        padding: 50px 0 0
    }

    .pro_product .mySwiper ul li a {
        border-radius: 12px;
        padding: 120px 40px 30px
    }

    .pro_product .mySwiper ul li .title {
        top: 60px;
        padding: 0 40px
    }

    .pro_product .mySwiper ul li .title .text .cn {
        font-size: 16px
    }

    .pro_product .mySwiper ul li .title .text .en {
        font-size: 24px
    }

    .pro_product .mySwiper ul li .amore {
        width: 36px;
        height: 36px;
        right: 40px
    }

    .pro_product .mySwiper ul li:hover a .text {
        left: 40px
    }
}

@media (max-width: 768px) {
    .product_detail {
        padding-top: 50px
    }

    .prd_top {
        color: #fff;
        padding: 100px 0 0 0;
        flex-direction: column-reverse
    }

    .prd_top .left {
        width: 100%;
        padding: 50px 0 0 0
    }

    .prd_top .left .cn {
        font-size: 18px
    }

    .prd_top .left .en {
        font-size: 24px;
        padding: 10px 0 0 0
    }

    .prd_top .dls {
        flex-wrap: wrap;
        padding: 30px 0
    }

    .prd_top .dls dl {
        width: 100%;
        padding: 0 0 15px 0
    }

    .prd_top .dls dl dt img {
        height: 30px;
        filter: invert(1)
    }

    .prd_top .dls dl dd {
        padding: 0 0 0 10px;
        font-size: 14px
    }

    .prd_top .right {
        width: 100%;
        padding: 0 100px
    }

    .prd_top .pdxz {
        font-size: 14px;
        padding: 0 22px;
        height: 50px
    }

    .prd_top .pdxz svg {
        width: 14px;
        height: 14px;
        margin: 0 10px 0 0
    }

    .pro_bot {
        padding: 60px 0
    }

    .pro_bot .tabb ul li {
        font-size: 18px;
        margin: 0 30px 0 0
    }

    .pro_bot .ctitle {
        font-size: 24px
    }

    .pro_bot .louceng {
        padding: 50px 0 0 0
    }

    .pro_ted ul {
        padding: 40px 0 0 0;
        margin: -3px
    }

    .pro_ted ul li {
        padding: 3px;
        width: 50%
    }

    .pro_ted ul li .cont {
        border-radius: 10px;
        padding: 30px 20px
    }

    .pro_ted ul li .icon svg {
        width: 24px;
        height: 24px
    }

    .pro_ted ul li .title {
        font-size: 16px;
        padding: 15px 0
    }

    .pro_ted ul li .text {
        font-size: 13px
    }

    .pro_ted ul li .text p {
        padding: 0 0 0 10px;
        margin: 0 0 5px
    }

    .pro_ted ul li .text p::before {
        width: 3px;
        height: 3px;
        top: 5px
    }

    .pro_table .table {
        padding: 40px 0 0 0;
        overflow-x: auto
    }

    .pro_table table {
        width: 150%;
        font-size: 14px
    }

    .pro_table table tr td {
        padding: 10px 20px
    }

    .pro_table table tr td:first-child {
        width: 30%
    }

    .pro_product .bd {
        padding: 40px 0 0
    }

    .pro_product .mySwiper ul li {
        width: 100%
    }

    .pro_product .mySwiper ul li a {
        border-radius: 10px;
        padding: 90px 50px 20px
    }

    .pro_product .mySwiper ul li .img {
        padding: 0 0 10px
    }

    .pro_product .mySwiper ul li .title {
        top: 40px;
        padding: 0
    }

    .pro_product .mySwiper ul li .title .text .cn {
        font-size: 12px
    }

    .pro_product .mySwiper ul li .title .text .en {
        font-size: 14px;
        padding: 5px 0 0
    }

    .pro_product .mySwiper ul li .amore {
        width: 30px;
        height: 30px;
        right: 20px;
        margin-top: -15px
    }

    .pro_product .mySwiper ul li .amore::after {
        width: 40px;
        height: 40px;
        margin: -20px 0 0 -20px
    }

    .pro_product .mySwiper ul li:hover a .text {
        left: 20px
    }
}

/* ===== Solution Page ===== */
.section-label {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
 
  
  letter-spacing: 2px;
  margin-bottom: 16px
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.3;
  text-align: left;
}

.solution-row {
  display: flex;
  align-items: center;
  gap: 50px
}

.solution-row-reverse {
  flex-direction: row-reverse
}

.solution-img {
 
  border-radius: 10px;
  overflow: hidden;
  width: 60%;
 
}

.ctitle{
	font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-top: 40px;
    border-bottom: 1px solid #e7e6e6;
   
}

.ctitle-text {
    display: inline-block;
    padding-bottom: 10px;
    border-bottom: 2px solid #036eb7;
}


.solution-img img {
  width: 100%;
  height: 100%;
  
  display: block; 
}

.solution-content {
  flex: 1
}

.solution-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  color: #036eb7;
  background: rgba(3, 110, 183, 0.08);
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 20px
}


.solution-row {
				box-shadow: 0 0 20px 0px rgba(148, 148, 148, 0.2);
				border-radius: 20px;
				background-color: #fff;
				padding: 40px;
			}
			
		
			
			.weith_big {
				box-shadow: 0 0 0.2rem 0px rgba(148, 148, 148, 0.2);
				border-radius: 20px;
				background-color: #fff;
				padding: 60px;
			}

.solution-title {
  font-size: 28px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 16px
}

.solution-desc-text {
  font-size: 15px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 24px
}

.solution-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0
}

.solution-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: #333;
  padding: 8px 0
}

.solution-list-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #036eb7;
  flex-shrink: 0
}

.solution-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 32px;
  background: #036eb7;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.3s
}

.solution-cta:hover {
  background: #025a94;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(3, 110, 183, 0.3)
}

@media (max-width: 992px) {
  .solution-row,
  .solution-row-reverse {
    flex-direction: column;
    gap: 40px
  }

  .solution-img {
    width: 100%;
    min-height: 300px
  }

  .section-title {
    font-size: 28px
  }

  .solution-title {
    font-size: 24px
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 24px
  }

  .solution-title {
    font-size: 20px
  }

  .solution-desc-text {
    font-size: 14px
  }

  .solution-list li {
    font-size: 14px
  }
}

/* ===== Application Page ===== */
.app-scenes {
  padding: 60px 0;
  background: #fff
}

/* 应用场景板块 */
.app-scene-section {
  margin-bottom: 80px
}

.app-scene-section .section-title-group {
  margin-bottom: 40px
}

.app-scene-content {
  display: flex;
  gap: 50px;
  align-items: center;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    padding-right: 28px;
}

.app-scene-visual {
  flex: 0 0 45%;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(135deg, #036eb7 0%, #0a4a7a 100%);
 height:240px
}

.app-scene-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block
}

.app-scene-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-self: stretch;
}

.app-scene-info div {
  font-size: 16px;
  color: #333;
  line-height: 1.8;
  margin-bottom: 20px;
}

.app-scene-info div:last-child { margin-bottom: 0; }

.app-info-subtitle {
  font-size: 16px;
  font-weight: 600;
  color: #036eb7;
  margin-bottom: 8px;
  margin-top: 0;
  position: relative;
  padding-left: 14px;
}

.app-info-subtitle::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 16px;
  background: #036eb7;
  border-radius: 2px;
}

.app-info-subtitle + div {
  margin-top: 0;
}

/* 项目案例板块 */
.app-cases-section {
  margin-bottom: 80px
}

.app-cases-section .section-title-group {
  margin-bottom: 0;
}

.app-cases-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}

.app-cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px
}

.app-case-card {
  text-align: center
}

.app-case-img {
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(135deg, #036eb7 0%, #0a4a7a 100%);
  aspect-ratio: 16/9;
  margin-bottom: 16px
}

.app-case-img img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.app-case-label {
  font-size: 16px;
  color: #333;
  line-height: 1.6
}

/* 核心价值板块 */
.app-values-section .section-title-group {
  margin-bottom: 40px
}

.app-values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px
}

.app-value-item {
  text-align: center;
  padding: 30px 20px;
  background: #f8fafc;
  border-radius: 16px;
  transition: all 0.3s
}

.app-value-item:hover {
  background: #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  transform: translateY(-4px)
}

.app-value-icon {
  margin-bottom: 20px
}

.app-value-item h4 {
  font-size: 18px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 12px
}

.app-value-item p {
  font-size: 14px;
  color: #666;
  line-height: 1.6
}

/* 响应式 */
@media (max-width: 992px) {
  .app-scene-content {
    flex-direction: column;
    gap: 30px
  }

  .app-scene-visual {
    flex: none;
    width: 100%
  }

  .app-cases-grid {
    grid-template-columns: 1fr
  }

  .app-values-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media (max-width: 576px) {
  .app-values-grid {
    grid-template-columns: 1fr
  }

  .app-scenes {
    padding: 60px 0
  }
}

/* ===== Inside Title ===== */
.inside_title .en {
  font-size: 14px;
  color: #036eb7;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px
}

.inside_title .zh {
  font-size: 36px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.3
}

/* ===== ContactA ===== */
.contactA {
  background-color: #f5f8fa;
  padding: 70px 0 80px
}

.contactA .ihd {
  display: flex;
  align-items: flex-end;
  justify-content: space-between
}

.contactA .inside_title {
  flex-shrink: 0
}

.contactA .tab {
  display: flex;
  justify-content: flex-end
}

.contactA .tab a {
  font-size: 20px;
  font-weight: 500;
  color: #333;
  position: relative;
  padding: 0 0 16px;
  margin: 0 85px 0 0;
  cursor: pointer;
  transition: color 0.3s
}

.contactA .tab a:last-child {
  margin-right: 0
}

.contactA .tab a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 3px;
  background: #036eb7;
  transition: width 0.5s
}

.contactA .tab a:hover,
.contactA .tab a.cur {
  color: #036eb7
}

.contactA .tab a:hover::after,
.contactA .tab a.cur::after {
  width: 100%
}

.contactA .bd {
  padding: 0px 0 0
}

.contactA .content {
  display: flex; margin-top: 40px;
}

.contactA .content .left {
  width: 50%;
  height: 560px;
  position: relative;
  overflow: hidden
}

.contactA .allmap {
  width: 100%;
  height: 100%
}

.contactA .content .right {
    width: 50%;
    padding: 40px 60px 0;
    background: #fff;
}

.contactA .content .name {
  font-size: 28px;
  font-weight: 500;
  color: #1a1a1a;
  margin-bottom: 0px
}

.contactA .content .info dl {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #e2e2e2;
  padding: 20px 0
}

.contactA .content .info dl:last-child {
  border-bottom: none
}

.contactA .content .info dl dt {
  width: 45px;
  height: 45px;
  border: 1px solid #e8e8e8;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: #fff
}

.contactA .content .info dl dd {
  flex: 1;
  padding: 0 0 0 30px
}

.contactA .content .info dl dd .p1 {
  font-size: 14px;
  color: #939393
}

.contactA .content .info dl dd .p2 {
  font-size: 17px;
  padding: 0px 0 0;
  font-weight: 500;
  color: #1a1a1a
}

.contactA .content .info dl dd .p2 a {
  color: #1a1a1a;
  transition: color 0.3s
}

.contactA .content .info dl dd .p2 a:hover {
  color: #036eb7
}

.togglebcont .item {
  display: none
}

.togglebcont .item:first-child {
  display: block
}

/* ===== Contact_C ===== */
.contact_C {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  background: #eff3f9;
  padding-top: 80px;
  padding-bottom: 80px;
  background: url(../images/bjbj.jpg) no-repeat top center;
    background-size: cover;
}

.contact_C .commonweb {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%
}

.contact_C .inside_title {
  color: #036eb7
}

.contact_C .left {
  width: 25.86%
}

.contact_C .left .desc {
  font-size: 22px;
  font-weight: 500;
  color: #727579;
  line-height: 1.33;
  padding: 70px 0 0
}

.contact_C .right {
  width: 69%
}

.contact_C .right .desc {
  font-size: 20px;
  color: #727579
}

.contact_C .right .desc em {
  color: #e74c3c;
  font-style: normal
}

/* ===== Form ===== */
.form {
  padding: 68px 0 0
}

.form ul {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  margin: -15px -10px
}

.form ul li {
  width: 50%;
  padding: 15px 10px
}

.form ul li.last {
  width: 100%;
  margin: 0 0 20px
}

.form ul li .text {
  font-size: 16px;
  padding: 0 0 12px;
  color: #727579
}

.form ul li .text em {
  color: #e74c3c;
  font-style: normal
}

.form ul li input,
.form ul li textarea {
  width: 100%;
  padding: 11px 20px;
  background: #fff;
  font-size: 16px;
  border: 1px solid #e2e2e2;
  border-radius: 6px;
  outline: none;
  transition: border-color 0.3s;
  font-family: inherit
}

.form ul li input {
  height: 63px
}

.form ul li textarea {
  height: 156px;
  resize: vertical
}

.form ul li input:focus,
.form ul li textarea:focus {
  border-color: #036eb7
}

.form ul li.flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  width: 100%
}

.form ul li.flex .l {
  max-width: 50%;
  font-size: 14px;
  color: #8a8e93;
  line-height: 1.7
}

.form .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #036eb7;
  color: #fff;
  font-size: 18px;
  border-radius: 27px;
  line-height: 53px;
  padding: 0 59px;
  font-weight: 500;
  transition: background 0.3s;
  cursor: pointer;
  border: none
}

.form .btn:hover {
  background: #025a94
}

/* ===== Contact Responsive 980px ===== */
@media (max-width: 980px) {
  .commonweb {
    padding: 0 40px
  }

  .contactA {
    padding: 60px 0
  }

  .contactA .ihd {
    flex-direction: column;
    align-items: flex-start
  }

  .contactA .tab {
    justify-content: flex-start;
    margin-top: 20px
  }

  .contactA .tab a {
    font-size: 16px;
    margin: 0 30px 0 0
  }

  .contactA .bd {
    padding: 40px 0 0
  }

  .contactA .content {
    flex-wrap: wrap
  }

  .contactA .content .left {
    width: 100%;
    height: 250px
  }

  .contactA .content .right {
    width: 100%;
    padding: 30px
  }

  .contactA .content .name {
    font-size: 22px;
    margin-bottom: 20px
  }

  .contactA .content .info dl {
    padding: 16px 0
  }

  .contactA .content .info dl dd {
    padding: 0 0 0 16px
  }

  .contact_C {
    padding: 60px 0
  }

  .contact_C .left {
    width: 100%
  }

  .contact_C .left .desc {
    padding: 20px 0 0;
    font-size: 20px
  }

  .contact_C .right {
    width: 100%;
    margin-top: 40px
  }

  .form ul li {
    width: 100%
  }

  .form ul li input {
    height: 45px
  }

  .form ul li textarea {
    height: 100px
  }

  .form ul li.flex .l {
    max-width: 100%;
    margin-bottom: 15px
  }

  .form .btn {
    padding: 0 40px;
    line-height: 45px;
    font-size: 16px
  }
}
 .aboutA .aboutA-bd{display:flex;align-items:flex-start;gap:60px}
  .aboutA .aboutA-left{flex:0 0 48%}
  .aboutA .aboutA-left .about-video{position:relative;border-radius:16px;overflow:hidden;cursor:pointer;width:100%;min-height:360px}
  .aboutA .aboutA-left .about-video img{width:100%;height:360px;object-fit:cover;display:block;transition:transform .7s ease}
  .aboutA .aboutA-left .about-video:hover img{transform:scale(1.05)}
  .aboutA .aboutA-left .about-video::after{content:'';position:absolute;inset:0;background:rgba(0,0,0,0.2);transition:background .4s;z-index:1;border-radius:16px}
  .aboutA .aboutA-left .about-video:hover::after{background:rgba(0,0,0,0.1)}
  .aboutA .aboutA-left .about-video-play{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);z-index:2;width:64px;height:64px;border-radius:50%;background:rgba(255,255,255,0.92);display:flex;align-items:center;justify-content:center;transition:all .4s;box-shadow:0 4px 20px rgba(0,0,0,0.25)}
  .aboutA .aboutA-left .about-video-play svg{width:24px;height:24px;color:#036eb7;margin-left:3px}
  .aboutA .aboutA-left .about-video:hover .about-video-play{background:#036eb7;transform:translate(-50%,-50%) scale(1.1);box-shadow:0 6px 32px rgba(3,110,183,0.4)}
  .aboutA .aboutA-left .about-video:hover .about-video-play svg{color:#fff}
  .aboutA .aboutA-right{flex:1;display:flex;flex-direction:column;align-items:flex-start}
  .aboutA .aboutA-right .inside-title{margin-bottom:30px}
  .aboutA .aboutA-desc{font-size:16px;color:#4a4a4a;line-height:2;text-align:justify}
  .about-section{padding:60px 0}
  .about-section-header{margin-bottom:40px}
  .about-section-header h2{font-size:36px;font-weight:700;color:#1a1a1a;letter-spacing:2px}
  .about-tag{font-size:13px;color:#999;letter-spacing:3px;text-transform:uppercase;display:inline-flex;align-items:center;gap:10px;margin-bottom:5px}

  .about-innovation-body,.about-lab-body,.about-manufacture-body{display:flex;align-items:stretch;gap:60px}
  .about-innovation-img,.about-lab-img,.about-manufacture-img{flex:0 0 48%;border-radius:16px;overflow:hidden; height: 340px;}
  .about-innovation-img img,.about-lab-img img,.about-manufacture-img img{width:100%;height:100%;object-fit:cover;height:400px;transition:transform .6s ease}
  .about-innovation-img:hover img,.about-lab-img:hover img,.about-manufacture-img:hover img{transform:scale(1.03)}
  .about-innovation-text,.about-lab-text,.about-manufacture-text{flex:1;display:flex;align-items:center}

  .aboutB{background:url(images/lcbj.jpg) no-repeat top center;background-size:cover;padding:120px 0 70px;color:#fff}
  .aboutB-ihd{display:flex;align-items:center;justify-content:space-between;margin-bottom:0}
  .aboutB-left .inside-title h4{font-size:36px;font-weight:700;color:#fff;line-height:1.4}
  .aboutB-nav{display:flex;gap:12px}
  .aboutB-nav button{width:48px;height:48px;border-radius:50%;border:1px solid rgba(255,255,255,0.3);background:transparent;cursor:pointer;display:flex;align-items:center;justify-content:center;transition:all .3s;color:#fff}
  .aboutB-nav button:hover{background:#036eb7;border-color:#036eb7}
  .aboutB-bd{overflow:hidden;padding-left:100px;padding-right:0}
  .aboutB-swiper{overflow:hidden;position:relative;padding:50px 0}
  .aboutB-swiper::after{content:'';display:block;width:100%;height:4px;background:#fff;position:absolute;z-index:1;top:50%;transform:translateY(-50%);left:0}
  .aboutB-swiper ul{display:flex;height:420px;position:relative;z-index:2;list-style:none;padding:0;margin:0;transition:transform .6s cubic-bezier(.25,.46,.45,.94)}
  .aboutB-swiper ul li{flex:0 0 280px;padding:0 35px 0 0;position:relative}
  .aboutB-swiper ul li:nth-child(odd){padding-bottom:210px}
  .aboutB-swiper ul li:nth-child(even){padding-top:210px}
  .aboutB-swiper ul li:nth-child(even) dl{padding-top:110px}
  .aboutB-swiper ul li:nth-child(even) dl::before{bottom:auto;top:-9px}
  .aboutB-swiper ul li:nth-child(even) dl::after{top:6px;bottom:auto}
  .aboutB-swiper dl{position:relative;height:100%;padding-right:0px;margin:0;overflow:visible;z-index:3}
  .aboutB-swiper dl::before{content:'';z-index:99;display:block;width:12px;height:12px;background-color:#496fb2;border:2px solid #fff;border-radius:50%;position:absolute;bottom:-6px;left:0}
  .aboutB-swiper dl::after{content:'';z-index:1;display:block;width:2px;height:76px;background:rgba(255,255,255,0.4);position:absolute;bottom:6px;left:7px}
  .aboutB-swiper dl dt{transition:all .4s}
  .aboutB-swiper dl dt .year{font-size:36px;font-weight:700;font-family:'Times New Roman',Times,serif;line-height:1;white-space:nowrap}
  .aboutB-swiper dl dt .text{font-size:15px;line-height:24px;margin:18px 0}
  .aboutB-swiper dl dd{margin:0}
  .about-culture-zh{font-size:18px;font-weight:600;color:#1a1a1a;margin-bottom:8px;line-height:1.6}
  .about-culture-sub{font-size:13px;color:#8ba3c1;font-style:italic;line-height:1.5}
  @media(max-width:992px){
    .aboutA .aboutA-bd{flex-direction:column;gap:30px}
    .aboutA .aboutA-left{flex:none;width:100%}
    .aboutA .aboutA-left .about-video{min-height:260px}
    .about-section{padding:60px 0}
    .about-section-header h2{font-size:28px}
    .about-innovation-body,.about-lab-body,.about-manufacture-body{flex-direction:column;gap:30px}
    .about-innovation-img,.about-lab-img,.about-manufacture-img{flex:none;width:100%}
    .about-innovation-img img,.about-lab-img img,.about-manufacture-img img{min-height:240px}
    .aboutB{padding:60px 0}
    .aboutB-bd{padding-left:30px}
    .aboutB-left .inside-title h4{font-size:28px}
    .aboutB-swiper{padding:60px 0 0}
    .aboutB-swiper::after{transform:none;top:auto;bottom:4px}
    .aboutB-swiper ul{height:auto;flex-wrap:nowrap;overflow-x:auto;-webkit-overflow-scrolling:touch;scrollbar-width:none}
    .aboutB-swiper ul::-webkit-scrollbar{display:none}
    .aboutB-swiper ul li{flex:0 0 240px}
    .aboutB-swiper ul li:nth-child(odd){padding-bottom:0}
    .aboutB-swiper ul li:nth-child(even){padding-top:0}
    .aboutB-swiper ul li:nth-child(even) dl{padding-top:0}
    .aboutB-swiper dl{padding-right:0;padding-bottom:20px}
    .aboutB-swiper dl::before{bottom:0;left:0}
    .aboutB-swiper dl::after{bottom:10px}
    .aboutB-swiper ul li:nth-child(even) dl::before{top:auto;bottom:0;left:0}
    .aboutB-swiper ul li:nth-child(even) dl::after{bottom:10px;left:5px;top:auto}
    .aboutB-swiper dl dt .year{font-size:30px}
    .aboutB-swiper dl dt .text{font-size:14px;line-height:24px;margin:10px 0}
  }
  @media(max-width:768px){
    .aboutA .aboutA-left .about-video{min-height:200px}
    .about-section{padding:40px 0}
    .about-section-header h2{font-size:24px}
    .about-innovation-text p,.about-lab-text p,.about-manufacture-text p{font-size:14px;line-height:1.8}
    .aboutB-bd{padding-left:20px}
    .aboutB-left .inside-title h4{font-size:24px}
    .aboutB-swiper ul li{flex:0 0 200px}
    .aboutB-swiper dl dt .year{font-size:24px}
    .aboutB-swiper dl dt .text{font-size:13px}
  }

  .about-lab-body{box-shadow: 0 0 20px 0px rgba(148, 148, 148, 0.2);
    border-radius: 20px;
    background-color: #fff;
    padding: 60px;}
    .about-innovation-body{box-shadow: 0 0 20px 0px rgba(148, 148, 148, 0.2);
    border-radius: 20px;
    background-color: #fff;
    padding: 60px;}
    .about-manufacture-body{box-shadow: 0 0 20px 0px rgba(148, 148, 148, 0.2);
    border-radius: 20px;
    background-color: #fff;
    padding: 60px;}

.about-innovation-text, .about-lab-text, .about-manufacture-text{ display: block;}
.louceng{ margin-top: 60px;}



#product-10kv{
  height:1px;
padding-top:100px;
margin-top:-100px;

}

#product-35kv{

  height:1px;
padding-top:100px;
margin-top:-100px; 
}



/* ===== 1. 企业文化 Enterprise Culture ===== */
        .culture-section {
            padding: 60px 0;
            background: #ddedf8;
        }

        .culture-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-top: 40px;
        }

        .culture-card {
            text-align: center;
            padding: 48px 30px;
            border-radius: 12px;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            min-height: 300px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .culture-card::before {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 12px;
            z-index: 0;
        }

        .culture-card > * {
            position: relative;
            z-index: 1;
        }

        .culture-card.mission {
            background-image: url('../images/xx1.jpg');
        }

       

        .culture-card.vision {
            background-image: url('../images/xx2.jpg');
        }

       

        .culture-card.value {
            background-image: url('../images/xx3.jpg');
        }

       

        .culture-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }

        .culture-card:hover::before {
            opacity: 0.92;
        }

        .culture-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 25px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            border: 2px solid rgba(255,255,255,.5)
        }

        .culture-card.mission .culture-icon {
           
            color: #fff;
        }

        .culture-card.vision .culture-icon {
           
            color: #fff;
        }

        .culture-card.value .culture-icon {
           
            color: #fff;
        }

        .culture-card h3 {
            font-size: 22px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 6px;
        }

        .culture-card .en-sub {
            font-size: 13px;
            color: rgba(255,255,255,0.75);
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 20px;
        }

        .culture-card p {
            font-size: 18px;
            color: #fff;
            line-height: 1.8;
            font-weight: bold;
        }

        .culture-card .en-desc {
            font-size: 14px;
            color: rgba(255,255,255,0.7);
            margin-top: 8px;
        }

        /* ===== 2. 董事长寄语 Message from the Chairman ===== */
        .chairman-section {
            padding: 80px 0;
            background: #fff;
        }

        .chairman-content {
            display: flex;
            gap: 50px;
            align-items: stretch;
            margin-top: 40px;
        }

        .chairman-text {
            flex: 1;
            display: flex;
        }

        .chairman-text .letter {
            background: #fff;
            padding: 48px 44px;
            border-radius: 12px;
            border: 1px solid #e8ecf0;
            width: 100%;
            display: flex;
            flex-direction: column;
            position: relative;
            box-shadow: 0 2px 16px rgba(0,0,0,0.03);
            padding-bottom: 20px;
        }

        .chairman-text .letter::before {
            content: '\201C';
            position: absolute;
            top: 12px;
            left: 28px;
            font-size: 72px;
            font-family: Georgia, serif;
            color: rgba(3, 110, 183, 0.2);
            line-height: 1;
            pointer-events: none;
        }

        .letter-salutation {
            font-size: 18px;
            font-weight: 600;
            color: #1a1a1a;
            margin-bottom: 24px;
            padding-left: 16px;
            
        }

        .letter-body {
            font-size: 15px;
            color: #555;
            line-height: 2;
            text-align: justify;
            flex: 1;
        }

        .letter-body p {
            margin-bottom: 18px;
            text-indent: 2em;
        }

        .letter-body p:last-child {
            margin-bottom: 0;
        }

        .letter-signature {
            text-align: right;
            margin-top: 32px;
            padding-top: 24px;
            border-top: 1px solid #e8ecf0;
        }
        .letter-signature img{display: inline-block;}

        .letter-signature .name {
            font-size: 18px;
            font-weight: 700;
            color: #036eb7;
        }

        .letter-signature .title {
            font-size: 14px;
            color: #999;
            margin-top: 6px;
        }

        .chairman-photo {
            flex: 0 0 38%;
            max-width: 420px;
            min-width: 260px;
            display: flex;
        }

        .chairman-photo .photo-wrapper {
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            background: #fff;
            box-shadow: 0 8px 30px rgba(0,0,0,0.08);
            text-align: center;
            width: 100%;
            display: flex;
            flex-direction: column;
        }

     

        .chairman-photo img {
            flex: 1;
            width: 100%;
            min-height: 200px;
            object-fit: cover;
            display: block;
        }

        .photo-caption {
            padding: 20px 16px;
            text-align: center;
            background: linear-gradient(135deg, #f0f6fc 0%, #e8f2fa 100%);
            border-top: 1px solid rgba(3, 110, 183, 0.06);
        }

        .photo-caption .name {
            font-size: 18px;
            font-weight: 700;
            color: #1a1a1a;
        }

        .photo-caption .position {
            font-size: 14px;
            color: #666;
            margin-top: 6px;
        }

        /* ===== 3. 星际活动 Star Culture Activity ===== */
        .activity-section {
            padding: 80px 0;
            background: #fff;
            padding-top: 40px;
        }

        .activity-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            margin-top: 40px;
        }

        .activity-card {
            text-align: center;
            transition: all 0.3s ease;
        }

        .activity-card:hover {
            transform: translateY(-8px);
        }

        .activity-img {
            width: 100%;
            height: 220px;
            border-radius: 10px;
            overflow: hidden;
            margin-bottom: 20px;
            position: relative;
            background: #f0f0f0;
        }

        .activity-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .activity-card:hover .activity-img img {
            transform: scale(1.05);
        }

        .activity-img .overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 60px;
            background: linear-gradient(to top, rgba(0,0,0,0.4), transparent);
        }

        .activity-card h4 {
            font-size: 20px;
            font-weight: 600;
            color: #1a1a1a;
            margin-bottom: 6px;
        }

        .activity-card .sub-title {
            font-size: 14px;
            color: #888;
        }

        /* 响应式 */
        @media (max-width: 1024px) {
            .culture-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .activity-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .chairman-content {
                flex-direction: column;
            }
            .chairman-photo {
                flex: none;
                width: 100%;
                max-width: 400px;
                margin: 0 auto;
            }
        }

        @media (max-width: 768px) {
            .culture-grid,
            .activity-grid {
                grid-template-columns: 1fr;
            }
            .section-title h2 {
                font-size: 26px;
            }
        }

/* ===== Search Result Page ===== */
.search-result-section { padding: 60px 0; }
.search-tip { text-align: center; padding: 40px 0; color: #999; font-size: 16px; }
.search-keyword-label { color: #666; margin: 20px 0; }
.search-keyword-value { color: #0B7CCB; }
.search-no-result { text-align: center; padding: 40px 0; color: #999; font-size: 16px; }
.search-result-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 30px; }
.search-result-item { background: #fff; border-radius: 8px; overflow: hidden; box-shadow: 0 2px 8px rgba(0,0,0,0.06); transition: transform 0.3s; }
.search-result-img-wrap { height: 180px; overflow: hidden; }
.search-result-img { width: 100%; height: 100%; object-fit: cover; }
.search-result-body { padding: 16px; }
.search-result-title { font-size: 16px; margin: 0 0 8px; line-height: 1.4; }
.search-result-title a { color: #333; text-decoration: none; }
.search-result-digest { font-size: 13px; color: #999; margin: 0 0 8px; line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.search-result-time { font-size: 12px; color: #bbb; }
.search-pagination { text-align: center; margin-top: 40px; }




/*手机适配代码*/
@media (max-width: 992px){
.footer-nav{ display: none;}
.footer-qr-row{flex-direction: row;}
.footer-bd{ padding-bottom: 0;}
.footer-qr-row{ margin-top: 0;}
.footer-qr-row {
align-items: center!important;
display: flex!important;
justify-content: center!important;
box-sizing: border-box!important;
gap: 20px!important;
}
.contact_C .content-container{ display: block!important;}
.contact_C .left .desc{ font-size: 18px;}
.section-title-group h2{ font-size: 24px;}
.contact_C .right .desc{ font-size: 16px;}
.form ul li.last{ margin-bottom: 0;}
.form{ padding-top: 20px;}
.contact_C {
        padding: 30px 0;
}
.contactA .content .left{ width: 100%!important;}
.contact_C .right{ margin-top: 18px!important;}
.form ul li.flex{ padding-top: 0!important;}
.form ul li{padding: 5px 10px!important;}
.section-sub-en{ margin-top: 4px!important;}
.form ul li .text{ font-size: 14px!important;}
.form ul li input, .form ul li textarea{ font-size: 14px!important;}
.contact_C .left .desc{ font-size: 16px!important;}
.contactA {
        padding: 30px 0!important;
}
.contactA .content .info dl dd .p2{ font-size: 15px!important;}
.contactA .content .name {
        font-size: 20px!important;
        margin-bottom: 10px!important;
}
.contactA .content .right{ padding: 20px!important;}
.contactA .content{ margin-top: 20px;}
.section-sub-en{ font-size: 14px;}
.inside-banner > img {
        height: 145px!important;
}
.contactA .bd {
        padding: 0px 0 0!important;
}
.inside-banner{ margin-top: 0!important;}
.logo img {
    height: 20px!important;
}
.navbar{ height: 42px;}
.inside-banner {
        margin-top: 0!important;
}
.section-title-group h2{ margin-top:0!important;}
.section-title-group h2 {
        font-size: 22px!important;
}
.footer-wrap{ padding-top: 30px;}
.footer-hd{padding: 0 0 15px;}
.footer-bd {
        flex-wrap: wrap;
        padding: 16px 0 19px;
}
.contactA .content .left{ height: 220px!important;}
.contactA .bd .item{ margin-bottom: 30px!important;}
.about-desc p{ font-size: 14px!important;}
.aboutA-bd{ padding-top: 0!important;}
.aboutA .aboutA-left .about-video img{ height: 214px;}
.about-stat-value{ font-size: 25px!important;}
.about-stat-label{ font-size: 14px;}
.about-innovation-body{ padding: 25px;}
.about-innovation-img img, .about-lab-img img, .about-manufacture-img img{ height: 220px;}
.about-innovation-img img, .about-lab-img img, .about-manufacture-img img{ min-height: 220px;}
.about-innovation-img, .about-lab-img, .about-manufacture-img{ height: 220px;}
.jscxnl_jj{ font-size: 14px;}
.about-stat-card{padding: 17px 24px;}
.aboutA {
        padding: 15px 0 0!important;
}
.about-lab-body{ padding: 25px!important;}
.about-manufacture-body{ padding: 25px!important;}
.about-honors-item{ min-width: 100%!important;}
.about-honors-item p{ font-size: 14px!important;}
.news_dam .news-list li a{ display: block;}
.news_dam .news-img{ width: 100%;}

.inside-banner{ height: 145px!important;}
.culture-card{padding: 15px 14px;}
.culture-icon{ width: 50px; height: 50px;}
.culture-icon svg{width: 20px!important; height: 20px!important;}
.culture-card p{ font-size: 16px;}
.culture-card h3{ font-size: 20px;}
.chairman-section{padding: 30px 0;}
.chairman-text .letter{ padding: 30px;}
.letter-body{ font-size: 14px;}
.activity-section{padding: 30px 0;}
.activity-card h4{ font-size: 16px;}
.activity-grid{ margin-top: 20px}
.culture-section{padding: 30px 0;}
.culture-icon{ margin-bottom: 10px;}
.culture-grid{ margin-top: 20px;}
.chairman-content{ margin-top: 20px;}
.htl-detail{ margin-top: 0!important;}
.htl-detail-time{ margin-bottom: 10px!important;}
.htl-details{ margin-top: 20px!important;}
.htl-label{ letter-spacing: 0;}
.htl-year.active .htl-label{ font-size: 18px!important;}
.htl-detail-text{ font-size: 14px!important;}
.htl-section {
        padding: 30px 0 30px;
}
.htl-year.active .htl-dot{transform: scale(1.1)!important;}
.htl-label{ letter-spacing: 0!important;}
.section-sub-en{ letter-spacing: 0!important; font-size: 13px!important;}
.htl-section .section-title-group {
        margin-bottom: 20px!important;
}
.htl-section {
        padding: 30px 0 30px!important;
}
.news_dam .news-info{ padding: 10px!important;}
.news_dam .news-img{ margin-left: 0!important;}
.news_dam .news-list {
    padding: 30px 0 30px!important;
}
.news_dam .news-info .name{ font-size: 16px}
.news_dam .news-info .text{ font-size: 14px; line-height: 25px; height: 50px;}
.news_dam .news-info .date{ margin-bottom: 8px;}
.news_dam .news-info .name{-webkit-line-clamp: 1!important;}
.news_dam .news-more{ font-size: 13px;}
.news_dam .news-list li{ margin-bottom: 0!important;}
.news-detail > .content-container{padding: 0 30px!important;}
.app-case-label{ font-size: 14px!important;}
.values-accordion{ display: block!important;}
.values-accordion{ display: block!important;}
.value-card{ margin-top: 14px!important;}
.value-card{ min-height: 320px!important;}
.vc-metric{ font-size: 24px;}
.value-card.active{ height: 320px!important;}
.app-scenes {
        padding: 30px 0!important;
}
.app-scene-content{ padding-right: 0!important;}
.app-scene-visual{ height: 164px!important;}
.app-scene-section .section-title-group {
    margin-bottom: 22px!important;
}
.app-scene-info div{ font-size: 14px!important;}
.app-scene-section {
    margin-bottom: 30px;
}
.app-scene-info{ padding: 20px; padding-top: 0;}
.products-more-btn{ font-size: 13px!important;}
.app-cases-header{ margin-bottom: 20px!important;}
.pro_product .mySwiper ul{ display: block;}
.pro_product .mySwiper ul li a{padding: 11px 18px 20px;}
.pro_product .bd {
        padding: 30px 0 0;
    }
.strp-section-narrow-x7k9m2 {
        padding: 32px 2px;
} 
.product_big_se{ display: block;}
.product_big_se_le{ width: 100%;}
.product_big_se_re{ width: 100%;}
.product_big_se_re h2{ font-size: 24px}
.product-highlight-num{  font-size: 18px;}
.product_big_se_re section{ font-size: 14px;}
.product_big_se_re h2 {
        font-size: 20px; margin-top: 15px; margin-bottom: 10px;
} 
.product_big_se{ padding-top: 24px;}
.pro_ted ul{padding: 20px 0 0 0;} 
.louceng {
    margin-top: 30px;
}
.product-highlight-label{ font-size: 12px;}
.pro_ted ul li .title{ padding-top: 6px;}
.pro_table table tr td:first-child{ font-size: 14px;}
.pro_table table tr td{ font-size: 14px;}  
 .pro_product .mySwiper ul li .title .text .cn { font-size: 14px;}
 .weith_big{ padding: 30px;}
 .solution-row, .solution-row-reverse{ padding: 30px!important;}
 .solution-img{ min-height: auto!important;}
  .solution-cta{padding: 10px 17px; font-size: 13px;}
  .solution-row, .solution-row-reverse{gap:20px;}
  #solution_overview{ padding-top: 30px!important;}
  .solution-card h3{ font-size: 24px;}
  .card-link{ opacity: 1;transform: inherit;}
  .section-header-left{ margin-bottom: 20px;}
  .solutions-desc{ font-size: 14px;margin-bottom: 1px;margin-top: 18px;}
   .solutions-header{ gap:20px;} 
   .solutions-header{ margin-bottom: 24px;}
   .solution-card h3{ font-size: 20px;}
   	.product-img{margin-top: 18px;}
   	.product-img{min-height: auto;}
   	.product-body{ gap:20px;}
   	.products-grid{ gap:15px;}
   	.banner{height: 48vh;}
   	.banner-text .subtitle{ font-size: 14px!important;}
   	.banner-text .btn-outline{ font-size: 13px;}
   	.section-padding {
        padding: 30px 0;
}
#news .section-header-left{ padding-top: 20px!important; margin-bottom: 10px!important;}
.section-padding {
        padding: 20px 0;
}
.news-more-btn{padding: 8px 15px; font-size: 13px!important;}
.section-padding {
        padding: 30px 0;
}
.about-body{ gap:20px;}
.about-btn{ margin-top: 15px;} 	
.about-desc{ margin-top: 20px;} 
.about-body{ margin-bottom: 20px;}  	
.news-list {
        padding: 10px 0;
}
.about-btn{ font-size: 13px;padding: 6px 17px;}
.core-values{ padding-bottom: 0;}
.footer-copyright{ margin-top: 0;}
.about-stat-label{ font-size: 13px; margin-top: 2px;}
    .about-stat-value {
        font-size: 20px !important;
}
.news_dam .news-list li::after{ display: none;}
.news_dam .news-list li:hover .news-img {
    transform: translateX(0px);
}
 .section-padding{ padding-top: 30px;}
 .mobile-menu.open{ top: 73px!important;}
    
    
 
   	
}




/* ===== Mobile Menu 二级菜单 ===== */
.mobile-menu .mm-item {
  position: relative;
  border-bottom: 1px solid #EFF2F5;
}

.mobile-menu .mm-item > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 52px 14px 24px;
  font-size: 15px;

  color: #1A1A1A;
  background: #fff;
  position: relative;
}

.mobile-menu .mm-item > a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 18px;
  border-radius: 0 2px 2px 0;
  background: #0B7CCB;
  opacity: 0;
  transition: opacity 0.2s;
}

.mobile-menu .mm-item > a:hover,
.mobile-menu .mm-item > a.active {
  color: #0B7CCB;
  background: #F3F9FE;
}

.mobile-menu .mm-item > a:hover::before,
.mobile-menu .mm-item > a.active::before {
  opacity: 1;
}

.mobile-menu .mm-arrow {
  position: absolute;
  right: 12px;
  top: 10px;
  width: 32px;
  height: 32px;
  border: none;
  background: #F0F4F9;
  border-radius: 8px;
  color: #7A8BA0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  z-index: 2;
}

.mobile-menu .mm-arrow svg {
  width: 12px;
  height: 12px;
  transition: transform 0.3s;
}

.mobile-menu .mm-item > .mm-arrow:hover {
  background: #E1EDF9;
  color: #0B7CCB;
}

.mobile-menu .mm-item.open > .mm-arrow {
  background: #0B7CCB;
  color: #fff;
}

.mobile-menu .mm-item.open > .mm-arrow svg {
  transform: rotate(180deg);
}

.mobile-menu .mm-item > a.mm-parent-link {
  cursor: pointer;
}

.mobile-menu .mm-sub {
  display: none;
  background: #F7F9FC;
  padding: 6px 12px 10px;
  margin: 0 12px 12px;
  border-radius: 10px;
  border: 1px solid #EDF1F6;
}

.mobile-menu .mm-item.open .mm-sub {
  display: block;
  animation: mmFadeIn 0.25s ease;
}

@keyframes mmFadeIn {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

.mobile-menu .mm-sub a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  font-size: 14px;
  color: #555;
  border-radius: 8px;
  position: relative;
  transition: all 0.2s;
}

.mobile-menu .mm-sub a::before {
  content: '';
  flex-shrink: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #B9C4D0;
  transition: background 0.2s;
}

.mobile-menu .mm-sub a:hover,
.mobile-menu .mm-sub a.active {
  color: #0B7CCB;
  background: #fff;
  box-shadow: 0 2px 8px rgba(11, 124, 203, 0.08);
  padding-left: 18px;
}

.mobile-menu .mm-sub a.active::before {
  background: #0B7CCB;
}


