@charset "utf-8";
:root {
  --color: #005CE6;
  --vh: 100vh;
}
/*字体*/
/* @font-face {
	font-family: "Fontke";
	src: url("Fontke.woff2") format("woff2"),
		 url("Fontke.woff") format("woff"),
		 url("Fontke.ttf") format("truetype"),
		 url("Fontke.eot") format("embedded-opentype"),
		 url("Fontke.svg") format("svg"),
		 url("Fontke.otf") format("opentype");
} */
* {
  padding: 0;
  margin: 0;
  outline: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
html {
  font-size: calc(100vw/19.2);
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scrollbar-width: thin;
}
html ::-webkit-scrollbar {
  /*滚动条整体样式*/
  width: 5px;
  /*高宽分别对应横竖滚动条的尺寸*/
  height: 1px;
}
html ::-webkit-scrollbar-thumb {
  /*滚动条-滑块*/
  border-radius: 3px;
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  background: #005CE6;
}
html ::-webkit-scrollbar-track {
  /*滚动条-背景*/
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  border-radius: 3px;
  background: #ededed;
}
@media (min-width: 1901px) {
  html {
    font-size: 100px;
  }
}
@media (max-width: 1580px) {
  html {
    font-size: 66px;
  }
}
@media (max-width: 767px) {
  html {
    font-size: calc(100vw/7.5);
  }
}
body {
  min-height: 100%;
  font-family: 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
  font-size: 16px;
  line-height: 1.5;
  color: #333;
  background: #fff;
}
@media (max-width: 1580px) {
  body {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  body {
    font-size: 0.28rem;
  }
}
img {
  max-width: 100%;
  border: 0;
  vertical-align: top;
}
li {
  list-style: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: inherit;
  font-style: inherit;
  font-size: inherit;
  font-weight: normal;
}
a,
a:hover,
a:focus {
  text-decoration: none;
}
input,
button {
  -webkit-appearance: none;
  border-radius: 0;
}
button {
  cursor: pointer;
}
input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}
textarea {
  resize: none;
  overflow: auto;
}
input,
button,
textarea,
select {
  border: 0;
  font-family: inherit;
  font-style: inherit;
  font-size: inherit;
  font-weight: normal;
  color: inherit;
  background: transparent;
}
select {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  white-space: nowrap;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
select::-ms-expand {
  display: none;
}
table {
  border-collapse: collapse;
}
.fl {
  float: left;
}
.fr {
  float: right;
}
.clear {
  zoom: 1;
}
.clear:after {
  content: '';
  display: block;
  clear: both;
}
.container {
  margin: 0 auto;
  width: 85%;
  max-width: 1440px;
}
@media (max-width: 1260px) {
  .container {
    width: 90%;
  }
}
.bg-color1 {
  background-color: #fff;
}
.ptb100 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
@media (max-width: 767px) {
  .ptb100 {
    padding-top: 1.2rem;
    padding-bottom: 1.2em;
  }
}
.pt100 {
  padding-top: 1rem;
}
@media (max-width: 767px) {
  .pt100 {
    padding-top: 1.2rem;
  }
}
.pb100 {
  padding-bottom: 1rem;
}
@media (max-width: 767px) {
  .pb100 {
    padding-bottom: 1.2rem;
  }
}
.font16 {
  font-size: 16px;
}
@media (max-width: 1580px) {
  .font16 {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .font16 {
    font-size: 0.28rem;
  }
}
.public-scrollbar {
  scrollbar-width: thin;
}
.public-scrollbar ::-webkit-scrollbar {
  /*滚动条整体样式*/
  width: 5px;
  /*高宽分别对应横竖滚动条的尺寸*/
  height: 1px;
}
.public-scrollbar ::-webkit-scrollbar-thumb {
  /*滚动条-滑块*/
  border-radius: 3px;
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  background: #005CE6;
}
.public-scrollbar ::-webkit-scrollbar-track {
  /*滚动条-背景*/
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  border-radius: 3px;
  background: #ededed;
}
.public-btn {
  min-width: 126px;
  height: 44px;
  padding: 0 0.2rem;
  border-radius: 4px;
  border: 1px solid #575d6c;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  transition: all 0.4s;
}
@media (max-width: 767px) {
  .public-btn {
    min-width: 2rem;
  }
}
.public-btn span {
  color: #575d6c;
  font-size: 14px;
  line-height: 24px;
  transition: all 0.4s;
  position: relative;
  z-index: 2;
}
.public-btn i {
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  transition: all 0.4s;
  margin-left: -16px;
  opacity: 0;
  position: relative;
  z-index: 2;
}
.public-btn i svg {
  width: 100%;
  height: 100%;
}
.public-btn i svg path {
  fill: #575d6c;
  transition: all 0.4s;
}
.public-btn:hover i {
  opacity: 1;
  margin-left: 5px;
}
.public-btn.pa {
  margin-right: 0.2rem;
  border: none;
  z-index: 2;
}
.public-btn.pa::before {
  content: '';
  width: 100%;
  height: 100%;
  border-radius: 4px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background: linear-gradient(to right, #115af7, #0fabfe);
}
.public-btn.pa span {
  color: #fff;
  position: relative;
  z-index: 2;
}
.public-btn.pa i {
  position: relative;
  z-index: 2;
}
.public-btn.pa i svg path {
  fill: #fff;
}
.public-img {
  display: block;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.public-img::before {
  content: "";
  display: block;
  position: relative;
  z-index: 0;
  padding-top: 100%;
}
.public-img > img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.8s;
}
.public-content {
  color: #666;
  line-height: 1.8;
}
.public-content a {
  color: #666;
}
.public-content table {
  max-width: 100%;
}
.public-content table td,
.public-content table th {
  padding: 10px 15px;
  border: 1px solid #dbf1ed;
}
.public-content li {
  margin-left: 15px;
  list-style: disc;
}
.public-content ol {
  margin-left: 15px;
  list-style: decimal;
}
.public-content img,
.public-content video {
  max-width: 100%;
  height: auto !important;
}
.font14 {
  font-size: 14px;
}
.font16 {
  font-size: 16px;
}
.font18 {
  font-size: 18px;
}
.font20 {
  font-size: 20px;
}
.font22 {
  font-size: 22px;
}
.font24 {
  font-size: 24px;
}
.font26 {
  font-size: 26px;
}
.font28 {
  font-size: 28px;
}
.font30 {
  font-size: 30px;
}
.font32 {
  font-size: 32px;
}
.font34 {
  font-size: 34px;
}
.font36 {
  font-size: 36px;
}
.font40 {
  font-size: 40px;
}
.font42 {
  font-size: 42px;
}
.font44 {
  font-size: 44px;
}
.font46 {
  font-size: 46px;
}
.font48 {
  font-size: 48px;
}
.font50 {
  font-size: 50px;
}
.font52 {
  font-size: 52px;
}
.font54 {
  font-size: 54px;
}
.font56 {
  font-size: 56px;
}
.font60 {
  font-size: 60px;
}
.font72 {
  font-size: 72px;
}
.font80 {
  font-size: 80px;
}
@media (max-width: 1580px) {
  .font16 {
    font-size: 14px;
  }
  .font18 {
    font-size: 16px;
  }
  .font20 {
    font-size: 18px;
  }
  .font22 {
    font-size: 20px;
  }
  .font24 {
    font-size: 22px;
  }
  .font26 {
    font-size: 24px;
  }
  .font28 {
    font-size: 26px;
  }
  .font30 {
    font-size: 28px;
  }
  .font32 {
    font-size: 30px;
  }
  .font34 {
    font-size: 32px;
  }
  .font36 {
    font-size: 34px;
  }
  .font40 {
    font-size: 38px;
  }
  .font42,
  .font44 {
    font-size: 40px;
  }
  .font46 {
    font-size: 42px;
  }
  .font48 {
    font-size: 44px;
  }
  .font50 {
    font-size: 46px;
  }
  .font52 {
    font-size: 48px;
  }
  .font54 {
    font-size: 48px;
  }
  .font56 {
    font-size: 48px;
  }
  .font60,
  .font72,
  .font80 {
    font-size: 48px;
  }
}
@media (max-width: 1260px) {
  .font16 {
    font-size: 14px;
  }
  .font18 {
    font-size: 16px;
  }
  .font20 {
    font-size: 18px;
  }
  .font22 {
    font-size: 20px;
  }
  .font24 {
    font-size: 22px;
  }
  .font26 {
    font-size: 24px;
  }
  .font28 {
    font-size: 24px;
  }
  .font30 {
    font-size: 26px;
  }
  .font32 {
    font-size: 28px;
  }
  .font34 {
    font-size: 28px;
  }
  .font36,
  .font40 {
    font-size: 30px;
  }
  .font42,
  .font44 {
    font-size: 32px;
  }
  .font46 {
    font-size: 36px;
  }
  .font48,
  .font50 {
    font-size: 38px;
  }
  .font52,
  .font54,
  .font56,
  .font60,
  .font72,
  .font80 {
    font-size: 44px;
  }
}
@media (max-width: 991px) {
  .font24 {
    font-size: 20px;
  }
  .font32,
  .font34,
  .font36,
  .font40 {
    font-size: 26px;
  }
}
@media (max-width: 767px) {
  .font14,
  .font16 {
    font-size: 0.28rem;
  }
  .font18,
  .font20 {
    font-size: 16px;
  }
  .font22,
  .font24,
  .font26,
  .font27 {
    font-size: 0.32rem;
  }
  .font28 {
    font-size: 0.36rem;
  }
  .font30,
  .font32,
  .font34 {
    font-size: 0.4rem;
  }
  .font36,
  .font40,
  .font42,
  .font44,
  .font46 {
    font-size: 0.46rem;
  }
  .font48,
  .font50,
  .font52,
  .font54,
  .font56,
  .font60,
  .font72,
  .font80 {
    font-size: 0.58rem;
  }
}
#hi-upgrade {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  height: 100%;
  background: #fff;
  font-size: 16px;
  line-height: 26px;
  text-align: center;
}
#hi-upgrade .hi-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -177px 0 0 -450px;
  width: 900px;
}
#hi-upgrade .hi-wrap .hi-title {
  font-size: 30px;
  line-height: 40px;
  color: #333;
}
#hi-upgrade .hi-wrap .hi-close {
  margin: 10px 0;
  display: inline-block;
  cursor: pointer;
  font-size: 18px;
  color: #005CE6;
}
#hi-upgrade .hi-wrap .hi-close:hover {
  text-decoration: underline;
}
#hi-upgrade .hi-wrap .hi-text1 {
  color: #666;
}
#hi-upgrade .hi-wrap .hi-text1 span {
  color: #005CE6;
}
#hi-upgrade .hi-wrap .hi-text2 {
  position: relative;
  margin: 60px 0;
  color: #333;
}
#hi-upgrade .hi-wrap .hi-text2::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 1;
  width: 100%;
  border-top: 1px solid #ddd;
}
#hi-upgrade .hi-wrap .hi-text2 span {
  position: relative;
  z-index: 5;
  padding: 0 30px;
  background: #fff;
}
#hi-upgrade .hi-wrap .hi-list {
  overflow: hidden;
}
#hi-upgrade .hi-wrap .hi-list li {
  display: inline-block;
  width: 16%;
}
#hi-upgrade .hi-wrap .hi-list li div {
  margin: 0 auto 5px;
  width: 50px;
  height: 50px;
}
#hi-upgrade .hi-wrap .hi-list li a {
  color: #666;
}
#hi-upgrade .hi-wrap .hi-list li a:hover {
  color: #005CE6;
}
#hi-upgrade .hi-wrap .hi-list li .hi-ico1 {
  background: url(../images/hi-llq-1.jpg) no-repeat center / 100%;
}
#hi-upgrade .hi-wrap .hi-list li .hi-ico2 {
  background: url(../images/hi-llq-2.jpg) no-repeat center / 100%;
}
#hi-upgrade .hi-wrap .hi-list li .hi-ico3 {
  background: url(../images/hi-llq-3.jpg) no-repeat center / 100%;
}
#hi-upgrade .hi-wrap .hi-list li .hi-ico4 {
  background: url(../images/hi-llq-4.jpg) no-repeat center / 100%;
}
#hi-upgrade .hi-wrap .hi-list li .hi-ico5 {
  background: url(../images/hi-llq-5.jpg) no-repeat center / 100%;
}
#hi-upgrade .hi-wrap .hi-list li .hi-ico6 {
  background: url(../images/hi-llq-6.jpg) no-repeat center / 100%;
}
/* 占位标签，设置导航样式 */
#c-placeholder {
  height: 1rem;
}
@media (max-width: 991px) {
  #c-placeholder {
    height: 1.2rem;
  }
}
.product-banner {
  width: 100%;
  position: relative;
  z-index: 1;
}
.product-banner .bg {
  width: 100%;
  height: 5.45rem;
}
.product-banner .bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 991px) {
  .product-banner .bg img.pc {
    display: none;
  }
}
.product-banner .bg img.mb {
  display: none;
}
@media (max-width: 991px) {
  .product-banner .bg img.mb {
    display: block;
  }
}
.product-banner .container {
  position: absolute;
  z-index: 2;
  left: 50%;
  transform: translateX(-50%);
  top: 2rem;
}
.product-banner .container .tbox .title {
  color: #fff;
  line-height: calc(58/48em);
}
.product-banner .container .tbox .txt {
  color: rgba(255, 255, 255, 0.8);
  line-height: calc(28/18);
  margin-top: 0.13rem;
}
.product {
  width: 100%;
  padding: 0.85rem 0;
}
.product .box {
  width: 100%;
}
.product .box .container .title {
  text-align: center;
  color: #252b3a;
  line-height: calc(46/36);
  font-weight: bold;
}
.product .box .container .list {
  width: 100%;
  margin-top: 0.44rem;
}
.product .box .container .list ul {
  width: calc(100% + 0.24rem);
  margin: 0 -0.12rem;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .product .box .container .list ul {
    width: 100%;
    margin: 0;
  }
}
.product .box .container .list ul li {
  width: calc(50% - 0.24rem);
  margin: 0 0.12rem 0.36rem;
  padding: 0.3rem;
  border: 1px solid #e5e7ec;
  border-radius: 8px;
  transition: all 0.4s;
}
@media (max-width: 991px) {
  .product .box .container .list ul li {
    width: 100%;
    margin: 0 0 0.36rem;
  }
}
@media (max-width: 767px) {
  .product .box .container .list ul li {
    padding: 0.5rem 0.4rem;
  }
}
.product .box .container .list ul li .icons {
  height: 0.64rem;
}
.product .box .container .list ul li .icons img {
  height: 100%;
  object-fit: contain;
}
.product .box .container .list ul li .txt {
  width: 100%;
  min-height: 4.5em;
  line-height: 1.5;
  color: #575d6c;
  margin-top: 0.18rem;
}
.product .box .container .list ul li .label {
  display: flex;
  flex-wrap: wrap;
  margin-top: 0.24rem;
}
.product .box .container .list ul li .label .lb {
  height: 32px;
  padding: 0 0.12rem;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 0.1rem;
  margin-right: 0.08rem;
}
.product .box .container .list ul li .label .lb:last-child {
  margin-right: 0;
}
.product .box .container .list ul li .label .l1 {
  background: rgba(42, 129, 219, 0.1);
  color: #2a81db;
}
.product .box .container .list ul li .label .l2 {
  background: #ebfbfb;
  color: #575d6c;
}
.product .box .container .list ul li .label .l2 span {
  color: #00c7c8;
}
.product .box .container .list ul li .label .l3 {
  background: #f8f3ff;
  color: #575d6c;
}
.product .box .container .list ul li .label .l3 span {
  color: #a068ff;
}
.product .box .container .list ul li .ckbox {
  margin-top: 0.22rem;
  display: flex;
}
.product .box .container .list ul li .ckbox .public-btn {
  min-width: 126px;
}
.product .box .container .list ul li:hover {
  box-shadow: 0 0 0.4rem 0 rgba(135, 140, 151, 0.22);
}
.product .box.box1 .list ul li {
  width: calc(33.33% - 0.24rem);
}
@media (max-width: 991px) {
  .product .box.box1 .list ul li {
    width: 100%;
  }
}
.product .box.box2 {
  margin-top: 0.4rem;
}
.product .box.box3 {
  margin-top: 0.6rem;
}
.product-info-banner {
  width: 100%;
  position: relative;
  z-index: 1;
}
.product-info-banner .bg {
  width: 100%;
  height: 6.36rem;
  position: relative;
}
@media (max-width: 767px) {
  .product-info-banner .bg {
    height: 7.5rem;
  }
}
.product-info-banner .bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 991px) {
  .product-info-banner .bg img.pc {
    display: none;
  }
}
.product-info-banner .bg img.mb {
  display: none;
}
@media (max-width: 991px) {
  .product-info-banner .bg img.mb {
    display: block;
  }
}
.product-info-banner .bg::after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background: rgba(0, 0, 0, 0.3);
}
.product-info-banner .container {
  position: absolute;
  z-index: 3;
  left: 50%;
  transform: translateX(-50%);
  top: 1.97rem;
}
.product-info-banner .container .tbox .t1 {
  color: #fff;
  line-height: calc(42/32em);
}
.product-info-banner .container .tbox .t2 {
  color: #fff;
  font-weight: bold;
  line-height: calc(58/48);
}
.product-info-banner .container .tbox .t3 {
  color: rgba(255, 255, 255, 0.8);
  line-height: calc(28/18);
  margin-top: 0.22rem;
  width: 550px;
  max-width: 100%;
}
.product-info-banner .container .tbox .ckbox {
  display: flex;
  margin-top: 0.5rem;
}
.product-info-banner .container .tbox .ckbox .public-btn {
  min-width: 126px;
  border: 1px solid rgba(255, 255, 255, 0.4);
}
.product-info-banner .container .tbox .ckbox .public-btn span {
  color: #fff;
}
.product-info-banner .container .tbox .ckbox .public-btn i svg path {
  fill: #fff;
}
.product-info-banner .container .tbox .ckbox .pa {
  margin-right: 0.2rem;
  border: none;
  z-index: 2;
}
.product-info {
  width: 100%;
}
.product-info .box1 {
  width: 100%;
  padding: 0.67rem 0 0.98rem;
}
.product-info .box1 .container .top {
  width: 100%;
}
.product-info .box1 .container .top .title {
  color: #252b3a;
  line-height: calc(46/36);
  font-weight: bold;
  text-align: center;
}
.product-info .box1 .container .top .txt {
  width: 1140px;
  max-width: 100%;
  margin: 0.18rem auto 0;
  color: #575d6c;
  text-align: center;
}
.product-info .box1 .container .list {
  width: 100%;
  margin-top: 0.5rem;
  position: relative;
  z-index: 1;
  background: #fff;
}
.product-info .box1 .container .list ul {
  width: calc(100% + 0.8rem);
  margin: 0 -0.4rem;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .product-info .box1 .container .list ul {
    width: 100%;
    margin: 0;
    display: none;
  }
}
.product-info .box1 .container .list ul li {
  width: calc(25% - 0.8rem);
  margin: 0 0.4rem;
}
@media (max-width: 991px) {
  .product-info .box1 .container .list ul li {
    width: calc(50% - 0.8rem);
    margin: 0 0.4rem 0.4rem;
  }
}
@media (max-width: 767px) {
  .product-info .box1 .container .list ul li {
    width: 100%;
    margin: 0 0 0.4rem;
  }
}
.product-info .box1 .container .list ul li .icon {
  width: 0.7rem;
  height: 0.7rem;
  display: flex;
  margin: 0 auto;
}
.product-info .box1 .container .list ul li .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.product-info .box1 .container .list ul li .t1 {
  color: #252b3a;
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
  margin-top: 0.2rem;
}
.product-info .box1 .container .list ul li .t2 {
  color: #575d6c;
  margin-top: 0.13rem;
}
.product-info .box1 .container .list .swiper-container {
  width: 100%;
  overflow: hidden;
  padding-bottom: 40px;
  z-index: -11;
  pointer-events: none;
  margin-top: 0.6rem;
  position: absolute;
  top: 0;
  opacity: 0;
}
@media (max-width: 767px) {
  .product-info .box1 .container .list .swiper-container {
    pointer-events: all;
    z-index: 1;
    position: relative;
    top: initial;
    opacity: 1;
  }
}
.product-info .box1 .container .list .swiper-container .swiper-wrapper {
  /* 重要 */
  transition-timing-function: ease-out;
  -webkit-transition-timing-function: ease-out;
}
.product-info .box1 .container .list .swiper-container .swiper-slide .icon {
  width: 1rem;
  height: 1rem;
  display: flex;
  margin: 0 auto;
}
.product-info .box1 .container .list .swiper-container .swiper-slide .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.product-info .box1 .container .list .swiper-container .swiper-slide .t1 {
font-size:16px;
  color: #252b3a;
  font-weight: normal;
  line-height: 1.5;
  text-align: center;
  margin-top: 0.2rem;
}
.product-info .box1 .container .list .swiper-container .swiper-slide .t2 {
  color: #575d6c;
  margin-top: 0.13rem;
}
.product-info .box1 .container .list .swiper-container .swiper-pagination {
  bottom: 0;
  text-align: center;
}
.product-info .box1 .container .list .swiper-container .swiper-pagination .swiper-pagination-bullet {
  background: #d0d0d0;
  width: 8px;
  height: 8px;
  margin: 0 5px;
  opacity: 1;
  transition: all 0.4s;
}
.product-info .box1 .container .list .swiper-container .swiper-pagination .swiper-pagination-bullet-active {
  background: #1882f0;
}
.product-info .box1 .container .list.list-cwy ul {
  width: calc(100% + 1.2rem);
  margin: 0 -0.6rem;
}
@media (max-width: 767px) {
  .product-info .box1 .container .list.list-cwy ul {
    display: none;
  }
}
.product-info .box1 .container .list.list-cwy ul li {
  width: calc(33.33% - 1.2rem);
  margin: 0 0.6rem;
}
@media (max-width: 991px) {
  .product-info .box1 .container .list.list-cwy ul li {
    width: calc(50% - 0.8rem);
    margin: 0 0.4rem 0.4rem;
  }
}
.product-info .box2 {
  width: 100%;
  background: url(../images/product-info-box2-bg.jpg) center center no-repeat;
  background-size: cover;
  padding: 0.92rem 0 0.83rem;
}
.product-info .box2 .container .title {
  color: #252b3a;
  text-align: center;
  font-weight: bold;
  line-height: calc(46/36);
}
.product-info .box2 .container .list {
  width: 100%;
  margin-top: 0.67rem;
}
.product-info .box2 .container .list ul {
  width: calc(100% + 0.3rem);
  margin: 0 -0.15rem;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .product-info .box2 .container .list ul {
    width: 100%;
    margin: 0;
  }
}
.product-info .box2 .container .list ul li {
  width: calc(33.33% - 0.3rem);
  margin: 0 0.15rem 0.3rem;
  border-radius: 0.12rem 0.12rem 0.22rem 0.22rem;
  background: #fff;
  overflow: hidden;
  background: 0 0.15rem 0.54rem 0 rgba(166, 178, 190, 0.16);
  transition: all 0.4s;
}
@media (max-width: 767px) {
  .product-info .box2 .container .list ul li {
    width: 100%;
    margin: 0 0 0.3rem;
  }
}
.product-info .box2 .container .list ul li a {
  width: 100%;
  height: 100%;
  display: block;
  position: relative;
}
.product-info .box2 .container .list ul li a .public-img {
  width: 100%;
}
.product-info .box2 .container .list ul li a .public-img::before {
  padding-top: calc(190/460*100%);
}
.product-info .box2 .container .list ul li a .tbox {
  width: 100%;
  padding: 0.3rem 0.3rem 0.88rem;
}
@media (max-width: 767px) {
  .product-info .box2 .container .list ul li a .tbox {
    padding: 0.3rem 0.3rem 1rem;
  }
}
.product-info .box2 .container .list ul li a .tbox .t1 {
  line-height: calc(34/24);
  color: #252b3a;
  font-weight: bold;
}
@media (max-width: 1580px) {
  .product-info .box2 .container .list ul li a .tbox .t1 {
    font-size: 20px;
  }
}
.product-info .box2 .container .list ul li a .tbox .t2 {
  line-height: calc(26/16);
  min-height: calc(26/16*4em);
  color: #575d6c;
  margin-top: 0.18rem;
}
.product-info .box2 .container .list ul li a .tbox .more {
  margin-top: 0.2rem;
  display: flex;
  align-items: center;
  font-size: 14px;
  line-height: 24px;
  position: absolute;
  bottom: calc(0.6rem - 24px);
}
@media (max-width: 767px) {
  .product-info .box2 .container .list ul li a .tbox .more {
    bottom: 0.3rem;
  }
}
.product-info .box2 .container .list ul li a .tbox .more span {
  color: #0084f6;
}
.product-info .box2 .container .list ul li a .tbox .more i {
  width: 18px;
  display: flex;
  transition: all 0.4s;
}
.product-info .box2 .container .list ul li a .tbox .more i svg path {
  fill: #0084f6;
}
.product-info .box2 .container .list ul li a .tbox .more:hover i {
  transform: translateX(5px);
}
.product-info .box2 .container .list ul li:hover {
  box-shadow: 0 0 0.4rem 0 rgba(135, 140, 151, 0.22);
}
.product-info .box2 .container .list ul li:hover a .public-img img {
  transform: scale(1.05);
}
.product-info .box3 {
  width: 100%;
  padding: 0.72rem 0 1rem;
}
.product-info .box3 .container .top .title {
  color: #252b3a;
  font-weight: bold;
  text-align: center;
  line-height: calc(46/36);
}
.product-info .box3 .container .top .txt {
  width: 1260px;
  max-width: 100%;
  margin: 0.18rem auto 0;
  text-align: center;
  color: #575d6c;
}
.product-info .box3 .container .img {
  width: 100%;
  margin-top: 0.4rem;
}
.product-info .box4 {
  width: 100%;
  background: #ecf1f7;
  padding: 0.87rem 0 0.93rem;
}
.product-info .box4 .container .title {
  color: #252b3a;
  text-align: center;
  font-weight: bold;
  line-height: calc(46/36);
}
.product-info .box4 .container .list {
  width: 100%;
  margin-top: 0.56rem;
  position: relative;
}
.product-info .box4 .container .list ul {
  width: calc(100% + 0.26rem);
  margin: 0 -0.13rem;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .product-info .box4 .container .list ul {
    display: none;
  }
}
@media (max-width: 767px) {
  .product-info .box4 .container .list ul {
    width: 100%;
    margin: 0;
  }
}
.product-info .box4 .container .list ul li {
  height: 280px;
  margin: 0 0.13rem 0.26rem;
  background: #fff;
  border-radius: 0.12rem;
  padding: 0.24rem 0.36rem 0.38rem;
  position: relative;
  overflow: hidden;
}
@media (max-width: 767px) {
  .product-info .box4 .container .list ul li {
    margin: 0 0 0.26rem;
  }
}
.product-info .box4 .container .list ul li.w1 {
  width: calc(33.33% - 0.26rem);
}
@media (max-width: 991px) {
  .product-info .box4 .container .list ul li.w1 {
    width: calc(50% - 0.26rem);
  }
}
@media (max-width: 767px) {
  .product-info .box4 .container .list ul li.w1 {
    width: 100%;
  }
}
.product-info .box4 .container .list ul li.w2 {
  width: calc(25% - 0.26rem);
}
@media (max-width: 991px) {
  .product-info .box4 .container .list ul li.w2 {
    width: calc(50% - 0.26rem);
  }
}
@media (max-width: 767px) {
  .product-info .box4 .container .list ul li.w2 {
    width: 100%;
  }
}
.product-info .box4 .container .list ul li .icons {
  height: 50px;
  display: flex;
  transition: all 0.4s;
}
.product-info .box4 .container .list ul li .icons img {
  height: 100%;
  object-fit: contain;
}
.product-info .box4 .container .list ul li .tbox {
  width: 100%;
  transform: translateY(48px);
  background: #fff;
  transition: all 0.4s;
  position: relative;
  z-index: 2;
}
@media (max-width: 991px) {
  .product-info .box4 .container .list ul li .tbox {
    transform: translateY(30px);
  }
}
.product-info .box4 .container .list ul li .tbox .t1 {
  color: #252b3a;
  line-height: calc(34/24);
  font-weight: bold;
}
@media (max-width: 1580px) {
  .product-info .box4 .container .list ul li .tbox .t1 {
    font-size: 20px;
  }
}
.product-info .box4 .container .list ul li .tbox .t2 {
  margin-top: 0.13rem;
  color: #575d6c;
  min-height: 4.5em;
}
.product-info .box4 .container .list ul li .tbox .more {
  display: flex;
  margin-top: 0.53rem;
  opacity: 0;
  transition: all 0.4s;
}
@media (max-width: 991px) {
  .product-info .box4 .container .list ul li .tbox .more {
    opacity: 1;
    margin-top: 0.3rem;
  }
}
.product-info .box4 .container .list ul li .tbox .more .public-btn:hover {
  background: #0084f6;
  border: 1px solid #0084f6;
}
.product-info .box4 .container .list ul li .tbox .more .public-btn:hover span {
  color: #fff;
}
.product-info .box4 .container .list ul li .tbox .more .public-btn:hover i {
  opacity: 1;
}
.product-info .box4 .container .list ul li .tbox .more .public-btn:hover i svg path {
  fill: #fff;
}
@media (min-width: 992px) {
  .product-info .box4 .container .list ul li:hover .icons {
    opacity: 0;
  }
  .product-info .box4 .container .list ul li:hover .tbox {
    transform: translateY(-50px);
  }
  .product-info .box4 .container .list ul li:hover .tbox .more {
    opacity: 1;
  }
}
.product-info .box4 .container .list .swiper-container {
  width: 100%;
  overflow: hidden;
  padding-bottom: 40px;
  z-index: -1;
  pointer-events: none;
  margin-top: 0.6rem;
  position: absolute;
  top: 0;
  opacity: 0;
}
@media (max-width: 991px) {
  .product-info .box4 .container .list .swiper-container {
    pointer-events: all;
    z-index: 1;
    position: relative;
    top: initial;
    opacity: 1;
  }
}
.product-info .box4 .container .list .swiper-container .swiper-wrapper {
  /* 重要 */
  transition-timing-function: ease-out;
  -webkit-transition-timing-function: ease-out;
}
.product-info .box4 .container .list .swiper-container .swiper-slide {
  height: 280px;
  background: #fff;
  border-radius: 0.12rem;
  padding: 0.24rem 0.36rem 0.38rem;
  position: relative;
  overflow: hidden;
}
.product-info .box4 .container .list .swiper-container .swiper-slide .icons {
  height: 50px;
  display: flex;
  transition: all 0.4s;
}
.product-info .box4 .container .list .swiper-container .swiper-slide .icons img {
  height: 100%;
  object-fit: contain;
}
.product-info .box4 .container .list .swiper-container .swiper-slide .tbox {
  width: 100%;
  transform: translateY(48px);
  background: #fff;
  transition: all 0.4s;
  position: relative;
  z-index: 2;
}
@media (max-width: 991px) {
  .product-info .box4 .container .list .swiper-container .swiper-slide .tbox {
    transform: translateY(30px);
  }
}
.product-info .box4 .container .list .swiper-container .swiper-slide .tbox .t1 {
  color: #252b3a;
  line-height: calc(34/24);
  font-weight: bold;
}
@media (max-width: 1580px) {
  .product-info .box4 .container .list .swiper-container .swiper-slide .tbox .t1 {
    font-size: 20px;
  }
}
.product-info .box4 .container .list .swiper-container .swiper-slide .tbox .t2 {
  margin-top: 0.13rem;
  color: #575d6c;
  min-height: 4.5em;
}
.product-info .box4 .container .list .swiper-container .swiper-slide .tbox .more {
  display: flex;
  margin-top: 0.53rem;
  opacity: 0;
  transition: all 0.4s;
}
@media (max-width: 991px) {
  .product-info .box4 .container .list .swiper-container .swiper-slide .tbox .more {
    opacity: 1;
    margin-top: 0.3rem;
  }
}
.product-info .box4 .container .list .swiper-container .swiper-slide .tbox .more .public-btn:hover {
  background: #0084f6;
  border: 1px solid #0084f6;
}
.product-info .box4 .container .list .swiper-container .swiper-slide .tbox .more .public-btn:hover span {
  color: #fff;
}
.product-info .box4 .container .list .swiper-container .swiper-slide .tbox .more .public-btn:hover i {
  opacity: 1;
}
.product-info .box4 .container .list .swiper-container .swiper-slide .tbox .more .public-btn:hover i svg path {
  fill: #fff;
}
.product-info .box4 .container .list .swiper-container .swiper-pagination {
  bottom: 0;
  text-align: center;
}
.product-info .box4 .container .list .swiper-container .swiper-pagination .swiper-pagination-bullet {
  background: #d0d0d0;
  width: 8px;
  height: 8px;
  margin: 0 5px;
  opacity: 1;
  transition: all 0.4s;
}
.product-info .box4 .container .list .swiper-container .swiper-pagination .swiper-pagination-bullet-active {
  background: #1882f0;
}
.product-info .box5 {
  width: 100%;
  padding: 0.76rem 0 1.06rem;
}
.product-info .box5 .container .title {
  color: #252b3a;
  text-align: center;
  font-weight: bold;
  line-height: calc(50/40);
}
.product-info .box5 .container .list {
  width: 100%;
  margin-top: 0.64rem;
  position: relative;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media (max-width: 1024px) {
  .product-info .box5 .container .list {
    align-items: center;
  }
}
.product-info .box5 .container .list .swiper1 {
  width: calc(720/1440*100%);
  border-radius: 0.12rem;
}
@media (max-width: 991px) {
  .product-info .box5 .container .list .swiper1 {
    width: 100%;
    border-radius: 0;
  }
}
@media (max-width: 991px) {
  .product-info .box5 .container .list .swiper1 .swiper-slide {
    border-radius: 0.12rem;
    overflow: hidden;
  }
}
.product-info .box5 .container .list .swiper1 .swiper-slide a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
@media (max-width: 1260px) {
  .product-info .box5 .container .list .swiper1 .swiper-slide a {
    align-items: center;
  }
}
.product-info .box5 .container .list .swiper1 .swiper-slide a .img {
  width: 100%;
  height: 100%;
  position: relative;
}
.product-info .box5 .container .list .swiper1 .swiper-slide a .img .public-img {
  width: 100%;
}
.product-info .box5 .container .list .swiper1 .swiper-slide a .img .public-img::before {
  padding-top: calc(420/720*100%);
}
.product-info .box5 .container .list .swiper1 .swiper-slide a .img .icon {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.product-info .box5 .container .list .swiper2 {
  width: calc(645/1440*100%);
}
@media (max-width: 1580px) {
  .product-info .box5 .container .list .swiper2 {
    padding-bottom: 30px;
  }
}
@media (max-width: 991px) {
  .product-info .box5 .container .list .swiper2 {
    width: 100%;
  }
}
.product-info .box5 .container .list .swiper2 .swiper-slide a {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
@media (max-width: 1260px) {
  .product-info .box5 .container .list .swiper2 .swiper-slide a {
    align-items: center;
  }
}
.product-info .box5 .container .list .swiper2 .swiper-slide a .tbox {
  width: 100%;
  padding-top: 0.32rem;
}
.product-info .box5 .container .list .swiper2 .swiper-slide a .tbox .t1 {
  line-height: calc(48/32);
  font-weight: bold;
  color: #252b3a;
}
@media (max-width: 1580px) {
  .product-info .box5 .container .list .swiper2 .swiper-slide a .tbox .t1 {
    font-size: 24px;
  }
}
@media (max-width: 1580px) {
  .product-info .box5 .container .list .swiper2 .swiper-slide a .tbox .t1 {
    font-size: 20px;
  }
}
.product-info .box5 .container .list .swiper2 .swiper-slide a .tbox .t2 {
  color: #575d6c;
  margin-top: 0.24rem;
}
.product-info .box5 .container .list .swiper2 .swiper-slide a .tbox .more {
  display: flex;
  margin-top: 0.5rem;
}
.product-info .box5 .container .list .swiper2 .swiper-slide a .tbox .more .public-btn {
  min-width: 126px;
}
.product-info .box5 .container .list .swiper2 .swiper-pagination {
  text-align: left;
  font-size: 0;
  bottom: 8px;
}
@media (max-width: 991px) {
  .product-info .box5 .container .list .swiper2 .swiper-pagination {
    bottom: 0;
    padding-left: 0;
    text-align: center;
  }
}
.product-info .box5 .container .list .swiper2 .swiper-pagination .swiper-pagination-bullet {
  background: #d0d0d0;
  width: 8px;
  height: 8px;
  margin: 0 5px;
  opacity: 1;
  transition: all 0.4s;
}
.product-info .box5 .container .list .swiper2 .swiper-pagination .swiper-pagination-bullet-active {
  background: #1882f0;
}
.product-info .box5 .container .list .swiper-container {
  overflow: hidden;
  margin: 0;
}
.product-info .box5 .container .list .swiper-container .swiper-wrapper {
  /* 重要 */
  transition-timing-function: ease-out;
  -webkit-transition-timing-function: ease-out;
}
.product-info .box5 .container .list .swiper-prev,
.product-info .box5 .container .list .swiper-next {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 991px) {
  .product-info .box5 .container .list .swiper-prev,
  .product-info .box5 .container .list .swiper-next {
    display: none;
  }
}
@media (max-width: 767px) {
  .product-info .box5 .container .list .swiper-prev,
  .product-info .box5 .container .list .swiper-next {
    width: 36px;
    height: 36px;
  }
  .product-info .box5 .container .list .swiper-prev svg,
  .product-info .box5 .container .list .swiper-next svg {
    width: 10px;
  }
}
.product-info .box5 .container .list .swiper-prev {
  left: calc(-50px - 0.22rem);
}
@media (max-width: 1580px) {
  .product-info .box5 .container .list .swiper-prev {
    left: -50px;
  }
}
@media (max-width: 991px) {
  .product-info .box5 .container .list .swiper-prev {
    left: -30px;
  }
}
@media (max-width: 767px) {
  .product-info .box5 .container .list .swiper-prev {
    left: -0.15rem;
  }
}
.product-info .box5 .container .list .swiper-next {
  right: calc(-50px - 0.22rem);
}
@media (max-width: 1580px) {
  .product-info .box5 .container .list .swiper-next {
    right: -50px;
  }
}
@media (max-width: 991px) {
  .product-info .box5 .container .list .swiper-next {
    right: -30px;
  }
}
@media (max-width: 767px) {
  .product-info .box5 .container .list .swiper-next {
    right: -0.15rem;
  }
}
.product-info .box5 .container .list .swiper-next svg {
  transform: rotateZ(180deg);
}
.product-info .box6 {
  width: 100%;
  background: url(../images/product-info-box6-bg.jpg) center center no-repeat;
  background-size: cover;
  padding: 0.86rem 0 1.1rem;
}
.product-info .box6 .container .title {
  color: #252b3a;
  line-height: calc(50/40);
  text-align: center;
  font-weight: bold;
}
.product-info .box6 .container .list {
  width: 100%;
  margin-top: 0.6rem;
  position: relative;
}
.product-info .box6 .container .list ul {
  width: calc(100% + 0.52rem);
  margin: 0 -0.26rem;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .product-info .box6 .container .list ul {
    display: none;
  }
}
.product-info .box6 .container .list ul li {
  width: calc(33.33% - 0.52rem);
  margin: 0 0.26rem;
  border-radius: 0.12rem;
  background: #fff;
  overflow: hidden;
  transition: all 0.4s;
}
@media (max-width: 767px) {
  .product-info .box6 .container .list ul li {
    width: 100%;
    margin: 0 0 0.4rem;
  }
}
.product-info .box6 .container .list ul li a {
  display: block;
}
.product-info .box6 .container .list ul li a .public-img {
  width: 100%;
}
.product-info .box6 .container .list ul li a .public-img::before {
  padding-top: calc(244/435*100%);
}
.product-info .box6 .container .list ul li a .tbox {
  width: 100%;
  padding: 0.32rem 0.38rem 0.4rem;
  margin-top: -0.7rem;
  position: relative;
  z-index: 2;
  background: #fff;
}
@media (max-width: 991px) {
  .product-info .box6 .container .list ul li a .tbox {
    padding: 0.3rem 0.3rem 0.4rem;
  }
}
.product-info .box6 .container .list ul li a .tbox .t1 {
  color: #252b3a;
  line-height: calc(32/24);
  font-weight: bold;
  min-height: calc(32/24*2em);
}
@media (max-width: 1580px) {
  .product-info .box6 .container .list ul li a .tbox .t1 {
    font-size: 20px;
  }
}
@media (max-width: 991px) {
  .product-info .box6 .container .list ul li a .tbox .t1 {
    font-size: 20px;
  }
}
.product-info .box6 .container .list ul li a .tbox .t2 {
  margin-top: 0.13rem;
  color: #575d6c;
}
.product-info .box6 .container .list ul li a .tbox .more {
  display: flex;
  align-items: center;
  color: #0084f6;
  font-size: 14px;
  line-height: 24px;
  margin-top: 0.3rem;
}
.product-info .box6 .container .list ul li a .tbox .more span {
  margin-left: 8px;
}
.product-info .box6 .container .list ul li:hover {
  box-shadow: 0 0 0.4rem 0 rgba(135, 140, 151, 0.22);
}
.product-info .box6 .container .list ul li:hover a .public-img img {
  transform: scale(1.05);
}
.product-info .box6 .container .list .swiper-container {
  width: 100%;
  overflow: hidden;
  padding-bottom: 40px;
  z-index: -1;
  pointer-events: none;
  margin-top: 0.6rem;
  position: absolute;
  top: 0;
  opacity: 0;
}
@media (max-width: 991px) {
  .product-info .box6 .container .list .swiper-container {
    pointer-events: all;
    z-index: 1;
    position: relative;
    top: initial;
    opacity: 1;
  }
}
.product-info .box6 .container .list .swiper-container .swiper-wrapper {
  /* 重要 */
  transition-timing-function: ease-out;
  -webkit-transition-timing-function: ease-out;
}
.product-info .box6 .container .list .swiper-container .swiper-slide {
  width: 100%;
  border-radius: 0.12rem;
  overflow: hidden;
}
.product-info .box6 .container .list .swiper-container .swiper-slide a {
  display: block;
}
.product-info .box6 .container .list .swiper-container .swiper-slide a .public-img {
  width: 100%;
}
.product-info .box6 .container .list .swiper-container .swiper-slide a .public-img::before {
  padding-top: calc(244/435*100%);
}
.product-info .box6 .container .list .swiper-container .swiper-slide a .tbox {
  width: 100%;
  padding: 0.32rem 0.38rem 0.4rem;
  margin-top: -0.7rem;
  position: relative;
  z-index: 2;
  background: #fff;
}
@media (max-width: 991px) {
  .product-info .box6 .container .list .swiper-container .swiper-slide a .tbox {
    padding: 0.3rem 0.3rem 0.4rem;
  }
}
.product-info .box6 .container .list .swiper-container .swiper-slide a .tbox .t1 {
  color: #252b3a;
  line-height: calc(32/24);
  font-weight: bold;
  min-height: calc(32/24*2em);
}
@media (max-width: 991px) {
  .product-info .box6 .container .list .swiper-container .swiper-slide a .tbox .t1 {
    font-size: 20px;
  }
}
.product-info .box6 .container .list .swiper-container .swiper-slide a .tbox .t2 {
  margin-top: 0.13rem;
  color: #575d6c;
}
.product-info .box6 .container .list .swiper-container .swiper-slide a .tbox .more {
  display: flex;
  align-items: center;
  color: #0084f6;
  font-size: 14px;
  line-height: 24px;
  margin-top: 0.3rem;
}
.product-info .box6 .container .list .swiper-container .swiper-slide a .tbox .more span {
  margin-left: 8px;
}
.product-info .box6 .container .list .swiper-container .swiper-pagination {
  bottom: 0;
  text-align: center;
}
.product-info .box6 .container .list .swiper-container .swiper-pagination .swiper-pagination-bullet {
  background: #d0d0d0;
  width: 8px;
  height: 8px;
  margin: 0 5px;
  opacity: 1;
  transition: all 0.4s;
}
.product-info .box6 .container .list .swiper-container .swiper-pagination .swiper-pagination-bullet-active {
  background: #1882f0;
}
.product-info .box6.box6-cwy {
  padding: 0.68rem 0 1.2rem;
  background: url(../images/product-cwy-box6-bg.jpg) center center no-repeat;
  background-size: cover;
  overflow: hidden;
}
.product-info .box6.box6-cwy .menu {
  width: 100%;
  border-bottom: 1px solid #dce0e6;
  margin-top: 0.18rem;
}
.product-info .box6.box6-cwy .menu ul {
  display: flex;
  justify-content: center;
}
.product-info .box6.box6-cwy .menu ul li {
  height: 52px;
  display: flex;
  align-items: center;
  padding: 0 0.1rem;
  margin: 0 0.19rem;
  cursor: pointer;
  position: relative;
}
.product-info .box6.box6-cwy .menu ul li span {
  color: #252b3a;
  transition: all 0.4s;
}
.product-info .box6.box6-cwy .menu ul li::before {
  content: '';
  width: 100%;
  height: 4px;
  background: #0084f6;
  position: absolute;
  left: 0;
  bottom: 0;
  opacity: 0;
  transition: all 0.4s;
}
.product-info .box6.box6-cwy .menu ul li:hover span {
  color: #0084f6;
}
.product-info .box6.box6-cwy .menu ul li.on span {
  color: #0084f6;
}
.product-info .box6.box6-cwy .menu ul li.on::before {
  opacity: 1;
}
.product-info .box6.box6-cwy .list {
  position: relative;
}
.product-info .box6.box6-cwy .list .item {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
}
.product-info .box6.box6-cwy .list .item.on {
  position: relative;
  z-index: 2;
  opacity: 1;
  pointer-events: all;
}
.product-info .box6.box6-cwy .list .item1 ul {
  width: calc(100% + 0.26rem);
  margin: 0 -0.13rem;
}
.product-info .box6.box6-cwy .list .item1 ul li {
  width: calc(25% - 0.26rem);
  margin: 0 0.13rem;
}
.product-info .box6.box6-cwy .list .item1 ul li a .public-img::before {
  padding-top: calc(252/340*100%);
}
.product-info .box6.box6-cwy .list .item1 ul li a .tbox {
  padding: 0.3rem 0.3rem 0.37rem;
}
.product-info .box6.box6-cwy .list .item1 ul li a .tbox .t1 {
  line-height: 1.5;
  min-height: auto;
}
.product-info .box6.box6-cwy .list .item1 ul li a .tbox .more {
  margin-top: 0.44rem;
}
.product-info .box6.box6-cwy .list .item1 ul li a .tbox .more .public-btn {
  position: relative;
}
.product-info .box6.box6-cwy .list .item1 ul li a .tbox .more .public-btn::before {
  content: '';
  width: 100%;
  height: 100%;
  border-radius: 4px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background: linear-gradient(to right, #115af7, #0fabfe);
  opacity: 0;
  transition: all 0.4s;
}
.product-info .box6.box6-cwy .list .item1 ul li a .tbox .more .public-btn svg {
  position: relative;
  z-index: 2;
}
.product-info .box6.box6-cwy .list .item1 ul li a .tbox .more .public-btn svg path {
  fill: #575d6c;
  transition: all 0.4s;
}
.product-info .box6.box6-cwy .list .item1 ul li a .tbox .more .public-btn:hover {
  border: 1px solid transparent;
}
.product-info .box6.box6-cwy .list .item1 ul li a .tbox .more .public-btn:hover::before {
  opacity: 1;
}
.product-info .box6.box6-cwy .list .item1 ul li a .tbox .more .public-btn:hover svg path {
  fill: #fff;
}
.product-info .box6.box6-cwy .list .item1 ul li a .tbox .more .public-btn:hover span {
  color: #fff;
}
.product-info .box6.box6-cwy .list .item2 ul {
  width: calc(100% + 0.26rem);
  margin: 0 -0.13rem;
}
.product-info .box6.box6-cwy .list .item2 ul li {
  width: calc(25% - 0.26rem);
  margin: 0 0.13rem;
  cursor: pointer;
}
.product-info .box6.box6-cwy .list .item2 ul li .public-img::before {
  padding-top: calc(190/340*100%);
}
.product-info .box6.box6-cwy .list .item2 ul li .public-img .play {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.product-info .box6.box6-cwy .list .item2 ul li .public-img .play img {
  transition: all 0.8s;
}
.product-info .box6.box6-cwy .list .item2 ul li .tbox {
  padding: 0.28rem 0.35rem 0.3rem;
  position: relative;
  overflow: hidden;
}
.product-info .box6.box6-cwy .list .item2 ul li .tbox .t1 {
  line-height: calc(32/20);
  font-weight: bold;
  color: #252b3a;
}
.product-info .box6.box6-cwy .list .item2 ul li .tbox .t2 {
  color: #575d6c;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  margin-top: 0.15rem;
}
.product-info .box6.box6-cwy .list .item2 ul li .tbox .other {
  width: 100%;
  display: flex;
  align-items: center;
  font-size: 14px;
  line-height: 24px;
  margin-top: 0.94rem;
  transition: all 0.4s;
}
.product-info .box6.box6-cwy .list .item2 ul li .tbox .other .address {
  color: #575d6c;
  display: flex;
  align-items: center;
  margin-right: 0.3rem;
}
.product-info .box6.box6-cwy .list .item2 ul li .tbox .other .address img {
  margin-right: 0.1rem;
}
.product-info .box6.box6-cwy .list .item2 ul li .tbox .other .time {
  color: #575d6c;
  display: flex;
  align-items: center;
}
.product-info .box6.box6-cwy .list .item2 ul li .tbox .other .time img {
  margin-right: 0.1rem;
}
.product-info .box6.box6-cwy .list .item2 ul li .tbox .ckbox {
  width: 100%;
  display: flex;
  z-index: 2;
  margin-top: 0.3rem;
  background: #fff;
  transition: all 0.4s;
}
.product-info .box6.box6-cwy .list .item2 ul li .tbox .ckbox > a {
  display: flex;
}
.product-info .box6.box6-cwy .list .item2 ul li .tbox .ckbox .public-btn {
  position: relative;
}
.product-info .box6.box6-cwy .list .item2 ul li .tbox .ckbox .public-btn::before {
  content: '';
  width: 100%;
  height: 100%;
  border-radius: 4px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background: linear-gradient(to right, #115af7, #0fabfe);
  opacity: 0;
  transition: all 0.4s;
}
.product-info .box6.box6-cwy .list .item2 ul li .tbox .ckbox .public-btn svg {
  width: 18px;
  position: relative;
  z-index: 2;
  margin-left: 0.1rem;
}
.product-info .box6.box6-cwy .list .item2 ul li .tbox .ckbox .public-btn svg path {
  fill: #575d6c;
  transition: all 0.4s;
}
.product-info .box6.box6-cwy .list .item2 ul li .tbox .ckbox .public-btn:hover {
  border: 1px solid transparent;
}
.product-info .box6.box6-cwy .list .item2 ul li .tbox .ckbox .public-btn:hover::before {
  opacity: 1;
}
.product-info .box6.box6-cwy .list .item2 ul li .tbox .ckbox .public-btn:hover svg path {
  fill: #fff;
}
.product-info .box6.box6-cwy .list .item2 ul li .tbox .ckbox .public-btn:hover span {
  color: #fff;
}
@media (min-width: 992px) {
  .product-info .box6.box6-cwy .list .item2 ul li:hover .public-img img {
    transform: scale(1.05);
  }
  .product-info .box6.box6-cwy .list .item2 ul li:hover .tbox .other {
    opacity: 0;
  }
  .product-info .box6.box6-cwy .list .item2 ul li:hover .tbox .ckbox {
    bottom: 0;
  }
}
.product-info .box6.box6-cwy .list .item2 .swiper-container .swiper-slide {
  width: 100%;
  border-radius: 0.12rem;
  overflow: hidden;
}
.product-info .box6.box6-cwy .list .item2 .swiper-container .swiper-slide .public-img {
  width: 100%;
}
.product-info .box6.box6-cwy .list .item2 .swiper-container .swiper-slide .public-img::before {
  padding-top: calc(190/340*100%);
}
.product-info .box6.box6-cwy .list .item2 .swiper-container .swiper-slide .public-img .play {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.product-info .box6.box6-cwy .list .item2 .swiper-container .swiper-slide .tbox {
  padding: 0.28rem 0.3rem 0.3rem;
  background: #fff;
  position: relative;
  overflow: hidden;
}
.product-info .box6.box6-cwy .list .item2 .swiper-container .swiper-slide .tbox .t1 {
  line-height: calc(32/20);
  font-weight: bold;
}
.product-info .box6.box6-cwy .list .item2 .swiper-container .swiper-slide .tbox .t2 {
  color: #575d6c;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  margin-top: 0.15rem;
}
.product-info .box6.box6-cwy .list .item2 .swiper-container .swiper-slide .tbox .other {
  width: 100%;
  display: flex;
  align-items: center;
  font-size: 14px;
  line-height: 24px;
  margin-top: 0.4rem;
  transition: all 0.4s;
}
.product-info .box6.box6-cwy .list .item2 .swiper-container .swiper-slide .tbox .other .address {
  color: #575d6c;
  display: flex;
  align-items: center;
  margin-right: 0.3rem;
}
.product-info .box6.box6-cwy .list .item2 .swiper-container .swiper-slide .tbox .other .address img {
  margin-right: 0.1rem;
}
.product-info .box6.box6-cwy .list .item2 .swiper-container .swiper-slide .tbox .other .time {
  color: #575d6c;
  display: flex;
  align-items: center;
}
.product-info .box6.box6-cwy .list .item2 .swiper-container .swiper-slide .tbox .other .time img {
  margin-right: 0.1rem;
}
.product-info .box6.box6-cwy .list .item2 .swiper-container .swiper-slide .tbox .ckbox {
  width: 100%;
  display: flex;
  margin-top: 0.3rem;
  transition: all 0.4s;
}
.product-info .box6.box6-cwy .list .item2 .swiper-container .swiper-slide .tbox .ckbox > a {
  display: flex;
}
.product-info .box6.box6-cwy .list .item2 .swiper-container .swiper-slide .tbox .ckbox .public-btn {
  position: relative;
}
.product-info .box6.box6-cwy .list .item2 .swiper-container .swiper-slide .tbox .ckbox .public-btn::before {
  content: '';
  width: 100%;
  height: 100%;
  border-radius: 4px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background: linear-gradient(to right, #115af7, #0fabfe);
  opacity: 0;
  transition: all 0.4s;
}
.product-info .box6.box6-cwy .list .item2 .swiper-container .swiper-slide .tbox .ckbox .public-btn svg {
  width: 18px;
  position: relative;
  z-index: 2;
  margin-left: 0.1rem;
}
.product-info .box6.box6-cwy .list .item2 .swiper-container .swiper-slide .tbox .ckbox .public-btn svg path {
  fill: #575d6c;
  transition: all 0.4s;
}
.product-info .box6.box6-cwy .list .item2 .swiper-container .swiper-pagination {
  bottom: 0;
  text-align: center;
}
.product-info .box6.box6-cwy .list .item2 .swiper-container .swiper-pagination .swiper-pagination-bullet {
  background: #d0d0d0;
  width: 8px;
  height: 8px;
  margin: 0 5px;
  opacity: 1;
  transition: all 0.4s;
}
.product-info .box6.box6-cwy .list .item2 .swiper-container .swiper-pagination .swiper-pagination-bullet-active {
  background: #1882f0;
}
.product-info .box7 {
  width: 100%;
  padding: 0.76rem 0 1.36rem;
}
.product-info .box7 .container .title {
  text-align: center;
  font-weight: bold;
  color: #252b3a;
  line-height: calc(50/40);
}
.product-info .box7 .container .list {
  width: 100%;
  margin-top: 0.25rem;
}
.product-info .box7 .container .list ul li {
  width: 100%;
  padding: 0.35rem 0;
  border-bottom: 1px solid #ddd;
}
.product-info .box7 .container .list ul li .t1 {
  width: 100%;
  display: flex;
  align-items: flex-start;
  cursor: pointer;
}
.product-info .box7 .container .list ul li .t1 i {
  width: 0.47rem;
  height: calc(28/18*1em);
  display: flex;
  align-items: center;
  position: relative;
}
.product-info .box7 .container .list ul li .t1 i img {
  width: 0.24rem;
  transition: all 0.4s;
}
.product-info .box7 .container .list ul li .t1 i img:nth-child(2) {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  opacity: 0;
}
.product-info .box7 .container .list ul li .t1 span {
  line-height: calc(28/18);
  color: #252b3a;
  font-weight: bold;
}
.product-info .box7 .container .list ul li .t2 {
  color: #575d6c;
  padding: 0.15rem 0.25rem 0 0.47rem;
  display: none;
}
.product-info .box7 .container .list ul li.on .t1 i img:nth-child(1) {
  opacity: 0;
}
.product-info .box7 .container .list ul li.on .t1 i img:nth-child(2) {
  opacity: 1;
}
.product-info .box2-cwy {
  width: 100%;
  background: #eef3f7;
  padding: 0.63rem 0 0.73rem;
}
.product-info .box2-cwy .container .title {
  text-align: center;
  font-weight: bold;
  color: #252b3a;
  line-height: calc(46/36);
}
.product-info .box2-cwy .container .list {
  width: 100%;
  margin-top: 0.57rem;
  position: relative;
}
.product-info .box2-cwy .container .list ul {
  width: calc(100% + 0.34rem);
  margin: 0 -0.17rem;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .product-info .box2-cwy .container .list ul {
    display: none;
  }
}
.product-info .box2-cwy .container .list ul li {
  width: calc(50% - 0.34rem);
  margin: 0 0.17rem 0.35rem;
  background: #fff;
  border-radius: 0.12rem;
  padding: 0 0.24rem 0 0.5rem;
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
}
.product-info .box2-cwy .container .list ul li .public-img {
  width: calc(300/627*100%);
}
.product-info .box2-cwy .container .list ul li .public-img::before {
  padding-top: calc(280/300*100%);
}
.product-info .box2-cwy .container .list ul li .tbox {
  width: calc(310/627*100%);
  padding-top: 0.4rem;
}
.product-info .box2-cwy .container .list ul li .tbox .t1 {
  color: #252b3a;
  line-height: calc(40/30);
  font-weight: bold;
}
.product-info .box2-cwy .container .list ul li .tbox .t2 {
  margin-top: 0.18rem;
  line-height: calc(26/16);
  color: #575d6c;
}
.product-info .box2-cwy .container .list .swiper-container {
  width: 100%;
  overflow: hidden;
  padding-bottom: 40px;
  z-index: -11;
  pointer-events: none;
  margin-top: 0.6rem;
  position: absolute;
  top: 0;
  opacity: 0;
}
@media (max-width: 991px) {
  .product-info .box2-cwy .container .list .swiper-container {
    pointer-events: all;
    z-index: 1;
    position: relative;
    top: initial;
    opacity: 1;
  }
}
.product-info .box2-cwy .container .list .swiper-container .swiper-wrapper {
  /* 重要 */
  transition-timing-function: ease-out;
  -webkit-transition-timing-function: ease-out;
}
.product-info .box2-cwy .container .list .swiper-container .swiper-slide {
  background: #fff;
  border-radius: 0.12rem;
  padding: 0 0.24rem 0 0.5rem;
  height: auto;
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .product-info .box2-cwy .container .list .swiper-container .swiper-slide {
    padding: 0;
    flex-direction: column-reverse;
  }
}
.product-info .box2-cwy .container .list .swiper-container .swiper-slide .public-img {
  width: calc(300/627*100%);
}
@media (max-width: 767px) {
  .product-info .box2-cwy .container .list .swiper-container .swiper-slide .public-img {
    width: 80%;
    margin: 0 auto;
  }
}
.product-info .box2-cwy .container .list .swiper-container .swiper-slide .public-img::before {
  padding-top: calc(280/300*100%);
}
.product-info .box2-cwy .container .list .swiper-container .swiper-slide .tbox {
  width: calc(310/627*100%);
  padding-top: 0.4rem;
}
@media (max-width: 767px) {
  .product-info .box2-cwy .container .list .swiper-container .swiper-slide .tbox {
    width: 100%;
    padding: 0.4rem 0.3rem 0;
  }
}
.product-info .box2-cwy .container .list .swiper-container .swiper-slide .tbox .t1 {
  color: #252b3a;
  line-height: calc(40/30);
  font-weight: bold;
}
@media (max-width: 1260px) {
  .product-info .box2-cwy .container .list .swiper-container .swiper-slide .tbox .t1 {
    font-size: 20px;
  }
}
.product-info .box2-cwy .container .list .swiper-container .swiper-slide .tbox .t2 {
  margin-top: 0.18rem;
  line-height: calc(26/16);
  color: #575d6c;
  text-align: justify;
}
.product-info .box2-cwy .container .list .swiper-container .swiper-pagination {
  bottom: 0;
  text-align: center;
}
.product-info .box2-cwy .container .list .swiper-container .swiper-pagination .swiper-pagination-bullet {
  background: #d0d0d0;
  width: 8px;
  height: 8px;
  margin: 0 5px;
  opacity: 1;
  transition: all 0.4s;
}
.product-info .box2-cwy .container .list .swiper-container .swiper-pagination .swiper-pagination-bullet-active {
  background: #1882f0;
}
.product-info .box4-cwy {
  width: 100%;
  padding: 0 0 1.5rem;
  overflow: hidden;
}
@media (max-width: 991px) {
  .product-info .box4-cwy {
    padding: 0.6rem 0 1.2rem;
  }
}
.product-info .box4-cwy .container .title {
  text-align: center;
  font-weight: bold;
  color: #252b3a;
  line-height: calc(50/40);
}
.product-info .box4-cwy .container .menu {
  width: 100%;
  border-bottom: 1px solid #dce0e6;
  margin-top: 0.32rem;
}
.product-info .box4-cwy .container .menu ul {
  display: flex;
  justify-content: center;
}
.product-info .box4-cwy .container .menu ul li {
  height: 52px;
  display: flex;
  align-items: center;
  padding: 0 0.1rem;
  margin: 0 0.19rem;
  cursor: pointer;
  position: relative;
}
@media (max-width: 767px) {
  .product-info .box4-cwy .container .menu ul li {
    padding: 0;
  }
}
.product-info .box4-cwy .container .menu ul li span {
  color: #252b3a;
  transition: all 0.4s;
}
.product-info .box4-cwy .container .menu ul li::before {
  content: '';
  width: 100%;
  height: 4px;
  background: #0084f6;
  position: absolute;
  left: 0;
  bottom: 0;
  opacity: 0;
  transition: all 0.4s;
}
.product-info .box4-cwy .container .menu ul li:hover span {
  color: #0084f6;
}
.product-info .box4-cwy .container .menu ul li.on span {
  color: #0084f6;
}
.product-info .box4-cwy .container .menu ul li.on::before {
  opacity: 1;
}
.product-info .box4-cwy .container .list {
  width: 100%;
  margin-top: 0.68rem;
  position: relative;
}
.product-info .box4-cwy .container .list ul {
  width: 100%;
}
.product-info .box4-cwy .container .list ul li {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
  background: #fff;
  opacity: 0;
  transition: all 0.4s;
  position: absolute;
  top: 0;
  pointer-events: none;
}
@media (max-width: 991px) {
  .product-info .box4-cwy .container .list ul li {
    flex-wrap: wrap;
  }
}
.product-info .box4-cwy .container .list ul li.on {
  opacity: 1;
  position: relative;
  z-index: 3;
  pointer-events: all;
}
.product-info .box4-cwy .container .list ul li .public-img {
  width: calc(834/1440*100%);
  margin-right: -0.76rem;
}
@media (max-width: 1580px) {
  .product-info .box4-cwy .container .list ul li .public-img {
    width: calc(800/1440*100%);
    margin-right: 0;
  }
}
@media (max-width: 991px) {
  .product-info .box4-cwy .container .list ul li .public-img {
    width: 100%;
    margin-right: 0;
  }
}
.product-info .box4-cwy .container .list ul li .public-img::before {
  padding-top: calc(459/834*100%);
}
.product-info .box4-cwy .container .list ul li .public-img img {
  object-fit: contain;
}
.product-info .box4-cwy .container .list ul li .tbox {
  width: calc(600/1440*100%);
  padding-top: 0.27rem;
}
@media (max-width: 991px) {
  .product-info .box4-cwy .container .list ul li .tbox {
    width: 100%;
  }
}
.product-info .box4-cwy .container .list ul li .tbox .t1 {
  color: #252b3a;
  line-height: calc(42/32);
  font-weight: bold;
}
.product-info .box4-cwy .container .list ul li .tbox .t2 {
  color: #575d6c;
  margin-top: 0.2rem;
}
.product-info .box4-cwy .container .list ul li .tbox .t3 {
  width: 100%;
  margin-top: 0.25rem;
}
.product-info .box4-cwy .container .list ul li .tbox .t3 .ts {
  display: flex;
  align-items: center;
}
.product-info .box4-cwy .container .list ul li .tbox .t3 .ts img {
  margin-right: 0.12rem;
}
.product-info .box4-cwy .container .list ul li .tbox .t3 .ts span {
  color: #575d6c;
  line-height: 2;
}
.product-info .box4-cwy .container .list ul li .tbox .ckbox {
  display: flex;
  margin-top: 0.3rem;
}
.product-info .box4-cwy .container .box {
  width: 100%;
  position: relative;
}
.product-info .box4-cwy .container .pc {
  position: relative;
  z-index: 2;
}
@media (max-width: 991px) {
  .product-info .box4-cwy .container .pc {
    display: none;
  }
}
.product-info .box4-cwy .container .mb {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: -1;
  pointer-events: none;
}
@media (max-width: 991px) {
  .product-info .box4-cwy .container .mb {
    position: relative;
    z-index: 2;
    opacity: 1;
    top: initial;
    left: initial;
    margin-top: 0.3rem;
    pointer-events: all;
  }
}
.product-info .box4-cwy .container .mb .swiper1 {
  width: 100%;
  border-bottom: 1px solid #dce0e6;
}
.product-info .box4-cwy .container .mb .swiper1 .swiper-slide {
  height: 52px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  position: relative;
}
@media (max-width: 767px) {
  .product-info .box4-cwy .container .mb .swiper1 .swiper-slide {
    padding: 0 15px;
  width:auto !important;
  }
}
.product-info .box4-cwy .container .mb .swiper1 .swiper-slide span {
  color: #252b3a;
  transition: all 0.4s;
}
.product-info .box4-cwy .container .mb .swiper1 .swiper-slide::before {
  content: '';
  width: 100%;
  height: 4px;
  background: #0084f6;
  position: absolute;
  left: 0;
  bottom: 0;
  opacity: 0;
  transition: all 0.4s;
}
.product-info .box4-cwy .container .mb .swiper1 .swiper-slide.swiper-slide-thumb-active span {
  color: #0084f6;
}
.product-info .box4-cwy .container .mb .swiper1 .swiper-slide.swiper-slide-thumb-active::before {
  opacity: 1;
}
.product-info .box4-cwy .container .mb .swiper2 {
  width: 100%;
  margin-top: 0.5rem;
  padding: 0 0 0.5rem;
}
.product-info .box4-cwy .container .mb .swiper2 .swiper-slide {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
  flex-wrap: wrap;
  background: #fff;
  transition: all 0.4s;
}
.product-info .box4-cwy .container .mb .swiper2 .swiper-slide .public-img {
  width: calc(834/1440*100%);
  margin-right: -0.76rem;
}
@media (max-width: 1580px) {
  .product-info .box4-cwy .container .mb .swiper2 .swiper-slide .public-img {
    width: calc(800/1440*100%);
    margin-right: 0;
  }
}
@media (max-width: 991px) {
  .product-info .box4-cwy .container .mb .swiper2 .swiper-slide .public-img {
    width: 100%;
    margin-right: 0;
  }
}
.product-info .box4-cwy .container .mb .swiper2 .swiper-slide .public-img::before {
  padding-top: calc(459/834*100%);
}
.product-info .box4-cwy .container .mb .swiper2 .swiper-slide .public-img img {
  object-fit: contain;
}
.product-info .box4-cwy .container .mb .swiper2 .swiper-slide .tbox {
  width: calc(600/1440*100%);
  padding-top: 0.27rem;
}
@media (max-width: 991px) {
  .product-info .box4-cwy .container .mb .swiper2 .swiper-slide .tbox {
    width: 100%;
  }
}
.product-info .box4-cwy .container .mb .swiper2 .swiper-slide .tbox .t1 {
  color: #252b3a;
  line-height: calc(42/32);
  font-weight: bold;
}
.product-info .box4-cwy .container .mb .swiper2 .swiper-slide .tbox .t2 {
  color: #575d6c;
  margin-top: 0.2rem;
}
.product-info .box4-cwy .container .mb .swiper2 .swiper-slide .tbox .t3 {
  width: 100%;
  margin-top: 0.25rem;
}
.product-info .box4-cwy .container .mb .swiper2 .swiper-slide .tbox .t3 .ts {
  display: flex;
  align-items: center;
}
.product-info .box4-cwy .container .mb .swiper2 .swiper-slide .tbox .t3 .ts img {
  margin-right: 0.12rem;
}
.product-info .box4-cwy .container .mb .swiper2 .swiper-slide .tbox .t3 .ts span {
  color: #575d6c;
  line-height: 2;
}
.product-info .box4-cwy .container .mb .swiper2 .swiper-slide .tbox .ckbox {
  display: flex;
  margin-top: 0.3rem;
}
.product-info .box4-cwy .container .mb .swiper2 .swiper-pagination {
  bottom: 0;
  font-size: 0;
}
.product-info .box3  .text{
text-align:center;	 
 }