* {
  padding: 0;
  margin: 0;
  list-style: none;
  text-decoration: none;
}


.right-container {
    flex: 1;
    max-width: 50%;
    padding: 20px;
    background: #fff;
    display: flex; 
    flex-direction: column; 
    justify-content: center;
}

/* 主标题样式 */
.main-title {
    color: #222;
    font-size: 36px;
    margin: 0 0 8px;
}

/* 副标题样式 */
.subtitle {
    color: #504f4f;
    font-size: 20px;
    /*margin: 0 0 20px;*/
    font-weight: 500;
    /*line-height: 1.5em;*/
}

/* 分割线实现 */
.divider {
    /*height: 1px;*/
    /*background: linear-gradient(90deg, */
    /*    rgba(0,0,0,0) 0%, */
    /*    #ddd 50%, */
    /*    rgba(0,0,0,0) 100%);*/
    /*margin: 20px 0;*/
    border-top: 1px solid #ddd; 
    width: 70%;
    /*margin: 20px auto;*/
}

/* 自定义列表样式 */
.feature-list {
    color: #8d8d8d;
    list-style: none;
    padding: 0;
    /*margin: 0;*/
    margin-top: 10px; 
    /*margin-bottom: auto;*/
}

.feature-list li {
    position: relative;
    padding-left: 32px;
    margin: 12px 0;
    font-size: 16px;
    line-height: 1.6;
}

/* 光晕点实现 */
.feature-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    
    /* 内圆核心 */
    width: 10px;
    height: 10px;
    border-radius: 50%;
    
    /* 外发光效果 */
    box-shadow: 0 0 0 3px rgba(70,148,246,0.2);
}

/* 单双行颜色控制 */
.feature-list li:nth-child(odd)::before {
    background: #005cff; /* 蓝色 */
    box-shadow: 0 0 0 3px rgba(70,148,246,0.2);
}

.feature-list li:nth-child(even)::before {
    background: #ff8c1f; /* 橙色 */
    box-shadow: 0 0 0 3px rgba(255,107,53,0.2);
}

/* 增强光晕效果 */
.feature-list li::after {
    content: '';
    position: absolute;
    left: -3px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: radial-gradient(
        circle at 50% 50%,
        rgba(255,255,255,0.3) 0%,
        rgba(255,255,255,0) 70%
    );
    pointer-events: none;
}


.config-container {
  width: 100%;
  /*height: 100vh; */
  min-height: 750px;
  display: flex;
  justify-content: center; /* 水平居中 */
  /*align-items: center; */
  background: #242b33; /* 背景色按需调整 */
  color: #fff;
}
.config-content-container {
  display: flex;
  flex-direction: column;
}
.config-content {
  margin-top: 30px;
  /*margin-top:30px;*/
}

.config-wrapper {
  width: 86%; /* 内容区宽度 */
  max-width: 1400px; /* 最大宽度限制 */
  background: #242b33;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 80px;
  /*   box-shadow: 0 2px 10px rgba(0,0,0,0.1); 添加投影 */
}
.config-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /*margin-bottom: 40px; */
  font-size: 28px;
  margin-top: 40px;
}

.menu-icon {
  cursor: pointer;
  padding: 8px;
}

.menu-line {
  display: block;
  width: 24px;
  height: 2px;
  background: #c4c4c7;
  margin: 4px 0;
}
.table-header {
  background: #3e454d;
  padding: 10px 10px 10px 20px;
  letter-spacing: 2px;
  margin-bottom: 14px;
  /*font-size: 22px;*/
}
.config-row {
  display: flex;
  gap: 20px; /* 项间距 */
  /*margin-bottom: 15px;*/
  padding-left: 20px;
}

.config-item {
  flex: 1; /* 各占50% */
  display: flex;
  align-items: baseline;
}

.label-b {
  font-weight: 700;
  margin-right: 8px;
  color: #e8ecf0;
  min-width: 180px; /* 最小宽度，确保对齐基线 */
  flex-shrink: 0; /* 禁止缩小 */
  white-space: nowrap; /* 禁止文字换行 */
  font-size: 16px;
  letter-spacing: 1px;
}

.desc-b {
  color: #c6ccd4;
  /*font-weight:700;*/
  font-size: 16px;
}

/* 单行配置 */
.single-line .config-item {
  flex: 0 0 100%; /* 占满整行 */
}
.divider-b {
  height: 1px;
  background: #5a606a;
  margin: 12px 0;
  position: relative;
}

/* 或使用伪元素 */
.divider-b::after {
  content: "";
  display: block;
  border-bottom: 1px solid #5a606a;
  margin: 12px 0;
}
/* =========================
   响应式适配（移动端）
========================= */
@media screen and (max-width: 768px) {

  .config-container {
    background: #f7f8fa;
    color: #222;
    min-height: auto;
  }

  .config-wrapper {
    width: 100%;
    padding: 16px;
    background: #f7f8fa;
    margin-bottom: 30px;
  }
  
  .config-content {
    margin-top:10px;
  }

  /* 隐藏右上角菜单线 */
  .menu-icon {
    display: none;
  }

  /* 标题 */
  .config-header {
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .product-name {
    font-size: 24px;
    color: #222;
  }

  /* 主表头 */
  .table-header {
    background: #dfe7f3;
    color: #222;
    padding: 14px 16px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 18px;
    letter-spacing: 1px;
  }

  /* 每行改纵向 */
  .config-row {
    display: block;
    padding-left: 0;
  }

  /* 参数项 */
  .config-item {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 0 0 10px;
  }

  /* 参数标题 */
  .label-b {
    display: block;
    width: 100%;

    margin: 0 0 10px;
    padding: 7px 12px;

    background: #e1e1e1;
    border-radius: 4px;

    font-size: 13px;
    font-weight: 700;
    color: #222;

    line-height: 1.3;
    letter-spacing: 0.3px;
  }

  /* 参数内容 */
  .desc-b {
    padding: 0 10px;

    font-size: 13px;
    color: #666;
    line-height: 1.6;
  }
  /* 移动端隐藏主表头 */
  .table-header {
    display: none;
  }

  /* 移动端不需要分割线 */
  .divider-b {
    display: none;
  }

  .divider-b::after {
    display: none;
  }

  /* 底部说明 */
  .config-note {
    color: #999 !important;
    font-size: 12px !important;
    line-height: 1.8 !important;
    padding: 20px 0 0 !important;
  }
}




.banner {
  width: 100%;
  background-size: cover;
  position: relative;
}
.banner:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; /*background-image: radial-gradient(rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%), radial-gradient(rgba(0, 0, 0, 0) 33%, rgba(0, 0, 0, 0.3) 166%);*/
}
.section {
  width: 100%;
  height: auto;
}
.section-warp {
  width: 100%;
  margin: auto;
  overflow: hidden;
}
.section-top {
  width: 1250px;
  height: 142px;
  margin: 60px auto 105px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.section-top .top-content {
  width: 122px;
  text-align: center;
  cursor: pointer;
}
.section-top .top-content .imgs {
  width: 100%;
  height: 104px;
  overflow: hidden;
  margin-bottom: 17px;
  position: relative;
}
.section-top .top-content .imgs img:nth-child(2) {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%);
  opacity: 0;
  transition: 1s;
}
.section-top .top-content .imgs img:nth-child(1) {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%);
  transition: 1s;
}
.section-top .top-content:hover .imgs img:nth-child(2) {
  opacity: 1;
  transition: 1s;
}
.section-top .top-content:hover .imgs img:nth-child(1) {
  opacity: 0;
  transition: 1s;
}
.section-top .top-content p {
  font-size: 18px;
  font-family: HarmonyOS Sans SC;
  font-weight: 300;
  color: #262626;
  transition: 0.5s;
}
.p-active {
  /* color: #005CFF!important; */
}
.section-top .top-content:hover p {
  color: #005cff;
}
.section-bottom {
  width: 1765px;
  margin: auto;
}
.section-bottom .bottom-nav {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #e6e6e6;
  padding-bottom: 31px;
}
.section-bottom .bottom-nav h1 {
  font-size: 36px;
  font-family: HarmonyOS Sans SC;
  font-weight: 500;
  color: #262626;
  margin-right: 459px;
}
.section-bottom .bottom-nav .search {
  display: flex;
  align-items: center;
  width: 560px;
  height: 50px;
  background: #ffffff;
  border: 1px solid #005cff;
  border-radius: 25px;
}
.section-bottom .bottom-nav .search .iconfont {
  font-size: 18px;
  margin-left: 19px;
  margin-right: 17px;
  color: #005cff;
}
.section-bottom .bottom-nav .search input {
  width: 80%;
  height: 100%;
  border: none;
  background: transparent;
  font-size: 16px;
  outline: none;
}
.section-bottom .bottom-content {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-top: 45px;
}
.section-bottom .bottom-content a {
  text-align: center;
  margin-bottom: 47px;
  margin-right: 55px;
}
.section-bottom .bottom-content a .imgs-color {
  width: 400px;
  height: 480px;
  background: linear-gradient(-51deg, #e9f2fb 0%, #d1e2f6 49%, #f6faff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 1s;
}
.a-active {
  width: 852px !important;
  background: linear-gradient(
    49deg,
    #1045e1 0%,
    #3772dd 46%,
    #06acf7 100%
  ) !important;
}
.bottom-content a .imgs-color img {
  transition: 0.8s;
}
.bottom-content a .imgs-color:hover img {
  transform: scale(1.1);
}
.bottom-content a h1 {
  font-size: 24px;
  font-family: HarmonyOS Sans SC;
  font-weight: 500;
  color: #262626;
  margin-top: 35px;
  margin-bottom: 18px;
}
.bottom-content a p {
  font-size: 15px;
  font-family: HarmonyOS Sans SC;
  font-weight: 300;
  color: #999999;
}
.section-bottom .bottom-content a:nth-child(3) {
  margin-right: 0;
}
.section-bottom .bottom-content a:nth-child(4n + 3) {
  margin-right: 0;
}
/* .section-bottom .bottom-content a:nth-child(7) {
  margin-right: 0;
}
.section-bottom .bottom-content a:nth-child(11) {
  margin-right: 0;
}
.section-bottom .bottom-content a:nth-child(15) {
  margin-right: 0;
} */
.body {
  width: 100%;
  position: relative;
}
.body img {
  width: 100%;
}
.product-detail-content img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
}
/*.body a {*/
/*  width: 180px;*/
/*  height: 60px;*/
/*  background: #005cff;*/
/*  border-radius: 30px;*/
/*  position: absolute;*/
/*  bottom: 35px;*/
/*  left: 50%;*/
/*  transform: translate(-50%);*/
/*  display: flex;*/
/*  align-items: center;*/
/*  justify-content: center;*/
/*  overflow: hidden;*/
/*}*/
/*.body a p {*/
/*  font-size: 18px;*/
/*  font-family: HarmonyOS Sans SC;*/
/*  font-weight: 300;*/
/*  color: #ffffff;*/
/*  position: relative;*/
/*  z-index: 1;*/
/*}*/
.container a p {
  font-size: 18px;
  font-family: HarmonyOS Sans SC;
  font-weight: 300;
  color: #ffffff;
  position: relative;
  z-index: 1;
}
/*.body a:after {*/
/*  content: "";*/
/*  position: absolute;*/
/*  top: 0;*/
/*  left: 0;*/
/*  width: 0%;*/
/*  height: 100%;*/
/*  background: #ff8c1f;*/
/*  transition: 0.6s;*/
/*  z-index: 0;*/
/*  border-radius: 30px;*/
/*}*/
/*.body a:hover:after {*/
/*  width: 100%;*/
/*}*/
.body-content {
  width: 100%;
  height: auto;
}
.body-content .body-warp {
  width: 80%;
  margin: auto;
  text-align: center;
  overflow: hidden;
}
.body-content .body-top {
  width: 1499px;
  margin: auto;
  margin-top: 67px;
}
/*.body-content .body-top h1 {*/
/*  font-size: 60px;*/
/*  font-family: HarmonyOS Sans SC;*/
/*  font-weight: 500;*/
/*  color: #005cff;*/
/*  margin-bottom: 40px;*/
/*}*/
.body-content .body-top h3 {
  font-size: 60px;
  font-family: HarmonyOS Sans SC;
  font-weight: 500;
  color: #005cff;
  margin-bottom: 40px;
}
.body-content .body-top .thread {
  width: 100%;
  height: 1px;
  background: #eeeeee;
}
.body-content .body-bottom {
  width: 1499px;
  height: auto;
  margin: auto;
}
.body-content .body-warp {
  width: 100%;
  height: 100%;
  margin-top: 38px;
}
.body-content .body-warp .swiper-slide {
  width: 100%;
  height: 100%;
}
.body-content .body-warp .swiper-slide .warp {
  width: 360px;
  text-align: center;
}
.body-content .body-warp .swiper-slide .swiper-color {
  width: 100%;
  height: 430px;
  background: #ffffff;
  box-shadow: 0px 0px 30px 0px rgba(101, 101, 101, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  top: 25px;
}
.body-content .body-warp .swiper-slide .swiper-color img {
  transition: 0.8s;
  cursor: pointer;
}
.body-content .body-warp .swiper-slide .swiper-color img:hover {
  transform: scale(1.1);
}
/*.body-content .body-warp .swiper-slide .sign h1 {*/
/*  font-size: 24px;*/
/*  font-family: HarmonyOS Sans SC;*/
/*  font-weight: 500;*/
/*  color: #262626;*/
/*  margin-top: 54px;*/
/*}*/
.body-content .body-warp .swiper-slide .sign h3 {
  font-size: 24px;
  font-family: HarmonyOS Sans SC;
  font-weight: 500;
  color: #262626;
  margin-top: 54px;
}
.body-content .body-warp .swiper-slide .sign p {
  font-size: 15px;
  font-family: HarmonyOS Sans SC;
  font-weight: 300;
  color: #999999;
  margin-top: 25px;
}
.swiper-pagination {
  left: 50%;
  transform: translate(-50%);
  margin-top: 70px;
}
.swiper-pagination span {
  width: 35px;
  height: 7px;
  background: rgba(100, 255, 92, 0.5);
  background: #005cff;
  border-radius: 4px;
  margin-right: 13px;
}
.swiper-pagination-bullet-active {
  background: #005cff !important;
  transition: 0.6s;
}
.poa {
  width: 144px;
  height: 21px;
  margin-top: 70px;
  margin-bottom: 70px;
}
.container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 35px;
    left: 50%;
    transform: translate(-50%);
}

.container a {
    width: 180px;
    height: 60px;
    /*background: #005cff;*/
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin: 0 10px; /* 调整两个链接之间的间距 */
    position: relative; /* 确保 :after 伪元素相对于 a 标签定位 */
    z-index: 1; /* 确保文字内容在伪元素之上 */
    color: white; /* 文字颜色 */
    text-decoration: none; /* 去掉下划线 */
}

.container a:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    /*background: #ff8c1f;*/
    transition: 0.6s;
    z-index: -1; /* 将伪元素放在背景层 */
    border-radius: 30px;
}

/* 第一个按钮：默认蓝色，悬停橙色 */
.container a:nth-child(1) {
    background: #005cff; /* 原始默认色 */
}
.container a:nth-child(1):after {
    background: #ff8c1f; /* 悬停覆盖色 */
}

/* 第二个按钮：默认橙色，悬停蓝色 */
.container a:nth-child(2) {
    background: #ff8c1f; /* 互换后的默认色 */
}
.container a:nth-child(2):after {
    background: #005cff; /* 互换后的悬停色 */
}

.container a:hover:after {
    width: 100%; /* 鼠标悬停时伪元素宽度变为 100% */
}
@media screen and (max-width: 768px) {
  body,
  hmtl {
    width: 100%;
    overflow-x: hidden;
  }
  .section-top {
    height: auto;
    flex-direction: unset !important;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 30px;
  }
  .section-top .top-content {
    margin-bottom: 30px;
  }
  .section-bottom .bottom-nav h1 {
    margin-right: 0;
    font-size: 34px;
    margin-bottom: 20px;
  }
  .section-bottom .bottom-nav {
    display: unset;
  }
  .section-bottom .bottom-nav .search {
    width: 100% !important;
  }
  .section-bottom .bottom-content a {
    margin-right: 0 !important;
  }
  .section-bottom .bottom-content a {
    width: 100% !important;
  }
  .a-active {
    width: 100% !important;
  }
  .section-bottom .bottom-content a .imgs-color {
    width: 100% !important;
  }
  .body img {
    margin-top: 84px;
  }
  /*.body a {*/
  /*  position: static;*/
  /*  transform: none;*/
  /*  margin: 20px auto;*/
  /*}*/
  .container a {
    position: static;
    transform: none;
    margin: 20px auto;
  }
  .body-content .body-top {
    width: 90%;
  }
  .body-content .body-top h1 {
    font-size: 34px;
  }
  .body-content .body-bottom {
    width: 90%;
  }
  .body-content .body-warp {
    margin-top: 20px;
  }
  .body-content .body-warp .swiper-wrapper {
    transform: none !important;
    flex-direction: column;
  }
  .body-content .body-warp .swiper-slide .warp {
    width: 100% !important;
  }
  .body-content .body-warp .swiper-slide {
    width: 99% !important;
    margin-bottom: 50px;
  }
  .body-content .body-warp .swiper-slide .swiper-color {
    border: 1px solid #e7e7e7;
    box-shadow: none;
  }
  .body-content .body-top .thread {
    display: none;
  }
  .body-content .body-bottom .swiper-pagination {
    display: none;
  }
  .poa {
    display: none;
  }
  
}
@media screen and (max-width: 1680px) {
  .section-top {
    width: 90%;
  }
  .section-bottom {
    width: 90%;
  }
  .a-active {
    width: 100% !important;
  }
  .section-bottom .bottom-content a {
    width: 47%;
  }
  .section-bottom .bottom-content a {
    width: 47%;
    margin-right: 0 !important;
  }
  .section-bottom .bottom-content a .imgs-color {
    width: 100%;
  }
  .body-content .body-warp {
    width: 95% !important;
  }
  .body-content .body-top {
    width: 100%;
  }
  .body-content .body-bottom {
    width: 100%;
  }
  .body-content .body-warp .swiper-slide .warp {
    width: 280px;
  }
  .body-content .body-warp .swiper-slide .swiper-color img {
    width: 76%;
  }
  
}
