﻿* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: Arial, Helvetica, sans-serif, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  color: #fff;
  background-color: #090909;
  overflow-x: hidden;
}
body.fixed-padding {
  padding-top: 60px;
}
a {
  text-decoration: none;
  color: #333;
}
i {
  font-style: normal;
}
ul,
li,
ol {
  list-style: none;
  padding: 0;
}
.clear {
  clear: both;
}
button {
  outline: none;
}
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 10px;
}
.container2 {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 20px;
}
.titmax {
  font-size: 42px;
  font-weight: 100;
  color: #ffffff;
  text-align: center;
}
/* 搜索弹窗样式 */
.search-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.search-modal.active {
  display: flex;
}
.search-box {
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  width: 90%;
  max-width: 600px;
  position: relative;
}
.search-close {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
  color: #666;
}
.search-inputs {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #cccccc;
  border-radius: 4px;
  font-size: 16px;
  margin-bottom: 15px;
  margin-top: 21px;
  color: #000;
}
.search-btns {
  width: 100%;
  padding: 12px;
  background: #ff4d4f;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
}
/* 顶部广告栏 */
.com-top-ad {
  background-color: #090a0e;
  position: relative;
  transition: all 0.4s ease;
}
.com-top-ad.hide {
  height: 0;
  padding: 0;
  overflow: hidden;
}
.com-top-ad .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  
  /*和LOGO对齐*/
  width: 90%;
    max-width: 90%;
}
.com-ad-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.com-ad-title {
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.com-ad-desc {
  font-size: 21px;
  font-weight: 500;
}
.com-top-ad .img img {
  max-height: 120px;
  display:block;
}
.com-top-ad .img .ad1-phone{ display:none}
/* 倒计时容器+滚动动画 */
.com-countdown {
  display: flex;
  align-items: center;
  gap: 12px;
}
.com-countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
  width: 48px;
 /* height: 50px;*/
}
.com-countdown-num-wrap {
  position: relative;
  width: 100%;
  height: 40px;
  background: #222c40;
  border-radius: 4px;
  overflow: hidden;
}
.com-countdown-num {
  display: block;
  width: 100%;
  height: 40px;
  line-height: 40px;
  font-size: 22px;
  font-weight: 700;
  text-align: center;
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.com-countdown-num.next {
  position: absolute;
  top: 40px;
  left: 0;
}
.com-countdown-num.scroll {
  transform: translateY(-32px);
}
.com-countdown-label {
  font-size: 12px;
 
  margin-top: 2px;
}
.com-countdown-sep {
  font-size: 24px;
  font-weight: 700;
}
.com-ad-close {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  padding: 4px;
}
.com-ad-close:hover {
  color: #ff4d4f;
}
/* 导航栏 */
.com-header {
  padding: 16px 0;
  position: absolute;
  z-index: 99;
  left: 0;
  right: 0;
}
.com-header.black {
  background: #090a0e;
}
.com-header.fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 90;
  background-color: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.com-header  .container{width: 90%; max-width:90%}
.com-header-inner {
  display: flex;
  align-items: center;
  /*justify-content: space-between; 原来 三个子项目平分*/
  
      justify-content: flex-start;/*改为*/
	  gap:60px;
}
.com-logo a {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  letter-spacing: 1px;
}
.com-nav-list {
  display: flex;
  list-style: none;
  gap: 50px;
}
.com-nav-link {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: color 0.3s ease;
}
.com-nav-link:hover {
  color: #e63946;
}
.com-header-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  
  margin-left: auto;/*第三个项目右侧显示*/
}
.com-search-btn {
  background: none;
  border: none;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  background-image: url(../images/ico_fdj.png);
  width: 22px;
  height: 22px;
  background-position: center center;
  background-repeat: no-repeat;
}
.com-language {
  position: relative;
}
.com-lang-trigger {
  display: flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
  position: relative;
  margin-left: 10px;
}
.com-lang-trigger::after {
  background: #ffffff;
  width: 1px;
  height: 100%;
  content: '';
  position: absolute;
  left: -15px;
  top: 0;
}
.com-lang-trigger span {
  display: inline-block;
  background-image: url(../images/ico_lang.png);
  width: 22px;
  height: 22px;
  background-position: center center;
  background-repeat: no-repeat;
}
.com-lang-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background-color: #111;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  list-style: none;
  min-width: 120px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
}
.com-language:hover .com-lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.com-lang-dropdown li a {
  display: block;
  padding: 10px 16px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  transition: background-color 0.3s ease;
}
.com-lang-dropdown li a:hover {
  background-color: #222c40;
}
.com-mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 26px;
  cursor: pointer;
}
/* ========== 全屏产品下拉（左右完整铺满屏幕，修复右侧空白） ========== */
.com-product-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  background-color: #090a0e;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 40px 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
}
.com-nav-item.has-dropdown:hover .com-product-dropdown {
  opacity: 1;
  visibility: visible;
}
.com-product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 30px;
}
.com-product-item {
  display: flex;
  align-items: center;
  gap: 50px;
  padding: 20px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  /*background-image: url(../images/pro.png);*/
  background-repeat: no-repeat;
  background-size: cover;
}
.com-product-item:nth-child(1){background-image: url(../images/A1MD30i-cat1.png);}
 
.com-product-item:nth-child(2){background-image: url(../images/A1SE40i-cat2.png);}
.com-product-item:nth-child(3){background-image: url(../images/A3MiSeries-cat3.png);}
.com-product-item:nth-child(4){background-image: url(../images/HA3Series-cat4.png);}
.com-product-item:nth-child(5){background-image: url(../images/A3M50i-E-cat5.png);}

 
.com-product-item:hover {
  background-color: rgba(255, 255, 255, 0.05);
  transform: translateY(-4px);
}
.com-product-icon {
  width: 100px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.com-product-name {
  font-size: 20px;
  font-weight: 500;
  text-align: center;
  color: #ffffff;
}
/* 普通窄下拉（非通屏，Support/Solutions/News/About/Contact共用） */
.com-normal-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: #090a0e;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0 0 12px 12px;
  padding: 30px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 999;
}
/* hover显示下拉 */
.com-nav-item.has-dropdown:hover .com-normal-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
/* 限制网格列数，窄屏不挤 */
.com-normal-dropdown .com-product-grid {
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
}
.pc_container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
/* 左侧服务支持区域 */
.pc_serviceWrap {
  flex: 1;
  padding-right: 40px;
}
.pc_serviceTitle {
  font-size: 26px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.pc_serviceTitle::after {
  content: ">";
  font-size: 28px;
  color: #ffffff;
}
.pc_divider {
  height: 1px;
  background-color: #ccc;
  margin-bottom: 50px;
}
.pc_serviceNav {
  display: flex;
  gap: 40px 80px;
  flex-wrap: wrap;
}
.pc_serviceNavItem {
  font-size: 18px;
  color: #ffffff;
  font-weight: 500;
  cursor: pointer;
  transition: color 0.3s ease;
}
.pc_serviceNavItem:hover {
  color: #ff6600;
}
/* 右侧图片区域 */
.pc_serviceImgWrap {
  flex: 0 0 300px;
  height: 300px;
  overflow: hidden;
  border-radius: 4px;
}
.pc_serviceImg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%);
}
/* 移动端右侧弹窗导航 */
.com-mobile-nav-mask {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}
.com-mobile-nav-mask.show {
  opacity: 1;
  visibility: visible;
}
.com-mobile-nav {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100vh;
  background: #0f0f0f;
  z-index: 999;
  padding: 80px 30px;
  transition: right 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.com-mobile-nav.show {
  right: 0;
}
.com-mobile-nav-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
}
.com-mobile-nav-list {
  list-style: none;
}
.com-mobile-nav-list li {
  padding: 3px 0;
}
.com-mobile-nav-list a {
  color: #fff;
  font-size: 18px;
  text-decoration: none;
}
/* 移动端产品子菜单 */
.com-mobile-submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding-left: 15px;
  margin-top: 8px;
}
.com-mobile-nav-list li .item {
  position: relative;
  display: block;
  border-bottom: 1px solid rgb(242, 242, 242, .1);
  padding: 13px 0;
}
.has-submenu .item::after {
  content: "▼";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
  color: #ffffff;
  transition: transform 0.2s ease;
}
.com-mobile-nav-item.has-submenu:hover .com-mobile-submenu {
  max-height: 400px;
}
.com-mobile-nav-item.has-submenu:hover .item::after {
  transform: translateY(-50%) rotate(180deg);
}
.com-mobile-submenu a {
  font-size: 15px;
  opacity: 0.8;
}
/* 轮播图 */
.com-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0a0a0a 0%, #142030 100%);
  height: calc(100vh - 140px);
  margin-bottom: 50px;
}
.com-hero-slide {
  height: calc(100vh - 140px);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  position: relative;
}
.indexbanner1{
 
  background-image: url("../images/indexbanner1.png");
 
}
.indexbanner2{
 
  background-image: url("../images/indexbanner2.png");
 
}
.com-hero-inner {
 /* display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  height: 100%;*/
  position: absolute;
    bottom: 15%;
   left: 11.3%;
}
.com-hero-content {
  animation: slideInLeft 1s ease-out forwards;
}
.com-hero .swiper-pagination {
  bottom: 25px;
}
.com-hero .swiper-pagination-bullet {
  width: 40px;
  height: 4px;
  background: none;
  border: 1px solid #b5b8bb;
  background: #b5b8bb;
  opacity: 1;
  margin: 0 7.5px !important;
  border-radius: 0px;
  transition: all 0.6s;
}
.com-hero .swiper-pagination span.swiper-pagination-bullet-active {
  background: #ffffff;
  border-color: #ffffff;
}
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.com-hero-title {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 80px;
}
.com-hero-buttons {
  display: flex;
  gap: 16px;
}
.com-btn {
  padding: 12px 28px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}
.com-btn-primary {
  background-color: #cf121b;
  color: #fff;
  border: none;
  border-radius: 100px;
}
.com-btn-primary:hover {
  background-color: #c1121f;
  transform: translateY(-2px);
}
.com-btn-outline {
  background-color: #0f1117;
  color: #fff;
  border-radius: 100px;
}
.com-btn-outline:hover {
  background-color: #fff;
  color: #0a0a0a;
  transform: translateY(-2px);
}
.com-hero-image {
  animation: slideInRight 1s ease-out forwards;
}
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.com-hero-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.swiper-pagination-bullet {
  background-color: #fff;
  opacity: 0.4;
}
.swiper-pagination-bullet-active {
  opacity: 1;
  background-color: #e63946;
}
/* 右侧社交侧边栏 */
.com-social-sidebar {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 100;
}
.com-social-link {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  background-color: #e63946;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 18px;
  font-weight: 700;
  transition: all 0.3s ease;
  position: relative;
}
.com-social-link:hover {
  transform: translateX(-4px);
  color: #000;
}
.com-social-link>img {
  width: 15px;
}
/* 二维码弹窗 */
.com-qrcode-box {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  width: 120px;
  height: 120px;
  background: #fff;
  padding: 8px;
  border-radius: 6px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.com-qrcode-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* 三角箭头 */
.com-qrcode-box::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: #fff;
}
/* hover显示二维码 */
.com-social-link:hover .com-qrcode-box {
  opacity: 1;
  visibility: visible;
}
.pc_productcontainer {
  max-width: 93%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
 /* height: 940px;*/
 height: 690px;
  margin-bottom: 100px;
}
.pc_productcontainer .left-card {
  background-color: #111;
  border-radius: 12px;
     padding: 54px 120px 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.pc_productcontainer .left-card h2 {
  font-size: 36px;
  margin-bottom: 20px;
}
.pc_productcontainer .left-card p {
  font-size: 14px;
    color:#bcbcbc;
  line-height: 1.6;
  margin-bottom: 13px;
  max-width: 470px;
 

  
}
.pc_productcontainer .btn-red {
  background-color: #cf121b;
  color: #fff;
  border: none;
  padding: 10px 25px;
  border-radius: 100px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s;
}
.pc_productcontainer .btn-red:hover {
  background-color: #cf121b;
}
.pc_productcontainer .left-card img {
  max-width: 80%;
  height: auto;
  margin-top: 20px;
}
.pc_productcontainer .right-column {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}
.pc_productcontainer .right-card {
  background-color: #111;
  border-radius: 12px;
  padding: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  flex: 1;
}
.pc_productcontainer .right-card {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.pc_productcontainer .right-card .text-content {
  max-width: 50%;
}
.pc_productcontainer .right-card h2 {
  font-size: 36px;
  margin-bottom: 20px;
}
.pc_productcontainer .right-card p {
   font-size: 14px;
    color:#bcbcbc;
  line-height: 1.6;
  margin-bottom: 20px;
}
.pc_productcontainer .btn-outline {
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 100px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 30px;
  display: inline-block;
  padding: 10px 25px;
}
.pc_productcontainer .btn-outline:hover {
  background-color: #cf121b;
  border: 1px solid #cf121b;
  color: #ffffff;
}
/* 标题区域 */
.laser-section-title {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 50px;
}
/* 标签栏 */
.laser-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid #333;
  margin-bottom: 24px;
}
.laser-tab-item {
  padding: 8px 16px;
  font-size: 16px;
  color: #ccc;
  cursor: pointer;
  position: relative;
  transition: color 0.3s;
}
.laser-tab-item.laser-active {
  color: #fff;
}
.laser-tab-item.laser-active::after {
  content: '';
  position: absolute;
  bottom: -16px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #ff3333;
}
/* 内容区域 */
.laser-content-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
  gap: 24px;
}
.laser-content-text {
  flex: 1;
  font-size: 16px;
  line-height: 1.6;
  color: #eee;
}
.laser-learn-more-btn {
  padding: 12px 28px;
  border: 1px solid #fff;
  border-radius: 100px;
  background: transparent;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.3s;
}
.laser-learn-more-btn:hover {
  background: #fff;
  color: #000;
}
/* 图片区域 */
.laser-image-container {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 100px;
}
.laser-tab-image {
  width: 100%;
  height: auto;
}
.laserbox .box {
  display: none;
  padding-bottom: 100px;
}
.laserbox .box.on {
  display: block;
}
.team-testimonial-container {
  background-color: #12141d;
  border-radius: 16px;
  overflow: hidden;
  padding: 40px;
  border: 1px solid #1e2130;
  margin-bottom: 100PX;
}
.team-swiper {
  width: 100%;
}
.team-swiper-slide {
  display: flex;
  align-items: center;
  gap: 60px;
  overflow: hidden;
}
.team-testimonial-content {
  flex: 1.6;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.team-testimonial-author {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 36px;
}
.team-author-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #1e2130;
}
.team-author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.team-author-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #ffffff;
  
 /* 下面加国旗图标 */
    display: flex;
    align-items: center;
    gap: 8px; 
}
.author-icon {
    width: 24px;   /* 图标宽度按需修改 */
    height: 24px;  /* 图标高度，和文字匹配 */
    object-fit: contain;
}

 
.team-author-info p {
  font-size: 16px;
  color: #a0aec0;
  font-weight: 400;
}
.team-testimonial-quote {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 28px;
  color: #e2e8f0;
  font-weight: 300;
}
.team-testimonial-stars {
  display: flex;
  gap: 10px;
  margin-bottom: 32px;
}
.team-star {
  width: 26px;
  height: 26px;
  background-color: #cf121b;
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}
.team-star.half {
  background: linear-gradient(90deg, #cf121b 50%, #ffffff 50%);
}
.team-testimonial-image {
  flex: 1;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 16/9;
}
.team-testimonial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* Swiper pagination - 左下角定位 */
.team-swiper-pagination {
  position: static !important;
  margin-top: 0;
  text-align: left;
}
.team-swiper-pagination .swiper-pagination-bullet {
  width: 13px;
  height: 13px;
  background-color: #4a5568;
  opacity: 1;
  margin: 0 6px;
  border-radius: 2px;
}
.team-swiper-pagination .swiper-pagination-bullet-active {
  background-color: #cf121b;
}
footer {
  background: #0f1117;
}
.footer-container {
  margin: 0 auto;
  padding: 60px 20px!important;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 30px;
}
.footer-left .logo {
  font-size: 42px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 30px;
  letter-spacing: 1px;
}
.footer-left .contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 18px;
  font-size: 16px;
  line-height: 1.6;
  color: #b1b1b1;
}
.footer-left .contact-item img {
  width: 20px;
  height: 20px;
  margin-right: 12px;
  margin-top: 3px;
  fill: #e2e2e2;
  flex-shrink: 0;
}
.footer-left .social-icons {
  display: flex;
  gap: 18px;
  margin-top: 30px;
  margin-bottom: 22px;
}
.footer-left .social-icons a {
  color: #e2e2e2;
  font-size: 22px;
  transition: color 0.3s ease;
}
.footer-left .social-icons a:hover {
  color: #ffffff;
}
.footer-column h3 {
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 25px;
}
.footer-column ul {
  list-style: none;
}
.footer-column ul li {
  margin-bottom: 14px;
}
.footer-column ul li a {
  color: #b0b0b0;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s ease;
}
.footer-column ul li a:hover {
  color: #ffffff;
}
.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding: 25px 20px;
  border-top: 1px solid #2a2d3a;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: #888888;
}
.session2 {
  background: #0f1117;
  padding: 100px 0;
}
.about-container {
  padding: 100px 20px;
  text-align: center;
}
.about-title {
  font-size: 24px;
  margin-bottom: 20px;
  font-weight: normal;
}
.about-brand-name {
  font-size: 56px;
  color: #e60000;
  font-weight: bold;
  margin-bottom: 80px;
  letter-spacing: 2px;
}
.about-policy-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.about-policy-item {
  flex: 1;
  min-width: 280px;
  text-align: center;
}
.about-policy-icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 20px;
  stroke: #fff;
  stroke-width: 2;
  fill: none;
}
.about-policy-title {
  font-size: 18px;
  margin-bottom: 20px;
  margin-top: 20px;
  font-weight: normal;
}
.about-policy-desc {
  font-size: 16px;
  line-height: 1.6;
}
.data-container {
  padding: 180px 20px;
  position: relative;
  background-size: cover;
  background-image: url(../images/bei_4.png);
  background-repeat: no-repeat;
  background-position: center center;
}
.data-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 40px;
}
.data-wrapper .data-item:nth-child(1) span{font-size: 24px;}
.data-item {
  flex: 1;
  min-width: 220px;
  text-align: left;
}
.data-label {
  font-size: 16px;
  margin-bottom: 20px;
  opacity: 0.9;
  letter-spacing: 0.5px;
  text-align: center;
}
.data-number {
  font-size: 78px;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 8px;
   text-align: center;
}
.data-suffix {
  font-size: 34px;
  opacity: 0.8;
  margin-left: 8px;
}
.real {
  position: relative;
  z-index: 1;
}
.real .swiper-container {
  overflow: hidden;
}
.real .swiper-slide {
  background-color: #12161f;
  border-radius: 12px;
  overflow: hidden;
}
.real .swiper-card-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}
.real .swiper-card-content {
  padding: 28px 24px;
}
.real .swiper-card-title {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 16px;
  line-height: 1.3;
  color: #ffffff;
}
.real .swiper-card-desc {
  font-size: 16px;
  line-height: 1.6;
  opacity: 0.9;
  color: #ffffff;
}
/* 自定义导航按钮样式 */
.real .swiper-button-prev {
  left: 0;
  background-image: url(../images/l.png) ;
  transform: translateX(-120%);
  -webkit-transform: translateX(-120%);
}
.real .swiper-button-next {
  right: 0;
  background-image: url(../images/r.png) ;
  transform: translateX(120%);
  -webkit-transform: translateX(120%);
}
.real .swiper-button-prev,
.real .swiper-button-next {
width: 44px;
height: 44px;
border-radius: 50%;
Color: #fff;
background-size: 100% 100%;
transition: all 0.3s ease;
outline: none;
}
.real .swiper-button-prev:hover,
.real .swiper-button-next:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
.real .swiper-button-prev::after,
.real .swiper-button-next::after {
  font-size: 20px;
  font-weight: bold;
}
.videobg {
  margin-bottom: 100px;
  position: relative;
}
.videobg img {
  width: 100%;
  display: block;
}
.videobg .box {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
.video-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  height: 100%;
}
/* 背景图区域 */
.video-hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
/* 遮罩层 */
.video-overlay2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 2;
}
/* 介绍文本区域 */
.video-intro {
  position: absolute;
  top: 306px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 1200px;
  line-height: 1.8;
  font-size: 18px;
  color: #eee;
  z-index: 3;
}
.video-intro p {
  text-align: center
}
/* 播放按钮容器 */
.abn-play-btn-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}
.abn-play-btn-wrapper1 {
  display: flex;
  justify-content: center;
  padding: 100px 0 50px;
}
/* 播放按钮 */
.abn-play-btn {
  position: relative;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: #ff3b30;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}
.abn-play-btn:hover {
  transform: scale(1.1);
}
/* 播放图标 */
.abn-play-icon {
  width: 0;
  height: 0;
  border-left: 20px solid #fff;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  margin-left: 5px;
}
/* 扩散波纹效果 */
.abn-play-btn::before,
.abn-play-btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: rgba(255, 59, 48, 0.3);
  transform: translate(-50%, -50%) scale(1);
  animation: ripple 2s infinite ease-out;
}
.abn-play-btn::after {
  animation-delay: 1s;
}
@keyframes ripple {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(2.5);
    opacity: 0;
  }
}
/* 视频播放器容器 - 默认隐藏 */
.video-player-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 4;
  display: none;
}
.video-player-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* 关闭按钮 */
.video-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  color: #fff;
  font-size: 24px;
}
.solution-swiper {
  padding: 20px 0 0px !important;
  overflow: hidden;
  position: relative;
 /* margin-bottom: 100px;*/
}
.solution-swiper .swiper-slide {
  overflow: hidden;
  transition: all 0.4s ease;
}
.solution-swiper .swiper-slide img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 12px;
}
.solution-swiper .swiper-slide h3 {
  color: #ffffff;
  opacity: 0;
  font-size: 20px;
  text-align: center;
  font-weight: 300;
  padding: 15px 0;
}
.solution-swiper .swiper-slide p {
  color: #ffffff;
  opacity: 0;
  font-size: 16px;
  text-align: center;
}
.solution-swiper .swiper-slide-active h3,
.solution-swiper .swiper-slide-active p {
  opacity: 1;
}
/* 两边小图 + 渐变透明 */
.solution-swiper .swiper-slide-prev .solution-item,
.solution-swiper .swiper-slide-next .solution-item {
  opacity: 0.5;
}
.solution-swiper .swiper-slide {
  padding: 10px 0;
}
.solution-swiper .swiper-button-prev {
  left: 14.5%;
  background-image: url(../images/l.png) ;
}
.solution-swiper .swiper-button-next {
  right: 14.5%;
    background-image: url(../images/r.png) ;
}
.solution-swiper .swiper-button-prev,
.solution-swiper .swiper-button-next {
 /* width: 44px;
  height: 44px;
  border: 2px solid #fff;
  border-radius: 50%;
  color: #fff;
  background: transparent;
  transition: all 0.3s ease;
  outline: none;*/
  width: 44px;
height: 44px;
border-radius: 50%;
Color: #fff;
background-size: 100% 100%;
transition: all 0.3s ease;
outline: none;
}
.solution-swiper .swiper-button-prev:hover,
.solution-swiper .swiper-button-next:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
.solution-swiper .swiper-button-prev::after,
.solution-swiper .swiper-button-next::after {
  font-size: 20px;
  font-weight: bold;
}
.faq-container {
  max-width: 1250px;
  margin: 0 auto;
}
.faq-title {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: #ffffff;
}
.faq-item {
  background-color: #161a25;
  border-radius: 16px;
  margin-bottom: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  user-select: none;
}
.faq-question h3 {
  font-size: 18px;
  font-weight: 500;
  color: #f0f0f0;
}
.faq-arrow {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
  color: #ffffff;
  background-image: url(../images/ico_xia.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}
.faq-arrow.active {
  background-image: url(../images/ico_xias.png);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 24px;
  color: #b0c4de;
  font-size: 16px;
  line-height: 1.6;
}
.faq-answer.active {
  max-height: 200px;
  padding: 0 24px 20px;
}
.contactbg {
  background-image: url(../images/weib_5.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  padding: 100px 0;
}
.home-contact-wrap {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(340px, 420px) 1fr;
  gap: 60px;
  align-items: center;
}
.home-contact-left {}
.home-contact-left h1 {
  font-size: 46px;
  margin-bottom: 32px;
}
.home-contact-left p {
  font-size: 18px;
  line-height: 1.75;
  color: #e2e2e2;
  max-width: 440px;
}
.home-form-area {}
.home-form-area .home-form-title {
  font-size: 20px;
  margin-bottom: 26px;
}
.home-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.home-form-row.two {
  grid-template-columns: 1fr 1fr;
}
.home-form-row.full {
  grid-template-columns: 1fr;
}
.home-form-item {
  display: flex;
  align-items: center;
  background: #171b26;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 0 18px;
  height: 60px;
  
    min-width: 0;
}
.home-form-item.textarea {
  height: auto;
  min-height: 120px;
  padding: 16px 18px;
  align-items: flex-start;
}
.home-form-label {
  font-size: 14px;
  color: #9299aa;
  white-space: nowrap;
  margin-right: 8px;
}
.home-star {
  color: #e02424;
  margin-right: 12px;
}
.home-form-input {
  flex: 1;
  height: 100%;
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-size: 16px;
}
.home-form-textarea {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-size: 16px;
  min-height: 88px;
  resize: none;
}
.home-form-bottom {
  display: flex;
  gap: 20px;
  align-items: flex-end;
  margin-top: 30px;
}
.home-captcha-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border-radius: 8px;
  padding: 0 20px;
  height: 60px;
  width: 220px;
}
.home-captcha-box img {
  width: 120px;
}
.home-captcha-text {
  color: #666;
  font-size: 16px;
  margin-right: 8px;
}
.home-captcha-input {
  border: none;
  outline: none;
  font-size: 16px;
  color: #000;
  width: 75px;
}
.home-send-btn {
  height: 60px;
  padding: 0 38px;
  background: #e02424;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 18px;
  cursor: pointer;
  transition: background 0.25s;
}
.home-send-btn:hover {
  background: #c11919;
}
.topbanner {
  position: relative;
  margin-top:65px;
}
.topbanner img {
  display: block;
  width: 100%;
}
.topbanner h3 {
  position: absolute;
  font-weight: bold;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  font-size: 48px;
}
.abn-nav-container {
  position: sticky;
  top: 0;
  background-color: #0a0a0a;
  padding: 0px 20px;
  border-bottom: 1px solid #1a1a1a;
  z-index: 100;
}
.abn-nav-tabs {
  display: flex;
  list-style: none;
  flex-wrap: wrap;
}
.abn-nav-tab {
  font-size: 18px;
  font-weight: 500;
  color: #ffffff;
  cursor: pointer;
  padding-bottom: 15px;
  position: relative;
  transition: color 0.3s;
  margin-bottom: -1px;
  height: 65px;
  line-height: 65px;
  margin-right: 40px;
}
.abn-nav-tab a {
  color: inherit;
  text-decoration: none;
}
.abn-nav-tab.abn-active {
  color: #ff3b30;
}
.abn-nav-tab.abn-active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #ff3b30;
}
/* 内容外层容器 */
.abn-content-wrapper {
  margin: 0 auto;
  padding: 0 20px;
}
/* 每个锚点板块 */
.abn-section {
  padding: 60px 0;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 30px;
  align-items: center;
}
/* 板块左侧标题区域 */
.abn-section-left h1 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 25px;
  line-height: 1.5;
}
.abn-section-left p {
  font-size: 18px;
  color: #e0e0e0;
  line-height: 1.5;
}
/* 右侧独立滚动内容区 */
.abn-section-right {
  max-height: 190px;
  overflow-y: auto;
  padding-right: 15px;
  scrollbar-width: thin;
  scrollbar-color: #ff3b30 #1a1a1a;
}
.abn-section-right::-webkit-scrollbar {
  width: 6px;
}
.abn-section-right::-webkit-scrollbar-track {
  background: #1a1a1a;
  border-radius: 3px;
}
.abn-section-right::-webkit-scrollbar-thumb {
  background-color: #313746;
  border-radius: 3px;
}
.abn-section-right p {
  font-size: 18px;
  line-height: 1.8;
  color: #e0e0e0;
  padding-left: 15px;
  margin-bottom: 30px;
}
.abn-video-container {
  position: relative;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 100px;
}
/* 背景图 */
.abn-video-bg {
  width: 100%;
}
/* 视频元素 */
.abn-video-element {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
  z-index: 10;
}
.v3-wrap {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: flex-start;
  margin: 100px 0;
}
/* 卡片基础 */
.v3-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  background: #001624;
}
/* 三张卡片 高度 + 顶部偏移 差异化 */
.v3-card-vision {
  height: 620px;
  transform: translateY(40px);
  /* 向下偏移，顶部低于中间卡片 */
}
.v3-card-mission {
  height: 700px;
  transform: translateY(0);
  /* 居中卡片最高，无偏移 */
}
.v3-card-values {
  height: 570px;
  transform: translateY(160px);
  /* 向下偏移最多，顶部最低 */
}
/* 视频铺满卡片 */
.v3-card-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}
/* 底部文字层 */
.v3-card-text {
  position: absolute;
  left: 30px;
  bottom: 42px;
  z-index: 2;
  color: #ffffff;
}
.v3-card-text p {
  font-size: 18px;
  line-height: 1.65;
  margin-bottom: 16px;
  opacity: 0.92;
}
.v3-card-title {
  font-size: 30px;
  font-weight: bold;
  color: #ff2222;
}
.v3-wrap_pic {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: flex-start;
  margin: 100px 0;
  margin-bottom: 200px;
}
/* 卡片基础 */
.v3-card_pic {
  position: relative;
  overflow: hidden;
}
.v3-card_pic img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  position: relative;
  z-index: 1;
}
.v3-card_pic::after {
  content: '';
  background-image: url(../images/redk.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 10;
}
.v3-card_pic:hover::after {
  background-image: url(../images/l_c1_2.svg);
}
/* 三张卡片 高度 + 顶部偏移 差异化 */
.v3-card-vision_pic {
  height: auto;
  transform: translateY(-40px);
  /* 向下偏移，顶部低于中间卡片 */
}
.v3-card-mission_pic {
  height: auto;
  transform: translateY(0);
  /* 居中卡片最高，无偏移 */
}
.v3-card-values_pic {
  height: auto;
  transform: translateY(100px);
  /* 向下偏移最多，顶部最低 */
}
/* 底部文字层 */
.v3-card-text_pic {
  position: absolute;
  left: 30px;
  bottom: 42px;
  z-index: 2;
  color: #ffffff;
  right: 30px;
}
.v3-card-text_pic p {
  font-size: 17px;
  line-height: 1.65;
  margin-bottom: 16px;
  opacity: 0.92;
}
.v3-card-text_pic p.p1 {
  font-size: 20px;
}
.v3-card-text_pic p.p2 {
  font-size: 16px;
  margin-top: 15px;
}
.v3-card-title_pic {
  font-size: 34px;
  font-weight: bold;
  color: #ff2222;
}
.w1 {
  width: 1400px;
  margin: 0 auto;
}

 .mobile-bottom-fix{ display:none}
 
@media(max-width:1500px) {
  .w1 {
    width: 1200px
  }
}
@media screen and (max-width:1200px) {
  .w100 {
    width: 100% !important;
  }
  .w30,
  .top_popupbox {
    width: calc(100% - 30px) !important;
  }
}
.fzlc {
  padding: 120px 0 150px 0;
  background: url(../images/eventbg.png)no-repeat center;
  text-align: center;margin-bottom: 100px;
}
.nybt {
  font-size: 36px;
  text-align: center;
  margin-bottom: 70px;
}
.fzlc-t {
  margin-bottom: 160px;
}
.fzlc-t dl {
  width: 720px;
}
.fzlc-t dl h3 {
  color: #ffffff;
  font-size: 50px;
  margin-bottom: 40px;
}
.fzlc-t dl h3 i:nth-child(2n+1) {
  color: #005ca9;
}
.fzlc-t dl h4 {
  font-size: 30px;
  margin-bottom: 22px;
}
.fzlc-t dl p {
  font-size: 16px;
  line-height: 24px;
  color: #ffffff;
}

.fzlc-t dl .milestone-slogan {
    font-size: 24px;
    opacity: .92;
    margin-bottom: 40px;
}


.fzlc-t .swiper-button-next {
  width: 60px;
  height: 60px;
  right: 85px;
  background: url(../images/r.png);
  transition: all 0.5s;
}
/*.fzlc-t .swiper-button-next:hover{background:url(../images/r-1.png);}*/
.fzlc-t .swiper-button-prev {
  width: 60px;
  height: 60px;
  left: 85px;
  background: url(../images/l.png);
  transition: all 0.5s;
}
/*.fzlc-t .swiper-button-prev:hover{background:url(../images/l-1.png);}*/
.fzlc-b {
  position: relative;
  z-index: 2;
  .fzlc-ba: hover;
  .fzlc-ba: hover;
  .fzlc-ba: hover;
  .fzlc-ba: hover;
}
.fzlc-b>h5 {
  position: absolute;
  left: 0;
  width: 100%;
  z-index: -1;
  top: 6px;
  background: #d7dadc;
  height: 1px;
}
.fzlc-b a {
  display: block;
  color: #aaa;
}
.fzlc-b a h5 {
  width: 16px;
  height: 16px;
  border-radius: 16px;
  background: #fff;
  border: 4px solid #d7dadc;
  margin-bottom: 25px;
}
.fzlc-b a h3 {
  font-size: 16px;
  transition: all 0s;
  height: 20px;
}
.fzlc-b a:hover,
.fzlc .swiper-slide-thumb-active a {
  color: #ff0000;
}
.fzlc-b a:hover h5,
.fzlc .swiper-slide-thumb-active a h5 {
  border-color: #ff0000;
}
.swiper-button-next {
  outline: none;
}
.swiper-button-prev {
  outline: none;
}
.swiper-button-next::after {
  display: none;
}
.swiper-button-prev::after {
  display: none;
}
@media(min-width:1200px) {
  .xwzx-l {
    position: sticky;
    top: 70px;
  }
  .fzlc-b {
    transform: rotate(-7deg);
  }
  .fzlc-b a {
    transform: rotate(7deg);
  }
}
.v3-locations-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 50px;
  margin-bottom: 100px;
}
/* 顶部大图模块 */
.v3-hero-card {
  position: relative;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
}
.v3-hero-card img {
  width: 100%;
  height: auto;
  display: block;
}
.v3-hero-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: #fff;
}
.v3-hero-overlay h2 {
  font-size: 24px;
  margin-bottom: 10px;
}
.v3-hero-overlay p {
  font-size: 18px;
  line-height: 1.6;
  opacity: 0.9;
}
/* 底部三列模块 */
.v3-subcards-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.v3-subcard {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}
.v3-subcard img {
  width: 100%;
  height: auto;
  display: block;
}
.v3-subcard-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: #fff;
}
.v3-subcard-overlay h3 {
  font-size: 18px;
  margin-bottom: 6px;
}
.v3-subcard-overlay p {
  font-size: 14px;
  opacity: 0.9;
}
.awar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 20px;
}
.awar-header h2 {
  font-size: 42px;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.awar-tab-nav {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.awar-tab-btn {
  padding: 12px 28px;
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  color: #ffffff;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.awar-tab-btn.active {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
}
.awar-tab-btn:hover {
  border-color: #ffffff;
  background-color: rgba(255, 255, 255, 0.05);
}
.awar-tab-content {
  display: none;
  margin-bottom: 200px;
}
.awar-tab-content.active {
  display: block;
}
.rong-swiper {
  position: relative;
  margin-bottom: 30px;
  overflow: hidden;
  margin-top: 50px;
}
.rong-swiper .swiper-slide {
  border: 1px solid #313746;
  padding: 20px 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
}
.rong-swiper .swiper-slide img {
  max-width: 90%;
}
.glob-stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
  margin-top: 50px;
}
.glob-stat-item {
  text-align: left;
}
.glob-stat-number {
  font-size: 68px;
  font-weight: 700;
  color: #0052cc;
  margin-bottom: 8px;
  line-height: 1.1;
}
.glob-stat-label {
  font-size: 18px;
  color: #999999;
  line-height: 1.5;
}
/* 世界地图 */
.glob-map-wrapper {
  width: 100%;
  overflow: hidden;
  margin-bottom: 100px;
}
.glob-map-img {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0.8;
}
.ser-container {
  margin-bottom: 100px;
}
.ser-section-title {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 60px;
  position: relative;
  display: inline-block;
}
.ser-section-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -0.8rem;
  width: 50px;
  height: 3px;
  background-color: #e53e3e;
}
.ser-grid {
  display: grid;
  /*grid-template-columns: repeat(auto-fit, minmax(580px, 1fr));*/
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.ser-card {
  background-color: #1a1a23;
  border-radius: 10px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.ser-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #2d2d3a;
}
.ser-card-icon {
  width: 66px;
  height: 66px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ser-card-icon img {
  width: 40px;
  height: 40px;
}
.ser-card-title {
  font-size: 20px;
  font-weight: 600;
}
.ser-card-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}
.ser-card-content ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.ser-card-content li {
  font-size: 16px;
  line-height: 1.5;
  color: #e2e2e2;
  padding-left: 1rem;
  position: relative;
}
.ser-card-content li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: #ffffff;
  font-weight: bold;
}
.serx-container {
  margin-bottom: 100px;
}
.serx-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.serx-card {
  background-color: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.serx-card-title {
  font-size: 22px;
  font-weight: 600;
  color: #d62828;
  text-align: center;
  padding: 20px;
  border-bottom: 1px solid #e0e0e0;
}
.serx-scroll-wrapper {
  height: 800px;
  /* 固定显示高度 */
  overflow: hidden;
  position: relative;
}
.serx-scroll-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.serx-scroll-wrapper:hover .serx-scroll-content {
  transform: translateY(calc(-100% + 600px));
  transition: transform 3.8s ease;
}
.serx-image {
  width: 100%;
  height: auto;
  display: block;
}
.tut-container {
  margin-bottom: 100px;
  background: #161820;
  padding: 50px 0;
}
.tut-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.tut-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  height: 380px;
  cursor: pointer;
}
.tut-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.tut-card:hover .tut-card-img {
  transform: scale(1.05);
}
.tut-card:hover .tut-card-label {
  display: none
}
.tut-card-label {
  position: absolute;
  left: 20px;
  bottom: 20px;
  color: #ffffff;
  font-size: 24px;
  font-weight: 500;
  z-index: 2;
}
.tut-card-label a,
.tut-card-label a:link,
.tut-card-label a:visited {
  color: #ffffff;
}
.tut-card-menu {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 3;
}
.tut-card:hover .tut-card-menu {
  opacity: 1;
}
.tut-menu-title {
  color: #ffffff;
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 20px;
}
.tut-menu-title a,
.tut-menu-title a:link,
.tut-menu-title a:visited {
  color: #fff
}
.tut-menu-item {
  width: 400px;
  padding: 12px 20px;
  margin: 5px 0;
  background-color: #ffffff;
  color: #121217;
  font-size: 18px;
  text-align: center;
  border-radius: 4px;
  transition: background-color 0.2s ease;
}
.tut-menu-item:hover {
  background-color: #cf121b;
  color: #ffffff;
}
.tut-menu-item:hover a,
.tut-menu-item:hover a:link,
.tut-menu-item:hover a:visited {
  color: #ffffff;
}
.tut-menu-item.tut-active {
  background-color: #cf121b;
  color: #ffffff;
}
.tut-menu-item.tut-active a,
.tut-menu-item.tut-active a:link,
.tut-menu-item.tut-active a:visited {
  color: #ffffff;
}
.download-section {
  display: flex;
  align-items: center;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 100px;
  background-image: url(../images/bg2.png);
  background-repeat: no-repeat;
        background-size: contain;
 
    background-position: right bottom;
 /* background-size: auto 100%;*/
  height: 588px;
}
.download-left {
  width: 100%;
  padding: 80px 60px;
}
.download-title {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 50px;
}
.download-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.download-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 20px;
  font-weight: 500;
  cursor: pointer;
  transition: opacity 0.2s;
}
.download-item a,
.download-item a:link,
.download-item a:visited {
  color: #fff
}
.download-item:hover {
  opacity: 0.7;
}
.download-item::after {
  content: "→";
  font-size: 22px;
}
.download-right {
  width: 60%;
  position: relative;
}
.download-right img {
  width: 100%;
  height: auto;
  display: block;
}
/* 通屏视频背景区域 */
.banner_video-section {
  position: relative;
  width: 100%;
  height: 50vh;
  overflow: hidden;
}
.banner_video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
/* 渐变遮罩：底部数字区域深色，向上逐渐透明 */
.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* 垂直渐变：底部30%深色，往上渐变完全透明 */
  background: linear-gradient(to top, rgba(0, 0, 0, 15.65) 3%, rgba(0, 0, 0, 0) 100%);
  z-index: 2;
}
/* 视频上方内容容器，最大宽度1400 */
.banner_video-content {
  position: relative;
  z-index: 3;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.banner_video-content .container {
  width: 100%;
  max-width: 1400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
.banner_control-panel {
  width: 90%;
  max-width: 900px;
}
.banner_control-panel img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}
/* 漂浮在视频上的数字参数 */
.banner_banner_stats-float {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 1400px;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 30px;
  z-index: 4;
}
.banner_banner_banner_banner_banner_banner_stat-item {
  text-align: center;
  padding: 16px 24px;
  border-radius: 12px;
}
.banner_stat-number {
  font-size: 36px;
  font-weight: 700;
  color: #ff0000;
  margin-bottom: 8px;
  display: inline-block;
  min-width: 80px;
}
.stat-label {
  font-size: 18px;
  color: #ccc;
}
.p1-container {
  padding: 0 20px;
  margin-bottom: 100px;
}
/* 顶部导航栏 */
.p1-top-nav {
  width: 100%;
  background-color: #0a0a0a;
  padding: 23px 0;
  border-bottom: 1px solid #1a1a1a;
  position: sticky;
  z-index: 100;
  top: 0;
}
.p1-top-nav .container {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}
.p1-nav-item {
  font-size: 18px;
  font-weight: 500;
  color: #ffffff;
  text-decoration: none;
  transition: color 0.2s;
}
.p1-nav-item:hover {
  color: #ff0000;
}
/* 主内容区域 */
.p1-hero-section {
  position: relative;
  width: 100%;
  height: 729px;
  overflow: hidden;
  background-image: url(../images/weib_6.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.p1-hero-bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: linear-gradient(to top, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
  z-index: 1;
}
.p1-hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: calc(100vh - 65px);
  padding: 60px 0;
  gap: 40px;
}
.p1-hero-left {
  flex: 1;
  max-width: 550px;
}
.p1-hero-title {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 30px;
}
.p1-hero-desc {
  font-size: 16px;
  line-height: 1.8;
  color: #e0e0e0;
  margin-bottom: 40px;
}
.p1-hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.p1-btn {
  padding: 14px 30px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}
.p1-btn-primary {
  background-color: #d80000;
  color: #ffffff;
}
.p1-btn-primary:hover {
  background-color: #b80000;
}
.p1-btn-secondary {
  background-color: #2a2a2a;
  color: #ffffff;
}
.p1-btn-secondary:hover {
  background-color: #3a3a3a;
}
.p1-hero-right {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.p1-product-img {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
}
.p2-hero-section {
  position: relative;
  width: 100%;
  height: 800px;
  background-image: url(../images/weib_77.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  display: flex;
  align-items: center;
  padding: 40px 20px;
}
.p2-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6));
  z-index: 1;
}
.p2-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
  width: 100%;
}
.p2-product-image {
  flex: 1;
  position: relative;
}
.p2-product-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 8px;
  box-shadow: 0 0 30px rgba(0, 100, 200, 0.3);
}
.p2-badge {
  position: absolute;
  right: -30px;
  width: 140px;
  height: 140px;
  background-color: #ff6a00;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 600;
  text-align: center;
  padding: 10px;
  box-shadow: 0 0 20px rgba(255, 106, 0, 0.5);
}
.p2-badge.p2-top {
  top: 20%;
}
.p2-badge.p2-bottom {
  top: 55%;
}
.p2-badge .p2-times {
  font-size: 16px;
  margin-bottom: 4px;
}
.p2-badge .p2-label {
  font-size: 14px;
  text-transform: capitalize;
}
.p2-product-info {
  flex: 1;
}
.p2-product-info h1 {
  font-size: 34px;
  margin-bottom: 20px;
  font-weight: 700;
}
.p2-divider {
  width: 60px;
  height: 3px;
  background-color: #ff0033;
  margin-bottom: 30px;
}
.p2-product-info p {
  font-size: 20px;
  line-height: 1.6;
  color: #e0e0e0;
}
.p3-hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  background: url('../images/weib_8.jpg') no-repeat center center;
  background-size: cover;
  overflow: hidden;
}
.p3-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(30, 40, 55, 0.4);
}
.p3-hero-container {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 20px;
}
.p3-hero-content {
  width: 50%;
  color: #fff;
  z-index: 2;
}
.p3-hero-title {
  font-size: 36px;
  font-weight: 500;
  margin-bottom: 12px;
  font-weight:bold;
}
.p3-title-divider {
  width: 60px;
  height: 3px;
  background-color: #e63946;
  margin-bottom: 30px;
}
.p3-hero-desc {
  font-size: 22px;
  line-height: 1.8;
  color: #f0f0f0;
}
.p3-hero-product {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 50%;
  z-index: 1;
}
.p3-product-img {
  width: 100%;
  height: auto;
  display: block;
}
.specbg {
  background-image: url(../images/weib_10.jpg);
  background-repeat: no-repeat;
  background-size: 100% auto;
  height: 100%;
  background-position: center center;
}
.speccontainer {
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 20px;
  display: flex;
  justify-content: space-between;
  gap: 60px;
  height: 800px;
}
.feature-left {
  flex: 1;
  text-align: center;
}
.feature-left h2 {
  font-size: 36px;
  margin-bottom: 24px;
  font-weight: 500;
}
.feature-left p {
  font-size: 18px;
  color: #ccc;
  margin-bottom: 40px;
}
.spec-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  margin: 0 auto 40px;
  max-width: 300px;
  padding-top: 60px;
}
.spec-item {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 16px;
  color: #eee;
  margin-top: 30px;
}
.spec-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.machine-img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}
.feature-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.feature-right h2 {
  font-size: 30px;
  margin-bottom: 40px;
  font-weight: 500;
}
.feature-right h3 {
  font-size: 24px;
  margin-bottom: 16px;
  font-weight: 500;
}
.feature-right p {
  font-size: 18px;
  color: #ccc;
  margin-bottom: 30px;
}
.stacked-cards {
  position: relative;
  width: 320px;
  height: 400px;
  margin: 0 auto;
}
.stacked-cards .card {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}
.stacked-cards .card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* 初始层级与位置 */
.stacked-cards .card:nth-child(1) {
  z-index: 3;
  transform: translate(0, 0);
}
.stacked-cards .card:nth-child(2) {
  z-index: 2;
  transform: translate(40px, 40px) scale(0.95);
}
.stacked-cards .card:nth-child(3) {
  z-index: 1;
  transform: translate(80px, 80px) scale(0.9);
}
/* 交换后的样式类 */
.stacked-cards .card.active {
  z-index: 3;
  transform: translate(0, 0) scale(1);
}
.stacked-cards .card.layer-2 {
  z-index: 2;
  transform: translate(40px, 40px) scale(0.95);
}
.stacked-cards .card.layer-1 {
  z-index: 1;
  transform: translate(80px, 80px) scale(0.9);
}
/* 右上角圆形分页 */
.card-pagination {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
  margin-bottom: 10px;
}
.card-pagination .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  transition: 0.3s;
  cursor: pointer;
}
/* 激活圆点红色 */
.card-pagination .dot.active {
  background: #ff3333;
  transform: scale(1.2);
}
.p4-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}
/* 主视觉区块 */
.p4-hero {
  position: relative;
  min-height: 960px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: url('../images/weib_9.jpg') no-repeat center center;
  background-size: cover;
  overflow: hidden;
}
/* 电路数字背景 */
.p4-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(#101830 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.25;
  z-index: 0;
}
/* 芯片装饰块 */
/* 内容左右布局 */
.p4-hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 60px;
}
/* 左侧监控截图图片容器 */
.p4-panel-wrap {
  flex: 0 0 620px;
  margin-right: 125px;
}
.p4-panel-img {
  width: 100%;
  display: block;
  border-radius: 6px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.55);
}
.p4-img-desc {
  text-align: right;
  font-size: 14px;
  color: #b0b0c8;
  margin-top: 12px;
}
/* 右侧文字区域 */
.p4-text-wrap {
  flex: 1;
}
.p4-main-title {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 18px;
}
.p4-red-line {
  width: 64px;
  height: 3px;
  background: #e62839;
  margin-bottom: 26px;
}
.p4-desc-text {
  font-size: 22px;
  color: #d2d2e0;
}
/* p5 页面前缀样式全部 */
.p5-hero {
  position: relative;
  width: 100%;
  height: 870px;
  background-image: url(../images/weib_12.jpg);
  overflow: hidden;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.p5-water-bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: linear-gradient(to top, #000, #0a1a3a);
  opacity: 0.3;
}
.p5-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
.p5-content-left {
  max-width: 500px;
}
.p5-title {
  font-size: 36px;
  font-weight: 500;
  margin-bottom: 20px;
  line-height: 1.2;
}
.p5-divider {
  width: 120px;
  height: 3px;
  background-color: #e63946;
  margin-bottom: 30px;
}
.p5-text-desc {
  font-size: 22px;
  line-height: 1.6;
  color: #e0e0e0;
}
.p5-text-desc p {
  margin-bottom: 8px;
}
.p5-img-wrap {
  width: 620px;
  height: 480px;
}
.p5-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
/* 背景图容器 */
.p6-hero-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: url('../images/weib_13.png') no-repeat center center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
}
/* 遮罩层 */
/* 内容容器 - 最大宽度1400px */
.p6-content-wrapper {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1400px;
  text-align: center;
}
/* 标题区域 */
.p6-section-title {
  margin-bottom: 40px;
}
.p6-section-title h1 {
  font-size: 36px;
  font-weight: 500;
  margin-bottom: 16px;
}
.p6-section-title p {
  font-size: 22px;
  opacity: 0.9;
}
/* 测试项网格布局 */
.p6-test-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.p6-test-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #ffffff;
}
.p6-test-item img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: all .9s;
  transition: all .9s
}
/* 占位图 */
.p6-test-placeholder {
  width: 100%;
  height: 220px;
  background-color: rgba(20, 20, 25, 0.9);
  margin-bottom: 16px;
  overflow: hidden;
}
.p6-test-item p {
  font-size: 16px;
  opacity: 0.95;
}
.p6-test-item:hover img {
  transform: scale(1.1);
}
.p7-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}
.p7-product-title {
  text-align: center;
  font-size: 36px;
  font-weight: 500;
  margin-bottom: 40px;
  color: #ffffff;
}
.p7-product-image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 60px;
}
.p7-product-image {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 0 30px rgba(255, 127, 0, 0.2));
}
.p7-params-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.p7-param-item {
  padding: 16px 20px;
  border-radius: 4px;
  font-size: 20px;
  color: #e0e0e0;
}
.p7-param-item:nth-child(4n-3),
.p7-param-item:nth-child(4n-2) {
  background-color: #12161f;
}
/* 第3、4项：偶数分组 样式B */
.p7-param-item:nth-child(4n-1),
.p7-param-item:nth-child(4n) {
  background-color: #1e2027;
}
.p8-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 50px 20px;
}
.p8-section-title {
  font-size: 36px;
  margin-bottom: 25px;
  font-weight: 300;
}
.p8-grid-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-bottom: 60px;
}
.p8-grid-item {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 2px;
  overflow: hidden;
}
.p8-grid-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: all .9s;
  transition: all .9s
}
.p8-grid-item:hover img {
  transform: scale(1.1);
}
.fang-tab-nav {
  display: flex;
  justify-content: flex-start;
  /* 必须左对齐，否则会挤压按钮 */
  align-items: center;
  border-bottom: 1px solid #333;
  padding: 20px 0;
  max-width: 100%;
  width: 100%;
  overflow-x: auto;
}
.fang-tab-nav::-webkit-scrollbar {
  display: none;
}
.fang-tab-btn {
  background: none;
  border: none;
  color: #fff;
  font-size: 18px;
  padding: 10px 20px;
  cursor: pointer;
  position: relative;
  white-space: nowrap;
  flex-wrap: nowrap;
  flex: 0 0 auto;
  min-width: max-content;
  float: left;
}
.fang-tab-btn.fang-active {
  color: #fff;
}
.fang-tab-btn.fang-active::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #ff0000;
}
/* 外层轮播容器 */
/* 1/5分页指示器样式 */
.page-indicator {
  position: static;
  right: 20px;
  bottom: 20px;
  color: #fff;
  padding: 5px 14px;
  border-radius: 99px;
  font-size: 18px;
  z-index: 99;
}
.page-curr {
  color: #ff0000;
  font-weight: bold;
}
.fang-swiper-wrap {
  width: 100%;
  height: calc(100vh - 60px);
  overflow: hidden;
  padding-bottom: 100px;
  position: relative;
}
.fang-swiper-wrap .fenye {
  position: absolute;
 left: 8.7%;
  bottom: 100px;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fang-swiper-wrap .swiper-button-next {
  background: none;
  outline: none;
  position: static;
  color: #838383;
  height: auto;
  margin: 0;
  font-size: 22px;
}
.fang-swiper-wrap .swiper-button-next::after {
  display: none;
}
.fang-swiper-wrap .swiper-button-prev {
  background: none;
  outline: none;
  position: static;
  color: #838383;
  height: auto;
  margin: 0;
  ;
  font-size: 22px;
}
.fang-swiper-wrap .swiper-button-prev::after {
  display: none;
}
/* 单slide内部内容 */
.fang-swiper-wrap .swiper-slide .fang-slide-content {
  display: -webkit-flex;
  -webkit-flex-flow: row-reverse wrap;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 0 0%;
}
.fang-swiper-wrap .swiper-slide-next .fang-slide-text {
  display: none;
}
.fang-swiper-wrap .swiper-slide-next .fang-slide-content {
  display: flex;
  flex-flow: row wrap;
  /* 移除 row-reverse、align-items: center */
  list-style: none;
}
.fang-slide-text {
  width: 40%;
  padding: 0 5%;
}
.fang-slide-text h2 {
  font-size: 32px;
  margin-bottom: 20px;
}
.fang-slide-text p {
  font-size: 18px;
  line-height: 1.6;
  color: #838383;
}
.fang-slide-btn {
  margin-top: 30px;
  width: 120px;
  height: 40px;
  background-color: #ff0000;
  border: none;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fang-slide-page {
  position: absolute;
  bottom: 30px;
  left: 5%;
  color: #fff;
  font-size: 14px;
}
.fang-slide-page span {
  color: #ff0000;
}
.fang-slide-img {
  width: 60%;
  height: 80%;
  overflow: hidden;
  border-radius: 4px;
}
.fang-slide-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* Swiper原生样式微调，不加前缀 */
.fang-swiper-wrap .swiper {
  width: 100%;
  height: 100%;
}
.fang-swiper-wrap .swiper-slide {
  width: 100%;
  background-color: #090a0e;
}
/* 左侧露出上一张效果 */
.fang-swiper-wrap .swiper-slide-prev {
  transform: translateX(5%) !important;
  opacity: 0.3;
}
.flistbg {
  background: #12161f;
  margin-top: 50px;
}
.flist-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 100px 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 60px;
}
.flist-left-section {
  flex: 1;
  min-width: 300px;
}
.flist-left-section h2 {
  font-size: 24px;
  margin-bottom: 40px;
  font-weight: 500;
}
.flist-stats-grid {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
}
.flist-stat-item {
  text-align: center;
}
.flist-stat-number {
  font-size: 50px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 8px;
}
.flist-stat-label {
  font-size: 18px;
  color: #e0e0e0;
}
.flist-right-section {
  flex: 1.2;
  min-width: 300px;
  font-size: 18px;
  line-height: 1.8;
  color: #e0e0e0;
}
.ad {
  overflow: hidden;
  margin-bottom: 50px;
}
.ad img {
  display: block;
  width: 100%;
  -webkit-transition: all .9s;
  transition: all .9s
}
.ad:hover img {
  transform: scale(1.1);
}
.f2list-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 30px 20px;
}
.f2list-section {
  margin-bottom: 60px;
}
.f2list-section-title {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.f2list-painpoints-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.f2list-painpoint-item {
  background-color: #12141a;
  padding: 30px;
  border-radius: 8px;
}
.f2list-painpoint-number {
  display: inline-block;
  background-color: #0a0a0f;
  padding: 10px 16px;
  border-radius: 4px;
  font-size: 24px;
  margin-bottom: 20px;
}
.f2list-painpoint-text {
  font-size: 18px;
  line-height: 1.6;
  color: #e0e0e0;
}
.f2list-technologies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
.f2list-technology-card {
  background-color: #12141a;
  height: 400px;
  border-radius: 8px;
  overflow: hidden;
}
.f2list-technology-card img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: all .9s;
  transition: all .9s
}
.f2list-technology-card:hover img {
  transform: scale(1.1);
}
.flist3bg {
  background: #090a0e;
  background-repeat: no-repeat;
  background-size: auto 90%;
  background-position: center bottom;
}
.flist3-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 20px;
}
.flist3-section-title {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.flist3-product-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 50px 0;
  padding-bottom: 150px;
}
.flist3-product-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.flist3-product-title {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.3;
}
.flist3-product-desc {
  font-size: 18px;
  line-height: 1.7;
  color: #a3a3a3;
}
.flist3-learn-more-btn {
  width: fit-content;
  padding: 12px 36px;
  background-color: #d92121;
  color: #ffffff;
  border: none;
  border-radius: 118px;
  font-size: 20px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.flist3-learn-more-btn:hover {
  background-color: #b81c1c;
}
.flist3-product-image {
  width: 100%;
  max-width: 500px;
  margin-left: auto;
}
.flist3-product-image img {
  width: 100%;
  height: auto;
  display: block;
}
.lxwm-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}
/* 区块通用 */
.lxwm-section {
  margin: 60px 0;
}
.lxwm-section-title {
  font-size: 36px;
  font-weight: 600;
  padding-bottom: 18px;
  margin-bottom: 30px;
  display: inline-block;
  position: relative;
}
.lxwm-section-title::after {
  content: '';
  background: #d81010;
  ;
  width: 100px;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
}
/* 联系信息模块 */
.lxwm-contact-box {
  display: flex;
  background: #191919;
}
.lxwm-contact-left {
  width: 50%;
  padding: 40px;
  background: #222222;
}
.lxwm-contact-map {
  width: 50%;
  background: #303030;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #777;
  font-size: 14px;
}
.lxwm-contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 35px;
  font-size: 14px;
}
.lxwm-contact-item:last-child {
  margin-bottom: 0;
}
.lxwm-contact-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  color: #d81010;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 16px;
  flex-shrink: 0;
}
.lxwm-contact-icon img {
  width: 50%;
}
.lxwm-contact-text {
  font-size: 18px;
  word-break: break-all;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.lxwm-contact-text span {
  font-size: 20px;
  color: #a9a9aa;
}
/* 表单容器 */
.lxwm-form-wrap {
  background: #222222;
  padding: 40px;
}
.lxwm-form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 16px;
}
.lxwm-form-item {
  flex: 1;
  min-width: 230px;
  display: flex;
  background: #2a2a2a;
  border: 1px solid #444;
}
/* 标签单独一列，内嵌输入框背景内部 */
.lxwm-form-label {
  flex-shrink: 0;
  padding: 0 12px;
  display: flex;
  align-items: center;
  font-size: 16px;
  color: #cccccc;
}
.lxwm-form-label span {
  color: #d81010;
}
.lxwm-form-input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 18px 12px;
  color: #fff;
  font-size: 13px;
  outline: none;
}
/* 整行文本域 */
.lxwm-form-full {
  width: 100%;
  flex-direction: column;
 /* border: 1px solid #d81010;*/
}
.lxwm-form-full .lxwm-form-label {
  width: 100%;
  border-right: none;
  border-bottom: 1px solid #444;
  padding: 8px 12px;
}
.lxwm-form-textarea {
  width: 100%;
  min-height: 130px;
  background: transparent;
  border: none;
  padding: 10px 12px;
  color: #fff;
  outline: none;
  resize: vertical;
}
/* 验证码行 */
.lxwm-captcha-box {
  display: flex;
  flex: 1;
  align-items: center;
  padding: 0 10px;
}
.lxwm-captcha-img {
  height: 34px;
  margin-left: 8px;
}
/* 提交按钮 */
.lxwm-submit {
  display: block;
  width: 200px;
  height: 42px;
  background: #cf121b;
  color: #fff;
  border: none;
  margin: 30px auto 0;
  cursor: pointer;
  font-size: 13px;
}
.lxwm-submit:hover {
  background: #b50d0d;
}
.swiperbox {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  padding-bottom: 50px;
  margin-top: 100px;
  margin-bottom: 100px;
}
.news-swiper {
  border-radius: 12px;
  overflow: hidden;
  background-color: #1a1d29;
}
.news-swiper-slide {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px;
  color: #fff;
  gap: 40px;
}
.news-slide-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.news-slide-title {
  font-size: clamp(14px, 4vw, 26px);
  font-weight: 700;
  line-height: 1.3;
}
.news-slide-desc {
  font-size: clamp(14px, 2vw, 16px);
  line-height: 1.6;
  color: #b0b4c6;
  max-width: 600px;
}
.news-slide-date {
  font-size: 16px;
  color: #8a91a8;
}
.news-btn-learn-more {
  width: fit-content;
  padding: 12px 24px;
  background-color: #0f1117;
  color: #ff3333;
  border: none;
  border-radius: 6px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.news-btn-learn-more:hover {
  background-color: #ff3333;
  color: #fff;
}
.news-slide-image {
  flex: 1;
  max-width: 50%;
  border-radius: 8px;
  overflow: hidden;
}
.news-slide-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.news-swiper-pagination-bullet {
  background-color: #8a91a8;
  opacity: 0.7;
}
.news-swiper-pagination-bullet-active {
  background-color: #ff3333;
  opacity: 1;
}
.swiperbox .swiper-pagination-bullet {
  background-color: #8a91a8;
  opacity: 0.7;
}
.swiperbox .swiper-pagination-bullet-active {
  background-color: #ff3333;
  opacity: 1;
}
.news-container {
  margin-bottom: 100px;
}
.news-title {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 32px;
}
.news-year-filter {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-bottom: 32px;
  font-size: 20px;
  color: #999;
}
.news-year-filter a,
.news-year-filter a:link,
.news-year-filter a:visited {
  color: #999;
}
.news-year-filter span {
  color: #999;
  margin-right: 8px;
}
.news-year-item {
  cursor: pointer;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}
.news-year-item.active {
  color: #ff3333;
  border-bottom-color: #ff3333;
}
.news-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.news-item {
  display: flex;
  align-items: center;
  gap: 40px;
  background-color: #1a1a1a;
  padding: 24px;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.news-item:hover {
  background-color: #222;
}
.news-item::after {
  content: '';
  position: absolute;
  height: 2px;
  width: 0%;
  background: #ff3333;
  bottom: 0;
  -webkit-transition: all .9s;
  transition: all .9s;
  left: 0;
}
.news-item:hover::after {
  width: 100%;
}
.news-item-image {
  width: 360px;
  height: 240px;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}
.news-item-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.4s ease;
}
.news-item-image .img-default {
  opacity: 1;
}
.news-item-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.news-item-title {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
}
.news-item-date {
  font-size: 14px;
  color: #999;
}
.news-item-desc {
  font-size: 16px;
  color: #aaa;
  line-height: 1.6;
}
.news-item-btn {
  width: fit-content;
  padding: 8px 16px;
  background-color: transparent;
  color: #fff;
  border: 1px solid #666;
  border-radius: 4px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.news-item-btn:hover {
  border-color: #fff;
}
.news-pagination {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
  margin: 100px 0;
  flex-wrap: wrap;
}
.news-pagination-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ccc;
  border-radius: 4px;
  background-color: transparent;
  color: #ccc;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  padding: 10px 15px;
  /* 移除下划线 */
}
.news-pagination-item:hover {
  border-color: #fff;
  color: #fff;
}
.news-pagination-item.active {
  background-color: #dd1a21;
  border-color: #dd1a21;
  color: #fff;
  font-weight: 600;
}
.news-pagination-item.disabled {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
  /* 禁用点击 */
}
.news-pagination-item.disabled:hover {
  border-color: #ccc;
  color: #ccc;
}
.search-container {
  width: 95%;
  max-width: 1000px;
  display: flex;
  overflow: hidden;
  height: 60px;
  margin: 0 auto;
  margin-top: 50px;
  margin-bottom: 50px;
}
.search-left {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 0 30px;
  background-color: #2d303a;
  border-radius: 100px;
}
.search-left .search-icon img {
  display: block;
}
.search-icon {
  margin-right: 15px;
}
.search-input {
  flex: 1;
  background-color: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-size: 36px;
  align-items: center;
  font-size: 16px;
}
.search-input::placeholder {
  color: #999;
  opacity: 1;
  font-size: 16px;
}
.search-btn {
  background-color: #d81e06;
  color: #fff;
  border: none;
  padding: 0 40px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  border-radius: 100px;
  margin-left: 10px;
}
.sear-tab-wrapper {
  background-color: #121214;
  border-radius: 16px;
  padding: 50px 40px;
  margin-bottom: 50px;
  margin-top: 50px;
}
.sear-tab-container {
  display: flex;
  align-items: center;
  gap: 25px;
}
.sear-tab-title {
  color: #ffffff;
  font-size: 22px;
  font-weight: 600;
  white-space: nowrap;
  margin-right: 15px;
}
.sear-tab-list {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
}
.sear-tab-btn {
  background-color: #1e1e22;
  color: #ffffff;
  border: none;
  border-radius: 32px;
  padding: 16px 38px;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.sear-tab-btn.sear-active {
  background-color: #d81e06;
}
.sear-tab-btn:hover {
  opacity: 0.9;
}
.v-container {
  margin-top: 100px;
  margin-bottom: 100px;
}
/* 标签栏 */
.v-tabs {
  display: flex;
  gap: 32px;
  margin-bottom: 24px;
  padding-bottom: 8px;
  border-bottom: 1px solid #2a2a3a;
  font-size: 18px;
}
.v-tab-item {
  color: #999;
  cursor: pointer;
  padding-bottom: 8px;
}
.v-tab-item a{ color: #999;}
.v-tab-item.v-active,.v-tab-item.v-active a {
  color: #fff;
}
/* 视频网格 */
.videobox .box {
  display: none;
}
.videobox .box.on {
  display: block;
}
.v-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}
.v-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.v-card-thumb {
  aspect-ratio: 16 / 10;
  background-color: #2d3040;
  border-radius: 8px;
  overflow: hidden;
}
.v-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.v-card-title {
  font-size: 18px;
  color: #ccc;
  padding-bottom: 8px;
  border-bottom: 1px solid #2a2a3a;
}
/* 更多按钮 */
.v-more-wrap {
  display: flex;
  justify-content: center;
}
.v-more-btn {
  background: transparent;
  color: #fff;
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 8px 24px;
  cursor: pointer;
  font-size: 14px;
}
.case-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 20px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-bottom: 100px;
  margin-top: 50px;
}
.case-card {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  transition: all 0.3s ease;
  display: inline-block;
}
.case-card .img {
  overflow: hidden;
}
.case-card img {
  width: 100%;
  height: auto;
  display: block;
  -webkit-transition: all .9s;
  transition: all .9s
}
.case-card:hover img {
  transform: scale(1.1);
}
.case-content {
  padding: 30px 24px;
  background-color: #111;
}
.case-title {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #ffffff;
}
.case-desc {
  font-size: 16px;
  line-height: 1.6;
  color: #c3c3c3;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.case-container .case-card:hover .case-content {
  border-bottom: 2px solid #ff0000;
}
.product-container {
  padding: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  margin: 50px 0;
}
.product-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: linear-gradient(to bottom, #1e2027 50%, #0d0e11 50%);
  padding-bottom: 50px;
}
.product-card:hover {
  background: linear-gradient(to bottom, #1e2027 50%, #262e3c 50%);
}
.product-image-wrapper {
  width: 100%;
  /*padding: 40px 20px; 一排改为三个产品
  margin-bottom: -52px;
   height: 450px;
  */ 
   margin-bottom: 82px;
   height: 350px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
 cursor: pointer;
}

.product-image {
 
 /* max-height: 80%;一排2个产品*/
 max-height: 77%;
}
.product-title {
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 16px;
}
.product-title a,.product-title a:link,.product-title a:visited{ color:#FFF}
.product-desc {
  font-size: 16px;
  line-height: 1.6;
  max-width: 357px;
  margin-bottom: 40px;
  color: #e0e0e0;
}
.product-more-btn {
  font-size: 18px;
  color: #ffffff;
  text-decoration: none;
  padding-bottom: 4px;
  border-bottom: 2px solid #ffffff;
  transition: opacity 0.3s ease;
}
.product-more-btn:hover {
  opacity: 0.7;
}
.newsbox {
  background: #12161f;
  border-radius: 10px;
  padding: 15px;
  margin: 50px 0;
}
.detail-container {
  padding: 40px 20px;
}
.detail-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.2;
}
.detail-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: #6d6d6d;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.detail-view {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 20px;
  color: #888888;
  margin-bottom: 32px;
}
.detail-divider {
  height: 1px;
  background-color: #444444;
  margin-bottom: 48px;
}
.detail-content {
  font-size: 16px;
  line-height: 1.8;
  color: #ffffff;
}
.manual-container {
  padding: 40px 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.manual-card {
  background-color: #121217;
  border: 1px solid #2a2a32;
  border-radius: 12px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
}
.manual-card--rounded {
  border-radius: 16px;
}
.manual-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.manual-title {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3;
}
.manual-meta {
  font-size: 14px;
  color: #717171;
}
.manual-download {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.manual-download-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background-color: #1e1e24;
  border: none;
  border-radius: 8px;
  padding: 12px 24px;
  color: #ffffff;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.manual-download-btn:hover {
  background-color: #2a2a32;
}
.manual-download-icon {
  width: 24px;
  height: 24px;
}
/* 弹窗遮罩层 */
.videoMask {
  display: none;
  /* 默认隐藏 */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  z-index: 999;
  align-items: center;
  justify-content: center;
}
/* 弹窗容器 */
.videoBox {
  position: relative;
  width: 80%;
  max-width: 900px;
}
/* 关闭按钮 */
.closeBtn {
  position: absolute;
  top: -40px;
  right: 0;
  font-size: 32px;
  color: #fff;
  cursor: pointer;
}
/* 视频自适应 */
#myVideo {
  width: 100%;
  display: block;
  border-radius: 4px;
}
 


@media (max-width: 1440px) {
  .real .swiper-button-prev {
    left: 0;
    transform: translateX(0%);
    -webkit-transform: translateX(0%);
  }
  .real .swiper-button-next {
    right: 0;
    transform: translateX(0%);
    -webkit-transform: translateX(0%);
  }
 
 .com-hero-inner {

    bottom: 22%;

}
 
 .com-social-sidebar {
 
    right: 5px;

 }
  .video-intro{top:206px;}
   .container {
    max-width: 1150px;  
}
.footer-bottom,.lxwm-container,.flist-container,.f2list-container,.flist3-container,.p3-hero-container,.p2-hero-content,.p4-container,.speccontainer,.p5-container,.p6-content-wrapper,.p8-container,.p7-container {
   max-width: 1150px;  
}
.faq-container{ max-width: 1000px;  }
.com-nav-list {
     
    gap: 30px;
}
.fang-swiper-wrap .fenye {
    
    bottom: 120px;
	left: 6.8%;
}
.fang-slide-btn {
    margin-top: 30px;
	}
	.fang-slide-text {
 
    padding: 0 3%;
}


/*.pc_productcontainer .left-card {
 
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
}

*/
.pc_productcontainer{ height:640px;}
.pc_productcontainer .left-card {
    
    padding: 43px 120px 50px;
}
.pc_productcontainer .right-card
{ padding:40px;}

}
@media (max-width: 1200px) {
  .data-number {
    font-size: 64px;
  }
  .ser-grid {
    grid-template-columns: 1fr;
  }
  .p3-hero-title {
    font-size: 32px;
  }
  .p3-hero-desc {
    font-size: 16px;
  }
  .p5-container {
    flex-direction: column;
    justify-content: center;
    gap: 40px;
  }
  .p5-content-left {
    text-align: center;
    max-width: 100%;
  }
  .p5-divider {
    margin: 0 auto 30px;
  }
  .p5-img-wrap {
    width: 520px;
    height: 400px;
  }
  .detail-title {
    font-size: 40px;
  }
  .detail-meta,
  .detail-view {
    font-size: 20px;
  }
  .detail-content {
    font-size: 24px;
  }
  .manual-title {
    font-size: 32px;
  }
  .manual-meta {
    font-size: 20px;
  }
  .manual-download-btn {
    font-size: 20px;
    padding: 10px 20px;
  }
}
/* 响应式适配 */
@media (max-width: 1024px) {
  .com-nav {
    display: none;
  }
  .com-mobile-menu-btn {
    display: block;
  }
  /* 顶部倒计时隐藏 */
  .com-top-ad .container {
    display: flex;
    flex-wrap: wrap;
    /* 自动换行 */
    align-items: center;
    gap: 10px;
  }
  .com-countdown {
    order: 2;
    /* 放到第二行 */
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 10px 0;
  }
  .com-ad-content,
  .com-top-ad .img,
  .com-ad-close {
    flex-shrink: 0;
    order: 1;
    /* 同一行排序 */
  }
  /* 关闭按钮样式微调 */
  .com-ad-close {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    border-radius: 50%;
    border: none;
    background: #000;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    position: static;
    transform: translateY(0%);
  }
  .com-countdown-num-wrap {
    height: 30px;
  }
  .com-countdown-num {
    height: 30px;
    line-height: 30px;
    font-size: 20px;
  }
  .com-countdown-sep {
    margin-top: -20px;
  }
  .com-countdown-num {
    font-size: 18px;
  }
  /* 标题区域自适应宽度 */
  .com-ad-content {
    flex: 1;
    width: 100px;
  }
  .com-top-ad .img img {
    max-width: 120px;
    height: auto;
    display: block;
  }
  /* 轮播布局上下排列 */
  .com-hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .com-hero-buttons {
    justify-content: center;
  }
  .com-hero-image {
    order: -1;
    margin-bottom: 30px;
  }
  .com-hero-title {
    font-size: 28px;
  }
  .pc_serviceTitle {
    font-size: 28px;
  }
  .pc_serviceNav {
    gap: 30px;
    flex-direction: column;
  }
  .pc_serviceNavItem {
    font-size: 22px;
  }
  .pc_serviceImgWrap {
    height: 250px;
  }
  .com-hero-title {
    font-size: 36px;
  }
  .pc_container {
    flex-direction: column;
    gap: 40px;
    padding: 40px 20px;
  }
  .pc_serviceWrap {
    padding-right: 0;
    width: 100%;
  }
  .pc_serviceNav {
    gap: 60px;
    flex-wrap: wrap;
  }
  .pc_serviceImgWrap {
    flex: 0 0 300px;
    width: 100%;
    height: 300px;
  }
  .com-top-ad .img img {
    max-height: 70px;
  }
  .home-contact-wrap {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .home-contact-left h1 {
    font-size: 46px;
  }
  .abn-nav-tabs {}
  .abn-nav-tab {
    font-size: 20px;
    margin-right: 25px;
  }
  .abn-section {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .abn-section-left h1 {
    font-size: 45px;
  }
  .abn-section-left p {
    font-size: 22px;
  }
  .p4-hero-content {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }
  .p4-panel-wrap {
    max-width: 430px;
    width: 100%;
  }
  .p4-red-line {
    margin: 0 auto 26px;
  }
  .p6-test-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .news-item-image {
    width: 300px;
    height: 200px;
  }
}
@media (max-width: 992px) {
  .lxwm-contact-box {
    flex-direction: column;
  }
  .lxwm-contact-left,
  .lxwm-contact-map {
    width: 100%;
  }
  .lxwm-contact-map {
    min-height: 200px;
    padding: 30px;
  }
  .flist3-product-row {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .flist3-product-image {
    margin: 0 auto;
  }
  .team-swiper-slide {
    flex-direction: column;
    gap: 30px;
  }
  .team-testimonial-content,
  .team-testimonial-image {
    width: 100%;
  }
  .team-testimonial-quote {
    font-size: 20px;
  }
  .team-author-info h3 {
    font-size: 28px;
  }
  .about-policy-wrapper {
    flex-direction: column;
    align-items: center;
  }
  .about-policy-item {
    max-width: 500px;
    margin-bottom: 40px;
  }
  .about-brand-name {
    font-size: 42px;
  }
  .data-wrapper {
    justify-content: center;
  }
  .data-item {
    min-width: 40%;
    text-align: center;
  }
  .data-number {
    font-size: 56px;
  }
  .tut-grid {
    grid-template-columns: 1fr;
  }
  .tut-card {
    height: 320px;
  }
  .tut-menu-item {
    width: 280px;
  }
  .download-section {
    flex-direction: column;
    background-size: cover;
    height: auto;
  }
  .download-left,
  .download-right {
    width: 100%;
  }
  .download-left {
    padding: 40px 30px;
  }
  .download-title {
    font-size: 32px;
    margin-bottom: 30px;
  }
  .download-item {
    font-size: 18px;
  }
  .banner_banner_stats-float {
    bottom: 30px;
  }
  .banner_stat-number {
    font-size: 36px;
  }
  .stat-label {
    font-size: 16px;
  }
  .p1-top-nav .p1-container {
    gap: 30px;
  }
  .p1-hero-content {
    flex-direction: column;
    text-align: center;
    padding: 40px 0;
  }
  .p1-hero-left {
    max-width: 100%;
  }
  .p1-hero-buttons {
    justify-content: center;
  }
  .p1-hero-right {
    justify-content: center;
  }
  .p1-product-img {
    max-width: 80%;
  }
  .p2-hero-content {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }
  .p2-product-image img {
    max-width: 400px;
  }
  .p2-badge {
    right: 10px;
    width: 120px;
    height: 120px;
  }
  .p2-badge.p2-top {
    top: 10%;
  }
  .p2-badge.p2-bottom {
    top: 50%;
  }
  .p2-divider {
    margin: 0 auto 30px;
  }
  .p3-hero-container {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
  .p3-hero-content {
    width: 100%;
    margin-bottom: 40px;
  }
  .footer-container{display: block;}
  .news-pagination{display:none}
.com-top-ad .container{justify-content: center!important;width: 84%!important;max-width: 84%!important;}
  .p3-title-divider {
    margin: 0 auto 30px;
  }
  .p3-hero-product {
    position: static;
    transform: none;
    width: 80%;
  }
  .speccontainer {
    flex-direction: column;
    align-items: center;
    gap: 60px;
  }
  .stacked-cards {
    width: 280px;
    height: 350px;
  }
  .p8-grid-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .product-container {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .product-title {
    font-size: 28px;
  }
  .manual-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .manual-card {
    padding: 30px;
  }
  .manual-title {
    font-size: 28px;
  }
  .manual-meta {
    font-size: 18px;
  }
  .manual-download-btn {
    font-size: 18px;
  }
}
@media (min-width: 768px) {
  .case-container {
    grid-template-columns: 1fr 1fr;
  }
  
  .fang-swiper-wrap .fenye {
        bottom: 50px;
		
  }
  .fang-slide-btn {
        margin-top: 50px;
    }
}
@media (max-width: 768px) {
  .specbg {
    background-size: auto 100%;
    height: auto;
  }
  .speccontainer {
    height: auto;
  }
  .p2-hero-section {
    height: auto;
    background-image: none;
  }
  .p1-hero-section {
    height: auto;
    background-size: contain;
  }
  .p4-panel-wrap {
    flex: 0 0 0px;
    margin-right: 0px;
  }
  .product-card {
    display: block;
  }
  .product-image-wrapper {
    width: 100%;
    height: auto;
  }
  .product-image-wrapper img {
    width: 80%;
  }
  .fang-slide-page {
    position: static;
    margin-top: 35px;
  }
  .fang-slide-img {
    width: 100%;
    margin-top: 10px;
  }
  .fang-slide-content {
    display: block;
    margin-top: 10px;
  }
  .fang-swiper-wrap {
    height: auto;
    padding-bottom: 100px;
  }
  .fang-slide-text {
    width: 100%;
    padding-right: 0%;
    margin-top: 10px;
  }
  .fang-tab-nav {
    padding: 20px 0;
    max-width: 95%;
    margin: 0 auto;
    justify-content: flex-start;
  }
  .fang-tab-nav::-webkit-scrollbar {
    display: none;
  }
  .awar-tab-content {
    margin-bottom: 100px;
  }
  .milestone-wrap .btn-prev,
  .btn-next {
    display: none;
  }
  .milestone-wrap .timeline-year {
    font-size: 14px;
  }
  .milestone-wrap .milestone-desc {
    font-size: 14px;
  }
  .milestone-wrap .milestone-slogan {
    font-size: 18px;
  }
  .milestone-wrap .milestone-title {
    font-size: 22px;
    font-weight: bold;
    margin-top: 0px;
  }
  .milestone-wrap .milestone-year-num {
    font-size: 50px;
  }
  .com-social-sidebar {
    display: none;
  }
  .milestone-wrap {
    height: 600px;
    padding: 0;
  }
  .milestone-wrap img {
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    height: 100%;
  }
  .titmax {
    font-size: 22px;
    margin-bottom: 50px;
  }
  .topbanner {
    height: 130px;
  }
  .topbanner img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
  .topbanner h3 {
    font-size: 23px; text-align: center;
  }
  .home-contact-left {
    width: 100%;
  }
  .news-pagination {
    gap: 10px;
  }
  .news-pagination-item {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }
  .news-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .news-item-image {
    width: 100%;
    height: 220px;
  }
  .news-title {
    font-size: 28px;
  }
  .news-year-filter {
    gap: 20px;
    font-size: 16px;
  }
  .news-swiper-slide {
    flex-direction: column;
    padding: 24px;
    gap: 24px;
  }
  .news-slide-image {
    max-width: 100%;
  }
  .lxwm-form-row {
    flex-direction: column;
  }
  .lxwm-form-item {
    width: 100%;
    flex-direction: column;
  }
  .lxwm-form-item .lxwm-form-label {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #444;
    padding: 8px 12px;
  }
  .f2list-painpoints-grid {
    grid-template-columns: 1fr;
  }
  .flist-container {
    padding: 60px 20px;
  }
  .flist-left-section h2 {
    font-size: 24px;
  }
  .flist-stat-number {
    font-size: 48px;
  }
  .flist-right-section {
    font-size: 16px;
  }
  .footer-column {
    display: none;
  }
  .pc_productcontainer {
    grid-template-columns: 1fr;
  }
  .right-card {
    flex-direction: column;
    text-align: center;
  }
  .right-card .text-content {
    max-width: 100%;
    margin-bottom: 30px;
  }
  .right-card img {
    max-width: 80%;
  }
  .laser-section-title {
    font-size: 24px;
  }
  .laser-content-wrapper {
    flex-direction: column;
  }
  .laser-learn-more-btn {
    align-self: flex-start;
  }
  .laser-tabs {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 12px;
  }
  .laser-tab-item {
    white-space: nowrap;
    font-size: 14px;
    padding: 10px 10px;
  }
  .team-testimonial-container {
    padding: 24px;
  }
  .team-author-avatar {
    width: 65px;
    height: 65px;
  }
  .team-author-info h3 {
    font-size: 24px;
  }
  .team-author-info p {
    font-size: 18px;
  }
  .team-testimonial-quote {
    font-size: 18px;
  }
  .team-star {
    width: 22px;
    height: 22px;
  }
  .about-title {
    font-size: 28px;
  }
  .about-brand-name {
    font-size: 32px;
  }
  .about-policy-title {
    font-size: 20px;
  }
  .about-policy-desc {
    font-size: 16px;
  }
  .data-container {
    padding: 80px 20px;
  }
  .data-item {
    min-width: 100%;
  }
  .data-number {
    font-size: 48px;
  }
  .data-label {
    font-size: 18px;
  }
  .home-form-row {
    grid-template-columns: 1fr;
  }
  .home-form-row.two {
    grid-template-columns: 1fr;
  }
  .home-form-bottom {
    flex-direction: column;
    width: 100%;
  }
  .home-captcha-box,
  .home-send-btn {
    width: 100%;
  }
  .home-contact-left h1 {
    font-size: 38px;
  }
  .home-contact-left p {
    font-size: 17px;
  }
  .abn-nav-tabs {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 10px;
    margin-right: 15px;
  }
  .abn-nav-tab {
    font-size: 18px;
    white-space: nowrap;
  }
  .abn-section-left h1 {
    font-size: 36px;
  }
  .abn-section-left p {
    font-size: 20px;
  }
  .abn-section-right p {
    font-size: 18px;
  }
  .team-swiper-pagination {
    margin-top: 20px;
  }
  .pc_productcontainer .left-card {
    height: 350px;
  }
  .pc_productcontainer .right-card .text-content {
    max-width: 100%;
  }
  .pc_productcontainer {
    height: auto;
  }
  .abn-play-btn {
    width: 60px;
    height: 60px;
  }
  .abn-play-icon {
    border-left: 15px solid #fff;
    border-top: 9px solid transparent;
    border-bottom: 9px solid transparent;
  }
  .v3-wrap {
    grid-template-columns: 1fr;
    gap: 24px;
    margin: 0;
  }
  .v3-card {
    height: 200px;
  }
  .v3-card-vision {
    transform: translateY(0px);
  }
  .v3-card-mission {
    height: 200px;
    transform: translateY(0);
  }
  .v3-card-values {
    height: 200px;
    transform: translateY(0px);
  }
  .v3-subcards-row {
    grid-template-columns: 1fr;
  }
  .v3-wrap_pic {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .v3-card_pic {
    transform: translateY(0) !important;
    height: auto;
    aspect-ratio: 9 / 13;
  }
  .v3-subcards-row_pic {
    grid-template-columns: 1fr;
  }
  .awar-header h2 {
    font-size: 20px;
  }
  .awar-tab-nav {
    width: 100%;
    justify-content: flex-start;
  }
  .glob-stat-number {
    font-size: 50px;
  }
  .glob-stats-row {
    gap: 24px;
  }
  .ser-section-title {
    font-size: 22px;
  }
  .ser-card {
    padding: 18px;
  }
  .ser-card-title {
    font-size: 18px;
  }
  .ser-card-content {
    grid-template-columns: 1fr;
  }
  .serx-layout {
    grid-template-columns: 1fr;
  }
  .serx-scroll-wrapper {
    height: 500px;
  }
  .serx-scroll-wrapper:hover .serx-scroll-content {
    transform: translateY(calc(-100% + 500px));
  }
  .banner_video-section {
    height: 50vh;
  }
 /* .banner_banner_stats-float {
    flex-direction: column;
    align-items: center;
    bottom: 20px;
    gap: 16px;
  }
  一行一个*/
  
  .banner_banner_stats-float {
  
    align-items: center;
    bottom: 20px;
    gap: 16px;
    display: flex;   
    flex-wrap: wrap;  
}
 
.banner_banner_stats-float .banner_banner_banner_banner_banner_banner_stat-item {
    width: calc(50% - 8px);
    /* gap是16px，左右平分各8px，减去间隙避免换行错乱 */
}
  
  
  .banner_banner_banner_banner_banner_banner_stat-item {
    width: 100%;
    max-width: 260px;
    padding: 12px 16px;
  }
  .banner_stat-number {
    font-size: 28px;
  }
  .p1-nav-item {
    font-size: 16px;
  }
  .p1-hero-title {
    font-size: 32px;
  }
  .p1-hero-desc {
    font-size: 15px;
  }
  .p1-btn {
    padding: 12px 24px;
    font-size: 15px;
  }
  .p3-hero-title {
    font-size: 28px;
  }
  .p3-hero-desc {
    font-size: 15px;
  }
  .p3-hero-product {
    width: 90%;
  }
  .p4-main-title {
    font-size: 29px;
  }
  .p4-desc-text {
    font-size: 16px;
  }
  .p4-chip {
    width: 130px;
    height: 130px;
  }
  .p5-title {
    font-size: 28px;
  }
  .p5-text-desc {
    font-size: 16px;
  }
  .p5-img-wrap {
    width: 340px;
    height: 260px;
  }
  .p7-params-grid {
    grid-template-columns: 1fr;
  }
  .p7-product-title {
    font-size: 24px;
  }
  .v-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .v-tabs {
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 16px;
  }
  .detail-title {
    font-size: 32px;
  }
  .detail-meta,
  .detail-view {
    font-size: 18px;
  }
  .detail-content {
    font-size: 20px;
  }
}
@media (max-width: 640px) {
  .abn-nav-container {
    position: static;
  }
  .p6-section-title h1 {
    font-size: 28px;
  }
  .p6-test-grid {
    grid-template-columns: 1fr;
  }
  .product-image-wrapper {
    padding: 20px 10px;
  }
  .product-title {
    font-size: 24px;
  }
  .product-desc {
    font-size: 14px;
  }
  .detail-title {
    font-size: 24px;
  }
  .detail-meta,
  .detail-view {
    font-size: 16px;
  }
  .detail-content {
    font-size: 18px;
  }
  .manual-card {
    padding: 24px;
  }
  .manual-title {
    font-size: 24px;
  }
  .manual-meta {
    font-size: 16px;
  }
  .manual-download-btn {
    font-size: 16px;
    padding: 8px 16px;
  }
  .manual-download-icon {
    width: 20px;
    height: 20px;
  }
  
  /*PC导航一栏改为百分比后，下方是手机导航一栏*/
  .com-logo a img{ max-width:66%}
  .com-header-inner {
    
    gap: initial;
}
.com-header .container {
    width: auto;
    max-width: inherit;
}
.indexbanner1{
  width: 100%;
  /* 关键：背景图等比例完整显示，宽度铺满，高度自适应容器高度 */
  background-image: url("../images/indexbanner1-m.jpg");
  background-size: contain; /* 完整显示图片，宽度拉满容器，高度自动缩小 */
  background-repeat: no-repeat;
  background-position: center;
}
.indexbanner2{
  width: 100%;
  /* 关键：背景图等比例完整显示，宽度铺满，高度自适应容器高度 */
  background-image: url("../images/indexbanner2-m.jpg");
  background-size: contain; /* 完整显示图片，宽度拉满容器，高度自动缩小 */
  background-repeat: no-repeat;
  background-position: center;
}

.com-hero-slide {
    height: calc(100vh - 280px);
	
}


.pc_productcontainer .left-card {
   
    padding: 10px 20px;
	
}


    .pc_productcontainer .right-card .text-content {
        /* max-width: 100%; */
        position: absolute;
        width: 50%;
        left: 3%;
        top: 30%;
        text-align: left;
    }
	
	.pc_productcontainer .right-card {
 
    position: relative;
}

.pc_productcontainer .right-card {
   
    padding: 90px;
	
}

.com-header-actions {
     
    gap: 15px;
	
}


.com-lang-trigger::after {
 
    height: 80%;
  
    top: 3px;
}

    .com-hero-inner {
        bottom: 45%;
    }
	
	.pc_productcontainer .btn-outline{ margin-top:0;}
	.pc_productcontainer .right-card p {
   
    margin-bottom: 15px;
}

.p1-top-nav .container {
    
    gap: 20px 60px;
  
}

.p1-container{ margin-bottom:0}
.p1-hero-section {
 
    background-size: cover;
}

.spec-list{gap: 4px;}

#TechnicalSupport { padding-bottom:0;}
.v3-wrap_pic{ margin-top:30px;}
    
}
@media (max-width: 540px) {
  .com-ad-title {
    font-size: 12px;
  }
  .com-ad-desc {
    font-size: 13px;
    font-weight: 500;
  }
  .com-social-sidebar {
    display: none;
  }
  .p2-hero-section {
    padding: 20px 15px;
  }
  .p2-product-info h1 {
    font-size: 26px;
  }
  .p2-product-info p {
    font-size: 16px;
  }
  .p2-badge {
    width: 100px;
    height: 100px;
    font-size: 12px;
  }
  .p2-badge .p2-times {
    font-size: 14px;
  }
  .p2-badge .p2-label {
    font-size: 12px;
  }
  .p3-hero-title {
    font-size: 24px;
  }
  .p3-hero-desc {
    font-size: 14px;
  }
  .p3-hero-product {
    width: 100%;
  }
 
  .p8-grid-row {
	 /*  grid-template-columns: 2fr ;*/
   /*下面一行改成两个显示*/
    grid-template-columns: 1fr 1fr;
	gap:10px;
  }
  .p8-section-title {
    font-size: 28px;
  }
  
  
      .download-section {
      
        background-size: contain;
    
        background-position: center bottom;
    }
	
.tut-container {
   
    padding:50px 0 0;
	    margin-bottom: 0px;
}

.fang-slide-text h2 {
    
    text-align: center;
}
	    .fang-slide-btn {
        margin: 30px auto 0;
    }
	
	.fzlc-t dl .milestone-slogan{ font-size:22px}
	.fzlc-t dl p{ font-size:14px;}
	
	.com-top-ad .img .ad1-pc{ display:none}
	.com-top-ad .img .ad1-phone{ display:block}
	
	    .com-top-ad .container {
     
        gap: 0px;
    }
	.com-top-ad .container {
 
    width: 95%;
    max-width: 95%;
}

.fzlc {
    padding: 120px 0 100px 0;
    
    margin-bottom: 0px;
}
.fzlc-t {
    margin-bottom: 100px;
}
.fzlc-t .swiper-button-next,.fzlc-t .swiper-button-prev {
    position: absolute;
  
    top: 540px;
}
.fzlc-t  .swiper-container{ overflow:inherit}

}
@media (max-width: 480px) {
  .lxwm-form-wrap {
    padding: 20px;
  }
  .lxwm-contact-left {
    padding: 20px;
  }
  .lxwm-contact-item {
    display: block;
  }
  .lxwm-contact-text {
    font-size: 16px;
    margin-top: 10px;
  }
  .lxwm-contact-text span {
    font-size: 16px;
  }
  .lxwm-section-title {
    font-size: 22px;
    font-weight: 600;
  }
  .awar-header h2 {
    font-size: 22px;
  }
  .awar-tab-btn {
    padding: 5px 20px;
    color: #ffffff;
    font-size: 14px;
  }
  .v3-hero-card {
    height: 300px;
  }
  .v3-hero-card img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
  .v3-hero-overlay {
    padding: 10px;
  }
  .v3-hero-overlay h2 {
    font-size: 20px;
  }
  .v3-hero-overlay p {
    font-size: 14px;
  }
  .abn-nav-tab {
    font-size: 14px;
    padding-bottom: 10px;
    margin-bottom: -1px;
    height: 45px;
    line-height: 45px;
    margin-right: 30px;
  }
  .abn-section-left h1 {
    font-size: 22px;
  }
  .abn-section-left p {
    font-size: 14px;
  }
  .abn-section-right p {
    font-size: 14px;
  }
  .p4-main-title {
    font-size: 24px;
  }
  .p4-hero {
    min-height: auto;
    padding: 80px 0;
  }
  .news-pagination {
    gap: 6px;
  }
  .news-pagination-item {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
  .v-grid {
    grid-template-columns: 1fr;
  }
  .sear-tab-wrapper {
    padding: 20px 10px;
  }
  .sear-tab-container {
    display: block;
    align-items: center;
    gap: 5px;
  }
  .sear-tab-title {
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    margin-right: 15px;
  }
  .sear-tab-list {
    gap: 10px;
    margin-top: 15px;
  }
  .sear-tab-btn {
    padding: 5px 15px;
    font-size: 12px;
  }
  .search-container {
    width: 95%;
    max-width: 100%;
    height: 35px;
  }
  .search-left {
    padding: 0 10px;
  }
  .search-btn {
    padding: 0 30px;
    font-size: 14px;
  }
  .manual-container {
    padding: 10px 0px;
    gap: 20px;
  }
  .manual-title {
    font-size: 14px;
  }
  .manual-meta {
    font-size: 12px;
  }
  .manual-download-btn {
    padding: 5px 15px;
    font-size: 12px;
  }
  .fang-tab-btn {
    font-size: 12px;
    padding: 5px 10px;
  }
  .flist-left-section {
    min-width: 100%;
  }
  .flist-left-section h2 {
    font-size: 18px;
    margin-bottom: 20px;
  }
  .flist-stats-grid {
    gap: 30px;
  }
  .flist-stat-number {
    font-size: 30px;
    font-weight: 700;
  }
  .flist-stat-label {
    font-size: 14px;
  }
  .flist-right-section {
    min-width: 100%;
    font-size: 14px;
  }
  .f2list-section-title {
    font-size: 18px;
  }
  .flist3-product-title {
    font-size: 18px;
  }
  .flist3-product-desc {
    font-size: 14px;
  }
  .flist3-learn-more-btn {
    padding: 10px 26px;
    font-size: 16px;
  }
  .com-hero-title {
    font-size: 22px;
    margin-bottom: 12px;
  }
  .com-hero-buttons {
    display: flex;
    gap: 12px;
    margin-top: 50px;
  }
  .com-btn {
    padding: 10px 18px;
    font-size: 12px;
  }
  .com-hero-image {
    display: none;
  }
  .com-hero-slide::after {
    content: '';
    background: rgba(0, 0, 0, 0.2);
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
  }
  .com-hero {
    height: calc(80vh - 140px);
    margin-bottom: 20px;
  }
  .com-hero-content {
    margin-top: -100px;
	/*移动端不显示*/
	display:none;
  }
  .pc_productcontainer .left-card h2 {
    font-size: 22px;
  }
  .pc_productcontainer .left-card p {
    font-size: 14px;
  }
  .pc_productcontainer .btn-red {
    padding: 5px 15px;
    font-size: 14px;
  }
  .pc_productcontainer .right-card h2 {
    font-size: 22px;
  }
  .pc_productcontainer .right-card p { display:none;
    font-size: 14px;
  }
  .pc_productcontainer .btn-outline {
    font-size: 14px;
    padding: 5px 15px;
  }
  ::-webkit-scrollbar {
    display: none;
  }
  .laser-tab-item.laser-active::after {
    bottom: 0px;
  }
  .laser-tabs {
    border-bottom: 0
  }
  .laser-learn-more-btn {
    padding: 5px 20px;
    font-size: 14px;
  }
  .laser-section-title {
    font-size: 20px;
  }
  .laser-content-text {
    font-size: 14px;
  }
  .team-author-info h3 {
    font-size: 18px;
  }
  .team-author-info p {
    font-size: 12px;
  }
  .team-testimonial-quote {
    font-size: 14px;
  }
  .team-star {
    width: 16px;
    height: 16px;
    background-color: #dc2626;
  }
  .data-number {
    font-size: 38px;
  }
  .data-label {
    font-size: 14px;
  }
  .videobg {
    height:500px;
  }
  .videobg img {
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    height: 100%;
  }
 
      .video-intro {
        top:180px;
       font-size: 15px;    
    }
    .video-intro p{display: -webkit-box;-webkit-box-orient: vertical;-webkit-line-clamp: 3;overflow: hidden;}
	.abn-play-btn-wrapper1 {
    
    padding: 70px 0 50px;
}

  .solution-swiper .swiper-button-prev {
    left: 0%;
   
  }
  .solution-swiper .swiper-button-next {
    right: 0%;
  }
  .solution-swiper .swiper-slide h3 {
    font-size: 18px;
  }
  .solution-swiper .swiper-slide p {
    font-size: 14px;
  }
  .faq-title {
    font-size: 26px;
  }
  .faq-question h3 {
    font-size: 14px;
    font-weight: 500;
    color: #f0f0f0;
  }
  .faq-answer {
    font-size: 12px;
  }
  .home-contact-left h1 {
    font-size: 26px;
  }
  .home-contact-left p {
    font-size: 14px;
  }
  .news-slide-content {
    width: 100%;
  }
  .news-year-filter {
    flex-wrap: wrap;
  }
  .news-title {
    font-size: 22px;
  }
  .news-item {
    padding: 12px;
  }
  .news-item-title {
    font-size: 16px;
  }
  .news-item-date {
    font-size: 12px;
  }
  .news-item-desc {
    font-size: 14px;
  }
  .news-pagination-item {
    width: 38px;
    height: 38px;
    font-size: 12px;
    padding: 5px 10px;
  }
  .newsbox {
    padding: 0px;
  }
  .detail-container {
    padding: 20px 10px;
  }
  .detail-title {
    font-size: 16px;
  }
  .detail-meta {
    font-size: 13px;
  }
  .detail-content {
    font-size: 14px;
  }
  .detail-divider {
    margin-bottom: 18px;
  }
  .detail-view {
    font-size: 16px;
    margin-bottom: 12px;
  }
  .feature-left h2 {
    font-size: 26px;
  }
  .feature-left p {
    font-size: 14px;
  }
  .feature-right h2 {
    font-size: 26px;
  }
  .feature-right h3 {
    font-size: 18px;
  }
  .feature-right p {
    font-size: 14px;
  }
  .stacked-cards {
    transform: translateX(-10%);
    -webkit-transform: translateX(-10%);
  }
  .p7-param-item {
    padding: 10px 10px;
    font-size: 14px;
  }
  .p8-section-title {
    font-size: 20px;
  }
  .fang-swiper-wrap .fenye {
    position: static;
	margin-top: 15px;
  }
  
  
  
      .com-hero-slide {
        height: calc(100vh - 250px);
    }
}

@media (max-width: 375px) {

   .com-hero {
        height: calc(80vh - 140px);
     
    }
	    .com-hero-slide {
        height: calc(100vh - 250px);
    }
    .com-hero-inner {
        bottom: 45%;
    }	
	
	.fzlc-t .swiper-button-next,.fzlc-t .swiper-button-prev {
   
  
    top: 600px;
}   
}


@media (max-width: 360px) {
	.com-hero-slide {
        height: calc(100vh - 190px);
    }
	
	    .com-hero {
        height: calc(80vh - 95px);
    }
	 
	    .com-header-actions {
        gap: 5px;
    }
	
	.com-lang-trigger::after {
   
    left: -8px;
    
}
}


/*技术支持页整合Faq*/
 .contact-wrap {
            display: grid;
            /* 2/7 、5/7 左右两栏 */
            grid-template-columns: 2fr 5fr;
            gap: 30px;
            padding: 20px 20px;
     
            margin: 0 auto;
        }

        /* 左侧栏 */
        .contact-left {    background: #0f1117;
		padding:30px 10px;
        }
        .contact-left h3 {
            font-size: 24px;
            margin-bottom: 26px;
        }
        .contact-left .desc {
            margin-bottom: 24px;
            font-size: 16px;
        }
        .contact-list {
            list-style: none;
            margin-bottom: 70px;
			    margin-top: 70px;
        }
        .contact-list li {
            margin-bottom:40px;
            font-size: 16px;
        }
        .contact-info-item {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 40px;
        }
		.email2{ padding-left:30px;}
        .contact-info-item img {
            width: 20px;
            height: 20px;
            object-fit: contain;
        }

        .contact-right .session2 {
			padding:30px 0;
        }

        /* 移动端：隐藏左侧，右侧100% */
        @media (max-width: 768px) {
			body{ padding-bottom:70px;}
            .contact-wrap {
                grid-template-columns: 1fr;
            }
            .contact-left {
                display: none;
            }
			
			/*移动端底部固定*/
			
			    /* 底部固定容器核心样式 */
        .mobile-bottom-fix {
			display:block;
            position: fixed;
            left: 0;
            bottom: 0;
            width: 100%;
            background-color: #111111; /* 底部栏深色，区分页面纯黑 */
            padding: 12px 8px;
            z-index: 999; /* 层级最高，不会被其他内容盖住 */
        }

        /* 5个项目弹性横向排列，均分宽度 */
        .social-wrap {
            display: flex;
            flex-direction: row;
            justify-content: space-around;
            align-items: center;
        }

        /* 单个图标文字单元 */
        .social-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            width: 20%; /* 5个平分100%宽度 */
        }
 
        /* 图标样式 */
        .social-item img {
            width: 34px;
            height: 34px;
            object-fit: contain;
            margin-bottom: 6px;
        }

        /* 文字链接样式 */
        .social-text a {
            color: #ffffff;
            text-decoration: none;
            font-size: 12px;
            text-align: center;
        }

        /* 图片链接去除默认边框 */
        .social-img a {
            display: block;
        }
        .social-img img {
            border: none;
        }
		
		
        }
		
		
		