@charset "UTF-8";
/* 产品详情 */
.banner {
  width: 100%;
  height: auto;
  max-height: 100vh;
  overflow: hidden;
  position: relative;
}
.banner .text-wrap {
  position: absolute;
  bottom: 80px;
  left: 10%;
  z-index: 20;
}
.banner .text-wrap span {
  display: block;
}
.banner .text-wrap .prod-name {
  font-size: 72px;
  font-weight: 500;
  color: #ffffff;
}
.banner .text-wrap .prod-type {
  font-size: 48px;
  font-weight: 300;
  color: #ffffff;
}
.banner .banner-img-box {
  width: 100%;
  height: auto;
  padding-top: 56.25%;
  pointer-events: none;
  user-select: none;
}
.banner .banner-img-box .banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  z-index: 10;
}
.banner .arrow {
  position: absolute;
  left: calc(50% - 70px);
  bottom: 20%;
  z-index: 30;
  width: 140px;
  height: 140px;
  object-fit: contain;
  object-position: center center;
  animation: loop 5s infinite ease;
  user-select: none;
  cursor: pointer;
}

@keyframes loop {
  0% {
    transform: translateY(0%);
  }
  50% {
    transform: translateY(50%);
  }
  100% {
    transform: translateY(0%);
  }
}
.product-nav {
  width: 100%;
  height: 80px;
  position: sticky;
  z-index: 90;
  top: 0;
  left: 0;
  margin-bottom: 80px;
  pointer-events: none;
  border-bottom: solid 2px #eeeeee;
}
.product-nav .nav-list {
  pointer-events: auto;
  background-color: #ffffff;
  max-width: 800px;
  margin: 0 auto;
  box-sizing: border-box;
  width: 60%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product-nav .nav-list .nav-item {
  display: flex;
  align-items: center;
  padding: 0 6px;
  height: 100%;
  position: relative;
  color: #b3aea9;
}
.product-nav .nav-list .nav-item.active {
  color: #333333 !important;
}
.product-nav .nav-list .nav-item.active .process {
  opacity: 1;
}
.product-nav .nav-list .nav-item .item {
  cursor: pointer;
  user-select: none;
  font-family: light;
  font-weight: 500;
}
.product-nav .nav-list .nav-item .process {
  display: block;
  top: 100%;
  left: 0;
  opacity: 0;
  position: absolute;
  width: var(--process-width);
  height: 2px;
  background-color: #333333;
}

.product-features {
  /* width: 95%; */
  width: 100%;
  margin: 80px auto;
}

/* 新增样式 */
.product-features .text-container {
  width: 100%;
  margin: 0 auto;
  /* max-width: calc(1440px + 6%); */
  height: auto;
  box-sizing: border-box;
  /* padding: 0 3%; */
}
.product-features .text-container * {
  max-width: 100% !important;
}

.product-description-2 .text-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  margin: 0 auto;
  max-width: calc(1440px + 6%);
  height: auto;
  box-sizing: border-box;
  padding: 0 3%;
}
.product-description-2 .text-container * {
  max-width: 100% !important;
}

.product-features .part {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  background-color: #faf9f5;
  margin-bottom: 80px;
}
.product-features .part:nth-child(even) {
  flex-direction: row-reverse;
}
.product-features .part .image-box {
  width: 66.66%;
  padding-top: 45%;
  position: relative;
  user-select: none;
}
.product-features .part .image-box img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
  object-position: center center;
  pointer-events: none;
}
.product-features .part .text-box {
  width: 33.33%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-features .part .text-box .center {
  width: 68%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
}
.product-features .part .text-box .center .title {
  font-size: 42px;
  padding-bottom: 12px;
  margin-bottom: 24px;
  border-bottom: solid 3px #000000;
}
.product-features .part .text-box .center .text {
  font-family: regular;
  font-weight: 400;
  font-size: 20px;
  color: #b3aea9;
  letter-spacing: 1px;
  margin: 0 auto;
}

.guess-you-like {
  width: 97%;
  height: auto;
  margin: 70px auto 0;
}
.guess-you-like .title-box {
  margin-bottom: 60px;
}
.guess-you-like .title-box .little-title {
  font-size: 20px;
  color: #b3aea9;
  text-align: center;
}
.guess-you-like .title-box .title {
  font-size: 42px;
  text-align: center;
}
.guess-you-like .swiper-container-box {
  height: 65vh;
  width: 100%;
  position: relative;
}
.guess-you-like .swiper-container-box .swiper-container {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.guess-you-like .swiper-container-box .swiper-container .swiper-slide {
  box-sizing: border-box;
  padding: 80px 20px 0 0;
}
.guess-you-like .swiper-container-box .swiper-container .swiper-slide:nth-child(odd) {
  padding: 0px 20px 80px 0;
}
.guess-you-like .swiper-container-box .swiper-container .swiper-slide .prod-box {
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
}
.guess-you-like .swiper-container-box .swiper-container .swiper-slide .prod-box .text-box {
  position: absolute;
  z-index: 15;
  color: #ffffff;
  bottom: 8%;
  left: 6%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
}
.guess-you-like .swiper-container-box .swiper-container .swiper-slide .prod-box .text-box .prod-name {
  font-size: 34px;
}
.guess-you-like .swiper-container-box .swiper-container .swiper-slide .prod-box .text-box .prod-type {
  font-size: 22px;
  font-weight: 300;
}
.guess-you-like .swiper-container-box .swiper-container .swiper-slide .prod-box img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 10;
}
.guess-you-like .swiper-container-box .swiper-container .swiper-slide .more-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  box-sizing: border-box;
  border: solid 2px #000000;
  position: relative;
  width: 100%;
  height: 100%;
}
.guess-you-like .swiper-container-box .swiper-container .swiper-slide .more-box .icon {
  width: auto;
  height: auto;
  padding: 60px;
  border-radius: 50%;
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  border: solid 2px #000000;
}
.guess-you-like .swiper-container-box .swiper-container .swiper-slide .more-box .icon img {
  width: 84px;
  height: 84px;
}
.guess-you-like .swiper-container-box .swiper-container .swiper-slide .more-box .more-box-txt {
  position: absolute;
  z-index: 15;
  color: #000000;
  bottom: 8%;
  left: 6%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
}
.guess-you-like .swiper-container-box .swiper-container .swiper-slide .more-box .more-box-txt .prod-name {
  font-size: 32px;
  font-weight: 700;
}
.guess-you-like .swiper-container-box .swiper-container .swiper-slide .more-box .more-box-txt .prod-type {
  font-size: 32px;
  font-weight: 300;
}
.guess-you-like .swiper-pagination-box {
  height: 162px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
  width: 97%;
  margin: 0 auto;
  font-size: 32px;
  color: #000000;
}
.guess-you-like .swiper-pagination-box div {
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  cursor: pointer;
  transition: 300ms;
}
.guess-you-like .swiper-pagination-box div img {
  pointer-events: none;
  margin: 0 40px;
}
.guess-you-like .swiper-pagination-box .prev-page {
  transform: translateX(10%);
}
.guess-you-like .swiper-pagination-box .prev-page:hover {
  transform: translateX(0);
}
.guess-you-like .swiper-pagination-box .prev-page img {
  transform: rotateY(180deg);
}
.guess-you-like .swiper-pagination-box .next-page {
  transform: translateX(-10%);
}
.guess-you-like .swiper-pagination-box .next-page:hover {
  transform: translateX(0);
}

.product-specifications {
  width: 100%;
  padding: 5% 2.5% 8%;
  box-sizing: border-box;
  background: #f5f4f4;
  margin-bottom: 84px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
.product-specifications .swiper-box {
  width: 70%;
  height: auto;
}
.product-specifications .swiper-box .title-box {
  height: 120px;
  font-family: medium;
}
.product-specifications .swiper-box .title-box p {
  font-size: 26px;
}
.product-specifications .swiper-box .title-box .en {
  font-family: Gotham-Medium;
  font-size: 32px;
  font-weight: 500;
  line-height: 50px;
}
.product-specifications .swiper-box .swiper-container {
  width: 90%;
  margin: 0 auto;
  height: calc(100% - 60px);
}
.product-specifications .swiper-box .swiper-container .image-box {
  background-color: #f5f4f4;
  width: 100%;
  height: 100%;
  position: relative;
  box-sizing: border-box;
  padding: 0 6%;
  text-align: center;
  font-size: 0;
}
.product-specifications .swiper-box .swiper-container .image-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
}
.product-specifications .swiper-box .swiper-container .swiper-pagination-box {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
  width: 100%;
  margin: 0 auto;
  font-size: 32px;
  color: #000000;
  pointer-events: none;
}
.product-specifications .swiper-box .swiper-container .swiper-pagination-box div {
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  cursor: pointer;
  transition: 300ms;
}
.product-specifications .swiper-box .swiper-container .swiper-pagination-box div img {
  pointer-events: none;
  margin: 0 40px;
}
.product-specifications .swiper-box .swiper-container .swiper-pagination-box .prev-page {
  transform: translateX(5%);
}
.product-specifications .swiper-box .swiper-container .swiper-pagination-box .prev-page:hover {
  transform: translateX(0);
}
.product-specifications .swiper-box .swiper-container .swiper-pagination-box .prev-page img {
  transform: rotateY(180deg);
}
.product-specifications .swiper-box .swiper-container .swiper-pagination-box .next-page {
  transform: translateX(-5%);
}
.product-specifications .swiper-box .swiper-container .swiper-pagination-box .next-page:hover {
  transform: translateX(0);
}
.product-specifications .swiper-box .swiper-pagination {
  bottom: 24px;
  width: 50%;
  left: 50%;
  transform: translateX(-50%);
}
.product-specifications .swiper-box .swiper-pagination .swiper-pagination-bullet {
  width: 14px;
  height: 14px;
  box-sizing: border-box;
  opacity: 1;
  border: solid 1px #000000;
  background-color: unset;
}
.product-specifications .swiper-box .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #000000;
}
.product-specifications .txt {
  width: 30%;
  font-family: Gotham-Medium;
}
.product-specifications .txt .top-tit {
  height: 80px;
  margin-bottom: 30px;
  border-bottom: 1px solid #b3aea9;
}
.product-specifications .txt .top-tit .p3 {
  font-family: regular;
  color: #b3aea9;
  font-size: 20px;
}
.product-specifications .txt .top-tit .p4 {
  font-family: Gotham-Medium;
  color: #b3aea9;
  font-size: 20px;
}
.product-specifications .txt .txt-tit {
  font-family: medium;
  font-size: 32px;
  color: #000;
  letter-spacing: 1px;
  line-height: 42px;
  font-weight: 500;
}
.product-specifications .txt .subtit {
  margin-top: 35px;
  border-bottom: 1px solid #b3aea9;
  padding-bottom: 20px;
}
.product-specifications .txt .subtit p {
  color: #b3aea9;
  font-weight: 400;
  font-size: 20px;
  letter-spacing: 1px;
  line-height: 32px;
}
.product-specifications .txt .subtit .f1 {
  font-family: regular\, Gotham;
}
.product-specifications .txt .subtit .f2 {
  font-family: Gotham-Medium;
}
.product-specifications .txt .m-top {
  margin-top: 20px;
}
.product-specifications .txt .f3 {
  line-height: 2;
}
.product-specifications .txt .f3,
.product-specifications .txt .f4 {
  font-family: regular;
  font-weight: 400;
  font-size: 20px;
  color: #000;
}
.product-specifications .txt .f3.sm-txt,
.product-specifications .txt .f4.sm-txt {
  font-size: 14px;
}
.product-specifications .txt .f4 {
  letter-spacing: 1px;
  display: flex;
}
.product-specifications .txt .f4 span:first-child {
  width: 100px;
  display: inline-block;
  white-space: nowrap;
}
.product-specifications .txt .f4 span:nth-child(2) {
  flex: 1;
}
.product-specifications .txt .button {
  width: 251px;
  height: 64px;
  display: block;
  line-height: 60px;
  text-align: center;
  border: 2px solid #000;
  border-radius: 42px;
  font-family: regular;
  font-weight: 400;
  font-size: 20px;
  color: #000;
  cursor: pointer;
  margin-top: 110px;
  margin-bottom: 30px;
}

.product-color-2 {
  width: 100%;
  padding: 5% 2.5% 140px;
  box-sizing: border-box;
  position: relative;
  background-color: #faf9f5;
  user-select: none;
  margin-bottom: 85px;
}
.product-color-2 .image-sets {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.product-color-2 img {
  user-select: none;
  pointer-events: none;
}

.product-color-2 .title-box {
  height: 120px;
  font-family: medium;
  margin-bottom: 40px;
}
.product-color-2 .title-box p {
  text-align: center;
  font-size: 26px;
}
.product-color-2 .title-box .en {
  text-align: center;
  font-family: Gotham-Medium;
  font-size: 32px;
  font-weight: 500;
  line-height: 50px;
}

.product-color {
  width: 100%;
  padding-top: 56.25%;
  position: relative;
  background-color: #faf9f5;
  user-select: none;
  margin-bottom: 85px;
}
.product-color .left-box {
  width: 70%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  box-sizing: border-box;
  padding: 84px 0;
}
.product-color .left-box .control {
  width: 380px;
  height: 62px;
  position: absolute;
  bottom: 20%;
  left: 50%;
  transform: translateX(-30%);
  box-sizing: border-box;
  padding: 30px;
  overflow: hidden;
  --block-width: 0px;
}
.product-color .left-box .control::after {
  content: "";
  display: block;
  width: 90%;
  height: 100%;
  background: repeating-linear-gradient(90deg, #000, #000 2px, transparent 0, transparent 20px);
}
.product-color .left-box .control::before {
  content: "";
  display: block;
  width: var(--block-width);
  height: 2px;
  pointer-events: none;
  position: absolute;
  top: 50%;
  transition: var(--transition);
  transform: translateY(-50%);
  left: 30px;
  background: #000;
  z-index: 10;
}
.product-color .left-box .control .block-round {
  position: absolute;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  box-sizing: border-box;
  background-color: #000000;
  border: solid 2px #000000;
  top: 0;
  left: var(--block-width);
  cursor: pointer;
  transition: var(--transition);
}
.product-color .left-box .control .round {
  position: absolute;
  pointer-events: none;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  box-sizing: border-box;
  border: solid 2px #000000;
  top: 0;
  right: 0;
}
.product-color .left-box .image-list {
  width: 100%;
  height: 100%;
  position: relative;
}
.product-color .right-box {
  width: 30%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
}
.product-color .image-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: 1s;
  opacity: 0;
  background-color: #faf9f5;
}
.product-color .image-box.active {
  opacity: 1;
}
.product-color .image-box img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: contain;
  object-position: center center;
}

.product-detail-type {
  width: 95%;
  margin: 0 auto 60px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  height: 800px;
}
.product-detail-type .item-warp {
  width: 33.333%;
  height: 100%;
}
.product-detail-type .item-warp.handle {
  background-color: #000000;
}
.product-detail-type .item-warp.handle .handle-img {
  width: 80%;
  margin: 200px auto 200px;
}
.product-detail-type .item-warp.handle .handle-img img {
  width: 100%;
  user-select: none;
  height: auto;
}
.product-detail-type .item-warp.handle .name {
  text-align: center;
  font-size: 28px;
  color: #ffffff;
}
.product-detail-type .item-warp.system {
  position: relative;
  background-color: #000000;
}
.product-detail-type .item-warp.system img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  user-select: none;
  object-fit: cover;
  object-position: center center;
  opacity: 0.7;
}
.product-detail-type .item-warp.introduce {
  background-color: #f8f7f6;
}
.product-detail-type .item-warp.introduce img {
  display: block;
  margin: 150px auto 0;
  width: 60%;
  height: 214px;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  pointer-events: none;
  user-select: none;
  object-position: center;
}
.product-detail-type .item-warp.introduce .name {
  font-family: medium;
  text-align: center;
  font-weight: 500;
  font-size: 32px;
  line-height: 1.35;
  margin-top: 75px;
}

.detailed-parameters {
  width: 95%;
  padding: 5%;
  margin: 0 auto;
  box-sizing: border-box;
  background: #faf9f5;
}
.detailed-parameters .collapse-btn {
  align-items: center;
  border-bottom: 3px solid #000;
  margin-bottom: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  user-select: none;
  cursor: pointer;
}
.detailed-parameters .collapse-btn p {
  font-weight: 500;
  font-size: 32px;
  color: #000;
  margin-bottom: 1rem;
}
.detailed-parameters .collapse-btn.active .icon {
  background-color: #ffffff;
}
.detailed-parameters .collapse-btn.active .icon::before {
  display: none;
}
.detailed-parameters .collapse-btn.active .icon::after {
  background-color: #000000;
}
.detailed-parameters .collapse-btn .icon {
  width: 35px;
  height: 35px;
  box-sizing: border-box;
  border: solid 2px #000000;
  border-radius: 50%;
  background-color: #000000;
  position: relative;
}
.detailed-parameters .collapse-btn .icon::after {
  content: "";
  display: block;
  width: 20px;
  height: 4px;
  background-color: #ffffff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}
.detailed-parameters .collapse-btn .icon::before {
  content: "";
  display: block;
  width: 4px;
  height: 20px;
  background-color: #ffffff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}
.detailed-parameters .collapse {
  width: 100%;
  height: 0;
  overflow: hidden;
  transition: 300ms;
}
.detailed-parameters .collapse .collapse-body {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-bottom: 90px;
}
.detailed-parameters .collapse .collapse-body .collapse-item {
  width: 47%;
  border-bottom: 1px solid #b3aea9;
  display: flex;
  justify-content: space-between;
  padding: 15px 0;
}
.detailed-parameters .collapse .collapse-body .collapse-item p {
  width: 120px;
  font-family: medium;
  font-weight: 500;
  font-size: 20px;
  color: #000;
  margin: 0.5rem 0;
}
.detailed-parameters .collapse .collapse-body .collapse-item p:nth-child(2) {
  width: 75%;
  font-family: regular;
  font-size: 20px;
  color: #000;
  font-weight: 400;
}
.detailed-parameters .collapse .open-method-body {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  padding-bottom: 40px;
}
.detailed-parameters .collapse .open-method-body .open-method-item {
  width: 20%;
}
.detailed-parameters .collapse .open-method-body .open-method-item .tit {
  height: 44px;
  line-height: 42px;
  border-bottom: 1px solid #b3aea9;
  border-top: 1px solid #b3aea9;
  text-align: center;
  padding: 0 20px;
  box-sizing: border-box;
  white-space: nowrap;
}
.detailed-parameters .collapse .open-method-body .open-method-item .cnt {
  padding-top: 30px;
}
.detailed-parameters .collapse .open-method-body .open-method-item .cnt img {
  width: 70%;
  display: block;
  margin: 0 auto 50px;
}
.detailed-parameters .download {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding-top: 30px;
}
.detailed-parameters .download a {
  width: 316px;
  height: 64px;
  background: #fff;
  border: 2px solid #000;
  border-radius: 42px;
  line-height: 60px;
  font-weight: 400;
  font-size: 20px;
  color: #000;
  font-family: regular;
  cursor: pointer;
  text-align: center;
  margin-bottom: 1rem;
}
.detailed-parameters .download a img {
  width: 25px;
  height: 27px;
  margin-right: 4%;
  transform: translateY(25%);
}

@media screen and (max-width: 1200px) {
  .guess-you-like .swiper-container-box {
    height: 660px;
  }
  .swiper-container-box .swiper-container .swiper-slide .more-box .icon {
    padding: 30px !important;
  }
  .swiper-container-box .swiper-container .swiper-slide .more-box .icon img {
    width: 50px !important;
    height: 50px !important;
  }
}
@media screen and (max-width: 1000px) {
  .banner .arrow {
    width: 100px;
    height: 100px;
    left: calc(50% - 50px);
  }
  .banner .text-wrap {
    bottom: 30px;
    left: 10%;
  }
  .banner .text-wrap .prod-name {
    font-size: 56px;
  }
  .banner .text-wrap .prod-type {
    font-size: 24px;
  }
}
@media screen and (max-width: 1600px) {
  .product-features .part .text-box .center {
    width: 100%;
    padding: 0 4%;
    box-sizing: border-box;
    order: 1;
    align-items: flex-start;
    background: #faf9f5;
  }
}
@media screen and (max-width: 1200px) {
  .product-features .part .text-box .center {
    width: 100%;
    padding: 0 20%;
  }
  .product-features .part .text-box .center .title {
    font-size: 32px;
    margin-bottom: 20px;
    letter-spacing: 0;
  }
  .product-features .part .text-box .center .text {
    font-size: 16px;
    line-height: 24px;
  }
}
@media screen and (max-width: 770px) {
  .banner .arrow {
    display: none;
  }
  .banner .text-wrap {
    display: none;
  }
  .product-nav .nav-list {
    width: 100%;
    box-sizing: border-box;
    padding: 0 7%;
  }
  .product-features {
    width: 100%;
  }
  .product-features .part {
    flex-direction: column;
    margin-bottom: 40px;
  }
  .product-features .part:nth-child(even) {
    flex-direction: column;
  }
  .product-features .part .text-box {
    width: 100%;
  }
  .product-features .part .text-box .center {
    width: 100%;
    padding: 50px 8% 30px;
    box-sizing: border-box;
    order: 1;
    align-items: flex-start;
    background: #faf9f5;
  }
  .product-features .part .text-box .center .title {
    font-size: 30px;
    font-family: Medium;
    font-weight: 500;
    line-height: 44px;
  }
  .product-features .part .text-box .center .text {
    font-size: 16px;
    line-height: 24px;
  }
  .product-features .part .image-box {
    width: calc(100% - 40px);
    padding-top: 50%;
    margin: 0 auto;
    order: 2;
    overflow: hidden;
    text-align: center;
    position: relative;
  }
  .guess-you-like .title-box .little-title {
    font-size: 12px;
  }
  .guess-you-like .title-box .title {
    font-size: 24px;
  }
  .guess-you-like .swiper-container-box {
    height: 498px;
  }
  .guess-you-like .swiper-container-box .swiper-container .swiper-slide .prod-box .text-box .prod-name {
    font-family: regular;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 5px;
  }
  .guess-you-like .swiper-container-box .swiper-container .swiper-slide .prod-box .text-box .prod-type {
    font-family: regular;
    font-size: 22px;
    font-weight: 300;
  }
  .guess-you-like .swiper-container-box .swiper-container .swiper-slide .more-box .icon {
    padding: 30px;
    font-size: 0;
  }
  .guess-you-like .swiper-container-box .swiper-container .swiper-slide .more-box .icon img {
    width: 50px;
    height: 50px;
  }
  .guess-you-like .swiper-pagination-box span {
    display: none;
  }
  .guess-you-like .swiper-pagination-box > div {
    width: 80px;
  }
  .guess-you-like .swiper-pagination-box > div img {
    width: 100%;
    height: auto;
  }
  .product-specifications {
    flex-direction: column;
    padding: 8%;
    background-color: #faf9f5;
  }
  .product-specifications .swiper-box {
    width: 100%;
  }
  .product-specifications .swiper-box .title-box p {
    font-weight: 500;
    font-size: 24px;
    color: #000;
    margin-bottom: 10px;
  }
  .product-specifications .swiper-box .title-box .en {
    color: #b3aea9;
    font-size: 18px;
    font-weight: 400;
    width: 80px;
    line-height: 1.3;
  }
  .product-specifications .swiper-box .swiper-container {
    height: 100%;
  }
  .product-specifications .swiper-box .swiper-container .image-box {
    background-color: #faf9f5;
    height: 230px;
  }
  .product-specifications .swiper-box .swiper-container .swiper-pagination .swiper-pagination-bullet {
    height: 8px;
    width: 8px;
  }
  .product-specifications .swiper-box .swiper-container .swiper-pagination {
    width: 100%;
  }
  .product-specifications .swiper-box .swiper-container .swiper-pagination-box {
    height: 50px;
  }
  .product-specifications .swiper-box .swiper-container .swiper-pagination-box > div {
    display: none;
  }
  .product-specifications .txt {
    width: 100%;
    padding-top: 30px;
  }
  .product-specifications .txt .txt-tit {
    font-size: 24px;
    line-height: 36px;
  }
  .product-specifications .txt .line {
    width: 100%;
    height: 1px;
    background: #b3aea9;
    margin: 15px 0;
  }
  .product-specifications .txt .button {
    width: 90%;
    height: 36px;
    line-height: 32px;
    font-weight: 400;
    font-size: 14px;
    border-width: 1px;
    margin: 35px auto;
  }
  .product-color {
    padding-top: 150%;
  }
  .product-color .left-box {
    width: 100%;
    height: 70%;
    top: 0;
  }
  .product-color .left-box .control {
    width: 240px;
    left: calc(50% - 50px);
    bottom: 4%;
    padding: 20px;
    height: 42px;
  }
  .product-color .left-box .control::before {
    left: 20px;
  }
  .product-color .left-box .control .block-round {
    width: 42px;
    height: 42px;
    border-radius: 42px;
  }
  .product-color .left-box .control .round {
    width: 42px;
    height: 42px;
  }
  .product-color .right-box {
    width: 100%;
    height: 30%;
    bottom: 0;
    top: unset;
  }
  .product-color .right-box img {
    object-fit: cover;
  }
  .product-detail-type {
    flex-wrap: wrap;
  }
  .product-detail-type .item-warp {
    width: 100%;
    height: 50%;
  }
  .product-detail-type .item-warp:nth-child(-n + 2) {
    width: 50%;
  }
  .product-detail-type .item-warp.handle {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .product-detail-type .item-warp.handle .name {
    font-size: 14px;
    margin-top: 30px;
  }
  .product-detail-type .item-warp.handle .handle-img {
    margin: 0;
  }
  .product-detail-type .item-warp.introduce {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .product-detail-type .item-warp.introduce img {
    width: 30%;
    margin: 0;
  }
  .product-detail-type .item-warp.introduce .name {
    margin-top: 0;
    font-size: 22px;
  }
  .detailed-parameters .collapse-btn {
    border-bottom-width: 2px;
    margin-bottom: 30px;
  }
  .detailed-parameters .collapse-btn p {
    font-size: 18px;
  }
  .detailed-parameters .collapse-btn .icon {
    width: 20px;
    height: 20px;
  }
  .detailed-parameters .collapse-btn .icon::after {
    width: 10px;
    height: 3px;
  }
  .detailed-parameters .collapse-btn .icon::before {
    width: 3px;
    height: 10px;
  }
  .detailed-parameters .collapse .collapse-body {
    padding-bottom: 30px;
  }
  .detailed-parameters .collapse .collapse-body .collapse-item {
    width: 100%;
  }
  .detailed-parameters .collapse .collapse-body .collapse-item p {
    font-size: 12px !important;
  }
  .detailed-parameters .collapse .open-method-body .open-method-item {
    width: 50%;
  }
  .detailed-parameters .collapse .open-method-body .open-method-item .tit {
    font-size: 14px;
  }
  .detailed-parameters .download {
    flex-direction: column;
  }
  .detailed-parameters .download a {
    margin: 0 auto 20px;
    width: 70%;
    height: auto;
    border: 1px solid #000;
    border-radius: 42px;
    line-height: 50px;
    background: transparent;
    font-size: 14px;
  }
  .detailed-parameters .download img {
    width: 18px !important;
    height: auto !important;
  }
}
.download-mask {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 10000;
  background-color: rgba(0, 0, 0, 0.15);
  box-sizing: border-box;
  padding: 2%;
  overflow-y: auto;
  display: none;
}
.download-mask.active {
  display: block;
}

.label-name-out {
  font-size: 20px;
  color: #b3aea9;
  text-align: left;
}
.label-name-out.lable-hide {
  visibility: hidden;
}

.closeX {
  width: 50px;
  height: 50px;
  object-fit: contain;
  position: absolute;
  right: 5%;
  top: 60px;
  cursor: pointer;
}

.join-five-card {
  width: 100%;
  height: auto;
  background-color: #faf9f5;
  border-radius: 30px;
  box-sizing: border-box;
  padding: 60px 5%;
  position: relative;
  overflow-y: auto;
}
.join-five-card .title {
  font-size: 54px;
  color: #000;
  text-align: left;
  margin-bottom: 30px;
  font-weight: 500;
  letter-spacing: 2px;
  font-family: medium;
}
.join-five-card .lab-tip {
  font-family: regular;
  font-weight: 400;
  font-size: 32px;
  color: #b3aea9;
  letter-spacing: 1px;
  line-height: 70px;
  padding-left: 70px;
  background: url(/static/img/lab-right.png) no-repeat 0;
  background-size: 36px 28px;
  text-align: left;
}
.join-five-card .row {
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.join-five-card .row .col-card {
  flex: 0 0 50%;
  max-width: 50%;
}
.join-five-card .row .col-card.col-button {
  flex: 0 0 100%;
  max-width: 100%;
}

.join-five-card {
  width: 100%;
  padding: 60px 5%;
}

.join-five-card .sub-btn {
  width: 30%;
  height: 84px;
  line-height: 81px;
  border-radius: 42px;
  text-align: center;
  font-size: 32px;
  color: #fff;
  background-color: #000;
  cursor: pointer;
  padding: 0 30px;
}

.join-five-card .sub-btn,
.join-five-card .title {
  font-weight: 500;
  letter-spacing: 2px;
  font-family: medium;
}

.join-five-card .title {
  font-size: 54px;
  color: #000;
  text-align: left;
  margin-bottom: 30px;
}

.join-five-card .title span {
  font-size: 50px;
}

.join-five-card .lab-tip {
  font-family: regular;
  font-weight: 400;
  font-size: 32px;
  color: #b3aea9;
  letter-spacing: 1px;
  line-height: 70px;
  padding-left: 70px;
  background: url(/static/img/lab-right.png) no-repeat 0;
  background-size: 36px 28px;
  text-align: left;
}

.join-five-card .row {
  margin-top: 50px;
}

.join-five-card .peak-box {
  width: 100%;
  padding-bottom: 55px;
  position: relative;
}

.join-five-card .peak-box .peak-label {
  font-size: 32px;
  font-weight: 500;
  color: #000;
  letter-spacing: 2px;
  font-family: medium;
  padding-left: 16px;
}

.join-five-card .peak-box .peak-textarea {
  margin-top: 10px;
}

.join-five-card .peak-box .peak-textarea .textarea-ipt {
  width: 98%;
  border-bottom: 1px solid #b3aea9;
  padding: 10px;
  outline: none;
  resize: none;
  background-color: transparent;
}

.join-five-card .peak-box .peak-item {
  border-bottom: 1px solid #b3aea9;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 3px 0;
  width: 95%;
}

.join-five-card .peak-box .peak-item .peak-ipt {
  padding: 10px 0;
  font-size: 32px;
  font-weight: 400;
  color: #000;
  letter-spacing: 2px;
  font-family: regular;
  background-color: transparent;
  border: 0;
}

.join-five-card .peak-box .tips {
  color: #17346b;
  padding: 0;
  font-size: 16px;
  position: absolute;
  left: 0;
  bottom: 22px;
}

@media screen and (max-width: 1200px) {
  .label-name-out {
    font-size: 12px;
  }
  .closeX {
    width: 30px;
    height: 30px;
    top: 50px;
  }
  .join-five-card {
    width: 100%;
    padding: 40px 5%;
  }
  .join-five-card .sub-btn {
    width: 40%;
    height: 64px;
    line-height: 62px;
    border-radius: 32px;
    text-align: center;
    font-weight: 500;
    font-size: 18px;
  }
  .join-five-card .title {
    font-size: 34px;
    margin-bottom: 20px;
  }
  .join-five-card .title span {
    font-size: 34px;
  }
  .join-five-card .lab-tip {
    font-size: 24px;
    padding-left: 50px;
    background-size: 30px 22px;
    line-height: 50px;
  }
  .join-five-card .row {
    margin-top: 25px;
  }
  .join-five-card .row .col-card {
    flex: unset;
    max-width: 100%;
    width: 100%;
  }
  .join-five-card .peak-box {
    padding-bottom: 40px;
  }
  .join-five-card .peak-box .peak-label {
    font-size: 20px;
    padding-left: 5px;
  }
  .join-five-card .peak-box .tips {
    font-size: 12px;
    bottom: 16px;
    padding: 0;
  }
  .join-five-card .peak-box .peak-item {
    width: 100%;
  }
  .join-five-card .peak-box .peak-item .peak-ipt {
    font-size: 16px;
    padding: 5px 0;
  }
}
@media screen and (max-width: 768px) {
  .closeX {
    width: 24px;
    height: 24px;
  }
  .join-five-card .sub-btn {
    height: 44px;
    line-height: 43px;
    font-size: 14px;
  }
  .join-five-card .title span {
    display: block;
    font-size: 24px;
  }
  .join-five-card .lab-tip {
    font-size: 16px;
    padding-left: 30px;
    background-size: 17px 13px;
    line-height: 24px;
  }
  .join-five-card .row {
    margin-top: 25px;
    margin-left: 0;
    margin-right: 0;
  }
}

.product-description .text-container .text img {
  max-width: 100%;
  height: auto;
}
