@charset "utf-8";

:root {
  --color: #000;
  --vh: 100vh;
}

/*字体*/
@font-face {
  font-family: "circul-bold";
  src: url("../font/CircularStd-Bold.OTF") format("opentype");
}

@font-face {
  font-family: "circul-book";
  src: url("../font/CircularStd-Book.OTF") format("opentype");
}

@font-face {
  font-family: "circul-light";
  src: url("../font/CircularStd-Light.OTF") format("opentype");
}

@font-face {
  font-family: "circul-medium";
  src: url("../font/CircularStd-Medium.OTF") format("opentype");
}

.font-bold {
  font-family: circul-bold;
}

.font-book {
  font-family: circul-book;
}

.font-l {
  font-family: circul-light;
}

.font-m {
  font-family: circul-medium;
}

* {
  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: #000;
}

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;
  }
}


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: 1600px;
}

@media (max-width: 1260px) {
  .container {
    width: 90%;
  }
}

.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: #000 !important;
}

.public-scrollbar ::-webkit-scrollbar-track {
  /*滚动条-背景*/
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  border-radius: 3px;
  background: #ededed;
}

.public-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0 0.2rem;
  min-width: 1rem;
}

.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.5s;
}

.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;
}

#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: #000;
}

#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: #000;
}

#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: #000;
}

#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;
  }
}

/*顶部*/
#c-header {
  display: flex;
  align-items: center;
  height: 1rem;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 900;
  width: 100%;
  border-bottom: 1px solid rgba(25, 25, 25, 0.2);
  background-color: #fff;
  line-height: 1rem;
  text-align: center;
  color: #373737;
  transition: 0.3s;
}

@media (max-width: 991px) {
  #c-header {
    line-height: 1.2rem;
    height: 1.2rem;
  }
}

#c-header a {
  color: #373737;
  transition: 0.3s;
}

#c-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 991px) {
  #c-header .container {
    height: 1.2rem;
  }
}

#c-header .c-right-box {
  display: flex;
  align-items: center;
}

#c-header.c-head-move {
  top: -1rem;
}

@media (max-width: 991px) {
  #c-header.c-head-move {
    top: -1.2rem;
  }
}

#c-header.c-head-move2 {
  top: -1.56rem;
}

@media (max-width: 991px) {
  #c-header.c-head-move2 {
    top: -1.2rem;
  }
}

#c-header.c-style2 {
  color: #000;
  background-color: #fff;
}

#c-header.c-style2 a {
  color: #000;
}

/*顶部logo*/
#c-header .zleft {
  display: flex;
  align-items: center;
  width: 100%;
}

#c-header .c-logo {
  margin-right: 0.5rem;
  display: flex;
  align-items: center;
}

@media (max-width: 991px) {
  #c-header .c-logo {
    margin: 0 auto;
  }
}

#c-header .home {
  margin-right: 1.5rem;
  display: flex;
  align-items: center;
}

#c-header .home .current {
  color: #8733FF;
}


#c-header .home img {
  margin-right: 5px;
}

#c-header .c-logo .c-img-box {
  display: flex;
  align-items: center;
}

#c-header .c-logo .c-img-box img {
  /* width: 1rem; */
  height: 0.5rem;
}

@media (max-width: 991px) {
  #c-header .c-logo .c-img-box img {
    /* width: 1.8rem; */
    height: 0.5rem;
  }
}

#c-header .c-logo .c-img-box svg {
  width: 1.35rem;
  height: 0.36rem;
}

@media (max-width: 991px) {
  #c-header .c-logo .c-img-box svg {
    width: 2rem;
    height: 0.37rem;
  }
}

/*顶部pc导航*/
#c-header .c-nav {
  display: flex;
  align-items: center;
}

@media (max-width: 991px) {
  #c-header .c-nav {
    display: none;
  }
}

#c-header .c-nav>li {
  position: relative;
  margin-right: 0.5rem;
}

#c-header .c-nav>li:last-child {
  margin-right: 0;
}

#c-header .c-nav>li>.c-title-box {
  display: flex;
  align-items: center;
  cursor: pointer;
}

#c-header .c-nav>li>.c-title-box>a {
  display: flex;
  align-items: center;
}

#c-header .c-nav>li>.c-title-box img,
#c-header .c-nav>li>.c-title-box svg {
  margin-left: 0.05rem;
  width: 10px;
  height: 6px;
}

#c-header .c-nav>li>.c-title-box img path,
#c-header .c-nav>li>.c-title-box svg path {
  fill: #333;
  transition: all 0.3s;
}

#c-header .c-nav>li>.c-title-box .tishi {
  position: absolute;
  right: -0.3rem;
  top: 0.16rem;
  width: 0.4rem;
  height: 0.21rem;
}

#c-header .c-nav>li>.c-title-box+.cn100 {
  width: 300vw;
  box-shadow: none;
  background-color: transparent;
}

#c-header .c-nav>li>.c-title-box+.cn100 em {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  width: 300vw;
  height: 1.24rem;
  background-color: rgba(255, 255, 255, 0.9);
}

#c-header .c-nav>li>.c-title-box+.cn100 .cn101 {
  border-bottom: 0;
  display: inline-block;
}

#c-header .c-nav>li>.c-title-box+.cn100 .cn101 .cn102 {
  line-height: 1.24rem;
  color: #666666;
  padding: 0 0.4rem;
  position: relative;
}

#c-header .c-nav>li>.c-title-box+.cn100 .cn101 .cn102:hover {
  color: #000;
}

#c-header .c-nav>li>.c-title-box+.cn100 .cn101 .cn102::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 0.68rem;
  background-color: #d4d4d4;
}

#c-header .c-nav>li>.c-title-box+.cn100 .cn101:last-child .cn102::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 0.68rem;
  background-color: #d4d4d4;
}

#c-header .c-nav>li a:before {
  display: none;
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 0;
  height: 2px;
  background: #000;
  transition: 0.3s;
}

#c-header .c-nav li a {
  position: relative;
  display: block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

#c-header .c-nav ul {
  position: absolute;
  top: 100%;
  left: 50%;
  display: none;
  min-width: 1.5rem;
  line-height: 0.5rem;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

#c-header .c-nav ul li {
  border-bottom: 1px solid #eee;
}

#c-header .c-nav ul li:last-child {
  border: 0;
}

#c-header .c-nav ul li a {
  color: #333;
}

#c-header.c-style2 .c-nav li.on>.c-title-box>a:before,
#c-header .c-nav li:hover>.c-title-box>a:before,
#c-header .c-nav li.on>a:before,
#c-header .c-nav li:hover>a:before {
  width: 100%;
}

#c-header.c-style2 .c-nav li.on>.c-title-box svg path,
#c-header .c-nav li:hover>.c-title-box svg path {
  fill: #000 !important;
}

#c-header.c-style2 .c-nav li .c-title-box svg path {
  fill: #333;
}

/*顶部移动端导航*/
#c-header .c-nav2 {
  position: absolute;
  top: 0.8rem;
  left: 0;
  width: 100%;
  height: 0;
  line-height: 1rem;
  color: #333;
  background: #fff;
  overflow-y: auto;
  transition: 0.3s;
  text-align: left;
}

#c-header .c-nav2>li:last-child {
  border-bottom: 1px solid #f1f1f1;
}

#c-header .c-nav2 li {
  padding: 0 0.5rem;
  border-top: 1px solid #f1f1f1;
}

@media (max-width: 767px) {
  #c-header .c-nav2 li {
    padding: 0 0.5rem;
  }
}

#c-header .c-nav2 li .c-title-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#c-header .c-nav2 li .c-title-box img,
#c-header .c-nav2 li .c-title-box svg {
  width: 0.3rem;
  height: 0.3rem;
  transition: all 0.3s;
}

#c-header .c-nav2 li .c-title-box img path,
#c-header .c-nav2 li .c-title-box svg path {
  fill: #333;
}

#c-header .c-nav2 li .c-title-box.on img,
#c-header .c-nav2 li .c-title-box.on svg {
  transform: rotate(90deg);
}

#c-header .c-nav2 li a {
  color: #333;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

#c-header .c-nav2 li a:hover,
#c-header .c-nav2 li.on>a {
  color: #000;
}

#c-header .c-nav2 li ul {
  display: none;
}

.c-open #c-header .c-nav2 {
  height: calc(100vh - 1rem);
}

/*顶部导航开关*/
#c-header .c-switch {
  position: relative;
  display: none;
  width: 0.3rem;
  height: 0.3rem;
  cursor: pointer;
}

@media (max-width: 991px) {
  #c-header .c-switch {
    display: block;
  }

  #c-header .home {
    display: none;
  }
}

#c-header .c-switch i {
  position: absolute;
  left: 0;
  height: 2px;
  width: 100%;
  background: #333;
  transition: all 0.3s;
}

#c-header .c-switch i:nth-child(1) {
  top: 0;
}

#c-header .c-switch i:nth-child(3) {
  bottom: 0;
}

#c-header .c-switch i:nth-child(2) {
  top: 50%;
  margin-top: -1px;
}

#c-header.c-style2 .c-switch i {
  background: #333;
}

body.c-open #c-header .c-switch i:nth-child(2) {
  opacity: 0;
}

body.c-open #c-header .c-switch i:nth-child(1) {
  top: 50%;
  margin-top: -1px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

body.c-open #c-header .c-switch i:nth-child(3) {
  bottom: 50%;
  margin-bottom: -1px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

/* 顶部功能区 */
#c-header .c-gn {
  display: flex;
  align-items: center;
}

@media (max-width: 1260px) {
  #c-header .c-gn {
    display: none;
  }
}

#c-header .c-gn .ztop-language {
  display: flex;
  align-items: center;
  position: relative;
}

#c-header .c-gn .ztop-language .cn1 {
  display: flex;
  align-items: center;
  background-color: #000;
  padding: 0 0.2rem;
  line-height: 0.48rem;
  border-radius: 0.24rem;
}

#c-header .c-gn .ztop-language .cn1 .zcn1 {
  display: flex;
  align-items: center;
}

#c-header .c-gn .ztop-language .cn1 .zcn1 img {
  width: 0.18rem;
  height: 0.18rem;
}

#c-header .c-gn .ztop-language .cn1 .zcn2 {
  margin: 0 0.2rem 0 0.1rem;
  color: #ffffff;
}

#c-header .c-gn .ztop-language .cn1 .zcn3 {
  display: flex;
  align-items: center;
}

#c-header .c-gn .ztop-language .cn1 .zcn3 img {
  width: 0.12rem;
  height: 0.07rem;
}

#c-header .c-gn .ztop-language .cn2 {
  opacity: 0;
  top: 0;
  transition: all 0.5s;
  margin-top: 0.2rem;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  padding: 5px;
  border-radius: 30px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  line-height: 1.5em;
  height: auto;
}

#c-header .c-gn .ztop-language .cn2 .cn3 {
  display: block;
  color: #999;
  text-align: center;
  line-height: 50px;
  height: auto;
  position: relative;
}

#c-header .c-gn .ztop-language .cn2 .cn3::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 60%;
  height: 1px;
  background-color: #e5e5e5;
}

#c-header .c-gn .ztop-language .cn2 .cn3:last-child::before {
  display: none;
}

#c-header .c-gn .ztop-language .cn2 .cn3.on {
  background-color: #000;
  border-radius: 50%;
  color: #fff;
}

#c-header .c-gn .ztop-language .cn2 .cn3.on2::before {
  display: none;
}

#c-header .c-gn .ztop-language .cn2 .cn3:hover {
  background-color: #000;
  border-radius: 50%;
  color: #fff;
}

#c-header .c-gn .ztop-language .cn2 .cn3:hover::before {
  display: none;
}

#c-header .c-gn .ztop-language:hover .cn2 {
  opacity: 1;
  top: 100%;
}

#c-header .c-gn .ztop-search {
  display: flex;
  align-items: center;
  transition: all 0.5s;
  cursor: pointer;
  margin-right: 0.3rem;
}

#c-header .c-gn .ztop-search form {
  padding-left: 0;
  width: auto;
}

#c-header .c-gn .ztop-search .cn1 {
  display: flex;
  align-items: center;
  position: relative;
}

#c-header .c-gn .ztop-search .cn1 img {
  width: 0.24rem;
  height: 0.24rem;
}

#c-header .c-gn .ztop-search .cn1 svg {
  width: 0.24rem;
  height: 0.24rem;
}

#c-header .c-gn .ztop-search .cn1 svg path {
  fill: #333;
  opacity: 1;
}

#c-header .c-gn .ztop-search .cn2 {
  position: absolute;
  right: 100%;
  width: 0;
  visibility: hidden;
  top: 50%;
  transform: translateY(-50%);
  padding: 0 20px;
  height: 100%;
  line-height: 0.65rem;
  transition: all 0.3s;
  background-color: #fff;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

#c-header .c-gn .ztop-search .cn2 input {
  line-height: 0.65rem;
}

#c-go-top {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  bottom: 10px;
  right: 10px;
  z-index: 999;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #000;
  cursor: pointer;
}

@media (max-width: 767px) {
  #c-go-top {
    display: none !important;
  }
}

#c-go-top img,
#c-go-top svg {
  width: 50%;
  height: 50%;
  transform: rotate(-90deg);
}

#c-go-top img path,
#c-go-top svg path {
  fill: #ffff;
}

#c-code-pop {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 910;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}

#c-code-pop .c-img-box {
  position: absolute;
  top: 50%;
  left: 50%;
  padding: 20px;
  width: 200px;
  border-radius: 5px;
  background: #fff;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

#c-code-pop .c-img-box .c-close {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  bottom: -60px;
  left: 50%;
  margin-left: -20px;
  cursor: pointer;
  background-color: #fff;
  border-radius: 50%;
  transition: all 0.5s;
}

#c-code-pop .c-img-box .c-close img,
#c-code-pop .c-img-box .c-close svg {
  margin: 4px;
  width: 18px;
  height: 18px;
}

#c-code-pop .c-img-box .c-close img path,
#c-code-pop .c-img-box .c-close svg path {
  fill: #333;
  transition: all 0.5s;
}

#c-code-pop .c-img-box .c-close:hover {
  background-color: #000;
}

#c-code-pop .c-img-box .c-close:hover svg path {
  fill: #fff;
}

#c-code-pop .c-img-box>img {
  width: 100%;
}

#c-code-pop .c-img-box .c-text {
  padding-top: 10px;
  line-height: 1;
  text-align: center;
  color: #333;
}

.textflow {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.textflow2 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.textflow3 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.textflow4 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}

.textflow10 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 10;
  -webkit-box-orient: vertical;
  word-break: break-all;
}

.font68 {
  font-size: 0.68rem;
}

.font60 {
  font-size: 0.6rem;
}

.font54 {
  font-size: 0.54rem;
}

.font40 {
  font-size: 0.4rem;
}

@media (max-width: 991px) {
  .font40 {
    font-size: 0.4rem;
  }
}

.font38 {
  font-size: 0.38rem;
}

@media (max-width: 991px) {
  .font38 {
    font-size: 0.4rem;
  }
}

.font36 {
  font-size: 0.36rem;
  line-height: 1.5em;
}

@media (max-width: 991px) {
  .font36 {
    font-size: 0.4rem;
  }
}

.font32 {
  font-size: 0.32rem;
}

@media (max-width: 991px) {
  .font32 {
    font-size: 0.4rem;
  }
}

.font30 {
  font-size: 0.3rem;
}

@media (max-width: 991px) {
  .font30 {
    font-size: 0.4rem;
  }
}

.font28 {
  font-size: 0.28rem;
}

@media (max-width: 991px) {
  .font28 {
    font-size: 0.4rem;
  }
}

.font26 {
  font-size: 26px;
}

@media (max-width: 1580px) {
  .font26 {
    font-size: 22px;
  }
}

@media (max-width: 991px) {
  .font26 {
    font-size: 0.3rem;
  }
}

.font24 {
  font-size: 24px;
}

@media (max-width: 1580px) {
  .font24 {
    font-size: 22px;
  }
}

@media (max-width: 1260px) {
  .font24 {
    font-size: 16px;
  }
}

@media (max-width: 991px) {
  .font24 {
    font-size: 0.3rem;
  }
}

.font22 {
  font-size: 22px;
  line-height: 1.5em;
}

@media (max-width: 1580px) {
  .font22 {
    font-size: 18px;
  }
}

@media (max-width: 1260px) {
  .font22 {
    font-size: 16px;
  }
}

@media (max-width: 991px) {
  .font22 {
    font-size: 0.3rem;
  }
}

.font20 {
  font-size: 18px;
}

@media (max-width: 1580px) {
  .font20 {
    font-size: 18px;
  }
}

@media (max-width: 1260px) {
  .font20 {
    font-size: 16px;
  }
}

@media (max-width: 991px) {
  .font20 {
    font-size: 0.3rem;
  }
}

.font18 {
  line-height: 1.5em;
  font-size: 18px;
}

@media (max-width: 1580px) {
  .font18 {
    font-size: 16px;
  }
}

@media (max-width: 1260px) {
  .font18 {
    font-size: 16px;
  }
}

@media (max-width: 991px) {
  .font18 {
    font-size: 0.28rem;
  }
}

.font16 {
  font-size: 16px;
}

@media (max-width: 1580px) {
  .font16 {
    font-size: 14px;
  }
}

@media (max-width: 991px) {
  .font16 {
    font-size: 0.18rem;
  }
}

.font14 {
  font-size: 14px;
}

@media (max-width: 1580px) {
  .font14 {
    font-size: 12px;
  }
}

@media (max-width: 991px) {
  .font14 {
    font-size: 0.24rem;
  }
}

.font12 {
  font-size: 12px;
}

.font-b {
  font-weight: bold;
}

.public-line {
  width: 100%;
  height: 6px;
  position: relative;
}

.public-line::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: #999;
}

.public-line::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 2px;
  height: 6px;
  transform: rotate(30deg);
  background-color: #999;
}

.public-line span {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}

.public-line span::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: #000;
  transition: all 0.3s;
  transition-delay: 0.1s;
}

.public-line span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 2px;
  height: 0;
  transform: rotate(30deg) translateY(-6px);
  background-color: #000;
  transition: all 0.1s;
}

.footer {
  background-color: #000000;
  position: relative;
}

.footer .bg {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
}

.footer .bg img {
  width: 100%;
  object-fit: cover;
}

.footer .container {
  padding-top: 0.7rem;
  position: relative;
  z-index: 2;
}

.footer .container .whatsapp {
  text-align: center;
  padding: 0.3rem 0.3rem;
  width: 50%;
  display: flex;
  justify-content: space-between;
  color: white;
  margin: 0 auto;
  font-size: 13px;
}

.footer .container .whatsapp img {
  width: 0.3rem;
}

@media (max-width: 991px) {
  .footer .container .whatsapp {
    width: 100%;
  }
}



.footer .container .box {
  padding: 0.4rem 0;
  justify-content: space-between;
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer .container .box .left .cn1 img {
  width: 1.35rem;
  height: 0.36rem;
}

@media (max-width: 991px) {
  .footer .container .box .left .cn1 img {
    width: 1.2rem;
    height: 0.76rem;
  }
}

.footer .container .box .right {
  display: flex;
  flex-wrap: wrap;
}

.footer .container .box .right .cn2 {
  margin-left: 0.22rem;
  width: 0.48rem;
  height: 0.48rem;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s;
}

@media (max-width: 991px) {
  .footer .container .box .right .cn2 {
    width: 0.7rem;
    height: 0.7rem;
  }
}

.footer .container .box .right .cn2 img {
  height: 0.18rem;
}

@media (max-width: 991px) {
  .footer .container .box .right .cn2 img {
    height: 0.36rem;
  }
}

.footer .container .box .right .cn2 svg {
  width: auto;
  height: 0.18rem;
}

@media (max-width: 991px) {
  .footer .container .box .right .cn2 svg {
    height: 0.36rem;
  }
}

.footer .container .box .right .cn2 svg path {
  transition: all 0.4s;
  fill: #333;
  opacity: 1;
  stroke: none;
}

.footer .container .box .right .cn2:hover {
  background-color: #000;
}

.footer .container .box .right .cn2:hover svg path {
  fill: #Fff;
}

.footer .container .box2 {
  padding: 0.2rem 0;
  display: flex;
  flex-wrap: wrap;
}

.footer .container .box2 .left {
  width: 58%;
}

@media (max-width: 991px) {
  .footer .container .box2 .left {
    display: none;
  }
}

.footer .container .box2 .left .cn1 {
  display: flex;
  flex-wrap: wrap;
}

.footer .container .box2 .left .cn1 .cn2 {
  padding-top: 0.3rem;
  margin-right: 0.7rem;
}

.footer .container .box2 .left .cn1 .cn2 .cn3 {
  color: #ffffff;
  line-height: 1.4em;
  display: block;
}

.footer .container .box2 .left .cn1 .cn2 .cn4 {
  margin-top: 0.25rem;
}

.footer .container .box2 .left .cn1 .cn2 .cn4 .cn5 {
  margin-bottom: 0.1rem;
}

.footer .container .box2 .left .cn1 .cn2 .cn4 .cn5 .cn6 {
  color: #aaaaaa;
  line-height: 1.25em;
  margin-bottom: 0.08rem;
  transition: all 0.4s;
}

.footer .container .box2 .left .cn1 .cn2 .cn4 .cn5 .cn6:hover {
  color: #fff;
}

.footer .container .box2 .right {
  padding: 0.25rem 1rem 0.25rem 0.25rem;
  width: 34.6875%;
  position: relative;
}

@media (max-width: 991px) {
  .footer .container .box2 .right {
    width: 100%;
    padding: 0.2rem 0;
    /* display: flex; */
    /* flex-wrap: wrap; */
  }
}

.footer .container .box2 .right::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: calc(100% - 0.5rem);
  background-color: rgba(255, 255, 255, 0.1);
}

@media (max-width: 991px) {
  .footer .container .box2 .right::before {
    display: none;
  }
}

@media (max-width: 767px) {
  .footer .container .box2 .right .box4 {
    width: 100%;
  }
}

.footer .container .box2 .right .box4:nth-child(1) {
  padding-top: 0.2rem;
  margin-bottom: 0.5rem;
}

@media (max-width: 991px) {
  .footer .container .box2 .right .box4:nth-child(1) {
    padding-top: 0;
    margin-bottom: 0;
  }
}

@media (max-width: 767px) {
  .footer .container .box2 .right .box4:nth-child(1) {
    margin-bottom: 0.5rem;
  }
}

@media (max-width: 991px) {}

.footer .container .box2 .right .box4 .cn8 {
  margin-top: 0.2rem;
  line-height: 1.75em;
  color: #aaa;
}

.footer .container .box2 .right .box4 .cn8 span {
  color: #fff;
}

.footer .container .box2 .right .box4 .cn9 img {
  width: 0.2rem;
  height: 0.25rem;
}

@media (max-width: 991px) {
  .footer .container .box2 .right .box4 .cn9 img {
    width: 0.3rem;
    height: 0.37rem;
  }
}

.footer .container .box3 {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.3rem 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

@media (max-width: 991px) {
  .footer .container .box3 {
    justify-content: center;
  }
}

.footer .container .box3 .left {
  color: #aaaaaa;
  line-height: 1em;
}

@media (max-width: 991px) {
  .footer .container .box3 .left {
    width: 100%;
    text-align: center;
  }
}

.footer .container .box3 .left a {
  color: #aaaaaa;
  line-height: 1em;
}

.footer .container .box3 .right {
  display: flex;
  flex-wrap: wrap;
}

@media (max-width: 991px) {
  .footer .container .box3 .right {
    margin-top: 0.2rem;
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}

.footer .container .box3 .right .cn2 {
  margin-left: 0.3rem;
  color: #aaa;
  line-height: 1em;
  transition: all 0.4s;
}

@media (max-width: 991px) {
  .footer .container .box3 .right .cn2 {
    margin: 0 0.15rem;
  }
}

.footer .container .box3 .right .cn2:hover {
  color: #fff;
}

.public-btnblack {
  color: #ffffff;
  background-color: #000;
  line-height: 0.6rem;
  border-radius: 0.3rem;
  text-align: center;
  padding: 0 0.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #000;
  overflow: hidden;
}

.public-btnblack img {
  margin-left: 0.1rem;
  width: 7px;
  height: 11px;
}

.public-btnblack svg {
  margin-left: 0.1rem;
  width: 7px;
  height: 11px;
}

.public-btnblack svg path {
  fill: #fff;
  opacity: 1;
  stroke: none;
  transition: all 0.4s;
}

.public-btnblack:hover svg path {
  fill: #000;
}

.public-btnwhite {
  color: #000;
  background-color: #fff;
  line-height: 0.6rem;
  border-radius: 0.3rem;
  text-align: center;
  padding: 0 0.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.public-btnwhite img {
  margin-left: 0.1rem;
  width: 7px;
  height: 11px;
}

.public-btnwhite svg {
  margin-left: 0.1rem;
  width: 7px;
  height: 11px;
}

.public-btnwhite svg path {
  fill: #000;
  opacity: 1;
  stroke: none;
}

.public-btntransparent {
  color: #ffffff;
  background-color: transparent;
  border-radius: 0.3rem;
  text-align: center;
  padding: 0 0.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.public-btntransparent img {
  margin-left: 0.1rem;
  width: 7px;
  height: 11px;
}

.public-btntransparent svg {
  margin-left: 0.1rem;
  width: 7px;
  height: 11px;
  transition: all 0.4s;
}

.public-btntransparent svg path {
  fill: #fff;
  opacity: 1;
  stroke: none;
}

.public-btntransparent:hover svg {
  transform: translateX(5px);
}

.publicpage {
  position: absolute;
  bottom: 0.5rem !important;
  width: 100%;
  left: 0;
  text-align: center;
  z-index: 3;
}

.publicpage .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  border-radius: 6px;
  background-color: #ffffff;
  opacity: 0.4;
  transition: all 0.4s;
}

.publicpage .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 38px;
  opacity: 1;
}

.publicnext {
  position: absolute;
  right: 0%;
  top: 50%;
  width: 1.5rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-50%);
  z-index: 4;
  cursor: pointer;
}

.publicnext img {
  width: 18px;
  height: 30px;
}

.publicprev {
  position: absolute;
  left: 0%;
  top: 50%;
  width: 1.5rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-50%);
  z-index: 4;
  cursor: pointer;
}

.publicprev img {
  transform: rotate(180deg);
  width: 18px;
  height: 30px;
}

@media (max-width: 991px) {
  .publicnext {
    display: none;
  }

  .publicprev{
    display: none;
  }

}

/**********************************00-01 首页**********************************/
.index-banner {
  overflow: hidden;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  z-index: -5;
}

@media (max-width: 991px) {
  .index-banner {
    margin-top: 0;
  }
}

.index-banner .index-bannera1 {
  position: relative;
  overflow: hidden;
}

.index-banner .index-bannera1 .swiper-slide {
  width: 100%;
  height: 100vh;
}

.index-banner .index-bannera1 .swiper-slide .img99 {
  width: 100%;
  height: 100%;
}

.index-banner .index-bannera1 .swiper-slide .img99 img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

@media (max-width: 991px) {
  .index-banner .index-bannera1 .swiper-slide .img99 img.pc-img {
    display: none;
  }
}

.index-banner .index-bannera1 .swiper-slide .img99 img.mb-img {
  display: none;
}

@media (max-width: 991px) {
  .index-banner .index-bannera1 .swiper-slide .img99 img.mb-img {
    display: block;
  }
}

.index-banner .index-bannera1 .serieprev {
  width: 0.6rem;
  height: 1rem;
  transition: all 0.4s;
}

.index-banner .index-bannera1 .serieprev:hover {
  background-color: rgba(0, 0, 0, 0.3);
}

.index-banner .index-bannera1 .serienext {
  width: 0.6rem;
  height: 1rem;
  transition: all 0.4s;
}

.index-banner .index-bannera1 .serienext:hover {
  background-color: rgba(0, 0, 0, 0.3);
}

.index-product {
  margin-top: 0.2rem;
}

.index-product .box1 {
  position: sticky;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  /* padding: 0 0.2rem; */
  overflow: hidden;
  display: block;
}

.index-product .box1 .img {
  width: 100%;
  height: 100vh;
}

.index-product .box1 .img img.pc-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 991px) {
  .index-product .box1 .img img.pc-img {
    display: none;
  }
}

.index-product .box1 .img img.mb-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: none;
}

@media (max-width: 991px) {
  .index-product .box1 .img img.mb-img {
    display: block;
  }

  .index-product .box1 {
    width: 100%;
    height: calc(100vw * 1.112);
  }
}

.index-product .box1 .text {
  transition: all 0.4s;
  z-index: 3;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  opacity: 1;
}

.index-product .box1 .text .cn1 {
  padding-top: 1.2rem;
  text-align: center;
  color: #ffffff;
  line-height: 1.3em;
}

.index-product .box1 .text .cn2 {
  margin-top: 0.16rem;
  text-align: center;
  color: #ffffff;
  line-height: 0.73529412em;
}

@media (max-width: 991px) {
  .index-product .box1 .text .cn2 {
    line-height: 1em;
  }
}

.index-product .box1 .text .cn3 {
  text-align: center;
  color: #ffffff;
  line-height: 1.625em;
  margin-top: 0.16rem;
}

.index-product .box1 .text .box9 {
  margin-top: 0.2rem;
}

.index-product .box1 .text .box9:hover .public-btntransparent svg {
  transform: translateX(10px) !important;
}

.story .img-pc {
  display: block;
}

.story .img-mb {
  display: none;
}

@media (max-width: 991px) {
  .story .img-pc {
    display: none;
  }

  .story .img-mb {
    display: block;
    width: 100%;
  }
}


.index-series {
  background-color: #Fff;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  width: 100%;
  overflow: hidden;
}

@media (max-width: 991px) {
  .index-series {
    display: none;
  }
}

.index-series .index-seriesa1 {
  max-width: 1440px;
  width: 80%;
  margin: 0 auto;
  position: relative;
}

@media (max-width: 991px) {
  .index-series .index-seriesa1 {
    width: 100%;
  }
}

.index-series .index-seriesa1 .swiper-wrapper .swiper-slide {
  position: relative;
  overflow: hidden;
}

.index-series .index-seriesa1 .swiper-wrapper .swiper-slide.ani-slide .text {
  opacity: 1;
  transform: translateY(0);
}

.index-series .index-seriesa1 .swiper-wrapper .swiper-slide .img::before {
  padding-top: 50%;
}

@media (max-width: 991px) {
  .index-series .index-seriesa1 .swiper-wrapper .swiper-slide .img::before {
    padding-top: 100%;
  }
}

.index-series .index-seriesa1 .swiper-wrapper .swiper-slide .img .pc-video {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
  display: block;
  z-index: 5;
}

.index-series .index-seriesa1 .swiper-wrapper .swiper-slide .img .mb-img {
  display: none;
}

.index-series .index-seriesa1 .swiper-wrapper .swiper-slide .img::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.1);
  z-index: 7;
}

.index-series .index-seriesa1 .swiper-wrapper .swiper-slide .text {
  transition: all 0.4s;
  z-index: 3;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  opacity: 0;
  transform: translateY(0.6rem);
}

.index-series .index-seriesa1 .swiper-wrapper .swiper-slide .text .cn1 {
  padding-top: 0.55rem;
  text-align: center;
  color: #ffffff;
  line-height: 1.3em;
}

.index-series .index-seriesa1 .swiper-wrapper .swiper-slide .text .cn2 {
  margin-top: 0.16rem;
  text-align: center;
  color: #ffffff;
  line-height: 0.73529412em;
}

.index-series .index-seriesa1 .swiper-wrapper .swiper-slide .text .cn3 {
  text-align: center;
  color: #ffffff;
  line-height: 1.625em;
  margin-top: 0.16rem;
}

.index-series .index-seriesa1 .swiper-wrapper .swiper-slide .text .box9 {
  margin-top: 0.2rem;
}

.index-series .index-seriesa1 .swiper-wrapper .swiper-slide:hover .img img {
  transform: scale(1.05);
}

.index-series .index-seriesa1 .swiper-wrapper .swiper-slide:hover .text .box9 .public-btntransparent svg {
  transform: translateX(5px);
}

.index-about {
  width: 100%;
  height: 250vh;
}

.index-about .index-abouta0 {
  position: sticky;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  margin-top: -100vh;
  z-index: 9;
  pointer-events: none;
}

.index-about .index-abouta0 .cn12 {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0.25rem;
  z-index: 5;
}

.index-about .index-abouta0 .cn12 .cn13 {
  text-align: center;
  color: #999999;
  line-height: 1.75em;
}

.index-about .index-abouta0 .cn12 .cn14 {
  text-align: center;
}

.index-about .index-abouta1 {
  position: sticky;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
}

.index-about .index-abouta1 .bg {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  z-index: -1;
}

.index-about .index-abouta1 .bg img {
  width: 100%;
}

.index-about .index-abouta2 {
  position: relative;
  z-index: 2;
  margin-top: -100vh;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.index-about .index-abouta2 .cn1 {
  text-align: center;
}

.index-about .index-abouta2 .cn1 img {
  width: 1.18rem;
}

.index-about .index-abouta2 .cn2 {
  margin-top: 0.5rem;
  line-height: 1em;
  text-align: center;
  font-size: 0.98rem;
  color: #000;
}

.index-about .index-about3 {
  position: sticky;
  left: 0;
  top: 0;
  z-index: 3;
}

.index-about .index-about3 .img {
  position: relative;
  text-align: center;
}

.index-about .index-about3 .img img {
  width: 56vw;
}

@media (max-width: 991px) {
  .index-about .index-about3 .img img {
    height: 100vh;
    object-fit: cover;
  }
}

.index-about .index-about3 .img .yinying {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  opacity: 0;
}

.index-about .index-about3 .text {
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9;
  color: #Fff;
  width: 55%;
  margin: 0 auto;
  text-align: center;
  opacity: 0;
  top: 60%;
}

@media (max-width: 991px) {
  .index-about .index-about3 .text {
    width: 90%;
  }
}

.index-about .index-about3 .text .cn8 {
  line-height: 1.21052632em;
}

.index-about .index-about3 .text .box9 {
  margin-top: 0.8rem;
  display: flex;
  justify-content: center;
}

.index-news {
  width: 100%;
  overflow: hidden;
  padding: 1.4rem 0;
  position: relative;
  background-color: #fff;
  z-index: 5;
}

.index-news .cn1 {
  line-height: 1em;
  text-align: center;
  margin-bottom: 1rem;
}

.index-news .box2 .box1 .str4 a {
  margin-right: 0.12rem;
  width: 4.5rem;
  display: inline-block;
}

.index-news .box2 .box1 .str4 a .cn2 {
  border-radius: 0.1rem;
}

.index-news .box2 .box1 .str4 a .cn2::before {
  padding-top: 60.80178174%;
}

.index-news .box2 .box1 .str4 a .font20 {
  text-align: center;
  display: block;
  color: #000000;
  margin-top: 0.23rem;
  line-height: 1.5em;
}

.index-news .box2 .box1 .str4 a:hover .cn2 img {
  transform: scale(1.05);
}

.index-news .box2 .box3 {
  margin-top: 0.4rem;
}

.index-news .box2 .box3 .str5 {
  transform: translateX(2.3rem);
  overflow: initial;
}

.index-news .box2 .box3 .str5 a {
  margin-right: 0.12rem;
  width: 4.5rem;
  display: inline-block;
}

.index-news .box2 .box3 .str5 a .cn2 {
  border-radius: 0.1rem;
}

.index-news .box2 .box3 .str5 a .cn2::before {
  padding-top: 60.80178174%;
}

.index-news .box2 .box3 .str5 a .font20 {
  padding: 0 0.3rem;
  text-align: center;
  display: block;
  color: #000000;
  margin-top: 0.23rem;
  line-height: 1.5em;
}

.index-news .box2 .box3 .str5 a:hover .cn2 img {
  transform: scale(1.05);
}

.index-news .box9 {
  margin-top: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 991px) {
  #c-header {
    height: 0.8rem !important;
  }
}

#c-header .container .c-right-box .c-nav .indextopproductli {
  position: initial;
  line-height: 0.7rem;
  height: 0.7rem;
}

#c-header .container .c-right-box .c-nav .indextopproductli .cn1 {
  line-height: 0.7rem;
}

#c-header .container .c-right-box .c-nav .indextopproductli:hover .indextopproduct {
  display: flex;
  height: 5.1rem;
  opacity: 1;
  visibility: visible;
}

#c-header .container .c-right-box .c-nav .indextopproductli .indextopproduct {
  border-top: 1px solid #e5e5e5;
  display: flex;
  position: absolute;
  top: 0.7rem;
  left: 0;
  width: 100%;
  background-color: #fff;
  height: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s;
}

#c-header .container .c-right-box .c-nav .indextopproductli .indextopproduct .indextopproductleft {
  width: 34.98694517%;
  background-color: #fcf9f9;
  overflow: auto;
}

#c-header .container .c-right-box .c-nav .indextopproductli .indextopproduct .indextopproductleft .tbox1 {
  width: 61.19402985%;
  display: flex;
  align-items: center;
  position: relative;
  height: 25%;
  margin: 0 0 0 auto;
}

#c-header .container .c-right-box .c-nav .indextopproductli .indextopproduct .indextopproductleft .tbox1::before {
  display: block;
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: #000000;
  opacity: 0.1;
  z-index: 2;
}

#c-header .container .c-right-box .c-nav .indextopproductli .indextopproduct .indextopproductleft .tbox1::after {
  display: block;
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
  width: 0;
  height: 100%;
  background-color: #Fff;
  transition: all 0.4s;
}

#c-header .container .c-right-box .c-nav .indextopproductli .indextopproduct .indextopproductleft .tbox1.on {
  background-color: #fff;
}

#c-header .container .c-right-box .c-nav .indextopproductli .indextopproduct .indextopproductleft .tbox1.on::after {
  width: 200%;
}

#c-header .container .c-right-box .c-nav .indextopproductli .indextopproduct .indextopproductleft .tbox1.on .tbox3 {
  right: 0.3rem;
}

#c-header .container .c-right-box .c-nav .indextopproductli .indextopproduct .indextopproductleft .tbox1.on .tbox3 .tcn3 {
  opacity: 1;
}

#c-header .container .c-right-box .c-nav .indextopproductli .indextopproduct .indextopproductleft .tbox1:last-child::before {
  display: none;
}

#c-header .container .c-right-box .c-nav .indextopproductli .indextopproduct .indextopproductleft .tbox1 .tbox2 {
  position: relative;
  z-index: 2;
}

#c-header .container .c-right-box .c-nav .indextopproductli .indextopproduct .indextopproductleft .tbox1 .tbox2 .tcn1 {
  color: #333333;
  line-height: 1.44444444em;
}

#c-header .container .c-right-box .c-nav .indextopproductli .indextopproduct .indextopproductleft .tbox1 .tbox2 .tcn2 {
  line-height: 1.85714286em;
  color: #666;
}

#c-header .container .c-right-box .c-nav .indextopproductli .indextopproduct .indextopproductleft .tbox1 .tbox3 {
  z-index: 3;
  position: absolute;
  right: 0.6rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  transition: all 0.5s;
}

#c-header .container .c-right-box .c-nav .indextopproductli .indextopproduct .indextopproductleft .tbox1 .tbox3 .tcn3 {
  opacity: 0;
  transition: all 0.4s;
  display: flex;
  align-items: center;
}

#c-header .container .c-right-box .c-nav .indextopproductli .indextopproduct .indextopproductcenter {
  overflow: auto;
  width: 21.14882507%;
  padding: 0.2rem 0;
}

#c-header .container .c-right-box .c-nav .indextopproductli .indextopproduct .indextopproductcenter .tbox5 {
  display: none;
}

#c-header .container .c-right-box .c-nav .indextopproductli .indextopproduct .indextopproductcenter .tbox5.on {
  display: block;
  animation: mytop1 0.4s 1 linear forwards;
}

#c-header .container .c-right-box .c-nav .indextopproductli .indextopproduct .indextopproductcenter .tbox5 .tbox4 {
  padding: 0.25rem 0.6rem;
  text-align: left;
  line-height: 1.5em;
}

#c-header .container .c-right-box .c-nav .indextopproductli .indextopproduct .indextopproductcenter .tbox5 .tbox4:last-child {
  padding: 0.25rem 0.6rem 0;
}

#c-header .container .c-right-box .c-nav .indextopproductli .indextopproduct .indextopproductcenter .tbox5 .tbox4 .tcn3 {
  color: #999999;
  line-height: 1.5em;
  position: relative;
  transition: all 0.4s;
}

#c-header .container .c-right-box .c-nav .indextopproductli .indextopproduct .indextopproductcenter .tbox5 .tbox4 .tcn3::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: #000;
  transition: all 0.4s;
}

#c-header .container .c-right-box .c-nav .indextopproductli .indextopproduct .indextopproductcenter .tbox5 .tbox4.on .tcn3 {
  color: #000;
}

#c-header .container .c-right-box .c-nav .indextopproductli .indextopproduct .indextopproductcenter .tbox5 .tbox4.on .tcn3::before {
  width: 100%;
}

#c-header .container .c-right-box .c-nav .indextopproductli .indextopproduct .indextopproductright {
  width: 70%;
}

#c-header .container .c-right-box .c-nav .indextopproductli .indextopproduct .indextopproductright .timg {
  width: 100%;
  height: 100%;
  display: block;
}

@keyframes mytop1 {
  from {
    opacity: 0;
    transform: translateY(0.6rem);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes mytop2 {
  from {
    opacity: 0;
    transform: translateY(0.6rem);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#c-header .container .c-right-box .c-nav li .cn1 {
  position: relative;
}

#c-header .container .c-right-box .c-nav li .current {
  color: #8733FF;
}

#c-header .container .c-right-box .c-nav li .cn1::before {
  display: block;
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0 !important;
  height: 2px;
  background-color: #000;
}

#c-header .container .c-right-box .c-nav li:hover .cn1::before {
  width: 100% !important;
}

.ztop-search2 {
  background-color: #fff;
  width: 100%;
  padding-top: 0.7rem;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 55;
  display: none;
}

.ztop-search2 .close {
  position: absolute;
  right: 0.3rem;
  top: 0.3rem;
  cursor: pointer;
}

.ztop-search2 .container {
  display: block !important;
}

.ztop-search2 .container .tbox6 {
  width: 100%;
  position: relative;
  margin-bottom: 0.5rem;
  line-height: 1em;
}

.ztop-search2 .container .tbox6 input {
  width: 100%;
  color: #999999;
}

.ztop-search2 .container .tbox6 button {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.ztop-search2 .container .tbox7 {
  border-top: 1px solid #000;
  padding: 0.4rem 0;
  display: flex;
  flex-wrap: wrap;
  line-height: 1.44444444em;
}

.ztop-search2 .container .tbox7 .tcn4 {
  color: #333333;
  margin-right: 10px;
}

.ztop-search2 .container .tbox7 .tcn5 {
  color: #999999 !important;
  transition: all 0.4s;
}

.ztop-search2 .container .tbox7 .tcn5:hover {
  color: #000 !important;
}

.product-nav {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.product-nav.info-banner .container {
  height: auto;
  justify-content: flex-start;
}

.product-nav.info-banner .container .Breadcrumbs {
  position: relative;
}

.product-nav.info-banner .container .Breadcrumbs .icons svg path {
  fill: #999;
}

.product-nav.info-banner .container .Breadcrumbs a {
  color: #999;
}

.product-nav.info-banner .container .Breadcrumbs i svg path {
  fill: #999;
}

.product-nav2 {
  z-index: 10;
  position: relative;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.product-nav2 .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.product-nav2 .container .box1 {
  width: 85%;
  margin: 0.3rem 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

@media (max-width: 991px) {
  .product-nav2 .container .box1 {
    width: 100%;
  }
}

.product-nav2 .container .box1 .box1a {
  position: relative;
  width: 32.35294118%;
}

@media (max-width: 767px) {
  .product-nav2 .container .box1 .box1a {
    margin-top: 0.2rem;
    width: 100%;
  }
}

.product-nav2 .container .box1 .box1a .cn2 {
  width: 100%;
  border-radius: 0.3rem;
  background-color: #f8f8f8;
  line-height: 0.6rem;
  display: block;
  position: relative;
  color: #999999;
  padding: 0 0.25rem;
}

@media (max-width: 991px) {
  .product-nav2 .container .box1 .box1a .cn2 {
    line-height: 0.76rem;
  }
}

.product-nav2 .container .box1 .box1a .cn2 img {
  z-index: 3;
  position: absolute;
  right: 0.25rem;
  top: 50%;
  transform: translateY(-50%);
}

.product-nav2 .container .box1 .box1a .cn5 {
  position: absolute;
  width: 100%;
  left: 0;
  top: 100%;
  padding-top: 0.1rem;
  display: none;
}

.product-nav2 .container .box1 .box1a .cn5.on {
  display: none !important;
}

.product-nav2 .container .box1 .box1a .cn3 {
  overflow: hidden;
  background-color: #fff;
  box-shadow: 0px 5px 20px 0px rgba(5, 130, 87, 0.08);
  border-radius: 0.3rem;
  border: solid 1px #ededed;
  width: 100%;
}

.product-nav2 .container .box1 .box1a .cn3 .cn4 {
  padding: 0 0.25rem;
  display: block;
  line-height: 0.54rem;
  position: relative;
  color: #999999;
  transition: all 0.4s;
}

.product-nav2 .container .box1 .box1a .cn3 .cn4::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 1px;
  background-color: #ededed;
  opacity: 0;
  transition: all 0.4s;
}

.product-nav2 .container .box1 .box1a .cn3 .cn4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: #ededed;
  opacity: 0;
  transition: all 0.4s;
}

.product-nav2 .container .box1 .box1a .cn3 .cn4:hover {
  background-color: #f8f8f8;
  color: #000000;
}

.product-nav2 .container .box1 .box1a .cn3 .cn4:hover::before {
  opacity: 1;
}

.product-nav2 .container .box1 .box1a .cn3 .cn4:hover::after {
  opacity: 1;
}

.product-nav2 .container .box2 {
  margin: 0.3rem 0;
  width: 13.75%;
}

@media (max-width: 991px) {
  .product-nav2 .container .box2 {
    width: 100%;
  }
}

.product-nav2 .container .box2 .cn1 {
  display: block;
  width: 100%;
  line-height: 0.6rem;
  background-color: #000;
  border-radius: 0.3rem;
  color: #fff;
  text-align: center;
}

@media (max-width: 991px) {
  .product-nav2 .container .box2 .cn1 {
    line-height: 0.76rem;
  }
}

.product-nav3 {
  left: 0;
  top: 0;
  background-color: #fff;
  z-index: 30;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.product-nav3 .container {
  display: flex;
  flex-wrap: wrap;
}

.product-nav3 .container .cn1 {
  padding: 0.3rem 0;
  margin-right: 0.8rem;
  color: #999999;
  position: relative;
  transition: all 0.4s;
}

.product-nav3 .container .cn1:hover {
  color: #000;
}

@media (max-width: 991px) {
  .product-nav3 .container .cn1 {
    margin-right: 0.4rem;
  }
}

.product-nav3 .container .cn1::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  transition: all 0.4s;
  background-color: #000;
}

@media (max-width: 991px) {
  .product-nav3 .container .cn1::before {
    display: none;
  }
}

.product-nav3 .container .cn1.on {
  color: #000;
}

.product-nav3 .container .cn1.on::before {
  width: 100%;
}

.product-nav4 {
  left: 0;
  top: 0;
  background-color: #fff;
  z-index: 30;
}

.product-nav4 .container {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.product-nav4 .container .cn1 {
  padding: 0.3rem 0;
  margin-right: 1.4rem;
  color: #000000;
  position: relative;
  transition: all 0.4s;
}

@media (max-width: 991px) {
  .product-nav4 .container .cn1 {
    margin-right: 0.4rem;
  }
}

.product-box .product-box2 {
  background-color: #fff;
  padding: 1.2rem 0 0.8rem;
}

.product-box .product-box2.product-box99 {
  padding: 0.45rem 0 0.8rem;
}

.product-box .product-box2:nth-child(even) {
  background-color: #fbfbfb;
}

.product-box .product-box2 .textbox .cn1 {
  line-height: 1em;
  color: #000000;
  text-align: center;
}

.product-box .product-box2 .textbox .cn2 {
  margin: 0.15rem 0 0.3rem;
  color: #999999;
  text-align: center;
  line-height: 2em;
}

.product-box .product-box2 .container .listbox {
  display: flex;
  flex-wrap: wrap;
  width: calc(100% + 0.2rem);
  margin: 0 -0.1rem;
}

.product-box .product-box2 .container .listbox .box {
  width: calc(25% - 0.2rem);
  margin: 0 0.1rem 0.8rem;
}

@media (max-width: 991px) {
  .product-box .product-box2 .container .listbox .box {
    width: calc(50% - 0.2rem);
  }
}

.product-box .product-box2 .container .listbox .box .imgbox {
  display: block;
  width: 100%;
  position: relative;
  overflow: hidden;
  background-color: #f8f8f8;
}

.product-box .product-box2 .container .listbox .box .imgbox .swiper-slide {
  width: 100%;
}

.product-box .product-box2 .container .listbox .box .imgbox .img {
  width: 100%;
}

.product-box .product-box2 .container .listbox .box .imgbox .img::before {
  padding-top: 124.67532468%;
}

.product-box .product-box2 .container .listbox .box .imgbox .img video {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
}

@media (max-width: 991px) {
  .product-box .product-box2 .container .listbox .box .imgbox .img video {
    display: none;
  }
}

.product-box .product-box2 .container .listbox .box .imgbox .img .pc-img {
  display: block;
}

@media (max-width: 991px) {
  .product-box .product-box2 .container .listbox .box .imgbox .img .pc-img {
    display: none;
  }
}

.product-box .product-box2 .container .listbox .box .imgbox .img .mb-img {
  display: none;
}

@media (max-width: 991px) {
  .product-box .product-box2 .container .listbox .box .imgbox .img .mb-img {
    display: block;
  }
}

.product-box .product-box2 .container .listbox .box .imgbox .img:hover img {
  transform: scale(1.05);
}

.product-box .product-box2 .container .listbox .box .imgbox .swiper-pagination {
  bottom: 0.4rem;
}

@media (max-width: 991px) {
  .product-box .product-box2 .container .listbox .box .imgbox .swiper-pagination {
    bottom: 0.2rem;
  }
}

.product-box .product-box2 .container .listbox .box .imgbox .swiper-pagination-bullet {
  width: 16px;
  height: 16px;
  border: 1px solid transparent;
  background-color: transparent;
  opacity: 1;
  position: relative;
  transition: all 0.4s;
}

.product-box .product-box2 .container .listbox .box .imgbox .swiper-pagination-bullet::before {
  transition: all 0.4s;
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.1);
}

.product-box .product-box2 .container .listbox .box .imgbox .swiper-pagination-bullet.swiper-pagination-bullet-active {
  border: 1px solid rgba(0, 0, 0, 0.2);
}

.product-box .product-box2 .container .listbox .box .imgbox .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  background-color: #000;
}

.product-box .product-box2 .container .listbox .box .textbox2 .cn3 {
  display: block;
  line-height: 1.33333333em;
  color: #000000;
  margin: 0.3rem 0 0.2rem;
}

.product-box .product-box2 .container .listbox .box .textbox2 .cn4 {
  color: #666;
  line-height: 1.625em;
}

.product-box .product-box2 .container .listbox .box .textbox2 .cn4.on {
  -webkit-line-clamp: initial;
}

.product-box .product-box2 .container .listbox .box .textbox2 .cn5 {
  color: #000000;
}

.product-box .product-box2 .container .listbox .box .textbox2 .cn5.on {
  display: none;
}

.product-box .product-box2 .container .listbox .box .textbox2 .cn6 {
  display: block;
  text-decoration: underline;
  margin-top: 0.22rem;
  color: #000000;
  line-height: 1.625em;
  color: #000;
}

.product-box .product-box2 .container .listbox .box.tuijian {
  width: calc(50% - 0.2rem);
}

@media (max-width: 991px) {
  .product-box .product-box2 .container .listbox .box.tuijian {
    width: calc(100% - 0.2rem);
  }
}

.product-box .product-box2 .container .listbox .box.tuijian .imgbox .img::before {
  padding-top: 60.75949367%;
}

.product-info1 {
  position: relative;
  z-index: 89;
}

.product-info1 .product-info1-banner {
  height: calc(100vh - 1rem);
  position: relative;
  z-index: 5;
  width: 100%;
  left: 0;
  top: 0;
}

.product-info1 .product-info1-banner .text {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
}

.product-info1 .product-info1-banner .text .cn1 {
  text-align: center;
  color: #Fff;
  font-size: 0.68rem;
  line-height: 1.02941176em;
}

.product-info1 .product-info1-banner .text .cn2 {
  text-align: center;
  color: #fff;
  line-height: 0.32rem;
}

.product-info1 .product-info1-banner .img {
  width: 100%;
  height: 100%;
}

.product-info1 .product-info1-banner .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 991px) {
  .product-info1 .product-info1-banner .img img.pc-img {
    display: none;
  }
}

.product-info1 .product-info1-banner .img img.mb-img {
  display: none;
}

@media (max-width: 991px) {
  .product-info1 .product-info1-banner .img img.mb-img {
    display: block;
  }
}

.product-info1 .product-info1-banner .img video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 991px) {
  .product-info1 .product-info1-banner .img video {
    display: none;
  }
}

.product-info1 .product-info1-banner .scroll {
  position: absolute;
  bottom: 0.3rem;
  left: 50%;
  transform: translateX(-50%);
}

.product-info1 .product-info1-banner .scroll .cn3 {
  color: #fff;
  text-align: center;
  margin-top: 0.15rem;
  animation: scrollanimation 2s linear infinite;
}

.product-info1 .product-info1-banner .scroll .cn4 {
  line-height: 1em;
  margin-top: 0.15rem;
  color: #fff;
  text-align: center;
}

.product-info1 .product-info1-banner .info-banner {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 5;
  z-index: 1;
}

.product-info1 .product-info1-banner .info-banner .img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.product-info1 .product-info1-banner .info-banner .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 991px) {
  .product-info1 .product-info1-banner .info-banner .img img.pc {
    display: none;
  }
}

.product-info1 .product-info1-banner .info-banner .img img.mb {
  display: none;
}

@media (max-width: 991px) {
  .product-info1 .product-info1-banner .info-banner .img img.mb {
    display: block;
  }
}

.product-info1 .product-info1-banner .info-banner .container {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}

.product-info1 .product-info1-banner .info-banner .container .Breadcrumbs {
  display: flex;
  align-items: center;
  padding: 0.25rem 0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.product-info1 .product-info1-banner .info-banner .container .Breadcrumbs .icons {
  width: 16px;
  height: 16px;
  display: flex;
  margin-right: 0.1rem;
}

.product-info1 .product-info1-banner .info-banner .container .Breadcrumbs .icons svg {
  width: 100%;
  height: 100%;
}

.product-info1 .product-info1-banner .info-banner .container .Breadcrumbs .icons svg path {
  fill: #fff;
}

.product-info1 .product-info1-banner .info-banner .container .Breadcrumbs a {
  margin-right: 0.1rem;
  color: #fff;
  transition: all 0.4s;
}

.product-info1 .product-info1-banner .info-banner .container .Breadcrumbs i {
  width: 8px;
  height: 11px;
  display: flex;
  margin-right: 0.1rem;
}

.product-info1 .product-info1-banner .info-banner .container .Breadcrumbs i svg path {
  fill: #fff;
}

.product-info1 .product-info1-banner .info-banner .container .Breadcrumbs span {
  color: #fff;
}

.productinfo1a {
  padding-top: 1rem;
  width: 100%;
  padding-top: 18vh;
  background-color: #fafafa;
  padding-bottom: 25vh;
}

@media (max-width: 767px) {
  .productinfo1a {
    padding: 18vh 0 1rem;
  }
}

.productinfo1a .container {
  display: flex;
  align-items: flex-end;
}

.productinfo1a .container .left {
  width: 50%;
}

@media (max-width: 991px) {
  .productinfo1a .container .left {
    width: 100%;
  }
}

.productinfo1a .container .left .cn0 {
  text-align: center;
}

.productinfo1a .container .left .cn0 .mbmbimg {
  display: none;
}

@media (max-width: 991px) {
  .productinfo1a .container .left .cn0 .mbmbimg {
    display: block;
    margin: 0 auto 1rem;
    width: 2.76rem;
  }
}

.productinfo1a .container .left .cn1 {
  color: #111111;
  line-height: 1.2rem;
  display: flex;
  width: 100%;
  position: relative;
  padding-bottom: 0.5rem;
}

.productinfo1a .container .left .cn1::before {
  content: "";
  left: 0;
  bottom: 0.3rem;
  position: absolute;
  width: 0.4rem;
  height: 5px;
  background-color: #000;
}

.productinfo1a .container .left .cn1 .cn2 {
  font-size: 0.98rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: auto;
  -webkit-background-clip: text;
  background-color: #333;
  -webkit-text-fill-color: transparent;
}

.productinfo1a .container .left .cn3 {
  color: #000000;
  line-height: 1.3em;
}

.productinfo1a .container .left .cn4 {
  margin-top: 0.2rem;
  padding-left: 0.25rem;
}

.productinfo1a .container .left .cn4 .cn5 {
  list-style: disc;
  color: #666666;
  line-height: 1.5em;
}

.productinfo1a .container .left .cn6 {
  display: flex;
  flex-wrap: wrap;
  margin-top: 0.2rem;
}

@media (max-width: 767px) {
  .productinfo1a .container .left .cn6 {
    justify-content: space-between;
  }
}

.productinfo1a .container .left .cn6 .cn7 {
  margin-top: 0.5rem;
  margin-right: 1.5rem;
}

@media (max-width: 767px) {
  .productinfo1a .container .left .cn6 .cn7 {
    margin-right: 0;
  }
}

.productinfo1a .container .left .cn6 .cn7 .cn8 {
  line-height: 1em;
  position: relative;
}

.productinfo1a .container .left .cn6 .cn7 .cn8 .num {
  font-size: 0.68rem;
  color: #000;
}

.productinfo1a .container .left .cn6 .cn7 .cn8 .cn8a {
  color: #000;
}

.productinfo1a .container .left .cn6 .cn7 .cn8 .cn8b {
  position: absolute;
  right: 0;
  top: 0;
}

.productinfo1a .container .left .cn6 .cn7 .cn9 {
  color: #000000;
}

.productinfo1a .container .right {
  width: 50%;
  display: flex;
  justify-content: center;
}

@media (max-width: 991px) {
  .productinfo1a .container .right {
    display: none;
  }
}

.productinfo1a .container .right .cn1 {
  width: 4.46rem;
  height: 4.46rem;
  border-radius: 50%;
  position: relative;
}

.productinfo1a .container .right .cn1 .bgimg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.productinfo1a .container .right .cn1 .yuan1 {
  width: 0.68rem;
  height: 0.68rem;
  border-radius: 50%;
  position: absolute;
  right: -1.38rem;
  bottom: 1rem;
  animation: yundong1 2s linear infinite;
}

.productinfo1a .container .right .cn1 .yuan2 {
  width: 0.39rem;
  height: 0.39rem;
  border-radius: 50%;
  position: absolute;
  left: -1.54rem;
  bottom: 2.36rem;
  animation: yundong1 2s linear infinite;
}

.productinfo1a .container .right .cn1 .yuan3 {
  width: 0.2rem;
  height: 0.2rem;
  border-radius: 50%;
  position: absolute;
  right: 0;
  top: 0;
  animation: yundong1 2s linear infinite;
}

.productinfo1a .container .right .cn1 .yuan4 {
  width: 0.2rem;
  height: 0.2rem;
  border-radius: 50%;
  position: absolute;
  left: 0;
  bottom: 0;
  animation: yundong1 2s linear infinite;
}

@keyframes yundong1 {
  0% {
    transform: translateY(10%);
  }

  50% {
    transform: translateY(0%);
  }

  100% {
    transform: translateY(10%);
  }
}

.productinfo1b {
  background-color: #fafafa;
  padding-top: 8vh;
  padding-bottom: 2.3rem;
}

@media (max-width: 767px) {
  .productinfo1b .container {
    width: 100%;
  }
}

.productinfo1b .container .cn1 {
  text-align: center;
  color: #000000;
  line-height: 7vh;
  opacity: 0;
}

@media (max-width: 991px) {
  .productinfo1b .container .cn1 {
    opacity: 1 !important;
  }
}

.productinfo1b .container .productinfo1c {
  margin-top: 14vh;
  position: relative;
}

@media (max-width: 991px) {
  .productinfo1b .container .productinfo1c {
    margin-top: 1rem;
  }
}

.productinfo1b .container .productinfo1c::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 100%;
  top: 0;
  z-index: 4;
  background-color: #fafafa;
}

.productinfo1b .container .productinfo1c::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  right: 100%;
  top: 0;
  z-index: 4;
  background-color: #fafafa;
}

.productinfo1b .container .productinfo1c .productinfo1g {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}

@media (max-width: 991px) {
  .productinfo1b .container .productinfo1c .productinfo1g {
    display: none;
  }
}

.productinfo1b .container .productinfo1c .productinfo1g .swiper-wrapper {
  justify-content: center;
}

.productinfo1b .container .productinfo1c .productinfo1g .swiper-wrapper .swiper-slide {
  width: calc(513/1600*100%);
}

.productinfo1b .container .productinfo1c .swiper-slide.teshu {
  left: 25%;
}

.productinfo1b .container .productinfo1c .swiper-slide.teshu .img {
  transform: rotate3d(1, 1, 1, -40deg);
}

.productinfo1b .container .productinfo1c .swiper-slide .imgbox {
  margin: 0 auto;
  width: 81.87134503%;
  position: relative;
}

.productinfo1b .container .productinfo1c .swiper-slide .imgbox .bg {
  position: absolute;
  width: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  aspect-ratio: 1/1;
  background-color: #eae9e9;
  border-radius: 50%;
  transition: all 0.4s;
  opacity: 0;
}

.productinfo1b .container .productinfo1c .swiper-slide .img {
  margin: 0 auto;
  width: 65.71428571%;
}

.productinfo1b .container .productinfo1c .swiper-slide .img::before {
  padding-top: 151.8115942%;
}

.productinfo1b .container .productinfo1c .swiper-slide .text {
  margin-top: 0.3rem;
  text-align: center;
}

.productinfo1b .container .productinfo1c .swiper-slide:hover .imgbox .bg {
  opacity: 1;
}

.productinfo1b .container .productinfo1c .arrowbox .arrowrleft {
  position: absolute;
  left: -0.79rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 0.79rem;
  height: 0.79rem;
  background-color: #f0f0f0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s;
  overflow: hidden;
}

@media (max-width: 991px) {
  .productinfo1b .container .productinfo1c .arrowbox .arrowrleft {
    display: none;
  }
}

.productinfo1b .container .productinfo1c .arrowbox .arrowrleft svg {
  transform: rotate(180deg);
}

.productinfo1b .container .productinfo1c .arrowbox .arrowrleft svg path {
  fill: #333;
  opacity: 1;
  stroke: none;
  transition: all 0.4s;
}

.productinfo1b .container .productinfo1c .arrowbox .arrowrleft:hover {
  background-color: #000;
}

.productinfo1b .container .productinfo1c .arrowbox .arrowrleft:hover svg path {
  fill: #fff;
}

.productinfo1b .container .productinfo1c .arrowbox .arrowright {
  position: absolute;
  right: -0.79rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 0.79rem;
  height: 0.79rem;
  background-color: #f0f0f0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s;
  overflow: hidden;
}

@media (max-width: 991px) {
  .productinfo1b .container .productinfo1c .arrowbox .arrowright {
    display: none;
  }
}

.productinfo1b .container .productinfo1c .arrowbox .arrowright svg path {
  transition: all 0.4s;
  fill: #333;
  opacity: 1;
  stroke: none;
}

.productinfo1b .container .productinfo1c .arrowbox .arrowright:hover {
  background-color: #000;
}

.productinfo1b .container .productinfo1c .arrowbox .arrowright:hover svg path {
  fill: #fff;
}

.productinfo1b .container .productinfo1c .colorbox {
  text-align: center;
  position: absolute;
  left: 0;
  width: 100%;
  bottom: -1.2rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.productinfo1b .container .productinfo1c .colorbox .colorbox1 {
  border-radius: 50%;
  width: 0.13rem;
  height: 0.13rem;
  margin: 0.13rem 0.15rem;
  opacity: 1;
  position: relative;
  border: 1px solid transparent;
  transition: all 0.4s;
  cursor: pointer;
}

.productinfo1b .container .productinfo1c .colorbox .colorbox1 em {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 0.3rem;
  height: 0.3rem;
  border-radius: 50%;
  border: 1px solid red;
  transition: all 0.2s;
  opacity: 0;
}

.productinfo1b .container .productinfo1c .colorbox .colorbox1.on em {
  opacity: 1;
}

.productinfo1z {
  opacity: 0;
}

@media (max-width: 991px) {
  .productinfo1z {
    opacity: 1 !important;
  }
}

.productinfo1 {
  width: 100%;
  position: sticky;
  left: 0;
  top: 0;
  z-index: 88;
  background-color: #Fff;
  box-shadow: 0px 3px 20px 0px rgba(0, 0, 0, 0.06);
  line-height: 1rem;
  overflow: auto;
  white-space: nowrap;
}

.productinfo1 .container {
  display: flex;
  justify-content: space-between;
}

.productinfo1 .container .left {
  display: flex;
}

.productinfo1 .container .left .zcn1 {
  color: #000;
  line-height: 1rem;
  position: relative;
  margin-right: 0.6rem;
}

.productinfo1 .container .left .zcn1::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  transition: all 0.4s;
  height: 2px;
  background-color: #000;
}

.productinfo1 .container .left .zcn1.on::before {
  width: 100%;
}

.productinfo1 .container .right {
  display: flex;
  align-items: center;
}

@media (max-width: 991px) {
  .productinfo1 .container .right {
    display: none;
  }
}

.productinfo1 .container .right .zcn2 {
  line-height: 0.56rem;
  height: 0.56rem;
  display: flex;
  min-width: 2.66rem;
  border-radius: 28px;
  border: solid 1px #000000;
  justify-content: center;
  align-items: center;
  padding: 0 0.2rem;
  margin-left: 0.25rem;
  transition: all 0.4s;
}

.productinfo1 .container .right .zcn2 .zcn3 {
  display: flex;
  align-items: center;
}

.productinfo1 .container .right .zcn2 .zcn3 svg {
  height: 0.22rem;
}

.productinfo1 .container .right .zcn2 .zcn3 svg path {
  fill: #000;
  opacity: 1;
  stroke: none;
  transition: all 0.4s;
}

.productinfo1 .container .right .zcn2 .zcn4 {
  margin-left: 0.1rem;
  transition: all 0.4s;
  color: #000000;
}

.productinfo1 .container .right .zcn2:hover {
  background-color: #000;
}

.productinfo1 .container .right .zcn2:hover .zcn3 svg path {
  fill: #fff;
}

.productinfo1 .container .right .zcn2:hover .zcn4 {
  color: #Fff;
}

.product-info2 {
  overflow: hidden;
  margin: 0.3rem auto 0;
}

@media (max-width: 991px) {
  .product-info2 {
    margin: 0.6rem auto 0;
  }
}

.product-info2 .chundatu {
  margin-bottom: 0.3rem;
}

.product-info2 .chundatu .img {
  width: 100%;
}

.product-info2 .chundatu .img::before {
  padding-top: 50.52083333%;
}

.product-info2 .chundatu .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 991px) {
  .product-info2 .chundatu .img img.pc-img {
    display: none;
  }
}

.product-info2 .chundatu .img img.mb-img {
  display: none;
}

@media (max-width: 991px) {
  .product-info2 .chundatu .img img.mb-img {
    display: block;
  }
}

.product-info2 .chundatu2 {
  margin-bottom: 0.3rem;
}

.product-info2 .chundatu2 .img {
  width: 100%;
}

.product-info2 .chundatu2 .img::before {
  padding-top: 56.25%;
}

.product-info2 .chundatu2 .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 991px) {
  .product-info2 .chundatu2 .img img.pc-img {
    display: none;
  }
}

.product-info2 .chundatu2 .img img.mb-img {
  display: none;
}

@media (max-width: 991px) {
  .product-info2 .chundatu2 .img img.mb-img {
    display: block;
  }
}

.product-info2 .textleftpicright {
  display: flex;
  align-items: center;
  padding: 0 1.56657963%;
  margin-bottom: 0.3rem;
  flex-wrap: wrap;
}

@media (max-width: 991px) {
  .product-info2 .textleftpicright {
    padding: 0 5%;
    margin-bottom: 0.6rem;
  }
}

.product-info2 .textleftpicright .left {
  width: 51.48247978%;
  padding-left: 7.00808625%;
  padding-right: 7.00808625%;
  display: flex;
  align-items: center;
}

@media (max-width: 767px) {
  .product-info2 .textleftpicright .left {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}

.product-info2 .textleftpicright .left .box .cn1 {
  color: #000000;
  line-height: 1.14285714em;
}

.product-info2 .textleftpicright .left .box .cn2 {
  margin-top: 0.3rem;
  color: #666666;
}

.product-info2 .textleftpicright .right {
  width: 48.51752022%;
}

@media (max-width: 767px) {
  .product-info2 .textleftpicright .right {
    width: 100%;
    margin-top: 0.3rem;
  }
}

.product-info2 .textleftpicright .right .img {
  width: 100%;
  height: 100%;
}

.product-info2 .textleftpicright .right .img::before {
  padding-top: 107.6581576%;
}

.product-info2 .textleftpicright .right .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 991px) {
  .product-info2 .textleftpicright .right .img img.pc-img {
    display: none;
  }
}

.product-info2 .textleftpicright .right .img img.mb-img {
  display: none;
}

@media (max-width: 991px) {
  .product-info2 .textleftpicright .right .img img.mb-img {
    display: block;
  }
}

.product-info2 .textrightpicbig {
  width: 100%;
  position: relative;
  margin-bottom: 0.3rem;
}

@media (max-width: 991px) {
  .product-info2 .textrightpicbig {
    margin-bottom: 0.6rem;
  }
}

.product-info2 .textrightpicbig .img {
  width: 100%;
  height: 100%;
}

.product-info2 .textrightpicbig .img::before {
  padding-top: 50.52083333%;
}

@media (max-width: 991px) {
  .product-info2 .textrightpicbig .img::before {
    padding-top: 100%;
  }
}

.product-info2 .textrightpicbig .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 991px) {
  .product-info2 .textrightpicbig .img img.pc-img {
    display: none;
  }
}

.product-info2 .textrightpicbig .img img.mb-img {
  display: none;
}

@media (max-width: 991px) {
  .product-info2 .textrightpicbig .img img.mb-img {
    display: block;
  }
}

.product-info2 .textrightpicbig .text {
  z-index: 3;
  width: 43.86422977%;
  padding-right: 1.3rem;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

@media (max-width: 991px) {
  .product-info2 .textrightpicbig .text {
    left: 10%;
    width: 90%;
    right: 10%;
    padding-right: 0;
  }
}

.product-info2 .textrightpicbig .text .cn1 {
  color: #000000;
  line-height: 1.14285714em;
}

.product-info2 .textrightpicbig .text .cn2 {
  margin-top: 0.3rem;
  color: #666666;
}

.product-info2 .piclefttextright {
  display: flex;
  align-items: center;
  padding: 0 1.56657963%;
  margin-bottom: 0.3rem;
  flex-wrap: wrap;
}

@media (max-width: 991px) {
  .product-info2 .piclefttextright {
    padding: 0 5%;
    margin-bottom: 0.6rem;
  }
}

.product-info2 .piclefttextright .right {
  width: 48.51752022%;
}

@media (max-width: 767px) {
  .product-info2 .piclefttextright .right {
    width: 100%;
  }
}

.product-info2 .piclefttextright .right .img {
  width: 100%;
  height: 100%;
}

.product-info2 .piclefttextright .right .img::before {
  padding-top: 107.6581576%;
}

.product-info2 .piclefttextright .right .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 991px) {
  .product-info2 .piclefttextright .right .img img.pc-img {
    display: none;
  }
}

.product-info2 .piclefttextright .right .img img.mb-img {
  display: none;
}

@media (max-width: 991px) {
  .product-info2 .piclefttextright .right .img img.mb-img {
    display: block;
  }
}

.product-info2 .piclefttextright .left {
  width: 51.48247978%;
  padding-left: 7.00808625%;
  padding-right: 7.00808625%;
  display: flex;
  align-items: center;
}

@media (max-width: 767px) {
  .product-info2 .piclefttextright .left {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .product-info2 .piclefttextright .left {
    margin-top: 0.3rem;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}

.product-info2 .piclefttextright .left .box .cn1 {
  color: #000000;
  line-height: 1.14285714em;
}

.product-info2 .piclefttextright .left .box .cn2 {
  margin-top: 0.3rem;
  color: #666666;
}

.product-info2 .textleftpicbig {
  width: 100%;
  position: relative;
  margin-bottom: 0.3rem;
}

@media (max-width: 991px) {
  .product-info2 .textleftpicbig {
    margin-bottom: 0.6rem;
  }
}

.product-info2 .textleftpicbig .img {
  width: 100%;
  height: 100%;
}

.product-info2 .textleftpicbig .img::before {
  padding-top: 50.52083333%;
}

@media (max-width: 991px) {
  .product-info2 .textleftpicbig .img::before {
    padding-top: 100%;
  }
}

.product-info2 .textleftpicbig .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 991px) {
  .product-info2 .textleftpicbig .img img.pc-img {
    display: none;
  }
}

.product-info2 .textleftpicbig .img img.mb-img {
  display: none;
}

@media (max-width: 991px) {
  .product-info2 .textleftpicbig .img img.mb-img {
    display: block;
  }
}

.product-info2 .textleftpicbig .text {
  width: 43.86422977%;
  padding-left: 1.3rem;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
}

@media (max-width: 991px) {
  .product-info2 .textleftpicbig .text {
    width: 90%;
    left: 10%;
    padding-left: 0;
  }
}

.product-info2 .textleftpicbig .text .cn1 {
  color: #000000;
  line-height: 1.14285714em;
}

.product-info2 .textleftpicbig .text .cn2 {
  margin-top: 0.3rem;
  color: #000000;
}

.product-info2 .textcenterpicbig {
  width: 100%;
  position: relative;
  margin-bottom: 0.3rem;
}

@media (max-width: 991px) {
  .product-info2 .textcenterpicbig {
    margin-bottom: 0.6rem;
  }
}

.product-info2 .textcenterpicbig .img {
  width: 100%;
  height: 100%;
}

.product-info2 .textcenterpicbig .img::before {
  padding-top: 50.52083333%;
}

@media (max-width: 991px) {
  .product-info2 .textcenterpicbig .img::before {
    padding-top: 100%;
  }
}

.product-info2 .textcenterpicbig .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 991px) {
  .product-info2 .textcenterpicbig .img img.pc-img {
    display: none;
  }
}

.product-info2 .textcenterpicbig .img img.mb-img {
  display: none;
}

@media (max-width: 991px) {
  .product-info2 .textcenterpicbig .img img.mb-img {
    display: block;
  }
}

.product-info2 .textcenterpicbig .text {
  width: 57.44125326%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 3;
}

@media (max-width: 991px) {
  .product-info2 .textcenterpicbig .text {
    width: 100%;
  }
}

.product-info2 .textcenterpicbig .text .cn1 {
  color: #000000;
  line-height: 1.14285714em;
}

.product-info2 .textcenterpicbig .text .cn2 {
  margin-top: 0.3rem;
  color: #000;
}

.product-info3 {
  padding: 2rem 0;
}

@media (max-width: 991px) {
  .product-info3 {
    padding: 1rem 0;
  }
}

.product-info3 .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.product-info3 .container .left {
  width: 50%;
  padding-left: 8.4375%;
  padding-right: 15.3125%;
}

@media (max-width: 991px) {
  .product-info3 .container .left {
    display: none;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}

.product-info3 .container .left .img {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: #efeeee;
  position: relative;
}

@media (max-width: 991px) {
  .product-info3 .container .left .img {
    width: 60%;
    margin: 0 auto;
  }
}

.product-info3 .container .left .img img {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}

.product-info3 .container .right {
  width: 50%;
  padding-left: 6.25%;
  padding-right: 10%;
}

@media (max-width: 991px) {
  .product-info3 .container .right {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}

.product-info3 .container .right .cn9 {
  color: #010101;
  line-height: 1.33333333em;
}

.product-info3 .container .right .box {
  margin-top: 0.3rem;
  width: 100%;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.product-info3 .container .right .box .box2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 0.2rem 0;
}

.product-info3 .container .right .box .box2 .cn1 {
  flex-shrink: 0;
  line-height: 1.66666667em;
  color: #000000;
  word-break: break-all;
}

.product-info3 .container .right .box .box2 .cn2 {
  max-width: 65%;
  line-height: 1.66666667em;
  color: #000000;
  word-break: break-all;
}

.product-info4 {
  position: relative;
}

.product-info4 .img {
  width: 100%;
}

.product-info4 .img img {
  width: 100%;
}

.product-info4 .img img.pc-img {
  display: block;
}

@media (max-width: 991px) {
  .product-info4 .img img.pc-img {
    display: none;
  }
}

.product-info4 .img img.mb-img {
  display: none;
}

@media (max-width: 991px) {
  .product-info4 .img img.mb-img {
    display: block;
  }
}

.product-info4 .cn1 {
  position: absolute;
  text-align: center;
  left: 0;
  top: 0.9rem;
  width: 100%;
  color: #ffffff;
  line-height: 1.33333333em;
}

#product-info5.product-info5 {
  padding: 1rem 0 1.2rem;
  background-color: #fff;
}

#product-info5.product-info5 .product-box2 {
  padding: 0;
}

#product-info5.product-info5 .product-box2 .cn1 {
  text-align: center;
  color: #010101;
  line-height: 1.33333333em;
  margin-bottom: 0.6rem;
}

#product-info5.product-info5 .container .product-info5a {
  width: 100%;
  margin: 0;
  position: relative;
  overflow: hidden;
}

#product-info5.product-info5 .container .product-info5a .imgbox {
  display: block;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.public-windows {
  z-index: 999;
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 0.2rem;
  background-color: #fff;
  padding: 0.8rem 0.6rem 0.6rem;
  width: 690px;
  display: none;
}

@media (max-width: 1260px) {
  .public-windows {
    padding: 1.3rem 0.5rem;
  }
}

@media (max-width: 991px) {
  .public-windows {
    width: 90%;
    padding: 1.5rem 0.5rem;
  }
}

.public-windows .close {
  position: absolute;
  right: 0.3rem;
  top: 0.3rem;
  cursor: pointer;
}

@media (max-width: 991px) {
  .public-windows .close svg {
    width: 0.5rem;
  }
}

.public-windows .close svg path {
  fill: #ccc;
  stroke: none;
  opacity: 1;
  transition: all 0.4s;
}

.public-windows .close:hover svg path {
  fill: #000;
}

.public-windows .cn1 {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  color: #000000;
}

.public-windows .cn1 img {
  flex-shrink: 0;
}

.public-windows .cn1 span {
  margin-left: 0.2rem;
}

.public-windows .cn2 {
  text-align: center;
  color: #565656;
  line-height: 1.3em;
  margin: 0.25rem 0 0.45rem;
}

.public-windows .cn6 {
  display: flex;
  justify-content: center;
}

.public-windows .cn3 {
  padding: 0 0.24rem;
  border-radius: 0.28rem;
  border: solid 1px #000000;
  line-height: 0.56rem;
  display: flex;
  align-content: center;
  transition: all 0.4s;
}

@media (max-width: 991px) {
  .public-windows .cn3 {
    border-radius: 0.38rem;
    line-height: 0.76rem;
  }
}

.public-windows .cn3 .cn4 {
  transition: all 0.4s;
  color: #000000;
}

.public-windows .cn3 .cn5 {
  display: flex;
  align-items: center;
  margin-left: 0.2rem;
}

.public-windows .cn3 .cn5 svg path {
  transition: all 0.4s;
  fill: #333;
  stroke: none;
  opacity: 1s;
}

.public-windows .cn3:hover {
  background-color: #000;
}

.public-windows .cn3:hover .cn4 {
  color: #fff;
}

.public-windows .cn3:hover .cn5 svg path {
  fill: #fff;
}

.index-select {
  background-color: #fff;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  z-index: 1005;
  display: none;
}

.index-select .bg {
  background: linear-gradient(55deg, rgba(246, 218, 226, 0.75), #e3eeec);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 3;
  animation: example1 2s linear infinite;
}

.index-select .box1 {
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 5;
  transform: translate(-50%, -50%);
}

.index-select .box1 .cn1 {
  text-align: center;
}

.index-select .box1 .cn2 {
  width: 2px;
  height: 0.4rem;
  background-color: rgba(0, 0, 0, 0.8);
  margin: 0.2rem auto;
}

.index-select .box1 .cn3 {
  text-align: center;
  color: #000000;
}

.index-select .box1 .cn4 {
  text-align: center;
  line-height: 1.33333333em;
  color: #666;
  margin: 0.25rem 0 0.45rem;
}

.index-select .box1 .cn5 {
  display: flex;
  justify-content: center;
}

.index-select .box1 .cn5 .cn6 {
  margin: 0 0.1rem;
  line-height: 0.48rem;
  border-radius: 0.24rem;
  border: 1px solid #000;
  color: #000;
  padding: 0 0.3rem;
  min-width: 152px;
  text-align: center;
  transition: all 0.4s;
}

.index-select .box1 .cn5 .cn6:hover {
  background-color: #000;
  color: #fefefe;
}

.index-select .box2 {
  display: none;
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 5;
  transform: translate(-50%, -50%);
}

.index-select .box2 .cn3 {
  text-align: center;
  color: #000000;
}

.index-select .box2 .cn4 {
  text-align: center;
  line-height: 1.33333333em;
  color: #666;
  margin: 0.25rem 0 0.45rem;
}

.index-select .box2 .cn5 {
  display: flex;
  justify-content: center;
}

.index-select .box2 .cn5 .cn6 {
  margin: 0 0.1rem;
  line-height: 0.48rem;
  border-radius: 0.24rem;
  border: 1px solid #000;
  color: #000;
  padding: 0 0.3rem;
  min-width: 152px;
  text-align: center;
  transition: all 0.4s;
}

.index-select .box2 .cn5 .cn6:hover {
  background-color: #000;
  color: #fefefe;
}

@keyframes example1 {
  0% {
    background: linear-gradient(55deg, rgba(246, 218, 226, 0.75) 0%, #e3eeec 100%);
  }

  5% {
    background: linear-gradient(55deg, #e3eeec 0%, rgba(246, 218, 226, 0.75) 5%, #e3eeec 55%, rgba(246, 218, 226, 0.75) 100%);
  }

  10% {
    background: linear-gradient(55deg, #e3eeec 0%, rgba(246, 218, 226, 0.75) 10%, #e3eeec 60%, rgba(246, 218, 226, 0.75) 100%);
  }

  15% {
    background: linear-gradient(55deg, #e3eeec 0%, rgba(246, 218, 226, 0.75) 15%, #e3eeec 65%, rgba(246, 218, 226, 0.75) 100%);
  }

  20% {
    background: linear-gradient(55deg, #e3eeec 0%, rgba(246, 218, 226, 0.75) 20%, #e3eeec 70%, rgba(246, 218, 226, 0.75) 100%);
  }

  15% {
    background: linear-gradient(55deg, #e3eeec 0%, rgba(246, 218, 226, 0.75) 25%, #e3eeec 75%, rgba(246, 218, 226, 0.75) 100%);
  }

  30% {
    background: linear-gradient(55deg, #e3eeec 0%, rgba(246, 218, 226, 0.75) 30%, #e3eeec 80%, rgba(246, 218, 226, 0.75) 100%);
  }

  35% {
    background: linear-gradient(55deg, #e3eeec 0%, rgba(246, 218, 226, 0.75) 35%, #e3eeec 85%, rgba(246, 218, 226, 0.75) 100%);
  }

  40% {
    background: linear-gradient(55deg, #e3eeec 0%, rgba(246, 218, 226, 0.75) 40%, #e3eeec 90%, rgba(246, 218, 226, 0.75) 100%);
  }

  45% {
    background: linear-gradient(55deg, #e3eeec 0%, rgba(246, 218, 226, 0.75) 45%, #e3eeec 95%, rgba(246, 218, 226, 0.75) 100%);
  }

  50% {
    background: linear-gradient(55deg, #e3eeec 0%, rgba(246, 218, 226, 0.75) 50%, #e3eeec 100%);
  }

  55% {
    background: linear-gradient(55deg, rgba(246, 218, 226, 0.75) 0%, #e3eeec 5%, rgba(246, 218, 226, 0.75) 55%, #e3eeec 100%);
  }

  60% {
    background: linear-gradient(55deg, rgba(246, 218, 226, 0.75) 0%, #e3eeec 10%, rgba(246, 218, 226, 0.75) 60%, #e3eeec 100%);
  }

  65% {
    background: linear-gradient(55deg, rgba(246, 218, 226, 0.75) 0%, #e3eeec 15%, rgba(246, 218, 226, 0.75) 65%, #e3eeec 100%);
  }

  70% {
    background: linear-gradient(55deg, rgba(246, 218, 226, 0.75) 0%, #e3eeec 20%, rgba(246, 218, 226, 0.75) 70%, #e3eeec 100%);
  }

  75% {
    background: linear-gradient(55deg, rgba(246, 218, 226, 0.75) 0%, #e3eeec 25%, rgba(246, 218, 226, 0.75) 75%, #e3eeec 100%);
  }

  80% {
    background: linear-gradient(55deg, rgba(246, 218, 226, 0.75) 0%, #e3eeec 30%, rgba(246, 218, 226, 0.75) 80%, #e3eeec 100%);
  }

  85% {
    background: linear-gradient(55deg, rgba(246, 218, 226, 0.75) 0%, #e3eeec 36%, rgba(246, 218, 226, 0.75) 85%, #e3eeec 100%);
  }

  90% {
    background: linear-gradient(55deg, rgba(246, 218, 226, 0.75) 0%, #e3eeec 40%, rgba(246, 218, 226, 0.75) 90%, #e3eeec 100%);
  }

  95% {
    background: linear-gradient(55deg, rgba(246, 218, 226, 0.75) 0%, #e3eeec 45%, rgba(246, 218, 226, 0.75) 95%, #e3eeec 100%);
  }

  100% {
    background: linear-gradient(55deg, rgba(246, 218, 226, 0.75) 0%, #e3eeec 50%, rgba(246, 218, 226, 0.75) 100%);
  }
}

.index-animationbig {
  width: 100%;
  height: 350vh;
  position: relative;
  z-index: 1000;
}

@media (max-width: 991px) {
  .index-animationbig {
    display: none;
  }
}

.index-animation {
  overflow: hidden;
  background-color: #000;
  position: sticky;
  left: 0;
  top: 0;
  z-index: 20;
  width: 100%;
  height: 100vh;
}

.index-animation .bgvideo {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

.index-animation .img123 {
  position: absolute;
  left: -220%;
  top: 50%;
  width: 100%;
  height: 100%;
  z-index: 2;
  transform: translate(-50%, -50%) scale(60);
}

.index-animation .img123 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.index-animation .img123 svg {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100vw;
  object-fit: cover;
}

.index-animation .img123 svg path {
  fill: #fff;
  stroke: none;
  opacity: 1;
}

.index-animation .bigbox {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  opacity: 0;
}

.index-animation .bigbox .img2 {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.index-animation .bigbox .img2 img {
  width: 100%;
  height: 100vh;
}

.index-animation .bigbox .mbox {
  opacity: 0;
  position: absolute;
  left: 50%;
  top: 60%;
  transform: translate(-50%, -50%);
}

.index-animation .bigbox .mbox .img3 {
  text-align: center;
}

.index-animation .bigbox .mbox .img3 img {
  width: 2.65rem;
}

.index-animation .bigbox .mbox .cn3 {
  text-align: center;
  color: #000000;
  font-size: 0.56rem;
}

.index-animation .scrollbox {
  position: absolute;
  left: 0;
  bottom: 0.5rem;
  width: 100%;
  z-index: 5;
  text-align: center;
}

.index-animation .scrollbox .cn1 {
  color: #999999;
  line-height: 1.75em;
}

.index-animation .scrollbox .cn2 {
  animation: scrollanimation 2s linear infinite;
}

.index-animation .scrollbox .cn2 svg path {
  fill: #999;
  opacity: 1;
  stroke: none;
}

@keyframes scrollanimation {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(0.1rem);
  }

  100% {
    transform: translateY(0);
  }
}

.index-cookies {
  background-color: #000000;
  background-image: url(../images/zimg29.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: fixed;
  bottom: 0;
  width: 100%;
  left: 0;
  z-index: 1010;
  padding: 0.4rem 0;
  display: none;
}

.index-cookies .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.index-cookies .container .left {
  width: 59.375%;
}

.index-cookies .container .left .cn1 {
  color: #ffffff;
  line-height: 1.5em;
}

.index-cookies .container .left .cn2 {
  margin-top: 0.1rem;
  line-height: 1.5em;
  color: rgba(255, 255, 255, 0.8);
}

.index-cookies .container .right {
  width: 40.625%;
  display: flex;
  justify-content: flex-end;
}

.index-cookies .container .right .public-btnblack {
  border: solid 1px #ffffff;
}

.index-cookies .container .right .public-btnwhite {
  border: 1px solid #fff;
  margin-left: 0.2rem;
}

#c-header {
  display: block;
  height: initial;
}

#c-header .index-warn {
  background-color: #f8f8f8;
  line-height: 0.56rem;
  height: 0.56rem;
  display: none;
}

@media (max-width: 991px) {
  #c-header .index-warn {
    display: none !important;
  }
}

#c-header .index-warn .container98 {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#c-header .index-warn .container98 .left .zcn1 {
  color: #000;
}

#c-header .index-warn .container98 .left .zcn1 span {
  color: #ff0000;
}

#c-header .index-warn .container98 .right {
  display: flex;
  align-items: center;
}

#c-header .index-warn .container98 .right .close {
  display: flex;
  align-items: center;
}

#c-header .index-warn .container98 .right .close img {
  cursor: pointer;
}

#c-header .container99 {
  height: 0.8rem;
  line-height: 0.8rem;
}

@media (max-width: 991px) {
  #c-header .container99 {
    height: 0.8rem;
    line-height: 0.8rem;
  }
}

.public-btn123 {
  position: relative;
}

.public-btn123::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  opacity: 0;
  border-radius: 0.3rem;
  background-color: #000;
  z-index: 5;
  transition: all 0.4s;
  overflow: hidden;
}

.public-btn123::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  opacity: 0;
  border-radius: 0.3rem;
  background-color: #fff;
  z-index: 5;
  transition: all 0.4s;
  overflow: hidden;
}

.public-btn123 span {
  position: relative;
  z-index: 6;
}

.public-btn123 svg {
  position: relative;
  z-index: 6;
}

.public-btn123:hover {
  background-color: white !important;
}

.public-btn123:hover span {
  color: #fff;
}

.public-btn123:hover svg path {
  fill: #fff;
}

.public-btn123:hover::before {
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  opacity: 1;
}

.public-btn124 {
  position: relative;
  transition: all 0.4s;
}

.public-btn124::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  opacity: 0;
  border-radius: 0.3rem;
  background-color: #fff;
  z-index: 5;
  transition: all 0.4s;
  overflow: hidden;
}

.public-btn124::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  opacity: 0;
  border-radius: 0.3rem;
  background-color: #000;
  z-index: 5;
  transition: all 0.4s;
  overflow: hidden;
}

.public-btn124 span {
  position: relative;
  z-index: 6;
}

.public-btn124 svg {
  z-index: 6;
}

.public-btn124:hover {
  background-color: #000 !important;
  color: #000 !important;
}

.public-btn124:hover::before {
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  opacity: 1;
}

.indexheader {
  position: relative;
}

.info-banner .container .Breadcrumbs .icons {
  transform: translateY(-2px);
}

.index-error {
  background-color: #Fff;
  padding: 2.3rem 0 1.8rem;
}

.index-error .container .img {
  text-align: center;
}

.index-error .container .img img {
  width: 6.33rem;
}

@media (max-width: 767px) {
  .index-error .container .img img {
    width: 5rem;
  }
}

.index-error .container .cn1 {
  text-align: center;
  margin: 0.5rem 0 0.4rem;
  color: #666;
}

.index-error .container .cn1 span {
  color: #000;
}

.index-error .container .box9 {
  display: flex;
  align-content: center;
  justify-content: center;
}

.index-sitemap {
  padding-top: 1rem;
  padding-bottom: 1.8rem;
}

.index-sitemap .container {
  max-width: 1400px;
}

.index-sitemap .container .cn1 {
  text-align: center;
  line-height: 1em;
  color: #000000;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #f0f0f0;
}

.index-sitemap .container .box {
  flex-wrap: wrap;
  justify-content: space-between;
  display: flex;
}

@media (max-width: 991px) {
  .index-sitemap .container .box {
    justify-content: flex-start;
  }
}

.index-sitemap .container .box .box2 {
  margin-top: 0.5rem;
  max-width: 20%;
}

@media (max-width: 991px) {
  .index-sitemap .container .box .box2 {
    max-width: calc(100% / 3);
    width: calc(100% / 3);
  }
}

@media (max-width: 767px) {
  .index-sitemap .container .box .box2 {
    max-width: calc(100% / 2);
    width: calc(100% / 2);
  }
}

.index-sitemap .container .box .box2 .cn7 {
  text-align: center;
  margin-bottom: 0.4rem;
}

.index-sitemap .container .box .box2 .cn2 {
  color: #333333;
  line-height: 1.25em;
  text-align: center;
  position: relative;
  transition: all 0.4s;
}

.index-sitemap .container .box .box2 .cn2::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background-color: #000;
  transition: all 0.4s;
}

.index-sitemap .container .box .box2 .cn2:hover {
  color: #000;
}

.index-sitemap .container .box .box2 .cn2:hover::before {
  width: 100%;
}

.index-sitemap .container .box .box2 .cn3 .cn4 {
  text-align: center;
}

.index-sitemap .container .box .box2 .cn3 .cn4 .cn5 {
  text-align: center;
  color: #666666;
  line-height: 1.875em;
  position: relative;
  transition: all 0.4s;
}

.index-sitemap .container .box .box2 .cn3 .cn4 .cn5::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background-color: #000;
  transition: all 0.4s;
}

.index-sitemap .container .box .box2 .cn3 .cn4 .cn5:hover {
  color: #000;
}

.index-sitemap .container .box .box2 .cn3 .cn4 .cn5:hover::before {
  width: 100%;
}

.zsearch1 {
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.zsearch1 .container .cn1 {
  text-align: center;
  color: #000000;
  line-height: 1em;
}

.product-nav3.zsearch2 .container {
  position: relative;
}

.product-nav3.zsearch2 .container .cn1 {
  padding: 0;
  margin-right: 0.8rem;
  line-height: 1.2rem;
}

@media (max-width: 1580px) {
  .product-nav3.zsearch2 .container .cn1 {
    margin-right: 0.4rem;
  }
}

.product-nav3.zsearch2 .container .cn1:hover {
  color: #000;
}

.product-nav3.zsearch2 .container .cn2 {
  margin: 0.3rem 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 3.37rem;
  line-height: 0.6rem;
  border-radius: 0.3rem;
  border: 2px solid rgba(0, 0, 0, 0.05);
}

@media (max-width: 991px) {
  .product-nav3.zsearch2 .container .cn2 {
    display: none;
  }
}

.product-nav3.zsearch2 .container .cn2 input {
  width: 100%;
  padding: 0 0.5rem 0 0.2rem;
  color: #999999;
}

.product-nav3.zsearch2 .container .cn2 input::placeholder {
  color: #999;
}

.product-nav3.zsearch2 .container .cn2 button {
  position: absolute;
  right: 0.2rem;
  top: 50%;
  transform: translateY(-50%);
}

.mbcn2 {
  display: none;
  margin: 0.3rem auto;
  position: relative;
  right: 0;
  top: 0;
  width: 80%;
  line-height: 0.76rem;
  border-radius: 0.38rem;
  border: 2px solid rgba(0, 0, 0, 0.05);
}

@media (max-width: 991px) {
  .mbcn2 {
    display: block;
  }
}

.mbcn2 input {
  width: 100%;
  padding: 0 0.5rem 0 0.2rem;
  color: #999999;
}

.mbcn2 input::placeholder {
  color: #999;
}

.mbcn2 button {
  position: absolute;
  right: 0.2rem;
  top: 50%;
  transform: translateY(-50%);
}

.product-box.zsearch3 {
  padding-bottom: 1.2rem;
}

.product-box.zsearch3 .product-box2 {
  padding: 0.6rem 0 0;
}

.zsearch4 .news-list .container .down {
  border-top: 0;
  margin-top: 0;
  padding-top: 0.4rem;
}

.zsearch4 .news-list .container .down .list2 {
  width: 100%;
}

.policy {
  padding: 1.8rem 0;
}

.policy .container {
  max-width: 1400px;
}

.policy .container .box .cn1 {
  color: #000;
  line-height: 1.5em;
  text-align: center;
}

.policy .container .box .box2 {
  margin-top: 0.5rem;
}

.policy .container .box .box2 p {
  color: #000;
  line-height: 1.5em;
}

.indextopotherli {
  position: initial !important;
}

.indextopotherli:hover .indextopother {
  opacity: 1;
  visibility: visible;
}

.indextopother {
  transition: all 0.5s;
  position: absolute;
  width: 100vw;
  height: 1.1rem;
  background-color: #fff;
  top: 100%;
  left: 0;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  display: flex;
}

.indextopother .pcn1 {
  display: block;
  color: #333;
  line-height: 1.1rem;
  margin: 0 0.7rem;
  position: relative;
}

.indextopother .pcn1 .tishi {
  position: absolute;
  right: -0.3rem;
  top: 0.2rem;
  width: 0.4rem;
  height: 0.21rem;
}

.asidebox2 {
  position: fixed;
  right: 40px;
  bottom: 120px;
  z-index: 99;
  display: flex;
  width: 60px;
  height: 60px;
  transition: all 0.5s;
}

.asidebox2 .box3 {
  width: 80px;
  display: block;
  padding-right: 20px;
}

.asidebox2 .box3 .box5 {
  width: 60px;
  height: 60px;
  background-color: #0a7cff;
  border-radius: 50%;
  box-shadow: 0px 4px 6px 0px rgba(3, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #Fff;
  transition: all 0.5s;
}

.asidebox2 .box4 {
  opacity: 0;
  transition: all 0.5s;
  position: relative;
  width: 192px;
  border-radius: 30px;
  box-shadow: 0px 4px 6px 0px rgba(3, 0, 0, 0.1);
}

.asidebox2 .box4 img {
  width: 100%;
  height: 100%;
}

.asidebox2:hover {
  width: 272px;
}

.asidebox2:hover .box4 {
  opacity: 1;
}

.category .tabbar {
  width: 50%;
  padding: 8px;
  background: black;
  margin: auto;
  margin-top: 120px;
  margin-bottom: 80px;
  border-radius: 0.4rem;
  display: flex;
  align-items: center;
  justify-content: space-around;
  font-size: 15px;
}

.category .tabbar .on {
  background: #8733FF;
  padding-left: 20px;
  padding-top: 2px;
  padding-bottom: 2px;
  padding-right: 20px;
  border-radius: 0.4rem;
  font-weight: bold;
}

.category .tabbar .off {
  padding-left: 20px;
  padding-top: 2px;
  padding-bottom: 2px;
  padding-right: 20px;
}

@media (max-width: 991px) {
  .category video {
    display: none;
  }

  .category .tabbar {
    width: 90%;
    padding: 8px;
    margin: auto;
    background: transparent;
    margin-top: 80px;
    display: flex;
    overflow-x: auto;
    white-space: nowrap;
    font-size: 18px;
    scrollbar-width: none;
  }

  ::-webkit-scrollbar {
    display: none;
  }

  .category .tabbar .on {
    background: black;
    padding-left: 20px;
    padding-top: 2px;
    padding-bottom: 2px;
    padding-right: 20px;
    border-radius: 0.4rem;
    font-weight: bold;
    color: #0a7cff;
  }

  .category .tabbar .off {
    padding-left: 20px;
    padding-top: 2px;
    padding-bottom: 2px;
    padding-right: 20px;
  }

  .category .tabbar .on a {
    color: white;
  }

  .category .tabbar .off a {
    color: black;
  }
}

.category .tabbar a {
  color: white;
}

.category .recommend {
  display: flex;
  flex-direction: row;
  width: 50%;
  margin: 100px auto;
  justify-content: space-between;
}

.category .recommend a {
  color: #000000;
}

.category .recommend .box {
  display: flex;
  flex-direction: column;
  flex: 1;
  margin: 0 20px;
  font-weight: bold;
  font-size: 16px;
}

@media (max-width: 991px) {
  .category .recommend {
    display: flex;
    flex-direction: column;
    width: 90%;
    justify-content: space-between;
    margin: 0 auto;
  }

  .category .recommend .box {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
    font-weight: bold;
    font-size: 16px;
  }
}

.category .recommend .box img {
  margin-top: 5px;
  margin-bottom: 5px;
}

.category .recommend .box p {
  text-decoration: underline;
}

.category .products-list-wrapper {
  width: 50%;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  margin: 0 auto;
  flex-wrap: wrap;
  min-height: 30vh;
  margin-top: 100px;
  justify-content: space-between;
}

.category .products-list-wrapper .product-series {
  background-color: #Fff;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  width: 28%;
  overflow: hidden;
}

@media (max-width: 991px) {
  .category .products-list-wrapper {
    width: 90%;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    margin: 0 auto;
    flex-wrap: wrap;
    min-height: 30vh;
    margin-top: 10px;
    justify-content: space-between;
  }

  .category .products-list-wrapper .product-series {
    background-color: #Fff;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    width: 50%;
    overflow: hidden;
  }

  .category .products-list-wrapper .product-series .indicator {
    display: none;
  }

}


.category .products-list-wrapper .product-series .product-seriesa1 {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.category .products-list-wrapper .name {
  margin: 0 auto;
  text-decoration: underline;
  font-size: 15px;
}

.category .products-list-wrapper .indicator {
  z-index: 3;
  width: 100%;
  text-align: center;
}

.category .products-list-wrapper .indicator .swiper-pagination-bullet {
  width: 7px;
  height: 7px;
  border-radius: 6px;
  background-color: #000000;
  opacity: 0.4;
  transition: all 0.4s;
}

.category .products-list-wrapper .indicator .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 20px;
  opacity: 1;
}