﻿#app {
  background: #fafffe;
}
#app > .from {
  margin-top: 110px;
  width: 100%;
  gap: 12px;
  border-top: 1px solid rgba(27, 155, 164, 1);
  background: rgba(27, 155, 164, 1);
  padding: 12px 18px;
}
#app > .from .inner {
  
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
#app > .from svg {
  flex: 0 0 auto;
}
#app > .from .text {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  color: rgba(255, 255, 255, 0.72);
  font-family: Inter;
  font-size: 13px;
  line-height: 20px;
}
#app > .from .text a {
  color: rgba(255, 255, 255, 0.72);
  font-family: Inter;
  font-size: 13px;
  line-height: 20px;
}
.detail {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #fafffe;
  padding: 2% 0 5%;
}
.detail > img {
  position: absolute;
  pointer-events: none;
  opacity: 0.75;
}
.detail > img:nth-child(1) {
    left: 0;
    top: 10%;
    height: 30%;
    opacity: 0.5;
}
.detail > img:nth-child(2) {
  right: 0%;
  bottom: 0%;
  width: 100%;
}
.detail .inner {
  position: relative;
  z-index: 1;
  width: 82%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
}
.detail .section1 {
  width: 100%;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 7%;
}
.detail .section1-left {
  width: 38%;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 5px solid rgba(27, 155, 164, 0.22);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.92);
  padding: 2%;
  box-shadow: 0 18px 46px rgba(3, 29, 58, 0.08);
}
.detail .section1-left img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}
.detail .section1-right {
  width: 55%;
  height: auto !important;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
.detail .tag {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  border-radius: 999px;
  background: #ffe2ef;
  padding: 8px 15px;
}
.detail .tag .dot {
  width: 0.55em;
  height: 0.55em;
  border-radius: 50%;
  background: #e61874;
}
.detail .tag p {
  color: #e61874;
  font-family: Inter;
  font-weight: 800;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.detail .title {
  width: 100%;
  margin-top: 20px;
}
.detail .title p {
  color: #063669;
  font-family: Inter;
  font-weight: 900;
  font-size: 30px;
  line-height: 40px;
  text-transform: uppercase;
}
.detail .desc {
  width: 92%;
  margin-top: 33px;
  color: #405268;
  font-family: Inter;
  font-size: 15px;
  line-height: 26px;
}
.detail .label {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  margin-top: 85px;
}
.detail .label .item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  border: 1px solid rgba(27, 155, 164, 0.24);
  border-radius: 999px;
  background: #ffffff;
  padding: 11px 15px;
  box-shadow: 0 10px 24px rgba(3, 29, 58, 0.04);
}
.detail .label .item svg {
  flex: 0 0 auto;
}
.detail .label .item p {
  color: #063669;
  font-family: Inter;
  font-weight: 700;
  font-size: 13px;
  line-height: 19px;
}
.detail .btn {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 4.5%;
}
.detail .btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
border-radius: 16777200px;
  padding: 13px 20px;
  font-family: Inter;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}
.detail .btn a:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(3, 29, 58, 0.12);
}
.detail .btn1 {
border-radius: 16777200px;
border: 1px solid rgba(27, 155, 164, 1);
box-shadow: 0px 8px 20px rgba(27, 155, 164, 0.3);
}
.detail .btn1 p {
color: rgba(27, 155, 164, 1);
font-family: Inter;
font-weight: 700;
font-size: 16px;
line-height: 24px;
}
.detail .btn2 {
  background: #ffffff;
  border: 1px solid rgba(6, 54, 105, 0.14);
}
.detail .btn2 p {
  color: #063669;
  font-size: 14px;
  line-height: 20px;
}


.detail .section2 {
  width: 100%;
  margin: 4% auto 0;
  border-radius: 6px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(3, 29, 58, 0.09);
}

/* 表格整体 */
.detail .section2 .tabList table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;   /* 配合固定宽度列使用 */
}

/* 表头单元格（原 .spec-card-head） */
.detail .section2 .tabList th {
  background: #ffd9ea;
  padding: 13px 5%;
  color: rgba(16, 24, 40, 1);
  font-family: Inter;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  text-align: center;        /* 可按需改为 center */
  vertical-align: middle;
}

/* 表头内 p 标签重置 */
.detail .section2 .tabList th p {
  margin: 0;
  font: inherit;
  color: inherit;
}

/* 两列宽度分配 */
.detail .section2 .tabList th:first-child,
.detail .section2 .tabList td:first-child {
  width: 58%;
}
.detail .section2 .tabList th:last-child,
.detail .section2 .tabList td:last-child {
  width: 42%;
}

/* 数据单元格（原 .spec-card-row） */
.detail .section2 .tabList td {
  padding: 13px 5%;
  border-bottom: 1px solid #edf2fa;
  color: rgba(74, 85, 101, 1);
  font-family: Inter;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  vertical-align: middle;
  text-align: center;
}

/* 右列特殊样式 */
.detail .section2 .tabList td:last-child {
  color: #063669;
  font-weight: 800;
  text-align: center;
}

/* 最后一行去掉底部边框 */
.detail .section2 .tabList tr:last-child td {
  border-bottom: 0;
}
.application {
  width: 100%;
  overflow: hidden;
  background: #fafffe;
  padding: 5% 0 4%;
}
.application .section1 {
  width: 100%;
}
.application .section1 .inner {
  width: 82%;
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 5%;
}
.application .section1-left {
  width: 62%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
.application .desc {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}
.application .desc .line {
  width: 6%;
  border-top: 2px solid #e61874;
}
.application .desc p {
  color: #e61874;
  font-family: Inter;
  font-weight: 800;
  font-size: 13px;
  line-height: 19px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.application .title {
  width: 100%;
  margin-top: 2%;
}
.application .title p {
  color: #063669;
  font-family: Inter;
  font-weight: 900;
  font-size: 30px;
  line-height: 40px;
}
.application .section1-right {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  color: #1b9ba4;
  padding: 11px 0;
}
.application .section1-right p {
  color: #1b9ba4;
  font-family: Inter;
  font-weight: 800;
  font-size: 13px;
  line-height: 19px;
}
.application .section2 {
  width: 82%;
  margin: 3.5% auto 0;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 5%;
}
.application .section2-left {
  width: 40%;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
}
.application .section2-left .swiper {
  width: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
}
.application .section2-left .swiper-wrapper {
  width: 100%;
  display: flex;
  align-items: stretch;
}
.application .section2-left .swiper:not(.swiper-initialized) .swiper-slide:not(:first-child) {
  display: none;
}
.application .section2-left .swiper-slide {
  flex: 0 0 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  padding: 3% 0;
}
.application .section2-left .text1 {
  width: 100%;
}
.application .section2-left .text1 p {
  color: #1b2534;
  font-family: Inter;
  font-weight: 900;
  font-size: 20px;
  line-height: 30px;
}
.application .section2-left .text2 {
  width: 96%;
  margin-top: 5%;
}
.application .section2-left .text2 p {
  color: #56677a;
  font-family: Inter;
  font-size: 14px;
  line-height: 25px;
}
.application .section2-left .text2:last-of-type {
  margin-top: 12%;
}
.application .section2-left .text2:last-of-type p {
  color: #e61874;
  font-weight: 800;
}
.application .section2-left .text2 span {
  color: rgba(6, 54, 105, 0.36);
}
.application .section2-left .btn {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  margin-top: 5%;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 5;
}
.application .section2-left .prev {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.3s;
}
.application .section2-left .next {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.3s;
}
.application .section2-left .prev:hover,
.application .section2-left .next:hover {
  transform: translateY(-3px);
}
.application .section2-left .prev svg,
.application .section2-left .next svg {
  width: 3em;
  height: auto;
}
.application .section2-right {
  width: 55%;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  overflow: hidden;
}
.application .section2-right .swiper {
  width: 100%;
  overflow: visible;
}
.application .section2-right .swiper-wrapper {
  display: flex;
  align-items: stretch;
}
.application .section2-right .swiper:not(.swiper-initialized) .swiper-slide:not(:first-child) {
  display: none;
}
.application .section2-right .swiper-slide {
  flex: 0 0 76%;
  display: flex;
  align-items: stretch;
  justify-content: center;
  border-radius: 12px;
  overflow: hidden;
  background: #edf2fa;
}
.application .section2-right .swiper-slide img {
  width: 100%;
  display: block;
  object-fit: cover;
}
.related {
  width: 100%;
  overflow: hidden;
  background: #fafffe;
  padding: 4% 0 5%;
}
.related .section1 {
  width: 100%;
}
.related .section1 .inner {
  width: 82%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
}
.related .desc {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.related .desc .line {
  width: 18%;
  border-top: 2px solid #1b9ba4;
}
.related .desc p {
  color: #1b9ba4;
  font-family: Inter;
  font-weight: 800;
  font-size: 13px;
  line-height: 19px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.related .title {
  width: 100%;
  margin-top: 1.5%;
}
.related .title p {
  color: #063669;
  font-family: Inter;
  font-weight: 900;
  font-size: 28px;
  line-height: 38px;
}
.related .section2 {
  width: 86%;
  margin: 3.5% auto 0;
}
.related .swiper {
  width: 100%;
  overflow: hidden;
  padding: 1% 0 2%;
}
.related .swiper-wrapper {
  display: flex;
  align-items: stretch;
}
.related .swiper:not(.swiper-initialized) .swiper-wrapper {
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}
.related .swiper-slide {
  flex: 0 0 23%;
  height: auto !important;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
    justify-content: space-between;
  border-radius: 12px;
  background: #ffffff;
  padding: 2%;
  border-radius: 24px;
  border: 1px solid rgba(27, 155, 164, 0.1);
  box-sizing: border-box;
  background: rgba(225, 225, 225, 0.25);
  position: relative;
}
.related .swiper-slide .title:first-child {
  position: absolute;
  right: 0;
  top: 0;
  width: auto;
  margin: 0;
  border-radius: 0 12px 0 12px;
  background: #e61874;
  padding: 7px 12px;
}
.related .swiper-slide .title:first-child p {
  color: #ffffff;
  font-family: Inter;
  font-weight: 800;
  font-size: 11px;
  line-height: 16px;
  text-transform: uppercase;
}
.related .img {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
border-radius: 16px;
background: rgba(255, 255, 255, 1);
box-shadow: 0px 1px 2px -1px rgba(0, 0, 0, 0.1), 0px 1px 3px rgba(0, 0, 0, 0.1);
  margin-top: 10%;
  padding: 10%;
}
.related .img img {
  width: 78%;
  display: block;
  object-fit: contain;
}
.related .swiper-slide .title:not(:first-child) {
  width: 100%;
  margin-top: 8%;
}
.related .swiper-slide .title:not(:first-child) p {
  color: #063669;
  font-family: Inter;
  font-weight: 900;
  font-size: 15px;
  line-height: 22px;
}
.related .more {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  margin-top: 7%;
}
.related .more p {
  color: #1b9ba4;
  font-family: Inter;
  font-weight: 800;
  font-size: 13px;
  line-height: 19px;
}
.related .section3 {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 2%;
}
.related .section3 .prev {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.3s;
}
.related .section3 .next {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.3s;
}
.related .section3 .prev:hover,
.related .section3 .next:hover {
  transform: translateY(-3px);
}
.related .section3 .prev svg,
.related .section3 .next svg {
  width: 4em;
  height: auto;
}
.service {
  width: 100%;
  background: #fafffe;
  padding: 1% 0 5%;
}
.service .inner {
  width: 82%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4%;
  border-radius: 14px;
  background: linear-gradient(90deg, #052212 0%, #063669 76%);
  padding: 2.5% 3%;
  box-shadow: 0 18px 40px rgba(3, 29, 58, 0.16);
}
.service .section1 {
  width: 36%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
}
.service .section1 .icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.service .section1 .icon svg {
  width: 2.4em;
  height: auto;
}
.service .section1 .title p {
  color: #ffffff;
  font-family: Inter;
  font-weight: 900;
  font-size: 22px;
  line-height: 30px;
}
.service .section2 {
  width: 60%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
}
.service .section2 .text {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  padding: 11px 18px;
}
.service .section2 .text p {
  color: rgba(255, 255, 255, 0.82);
  font-family: Inter;
  font-weight: 700;
  font-size: 13px;
  line-height: 19px;
}

.product-detail-ready .product-detail-show {
  opacity: 1;
  transform: translateY(0);
}
@media only screen and (max-width: 1250px) {
#app > .from{
  margin-top: 75px;
}
}
@media (max-width: 1200px) {
  .detail .inner {
    width: 88%;
  }
  .application .section1 .inner {
    width: 88%;
  }
  .application .section2 {
    width: 88%;
  }
  .related .section1 .inner {
    width: 88%;
  }
  .related .section2 {
    width: 90%;
  }
  .service .inner {
    width: 88%;
  }
}
@media (max-width: 992px) {
  .detail {
    padding: 4% 0 7%;
  }
  .detail .section1 {
    flex-direction: column;
    align-items: stretch;
    gap: 32px;
  }
  .detail .section1-left {
    width: 100%;
  }
  .detail .section1-right {
    width: 100%;
  }
  .detail .desc {
    width: 100%;
  }
  .detail .section2 {
    width: 100%;
    margin-top: 7%;
  }
  .application {
    padding: 7% 0 5%;
  }
  .application .section1 .inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 0px;
  }
  .application .section1-left {
    width: 100%;
  }
  .application .section2 {
    flex-direction: column;
    gap: 28px;
    margin-top: 0%;
  }
  .application .section2-left {
    width: 100%;
  }
  .application .section2-right {
    width: 100%;
  }
  .application .section2-right .swiper-slide {
    flex-basis: 84%;
  }
  .application .section2-left .swiper-slide {
    padding: 0;
}
  .related {
    padding: 6% 0;
  }
  .related .swiper-slide {
    flex-basis: 31%;
  }
  .service .inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
    padding: 4%;
  }
  .service .section1 {
    width: 100%;
  }
  .service .section2 {
    width: 100%;
    justify-content: flex-start;
  }
  .application .section2-left .text2:last-of-type {
    margin-top: 2%;
}
.application .section2-left .swiper-wrapper {
    width: 100%;
    display: flex;
    align-items: stretch;
    height: auto !important;
}
}
@media only screen and (max-width: 767px) {
    #app > .from {
        margin-top: 60px;
    }
}
@media (max-width: 640px) {

  #app > .from .text,
  #app > .from .text a {
    font-size: 12px;
    line-height: 18px;
  }
  .detail .inner {
    width: 92%;
  }
  .detail .section1-left {
    padding: 9%;
    border-radius: 24px;
  }
  .detail .title p {
    font-size: 18px;
    line-height: 33px;
  }
  .detail .desc {
    font-size: 14px;
    line-height: 24px;
  }
  .detail .label .item {
    width: 100%;
  }
  .detail .btn a {
    width: 100%;
  }
  .detail .section2 .spec-card-row {
    flex-direction: column;
  }
  .detail .section2 .spec-card-row p:first-child {
    width: 100%;
    padding-bottom: 0;
  }
  .detail .section2 .spec-card-row p:last-child {
    width: 100%;
    text-align: left;
  }
  .application {
    padding: 9% 0 7%;
  }
  .application .section1 .inner {
    width: 92%;
  }
  .application .title p {
    font-size: 18px;
    line-height: 33px;
  }
  .application .section1-right {
    width: 100%;
    justify-content: flex-start;
  }
  .application .section2 {
    width: 92%;
    gap: 22px;
  }
  .application .section2-left .text1 p {
    font-size: 16px;
    line-height: 27px;
  }
  .application .section2-left .text2 p {
    font-size: 13px;
    line-height: 23px;
  }
  .application .section2-right .swiper-slide {
    flex-basis: 100%;
  }
  .related {
    padding: 8% 0;
  }
  .related .section1 .inner {
    width: 92%;
  }
  .related .title p {
    font-size: 18px;
    line-height: 31px;
  }
  .related .section2 {
    width: 92%;
  }
  .related .swiper-slide {
    flex-basis: 80%;
    padding: 5%;
  }
  .service {
    padding: 3% 0 8%;
  }
  .service .inner {
    width: 92%;
    padding: 6%;
  }
  .service .section1 .title p {
    font-size: 16px;
    line-height: 28px;
  }
  .service .section2 .text {
    width: 100%;
  }
}
