@charset "utf-8";
:root {
  --color: #00d1d1;
  --vh: 100vh;
}
/*字体*/
* {
  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;
}
@media (min-width: 1901px) {
  html {
    font-size: 100px;
  }
}
@media (max-width: 1580px) {
  html {
    font-size: 66px;
  }
}
@media (max-width: 767px) {
  html {
    font-size: calc(100vw/7.5);
  }
}
body {
  min-height: 100%;
  font-family: 'Arial', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei';
  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;
  }
}
body.c-open {
  height: 100vh;
  overflow: hidden;
}
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: #00d1d1;
}
.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: #00d1d1;
}
#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: #00d1d1;
}
#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: #00d1d1;
}
#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: 0.85rem;
}
@media (max-width: 991px) {
  #c-placeholder {
    height: 1.2rem;
  }
}
/*顶部*/
#c-header {
  display: flex;
  align-items: center;
  height: 0.85rem;
  position: fixed;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  top: 0;
  left: 0;
  z-index: 910;
  width: 100%;
  border-bottom: 1px solid #eee;
  line-height: 0.85rem;
  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-style2 {
  color: #333;
  background: rgba(255, 255, 255, 0.9);
}
#c-header.c-style2 a {
  color: #333;
}
/*顶部logo*/
#c-header .c-logo {
  display: flex;
  align-items: center;
}
#c-header .c-logo .c-img-box {
  display: flex;
  align-items: center;
}
#c-header .c-logo .c-img-box img {
  width: auto;
  height: 0.38rem;
}
@media (max-width: 991px) {
  #c-header .c-logo .c-img-box img {
    width: 1.8rem;
    height: 0.336rem;
  }
}
#c-header .c-logo .c-img-box svg {
  width: 1.5rem;
  height: 0.28rem;
}
@media (max-width: 991px) {
  #c-header .c-logo .c-img-box svg {
    width: 2rem;
    height: 0.37rem;
  }
}
#c-header .c-logo span {
  display: inline-block;
  margin-left: 0.2rem;
  padding-left: 0.2rem;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}
@media (max-width: 767px) {
  #c-header .c-logo span {
    display: none;
  }
}
/*顶部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.7rem;
}
#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: #999999;
  transition: all 0.3s;
}
#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: #00d1d1;
}
#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: #00d1d1;
  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;
  border: 1px solid #eee;
  -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,
#c-header .c-nav li:hover > .c-title-box > a,
#c-header .c-nav li.on > a,
#c-header .c-nav li:hover > a {
  color: #00d1d1;
}
#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: #00d1d1 !important;
}
#c-header.c-style2 .c-nav li .c-title-box svg path {
  fill: #333;
}
/*顶部移动端导航*/
#c-header .c-nav2 {
  position: absolute;
  top: 1.2rem;
  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: 991px) {
  #c-header .c-nav2 li {
    line-height: 1.2rem;
  }
}
@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: #00d1d1;
}
#c-header .c-nav2 li ul {
  display: none;
}
.c-open #c-header .c-nav2 {
  height: calc(100vh - 1.2rem);
}
/*顶部导航开关*/
#c-header .c-switch {
  position: relative;
  display: none;
  width: 0.48rem;
  height: 0.4rem;
  cursor: pointer;
}
@media (max-width: 991px) {
  #c-header .c-switch {
    display: block;
  }
}
#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 {
  position: relative;
  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;
  padding: 0 0.1rem;
  border-bottom: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0.6rem;
}
#c-header .c-gn .ztop-language .cn1 {
  display: flex;
  align-items: center;
  width: 0.31rem;
  height: 0.25rem;
  justify-content: center;
}
#c-header .c-gn .ztop-language .cn1 svg {
  width: 0.31rem;
  height: 0.25rem;
}
#c-header .c-gn .ztop-language .cn2 {
  opacity: 0;
  top: 0;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -0.2rem;
  width: calc(100%);
  padding: 0.2rem 0.1rem;
  border: 1px solid #d5d5d5;
  border-radius: 50px;
  line-height: 1.5em;
  height: 0;
}
#c-header .c-gn .ztop-language .cn2 .cn3 {
  display: block;
  color: #d5d5d5;
  text-align: center;
  line-height: 1em;
  margin-top: 0.2rem;
  height: auto;
  position: relative;
  transition: all 0.4s;
}
#c-header .c-gn .ztop-language .cn2 .cn3:hover {
  color: #00d1d1;
}
#c-header .c-gn .ztop-language:hover .cn2 {
  height: auto;
  opacity: 1;
  background-color: #fff;
}
#c-header .c-gn form {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  padding-left: 0;
  width: auto;
}
#c-header .c-gn .ztop-search {
  margin: 0.1rem 0;
  line-height: 0.5rem;
  height: 0.5rem;
  display: flex;
  align-items: center;
  position: relative;
  padding: 0 0.2rem;
  margin-left: 0.1rem;
  transition: all 0.5s;
  cursor: pointer;
  z-index: -1;
}
#c-header .c-gn .ztop-search .cn1 {
  z-index: 2;
  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 {
  opacity: 0;
  overflow: hidden;
  border: 1px solid #d5d5d5;
  border-radius: 25px;
  position: absolute;
  right: 0;
  width: 0;
  visibility: hidden;
  top: 50%;
  transform: translateY(-50%);
  padding: 0 50px 0 20px;
  height: 100%;
  line-height: 0.5rem;
  transition: all 0.3s;
  background-color: #fff;
  box-sizing: content-box;
}
#c-header .c-gn .ztop-search .cn2 input {
  line-height: 0.5rem;
}
#c-header .c-gn .ztop-search.on {
  border-radius: 0 25px 25px 0;
  border-left: 0;
  z-index: 2;
}
#c-header .c-gn .ztop-search.on .cn1 {
  text-align: center;
}
#c-header .c-gn .ztop-search.on .cn2 {
  opacity: 1;
  width: 200px;
  visibility: visible;
}
#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: #00d1d1;
  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: #00d1d1;
}
#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;
  word-break: break-word;
}
.textflow3 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  word-break: break-word;
}
.textflow4 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  word-break: break-word;
}
.textflow10 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 10;
  -webkit-box-orient: vertical;
  word-break: break-word;
}
.font60 {
  font-size: 0.6rem;
}
.font54 {
  font-size: 0.54rem;
}
.font48 {
  font-size: 0.48rem;
}
.font40 {
  font-size: 0.4rem;
}
@media (max-width: 991px) {
  .font40 {
    font-size: 0.5rem;
  }
}
.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: 20px;
  line-height: 1.5em;
}
@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: 16px;
}
@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.28rem;
  }
}
.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-btn1 {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  height: 50px;
  border-radius: 25px;
  background-color: #00d1d1;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s;
  border: 1px solid #00d1d1;
  overflow: hidden;
}
@media (max-width: 1580px) {
  .public-btn1 {
    height: 42px;
  }
}
@media (max-width: 767px) {
  .public-btn1 {
    padding: 0 0.4rem;
    height: 0.8rem;
    border-radius: 0.4rem;
  }
}
.public-btn1 span {
  position: relative;
  z-index: 5;
}
.public-btn1 img,
.public-btn1 svg {
  position: relative;
  z-index: 5;
  margin-left: 0.1rem;
  width: 12px;
  height: 12px;
  transition: all 0.3s;
}
@media (max-width: 767px) {
  .public-btn1 img,
  .public-btn1 svg {
    width: 0.2rem;
    height: 0.2rem;
  }
}
.public-btn1 img path,
.public-btn1 svg path {
  fill: #fff;
  transition: all 0.3s;
}
.public-btn1:hover img,
.public-btn1:hover svg {
  transform: translateX(0.1rem);
}
.public-btn1::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  z-index: 1;
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  background-color: #fff;
  border-radius: 25px;
  transform: scaleX(0);
  transform-origin: right;
  -webkit-transition: transform 0.6s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -moz-transition: transform 0.6s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -o-transition: transform 0.6s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: transform 0.6s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
@media (max-width: 767px) {
  .public-btn1::before {
    border-radius: 0.4rem;
  }
}
.public-btn1:hover {
  color: #00d1d1;
}
.public-btn1:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}
.public-btn1:hover svg path {
  fill: #00d1d1;
}
.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: #00d1d1;
  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: #00d1d1;
  transition: all 0.1s;
}
/**********************************00-01 首页**********************************/
.index-banner {
  width: 100%;
  overflow: hidden;
  height: 100vh;
  position: relative;
  z-index: 5;
}
@media (max-width: 991px) {
  .index-banner {
    height: 12rem;
  }
}
.index-banner .img {
  width: 100%;
  height: 100%;
}
.index-banner .img .pc-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 2;
  position: absolute;
  left: 0;
  top: 0;
}
.index-banner .img .pc-video.on {
  z-index: 4;
}
@media (max-width: 991px) {
  .index-banner .img .pc-video {
    display: none;
  }
}
.index-banner .img .pc-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  z-index: 3;
  left: 0;
  top: 0;
}
@media (max-width: 991px) {
  .index-banner .img .pc-img {
    display: none;
  }
}
.index-banner .img .mb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
}
@media (max-width: 991px) {
  .index-banner .img .mb-img {
    display: block;
  }
}
.index-banner video {
  width: 100%;
  height: 100%;
}
.index-banner .container {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 23.71134021%;
  z-index: 5;
}
@media (max-width: 991px) {
  .index-banner .container {
    top: 20.6185567%;
  }
}
.index-banner .container .cn1 {
  color: #333333;
  line-height: 1.2em;
}
@media (max-width: 991px) {
  .index-banner .container .cn1 {
    font-size: 0.54rem;
  }
}
.index-banner .container .cn1 span {
  clip-path: polygon(0 0, 100% 0, 100% 0, 0 50%);
  transition: all 1s;
  transform: translateY(100%);
  position: relative;
  display: inline-block;
  opacity: 0;
}
.index-banner .container .cn1.on span {
  opacity: 1;
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  transform: translateY(0);
}
@media (max-width: 991px) {
  .index-banner .container .cn1 {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .index-banner .container .cn3 {
    display: flex;
    justify-content: center;
  }
}
.index-banner .container .cn2 {
  margin-top: 0.4rem;
}
@media (max-width: 991px) {
  .index-banner .container .cn2 {
    margin: 0.4rem auto 0;
  }
}
.index-banner .c-btn {
  position: absolute;
  top: 68%;
  left: 25%;
  z-index: 20;
}
@media (max-width: 991px) {
  .index-banner .c-btn {
    display: none;
  }
}
.index-banner .c-btn:nth-child(2) {
  left: 50%;
  top: 80%;
}
.index-banner .c-btn:nth-child(3) {
  left: 58%;
  top: 46%;
}
.index-banner .c-btn:nth-child(4) {
  left: 83.33333333%;
  top: 34.02061856%;
}
.index-banner .c-btn:nth-child(5) {
  left: 32%;
  top: 36%;
}
.index-banner .c-btn:nth-child(6) {
  left: 83%;
  top: 59.79381443%;
}
@media (max-width: 767px) {
  .index-banner .c-btn {
    display: none;
  }
}
.index-banner .c-btn .c-box1 div {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #fff;
  animation: round1 3s linear infinite;
}
.index-banner .c-btn .c-box1 div:nth-child(2) {
  animation: round1 3s 1s linear infinite;
}
.index-banner .c-btn .c-box1 div:nth-child(3) {
  animation: round1 3s 2s linear infinite;
}
.index-banner .c-btn .c-box1 .c-icobox {
  width: 0.4rem;
  height: 0.4rem;
  background-color: #00d1d1;
  border-radius: 50%;
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
}
.index-banner .c-btn .c-box1 .c-icobox .c-ico {
  position: relative;
  z-index: 5;
  width: 0.2rem;
  height: 0.2rem;
  vertical-align: top;
  transition: all 0.3s;
  border-radius: 50%;
}
.index-banner .c-btn .c-box1 .c-icobox .c-ico path {
  fill: #ffff;
  stroke: #00d1d1;
  opacity: 1;
  stroke-width: 0px;
}
.index-banner .c-btn .c-box2 {
  display: flex;
  align-items: center;
  position: absolute;
  top: 50%;
  left: -15px;
  z-index: 1;
  padding: 0 40px 0 70px;
  height: 60px;
  transform: translateY(-50%);
  white-space: nowrap;
  overflow: hidden;
  font-weight: bold;
}
@media (max-width: 767px) {
  .index-banner .c-btn .c-box2 {
    padding: 0 0.2rem;
    height: 0.6rem;
    top: 120%;
    left: 50%;
    transform: translate(-50%, 0);
    font-size: 0.2rem;
  }
}
.index-banner .c-btn .c-box2::before {
  opacity: 0;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 0;
  height: 100%;
  background-color: #fff;
  transition: all 0.3s;
  border-radius: 30px;
}
@media (max-width: 767px) {
  .index-banner .c-btn .c-box2::before {
    width: 100%;
  }
}
.index-banner .c-btn .c-box2 .c-ico {
  margin-left: 0.1rem;
  position: relative;
  z-index: 2;
  width: 7px;
  height: 12px;
  opacity: 0;
  transition: all 0.3s 0s;
}
.index-banner .c-btn .c-box2 .c-ico path {
  fill: #666666;
}
@media (max-width: 767px) {
  .index-banner .c-btn .c-box2 .c-ico {
    opacity: 1;
    width: 0.2rem;
    height: 0.2rem;
  }
}
.index-banner .c-btn .c-box2 span {
  position: relative;
  z-index: 2;
  opacity: 0;
  transition: all 0.3s 0s;
  color: #666666;
}
@media (max-width: 767px) {
  .index-banner .c-btn .c-box2 span {
    opacity: 1;
  }
}
.index-banner .c-btn:hover .c-box1 .c-ico {
  box-shadow: 15px 15px 20px rgba(61, 164, 255, 0.3);
}
.index-banner .c-btn:hover .c-box2::before {
  opacity: 1;
  width: 100%;
}
.index-banner .c-btn:hover .c-box2 .c-ico,
.index-banner .c-btn:hover .c-box2 span {
  opacity: 1;
  transition: all 0.3s 0.3s;
}
@keyframes round1 {
  0% {
    opacity: 1;
    transform: scale(0);
  }
  100% {
    opacity: 0;
    transform: scale(2);
  }
}
@keyframes round2 {
  0% {
    opacity: 1;
    transform: scale(0);
  }
  100% {
    opacity: 0;
    transform: scale(1);
  }
}
.index-product {
  padding: 0.8rem 0;
}
.index-product .container .cn1 {
  text-align: center;
  color: #333333;
  line-height: 1.33333333em;
}
@media (max-width: 991px) {
  .index-product .container .cn1 {
    font-size: 0.5rem;
  }
}
.index-product .container .cn2 {
  text-align: center;
  color: #999999;
  line-height: 1.33333333em;
  margin-top: 0.2rem;
}
.index-product .container .box {
  margin-top: 0.7rem;
  margin-bottom: 0.35rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.index-product .container .box .hezi {
  background-color: #f8f8f8;
  display: flex;
}
.index-product .container .box .hezi::before {
  padding-top: 63.82978723%;
}
.index-product .container .box .hezi .left {
  padding: 0.6rem;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 7;
  text-align: left;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .index-product .container .box .hezi .left {
    justify-content: flex-start;
  }
}
.index-product .container .box .hezi .left .left1 {
  position: relative;
  z-index: 8;
}
.index-product .container .box .hezi .left .left1 .tcn1 {
  display: block;
  color: #333333;
  line-height: 1.33333333em;
}
.index-product .container .box .hezi .left .left1 .tcn2 {
  margin-top: 0.2rem;
  display: block;
  color: #999999;
  line-height: 1.33333333em;
}
@media (max-width: 991px) {
  .index-product .container .box .hezi .left .left1 .tcn2 {
    width: 70%;
  }
}
@media (max-width: 767px) {
  .index-product .container .box .hezi .left .left2 {
    display: none;
  }
}
.index-product .container .box .hezi .left .left2 .left2a .left2b {
  margin: 0.12rem 0;
  color: #aaaaaa;
  display: flex;
  align-items: center;
  padding-left: 10px;
  position: relative;
  transition: all 0.4s;
}
.index-product .container .box .hezi .left .left2 .left2a .left2b::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  background-color: #aaa;
  border-radius: 50%;
  transition: all 0.4s;
}
.index-product .container .box .hezi .left .left2 .left2a .left2b img {
  width: 7px;
  height: 12px;
  margin-left: 0.1rem;
  opacity: 0;
  transition: all 0.4s;
}
.index-product .container .box .hezi .left .left2 .left2a .left2b:hover {
  color: #00d1d1;
}
.index-product .container .box .hezi .left .left2 .left2a .left2b:hover::before {
  background-color: #00d1d1;
}
.index-product .container .box .hezi .left .left2 .left2a .left2b:hover img {
  transform: translateX(0.1rem);
  opacity: 1;
}
@media (max-width: 991px) {
  .index-product .container .box .hezi .left .left3 {
    margin-top: 0.3rem;
  }
}
.index-product .container .box .hezi .left .left3 .public-btn1 {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 0.24rem;
  padding: 0;
  border: 2px solid #00d1d1;
  background-color: transparent;
  transition: all 0.4s;
}
.index-product .container .box .hezi .left .left3 .public-btn1 span {
  display: none;
}
.index-product .container .box .hezi .left .left3 .public-btn1 svg {
  margin-left: 0;
}
.index-product .container .box .hezi .left .left3 .public-btn1 svg path {
  fill: #00d1d1;
}
@media (min-width: 992px) {
  .index-product .container .box .hezi .left .left3 .public-btn1:hover {
    padding: 0 0.26rem;
    width: auto;
    border-radius: 0.24rem;
  }
  .index-product .container .box .hezi .left .left3 .public-btn1:hover span {
    display: block;
  }
  .index-product .container .box .hezi .left .left3 .public-btn1:hover::before {
    background-color: #00d1d1;
  }
  .index-product .container .box .hezi .left .left3 .public-btn1:hover svg {
    transform: translateX(0.1rem);
  }
  .index-product .container .box .hezi .left .left3 .public-btn1:hover svg path {
    fill: #fff;
  }
}
.index-product .container .box .hezi .right::before {
  padding-top: 48.8%;
}
.index-product .container .box .hezi .right img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0s;
}
.index-product .container .box .hezi .right .mb-img {
  display: none;
}
@media (max-width: 991px) {
  .index-product .container .box .hezi .right .mb-img {
    display: block;
  }
}
.index-product .container .box .hezi .right .hv-image-play {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 5;
}
@media (max-width: 991px) {
  .index-product .container .box .hezi .right .hv-image-play {
    display: none;
  }
}
.index-product .container .box .hezi:hover .right img {
  opacity: 0;
}
.index-product .container .box .box2 {
  width: 58.75%;
}
@media (max-width: 991px) {
  .index-product .container .box .box2 {
    width: 100%;
    margin-bottom: 0.35rem;
  }
}
@media (min-width: 992px) {
  .index-product .container .box .box2 .box2a:hover .public-btn1 {
    padding: 0 0.26rem;
    width: auto;
    border-radius: 0.24rem;
    color: #00d1d1;
  }
  .index-product .container .box .box2 .box2a:hover .public-btn1 span {
    display: block;
  }
  .index-product .container .box .box2 .box2a:hover .public-btn1::before {
    transform: scaleX(1);
    transform-origin: left;
  }
  .index-product .container .box .box2 .box2a:hover .public-btn1::before {
    background-color: #00d1d1;
  }
  .index-product .container .box .box2 .box2a:hover .public-btn1 span {
    color: #fff;
  }
  .index-product .container .box .box2 .box2a:hover .public-btn1 svg {
    transform: translateX(0.1rem);
  }
  .index-product .container .box .box2 .box2a:hover .public-btn1 svg path {
    fill: #fff;
  }
}
.index-product .container .box .box2 .box2a .hezi .left {
  padding: 0.4rem;
}
.index-product .container .box .box2 .box2a .hezi::before {
  padding-top: 63.82978723%;
}
.index-product .container .box .box3 {
  width: 39.0625%;
}
@media (max-width: 991px) {
  .index-product .container .box .box3 {
    width: 100%;
  }
}
.index-product .container .box .box3 .box3a {
  margin-bottom: 5.83333333%;
  display: block;
  transition: all 0.4s;
}
@media (max-width: 991px) {
  .index-product .container .box .box3 .box3a {
    margin-bottom: 0.35rem;
  }
}
.index-product .container .box .box3 .box3a .hezi .left {
  padding: 0.4rem;
}
.index-product .container .box .box3 .box3a .hezi .left .left1 .tcn2 {
  margin-top: 0.11rem;
}
.index-product .container .box .box3 .box3a .hezi::before {
  padding-top: 41.6%;
}
.index-product .container .box .box3 .box3a .hezi .right::before {
  padding-top: 48.8%;
}
.index-product .container .box .box3 .box3a .hezi .right img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0s;
}
.index-product .container .box .box3 .box3a .hezi .right .mb-img {
  display: none;
}
@media (max-width: 991px) {
  .index-product .container .box .box3 .box3a .hezi .right .mb-img {
    display: block;
  }
}
.index-product .container .box .box3 .box3a .hezi .right .hv-image-play {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 5;
}
@media (max-width: 991px) {
  .index-product .container .box .box3 .box3a .hezi .right .hv-image-play {
    display: none;
  }
}
@media (min-width: 992px) {
  .index-product .container .box .box3 .box3a:hover .public-btn1 {
    padding: 0 0.26rem;
    width: auto;
    border-radius: 0.24rem;
    color: #00d1d1;
  }
  .index-product .container .box .box3 .box3a:hover .public-btn1 span {
    display: block;
  }
  .index-product .container .box .box3 .box3a:hover .public-btn1::before {
    transform: scaleX(1);
    transform-origin: left;
  }
  .index-product .container .box .box3 .box3a:hover .public-btn1::before {
    background-color: #00d1d1;
  }
  .index-product .container .box .box3 .box3a:hover .public-btn1 span {
    color: #fff;
  }
  .index-product .container .box .box3 .box3a:hover .public-btn1 svg {
    transform: translateX(0.1rem);
  }
  .index-product .container .box .box3 .box3a:hover .public-btn1 svg path {
    fill: #fff;
  }
}
.index-product .container .box .box3 .box3b {
  display: block;
}
.index-product .container .box .box3 .box3b .hezi {
  justify-content: flex-end;
}
.index-product .container .box .box3 .box3b .hezi::before {
  padding-top: 48.8%;
}
.index-product .container .box .box3 .box3b .hezi .right img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.index-product .container .box .box3 .box3b .hezi .right .mb-img {
  display: none;
}
@media (max-width: 991px) {
  .index-product .container .box .box3 .box3b .hezi .right .mb-img {
    display: block;
  }
}
.index-product .container .box .box3 .box3b .hezi .right .hv-image-play {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 5;
}
@media (max-width: 991px) {
  .index-product .container .box .box3 .box3b .hezi .right .hv-image-play {
    display: none;
  }
}
@media (min-width: 992px) {
  .index-product .container .box .box3 .box3b:hover .public-btn1 {
    color: #00d1d1;
    padding: 0 0.26rem;
    width: auto;
    border-radius: 0.24rem;
  }
  .index-product .container .box .box3 .box3b:hover .public-btn1::before {
    transform: scaleX(1);
    transform-origin: left;
  }
  .index-product .container .box .box3 .box3b:hover .public-btn1 span {
    display: block;
  }
  .index-product .container .box .box3 .box3b:hover .public-btn1::before {
    background-color: #00d1d1;
  }
  .index-product .container .box .box3 .box3b:hover .public-btn1 span {
    color: #fff;
  }
  .index-product .container .box .box3 .box3b:hover .public-btn1 svg {
    transform: translateX(0.1rem);
  }
  .index-product .container .box .box3 .box3b:hover .public-btn1 svg path {
    fill: #fff;
  }
}
.index-product .container .box4 {
  position: relative;
  display: block;
}
.index-product .container .box4 .img {
  border-radius: 0.15rem;
  width: 100%;
}
.index-product .container .box4 .img::before {
  padding-top: 31.25%;
}
@media (max-width: 767px) {
  .index-product .container .box4 .img::before {
    padding-top: 75%;
  }
}
.index-product .container .box4 .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) {
  .index-product .container .box4 .img video {
    display: none;
  }
}
.index-product .container .box4 .img .pc-img {
  display: block;
}
@media (max-width: 991px) {
  .index-product .container .box4 .img .pc-img {
    display: none;
  }
}
.index-product .container .box4 .img .mb-img {
  display: none;
}
@media (max-width: 991px) {
  .index-product .container .box4 .img .mb-img {
    display: block;
  }
}
.index-product .container .box4 .img video {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
  z-index: 2;
}
.index-product .container .box4 .text {
  position: absolute;
  left: 0;
  width: 100%;
  top: 0;
  z-index: 4;
}
.index-product .container .box4 .text .cnt1 {
  padding-top: 0.6rem;
  text-align: center;
  color: #333333;
  line-height: 1.33333333em;
  margin-bottom: 0.15rem;
}
.index-product .container .box4 .text .cnt2 {
  margin-bottom: 0.3rem;
  text-align: center;
  color: #999999;
  line-height: 1.33333333em;
}
.index-product .container .box4 .text .cnt3 {
  display: flex;
  justify-content: center;
}
.index-product .container .box4 .text .cnt3 .public-btn1 {
  border: 2px solid #00d1d1;
  background-color: transparent;
}
@media (max-width: 991px) {
  .index-product .container .box4 .text .cnt3 .public-btn1 {
    background-color: #fff;
  }
}
.index-product .container .box4 .text .cnt3 .public-btn1 span {
  color: #00d1d1;
}
.index-product .container .box4 .text .cnt3 .public-btn1 path {
  fill: #00d1d1;
  opacity: 1;
}
.index-product .container .box4:hover .cnt3 .public-btn1 {
  color: #00d1d1;
}
.index-product .container .box4:hover .cnt3 .public-btn1::before {
  transform: scaleX(1);
  transform-origin: left;
}
.index-product .container .box4:hover .cnt3 .public-btn1::before {
  background-color: #00d1d1;
}
.index-product .container .box4:hover .cnt3 .public-btn1 span {
  color: #fff;
}
.index-product .container .box4:hover .cnt3 .public-btn1 svg {
  transform: translateX(0.1rem);
}
.index-product .container .box4:hover .cnt3 .public-btn1 svg path {
  fill: #fff;
}
.index-product .container .box .box2 .left .left3 {
  padding-bottom: 0.2rem;
}
.index-trait {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  position: relative;
  background-color: #fff;
  z-index: 3;
  display: flex;
}
.index-trait .indextrait99 {
  width: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 991px) {
  .index-trait {
    padding: 1.2rem 0;
  }
}
.index-trait .container {
  position: relative;
}
.index-trait .container .indextraita1 {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  overflow: hidden;
  z-index: 5;
  width: 40%;
}
@media (max-width: 991px) {
  .index-trait .container .indextraita1 {
    width: 100%;
  }
}
.index-trait .container .indextraita1 .swiper-wrapper9 {
  flex-wrap: wrap;
}
.index-trait .container .indextraita1 .swiper-wrapper9 .swiper-slide9 {
  cursor: pointer;
  height: 1rem;
}
.index-trait .container .indextraita1 .swiper-wrapper9 .swiper-slide9 .box {
  width: 100%;
  display: flex;
  align-items: flex-start;
  padding-bottom: 0.5rem;
  background: url(../images/index22.png) repeat-y left 0.12rem top 48px;
}
.index-trait .container .indextraita1 .swiper-wrapper9 .swiper-slide9 .box .cn1 {
  width: 16.66666667%;
  padding: 0.05rem 0;
  height: 0.5rem;
}
@media (max-width: 991px) {
  .index-trait .container .indextraita1 .swiper-wrapper9 .swiper-slide9 .box .cn1 {
    padding: 0;
    width: 0.8rem;
  }
}
.index-trait .container .indextraita1 .swiper-wrapper9 .swiper-slide9 .box .cn1 svg {
  transition: all 0.4s;
  width: 0.28rem;
  height: 0.28rem;
  margin-left: 0.06rem;
}
@media (max-width: 991px) {
  .index-trait .container .indextraita1 .swiper-wrapper9 .swiper-slide9 .box .cn1 svg {
    width: 0.5rem;
    height: 0.5rem;
    margin-left: 0.05rem;
  }
}
.index-trait .container .indextraita1 .swiper-wrapper9 .swiper-slide9 .box .cn1 svg path {
  fill: #999;
  opacity: 1;
}
.index-trait .container .indextraita1 .swiper-wrapper9 .swiper-slide9 .box .cn2 {
  width: 83.33333333%;
}
@media (max-width: 991px) {
  .index-trait .container .indextraita1 .swiper-wrapper9 .swiper-slide9 .box .cn2 {
    width: calc(100% - 0.8rem);
  }
}
.index-trait .container .indextraita1 .swiper-wrapper9 .swiper-slide9 .box .cn2 .cn2a {
  display: none;
}
.index-trait .container .indextraita1 .swiper-wrapper9 .swiper-slide9 .box .cn2 .cn3 {
  line-height: 1.11111111em;
  color: rgba(0, 0, 0, 0.2);
  transition: all 0.4s;
  height: 0.4rem;
}
@media (max-sm) {
  .index-trait .container .indextraita1 .swiper-wrapper9 .swiper-slide9 .box .cn2 .cn3 {
    line-height: 1.38888889em;
  }
}
.index-trait .container .indextraita1 .swiper-wrapper9 .swiper-slide9 .box .cn2 .cn4 {
  line-height: 1.5em;
  margin: 0.2rem 0;
}
.index-trait .container .indextraita1 .swiper-wrapper9 .swiper-slide9.on {
  height: 2.1rem;
}
.index-trait .container .indextraita1 .swiper-wrapper9 .swiper-slide9.on .box .cn1 {
  padding: 0.05rem 0;
}
@media (max-width: 991px) {
  .index-trait .container .indextraita1 .swiper-wrapper9 .swiper-slide9.on .box .cn1 {
    padding: 0;
  }
}
.index-trait .container .indextraita1 .swiper-wrapper9 .swiper-slide9.on .box .cn1 svg {
  width: 0.4rem;
  height: 0.4rem;
  margin-left: 0;
}
@media (max-width: 991px) {
  .index-trait .container .indextraita1 .swiper-wrapper9 .swiper-slide9.on .box .cn1 svg {
    width: 0.6rem;
    height: 0.6rem;
    margin-left: 0;
  }
}
.index-trait .container .indextraita1 .swiper-wrapper9 .swiper-slide9.on .box .cn1 svg path {
  fill: #00d1d1;
}
.index-trait .container .indextraita1 .swiper-wrapper9 .swiper-slide9.on .box .cn2 .cn3 {
  color: #000;
}
.index-trait .container .indextraita2a {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: calc((100vw - 1600px) / 2 + 100%);
}
@media (min-width: 1920px) {
  .index-trait .container .indextraita2a {
    width: calc((100vw - 1600px) / 2 + 100%);
  }
}
@media (max-width: 1900px) {
  .index-trait .container .indextraita2a {
    width: calc(15vw / 2 + 100%);
  }
}
@media (max-width: 1260px) {
  .index-trait .container .indextraita2a {
    width: calc(10vw / 2 + 100%);
  }
}
@media (max-width: 991px) {
  .index-trait .container .indextraita2a {
    position: relative;
  }
}
.index-trait .container .indextraita2a .indextraita2 {
  position: relative;
  height: 100%;
  overflow: hidden;
  width: 70%;
  margin-left: 30%;
}
.index-trait .container .indextraita2a .indextraita2 .swiper-wrapper {
  align-items: center;
}
.index-trait .container .indextraita2a .indextraita2 .swiper-wrapper .swiper-slide {
  display: flex;
  align-items: center;
}
.index-trait .container .indextraita2a .indextraita2 .swiper-wrapper .swiper-slide .img1 {
  width: 100%;
  transform: translateY(-0.6rem);
}
.index-trait .container .indextraita2a .indextraita2 .swiper-wrapper .swiper-slide .img1::before {
  padding-top: 56.25%;
}
.index-trait .container .indextraita2a .indextraita2 .swiper-wrapper .swiper-slide .img1::after {
  content: "";
  position: absolute;
  left: -1px;
  z-index: 3;
  top: 50%;
  transform: translateY(-50%);
  width: 2rem;
  height: 8rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: none;
}
.index-trait .container .indextraita2a .indextraita2 .swiper-wrapper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.index-trait .container .indextraita2a .indextraita2 .swiper-wrapper .swiper-slide video {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
}
.index-about {
  width: 100%;
  height: 240vh;
  position: relative;
}
@media (max-width: 1580px) {
  .index-about {
    height: 220vh;
  }
}
@media (max-width: 767px) {
  .index-about {
    height: 210vh;
  }
}
.index-about .indexabout1 {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  position: sticky;
  top: 0;
  left: 0;
}
.index-about .indexabout1 .cn0 {
  text-align: center;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 25rem;
  height: 25rem;
  border-radius: 50%;
  overflow: hidden;
  transition: all 0.4s ease-in-out;
}
.index-about .indexabout1 .cn0.on {
  width: 9rem;
  height: 9rem;
}
.index-about .indexabout1 .cn0.on2 {
  width: 4.6rem;
  height: 4.6rem;
}
@media (min-width: 1921px) {
  .index-about .indexabout1 .cn0 {
    width: 40rem;
    height: 40rem;
  }
}
.index-about .indexabout1 .cn0 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.index-about .indexabout1 .cn1 {
  text-align: center;
  position: absolute;
  left: 50%;
  top: 70%;
  opacity: 0;
  transform: translate(-50%, -50%);
  width: 60.3125%;
  transition: all 0.4s ease-in-out;
}
.index-about .indexabout1 .cn1.on {
  top: 50%;
  opacity: 1;
}
.index-about .indexabout1 .cn1 span {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}
.index-about .indexabout1 .cn1 span:nth-child(1) {
  font-size: 2rem;
  text-shadow: 0px 29px rgba(212, 223, 241, 0.04);
  opacity: 0.5;
  color: #fff;
}
.index-about .indexabout1 .cn1 span:nth-child(2) {
  font-size: 2rem;
  text-shadow: 0px 0px #000;
  opacity: 0;
  color: #fff;
}
.index-about .indexabout1 .cn1 img {
  opacity: 0.8;
}
.index-about .indexabout1 .cn2 {
  text-align: center;
  position: absolute;
  left: 50%;
  top: 70%;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: all 0.4s ease-in-out;
}
.index-about .indexabout1 .cn2.on {
  top: 50%;
  opacity: 1;
}
.index-about .indexabout1 .cn2 img {
  width: 4.73rem;
  height: 4.73rem;
}
.index-about .indexabout2 {
  position: relative;
  z-index: 5;
  padding-top: 1rem;
}
.index-about .indexabout2 .cn3 .cn3a {
  text-align: center;
  color: #000000;
  line-height: 1em;
  z-index: 2;
  position: relative;
  opacity: 0;
  top: 1rem;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 991px) {
  .index-about .indexabout2 .cn3 .cn3a {
    font-size: 0.5rem;
  }
}
.index-about .indexabout2 .cn3 .cn3a.on {
  top: 0;
  opacity: 1;
}
.index-about .indexabout2 .cn3 .cn3b {
  z-index: 2;
  opacity: 1;
  display: flex;
  justify-content: center;
  position: relative;
  margin-top: 0.4rem;
  opacity: 0;
  top: 0.3rem;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 991px) {
  .index-about .indexabout2 .cn3 .cn3b {
    margin-top: 0.7rem;
  }
}
.index-about .indexabout2 .cn3 .cn3b.on {
  top: 0;
  opacity: 1;
}
.index-about .indexabout2 .cn4 {
  margin-top: 2rem;
  position: relative;
  width: 100%;
  opacity: 1;
}
.index-about .indexabout2 .cn4 .container {
  background-color: rgba(255, 255, 255, 0.8);
  display: flex;
  flex-wrap: wrap;
  padding: 0.6rem 0 4.5rem;
  backdrop-filter: blur(5px);
}
@media (max-width: 991px) {
  .index-about .indexabout2 .cn4 .container {
    padding: 0.6rem 0 2rem;
  }
}
.index-about .indexabout2 .cn4 .container .cn4d {
  width: 69.75%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1260px) {
  .index-about .indexabout2 .cn4 .container .cn4d {
    width: 100%;
  }
}
.index-about .indexabout2 .cn4 .container .cn4d .cn4e {
  width: 45.34050179%;
  position: relative;
  top: 0.6rem;
  opacity: 0;
  margin-bottom: 0.4rem;
}
.index-about .indexabout2 .cn4 .container .cn4d .cn4e.on {
  top: 0;
  opacity: 1;
}
.index-about .indexabout2 .cn4 .container .cn4d .cn4e:nth-child(1) {
  transition: all 0.4s 0.2s ease-in-out;
}
.index-about .indexabout2 .cn4 .container .cn4d .cn4e:nth-child(2) {
  transition: all 0.4s 0.4s ease-in-out;
}
.index-about .indexabout2 .cn4 .container .cn4d .cn4e:nth-child(3) {
  transition: all 0.4s 0.6s ease-in-out;
}
.index-about .indexabout2 .cn4 .container .cn4d .cn4e:nth-child(4) {
  transition: all 0.4s 0.8s ease-in-out;
}
@media (max-width: 767px) {
  .index-about .indexabout2 .cn4 .container .cn4d .cn4e {
    width: 100%;
  }
}
.index-about .indexabout2 .cn4 .container .cn4d .cn4e .cn9::before {
  background-color: #d5d5d5;
}
.index-about .indexabout2 .cn4 .container .cn4d .cn4e .cn9::after {
  background-color: #d5d5d5;
}
.index-about .indexabout2 .cn4 .container .cn4f {
  width: 100%;
}
.index-about .indexabout2 .cn4 .container .cn4f img {
  width: 100%;
}
.index-about .indexabout2 .cn4 .container .cn4a {
  align-items: center;
  display: flex;
  width: 100%;
}
@media (max-width: 991px) {
  .index-about .indexabout2 .cn4 .container .cn4a {
    padding-top: 0.3rem;
    padding-bottom: 0.3rem;
  }
}
.index-about .indexabout2 .cn4 .container .cn4a .cn4b {
  font-size: 0.9rem;
  color: #00d1d1;
  display: flex;
  flex-shrink: 0;
}
.index-about .indexabout2 .cn4 .container .cn4a .cn4b .num {
  width: 50%;
}
@media (max-width: 991px) {
  .index-about .indexabout2 .cn4 .container .cn4a .cn4b {
    width: 40%;
    font-size: 0.7rem;
  }
}
.index-about .indexabout2 .cn4 .container .cn4a .cn4c {
  color: #aaaaaa;
}
@media (max-width: 991px) {
}
@media (min-width: 1921px) {
  .index-about {
    height: 170vh;
  }
}
.index-news {
  padding: 1.1rem 0 2.2rem;
  background-color: #f4f4f4;
  position: relative;
  z-index: 10;
}
@media (max-width: 991px) {
  .index-news.pcindex-news {
    display: none;
  }
}
@media (max-width: 991px) {
  .index-news {
    padding: 1.2rem 0;
  }
}
.index-news .container .textbox .tcn1 {
  text-align: center;
  color: #000;
}
@media (max-width: 991px) {
  .index-news .container .textbox .tcn1 {
    font-size: 0.54rem;
  }
}
.index-news .container .tcn2 {
  display: flex;
  justify-content: center;
  margin: 0.25rem 0 0.28rem;
}
@media (max-width: 991px) {
  .index-news .container .tcn2 {
    margin: 0.5rem 0 0.28rem;
  }
}
.index-news .container .tcn2 .tcn3 {
  text-align: center;
  margin: 0 auto;
  min-width: 1.4rem;
  line-height: 0.45rem;
  border: 2px solid #00d1d1;
  border-radius: 0.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s;
}
@media (max-width: 767px) {
  .index-news .container .tcn2 .tcn3 {
    border-radius: 1rem;
  }
}
.index-news .container .tcn2 .tcn3 svg {
  margin-left: 0.1rem;
}
@media (max-width: 991px) {
  .index-news .container .tcn2.tcn2a {
    display: none;
  }
}
.index-news .container .tcn2.tcn2b {
  display: none;
}
@media (max-width: 991px) {
  .index-news .container .tcn2.tcn2b {
    display: flex;
  }
}
.index-news .container .indexnewsa1 {
  position: relative;
  overflow: hidden;
}
.index-news .container .indexnewsa1 .swiper-wrapper2 {
  display: flex;
  flex-wrap: wrap;
  padding-top: 0.4rem;
}
.index-news .container .indexnewsa1 .swiper-wrapper2 .swiper-slide2 {
  width: 23.125%;
  margin-right: 2.5%;
  background-color: #ffffff;
  border-radius: 15px;
  overflow: hidden;
  height: auto;
  position: relative;
  transition: all 0.4s;
  transition-timing-function: ease-in-out;
  top: 0;
}
@media (max-width: 991px) {
  .index-news .container .indexnewsa1 .swiper-wrapper2 .swiper-slide2 {
    width: 48.75%;
    margin-top: 0.4rem;
    margin-right: 2.5%;
  }
}
@media (max-width: 767px) {
  .index-news .container .indexnewsa1 .swiper-wrapper2 .swiper-slide2 {
    width: 100%;
    margin-right: 0;
  }
}
.index-news .container .indexnewsa1 .swiper-wrapper2 .swiper-slide2:nth-child(4n) {
  margin-right: 0;
}
@media (max-width: 991px) {
  .index-news .container .indexnewsa1 .swiper-wrapper2 .swiper-slide2:nth-child(2n) {
    margin-right: 0;
  }
}
.index-news .container .indexnewsa1 .swiper-wrapper2 .swiper-slide2 .box {
  transition: all 0.4s;
}
.index-news .container .indexnewsa1 .swiper-wrapper2 .swiper-slide2 .img {
  width: 100%;
}
.index-news .container .indexnewsa1 .swiper-wrapper2 .swiper-slide2 .img::before {
  padding-top: 42.55319149%;
}
.index-news .container .indexnewsa1 .swiper-wrapper2 .swiper-slide2 .cn1 {
  padding: 0.35rem 0.3rem;
}
.index-news .container .indexnewsa1 .swiper-wrapper2 .swiper-slide2 .cn1 .cn2 {
  margin-bottom: 0.9rem;
}
.index-news .container .indexnewsa1 .swiper-wrapper2 .swiper-slide2 .cn1 .cn2 .cn3 {
  display: block;
  color: #999999;
  line-height: 2.14285714em;
  margin-bottom: 0.1rem;
  text-align: left;
}
.index-news .container .indexnewsa1 .swiper-wrapper2 .swiper-slide2 .cn1 .cn2 .cn4 {
  color: #2d2d2d;
  line-height: 1.3em;
  height: 2.6em;
  transition: all 0.4s;
  text-align: left;
}
.index-news .container .indexnewsa1 .swiper-wrapper2 .swiper-slide2 .cn1 .cn9::before {
  background-color: #ddd;
}
.index-news .container .indexnewsa1 .swiper-wrapper2 .swiper-slide2 .cn1 .cn9::after {
  background-color: #ddd;
}
.index-news .container .indexnewsa1 .swiper-wrapper2 .swiper-slide2 .cn1 .cn5 {
  padding-top: 0.3rem;
  display: flex;
  justify-content: space-between;
}
.index-news .container .indexnewsa1 .swiper-wrapper2 .swiper-slide2 .cn1 .cn5 .cn6 {
  color: #999999;
  transition: all 0.4s;
}
.index-news .container .indexnewsa1 .swiper-wrapper2 .swiper-slide2 .cn1 .cn5 .cn6 svg {
  width: 0.18rem;
  height: 0.11rem;
  transition: all 0.4s 0.4s;
  opacity: 0;
  transform: translateX(-0.15rem);
}
@media (max-width: 991px) {
  .index-news .container .indexnewsa1 .swiper-wrapper2 .swiper-slide2 .cn1 .cn5 .cn6 svg {
    width: 0.36rem;
    height: 0.22rem;
  }
}
.index-news .container .indexnewsa1 .swiper-wrapper2 .swiper-slide2 .cn1 .cn5 .cn6 svg path {
  fill: #7b7b7b;
  transition: all 0.4s;
  opacity: 1;
}
.index-news .container .indexnewsa1 .swiper-wrapper2 .swiper-slide2 .cn1 .cn5 .cn7 svg {
  width: 0.18rem;
  height: 0.11rem;
  transition: all 0.4s;
}
@media (max-width: 991px) {
  .index-news .container .indexnewsa1 .swiper-wrapper2 .swiper-slide2 .cn1 .cn5 .cn7 svg {
    width: 0.36rem;
    height: 0.22rem;
  }
}
.index-news .container .indexnewsa1 .swiper-wrapper2 .swiper-slide2 .cn1 .cn5 .cn7 svg path {
  fill: #7b7b7b;
  transition: all 0.4s;
  opacity: 1;
}
.index-news .container .indexnewsa1 .swiper-wrapper2 .swiper-slide2:hover {
  top: -0.2rem;
}
.index-news .container .indexnewsa1 .swiper-wrapper2 .swiper-slide2:hover .box .img img {
  transform: scale(1.05);
}
.index-news .container .indexnewsa1 .swiper-wrapper2 .swiper-slide2:hover .box .cn1 .cn2 .cn4 {
  color: #00d1d1;
}
.index-news .container .indexnewsa1 .swiper-wrapper2 .swiper-slide2:hover .box .cn1 .cn9::before {
  display: none;
}
.index-news .container .indexnewsa1 .swiper-wrapper2 .swiper-slide2:hover .box .cn1 .cn9::after {
  display: none;
}
.index-news .container .indexnewsa1 .swiper-wrapper2 .swiper-slide2:hover .box .cn1 .cn9 span::before {
  width: 100%;
}
.index-news .container .indexnewsa1 .swiper-wrapper2 .swiper-slide2:hover .box .cn1 .cn9 span::after {
  height: 6px;
  transform: rotate(30deg) translateY(0);
}
.index-news .container .indexnewsa1 .swiper-wrapper2 .swiper-slide2:hover .box .cn1 .cn5 .cn6 {
  color: #00d1d1;
}
.index-news .container .indexnewsa1 .swiper-wrapper2 .swiper-slide2:hover .box .cn1 .cn5 .cn6 svg {
  transform: translateX(0.05rem);
  opacity: 1;
}
.index-news .container .indexnewsa1 .swiper-wrapper2 .swiper-slide2:hover .box .cn1 .cn5 .cn6 svg path {
  fill: #00d1d1;
}
.index-news .container .indexnewsa1 .swiper-wrapper2 .swiper-slide2:hover .box .cn1 .cn5 .cn7 svg {
  transform: translateX(0.2rem);
  opacity: 0;
}
.index-news .container .indexnewsa1 .swiper-wrapper2 .swiper-slide2:hover .box .cn1 .cn5 .cn7 svg path {
  fill: #00d1d1;
}
.z-footer {
  padding-top: 0.65rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.z-footer .z-footer1 {
  padding-bottom: 0.55rem;
}
.z-footer .z-footer1 .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.z-footer .z-footer1 .container .left {
  width: 62.5%;
}
@media (max-width: 991px) {
  .z-footer .z-footer1 .container .left {
    width: 100%;
  }
}
.z-footer .z-footer1 .container .left .box1 {
  padding-bottom: 0.37rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.z-footer .z-footer1 .container .left .box1 .cn1 img {
  width: 1.5rem;
  height: 0.28rem;
}
@media (max-width: 991px) {
  .z-footer .z-footer1 .container .left .box1 .cn1 img {
    width: 1.8rem;
    height: 0.336rem;
  }
}
.z-footer .z-footer1 .container .left .box1 .cn1 svg {
  width: 1.5rem;
  height: 0.28rem;
}
@media (max-width: 991px) {
  .z-footer .z-footer1 .container .left .box1 .cn1 svg {
    width: 2rem;
    height: 0.37rem;
  }
}
.z-footer .z-footer1 .container .left .box1 .cn2 {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .z-footer .z-footer1 .container .left .box1 .cn2 {
    display: none;
  }
}
.z-footer .z-footer1 .container .left .box1 .cn2 .cn3 {
  margin-left: 0.25rem;
  position: relative;
}
.z-footer .z-footer1 .container .left .box1 .cn2 .cn3 svg {
  height: 0.2rem;
}
@media (max-width: 991px) {
  .z-footer .z-footer1 .container .left .box1 .cn2 .cn3 svg {
    height: 0.4rem;
  }
}
.z-footer .z-footer1 .container .left .box1 .cn2 .cn3 img {
  height: 0.2rem;
}
@media (max-width: 991px) {
  .z-footer .z-footer1 .container .left .box1 .cn2 .cn3 img {
    height: 0.4rem;
  }
}
.z-footer .z-footer1 .container .left .box1 .cn2 .cn3 .footerqrcode {
  position: absolute;
  width: 172px;
  height: 200px;
  background-color: #fff;
  top: -220px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: all 0.24s;
  -o-transition: all 0.24s;
  -moz-transition: all 0.24s;
  transition: all 0.24s;
  visibility: hidden;
  opacity: 0;
  cursor: default;
  text-align: center;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  -webkit-box-shadow: 0 15px 40px 0 rgba(0, 0, 0, 0.09);
  -moz-box-shadow: 0 15px 40px 0 rgba(0, 0, 0, 0.09);
  box-shadow: 0 15px 40px 0 rgba(0, 0, 0, 0.09);
  z-index: 100000;
}
.z-footer .z-footer1 .container .left .box1 .cn2 .cn3 .footerqrcode::after {
  content: '';
  position: absolute;
  top: -webkit-calc(99%);
  top: -moz-calc(99%);
  top: calc(100% - 1px);
  left: 50%;
  margin-left: -10px;
  width: 18px;
  height: 11px;
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB2aWV3Qm94PSIwIDAgMTggMTEiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8ZyBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4KICAgICAgICA8ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtMTU0Mi4wMDAwMDAsIC00MjUuMDAwMDAwKSIgZmlsbD0iI0ZGRkZGRiI+CiAgICAgICAgICAgIDxnIHRyYW5zZm9ybT0idHJhbnNsYXRlKDE0NjUuMDAwMDAwLCAyMjUuMDAwMDAwKSI+CiAgICAgICAgICAgICAgICA8cGF0aCBkPSJNODcuNjk3OTYzNCwyMDkuNzM5NzI0IEM4OC4wMDE4MTk0LDIwOS41MjUwMTkgODguMjY0NjMzNCwyMDkuMjU0NTIzIDg4LjQ3MzI0MDgsMjA4Ljk0MTc4NSBMOTQuMjUsMjAwLjI4MjE3IEw3Ny43NSwyMDAuMjgyMTcgTDgzLjUyNjc1OTIsMjA4Ljk0MTc4NSBDODQuNDY0NTE4NSwyMTAuMzQ3NjQ1IDg2LjMzMjAzMDMsMjEwLjcwNDg5NCA4Ny42OTc5NjM0LDIwOS43Mzk3MjQgWiIgaWQ9IuWchuinkiI+PC9wYXRoPgogICAgICAgICAgICA8L2c+CiAgICAgICAgPC9nPgogICAgPC9nPgo8L3N2Zz4=);
  -webkit-background-size: 100% 100%;
  -moz-background-size: 100% 100%;
  -o-background-size: 100% 100%;
  background-size: 100% 100%;
}
.z-footer .z-footer1 .container .left .box1 .cn2 .cn3 .footerqrcode img {
  display: inline-block;
  margin-top: 16px;
  margin-bottom: 12px;
  width: 140px;
  height: 140px;
}
.z-footer .z-footer1 .container .left .box1 .cn2 .cn3 .footerqrcode span {
  display: block;
  color: #2d2d2d;
}
.z-footer .z-footer1 .container .left .box1 .cn2 .cn3:hover .footerqrcode {
  visibility: visible;
  opacity: 1;
}
.z-footer .z-footer1 .container .left .box2 {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 0.6rem;
}
@media (max-width: 991px) {
  .z-footer .z-footer1 .container .left .box2 {
    display: none;
  }
}
.z-footer .z-footer1 .container .left .box2 .cn1 {
  display: flex;
}
.z-footer .z-footer1 .container .left .box2 .cn1 .cn2 {
  width: 25%;
}
.z-footer .z-footer1 .container .left .box2 .cn1 .cn2:nth-child(4) .cn4 {
  display: flex;
  flex-wrap: wrap;
}
.z-footer .z-footer1 .container .left .box2 .cn1 .cn2:nth-child(4) .cn4 .cn5 {
  width: 50%;
}
.z-footer .z-footer1 .container .left .box2 .cn1 .cn2:last-child {
  width: auto;
  flex-shrink: 0;
}
.z-footer .z-footer1 .container .left .box2 .cn1 .cn2 .cn3 {
  line-height: 1em;
  color: rgba(255, 255, 255, 0.4);
  transition: all 0.4s;
}
.z-footer .z-footer1 .container .left .box2 .cn1 .cn2 .cn3:hover {
  color: #00d1d1;
}
.z-footer .z-footer1 .container .left .box2 .cn1 .cn2 .cn4 {
  margin-top: 0.3rem;
}
.z-footer .z-footer1 .container .left .box2 .cn1 .cn2 .cn4 .cn5 .cn6 {
  line-height: 2em;
  color: #fff;
  transition: all 0.4s;
}
.z-footer .z-footer1 .container .left .box2 .cn1 .cn2 .cn4 .cn5 .cn6:hover {
  color: #00d1d1;
}
.z-footer .z-footer1 .container .right {
  width: 31.25%;
}
@media (max-width: 991px) {
  .z-footer .z-footer1 .container .right {
    width: 100%;
  }
}
.z-footer .z-footer1 .container .right .box3 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.z-footer .z-footer1 .container .right .box3 .cn1 {
  width: 48%;
  line-height: 0.5rem;
  background-color: #2e3648;
  border-radius: 5px;
  margin-bottom: 0.2rem;
}
@media (max-width: 767px) {
  .z-footer .z-footer1 .container .right .box3 .cn1 {
    width: 100%;
    line-height: 0.7rem;
  }
}
.z-footer .z-footer1 .container .right .box3 .cn1 input {
  width: 100%;
  height: 100%;
  padding: 0 0.2rem;
  color: #999999;
}
.z-footer .z-footer1 .container .right .box3 .cn1 input::-webkit-input-placeholder {
  color: #999999;
}
.z-footer .z-footer1 .container .right .box3 .cn1 textarea {
  width: 100%;
  height: 1.3rem;
  padding: 0.2rem;
  color: #999999;
}
.z-footer .z-footer1 .container .right .box3 .cn1 textarea::-webkit-input-placeholder {
  color: #999999;
}
.z-footer .z-footer1 .container .right .box3 .cn1.cn2 {
  width: 100%;
}
.z-footer .z-footer1 .container .right .box3 .cn3 {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.z-footer .z-footer1 .container .right .box3 .cn3 .cn4 {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.z-footer .z-footer1 .container .right .box3 .cn3 .cn4 .cn5 {
  width: 14px;
  height: 14px;
  border: 1px solid #00d1d1;
  border-radius: 50%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}
.z-footer .z-footer1 .container .right .box3 .cn3 .cn4 .cn5.on {
  border: 0px solid transparent;
  background-image: url(../images/footer-img9.svg);
}
.z-footer .z-footer1 .container .right .box3 .cn3 .cn4 .cn6 {
  margin-left: 0.05rem;
  color: rgba(255, 255, 255, 0.2);
}
.z-footer .z-footer1 .container .right .box3 .cn3 button {
  min-width: 1.2rem;
  line-height: 0.4rem;
  text-align: center;
}
@media (max-width: 991px) {
  .z-footer .z-footer1 .container .right .box3 .cn3 button {
    padding: 0 0.6rem;
    width: auto;
    margin: 0.3rem auto 0;
    height: 0.8rem;
    border-radius: 0.4rem;
  }
}
.z-footer .z-footer2 .container {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 0.25rem 0 0.4rem;
}
.z-footer .z-footer2 .container .left {
  display: flex;
  flex-wrap: wrap;
}
.z-footer .z-footer2 .container .left p {
  color: rgba(255, 255, 255, 0.2);
  margin-right: 0.2rem;
}
@media (max-width: 991px) {
  .z-footer .z-footer2 .container .left p {
    width: 100%;
    text-align: center;
  }
}
.z-footer .z-footer2 .container .left a {
  color: rgba(255, 255, 255, 0.2);
  transition: all 0.4s;
}
.z-footer .z-footer2 .container .left a:hover {
  color: #00d1d1;
}
.z-footer .z-footer2 .container .right {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
@media (max-width: 991px) {
  .z-footer .z-footer2 .container .right {
    width: 100%;
    justify-content: center;
  }
}
.z-footer .z-footer2 .container .right a {
  margin-left: 0.4rem;
  color: rgba(255, 255, 255, 0.2);
  transition: all 0.4s;
}
@media (max-width: 991px) {
  .z-footer .z-footer2 .container .right a {
    margin: 0 0.2rem;
  }
}
.z-footer .z-footer2 .container .right a:hover {
  color: #00d1d1;
}
.q-footer {
  overflow: hidden;
  position: relative;
}
.q-footer .bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.q-footer .bg video {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
@media (max-width: 991px) {
  .q-footer .bg video {
    display: none;
  }
}
.q-footer .bg img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: none;
}
@media (max-width: 991px) {
  .q-footer .bg img {
    display: block;
  }
}
.q-footer .q-footer1 {
  position: relative;
  z-index: 2;
  padding: 0.5rem 0 0;
}
.q-footer .q-footer1 .container {
  padding-bottom: 0.3rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  border-bottom: 1px solid rgba(221, 221, 221, 0.1);
}
@media (max-width: 991px) {
  .q-footer .q-footer1 .container {
    justify-content: center;
  }
}
.q-footer .q-footer1 .container .cn1 svg {
  width: 2.6rem;
  height: 0.29rem;
}
@media (max-width: 991px) {
  .q-footer .q-footer1 .container .cn1 svg {
    width: 4rem;
    height: 0.76rem;
  }
}
.q-footer .q-footer1 .container .cn1 img {
  width: 2.6rem;
  height: 0.29rem;
}
@media (max-width: 991px) {
  .q-footer .q-footer1 .container .cn1 img {
    width: 4rem;
    height: 0.76rem;
  }
}
.q-footer .q-footer1 .container .cn2 {
  display: flex;
  flex-wrap: wrap;
  width: 60%;
}
@media (max-width: 991px) {
  .q-footer .q-footer1 .container .cn2 {
    display: none;
  }
}
.q-footer .q-footer1 .container .cn2 .cn3 {
  margin-right: 0.5rem;
  color: #ffffff;
  transition: all 0.4s;
}
@media (max-width: 1580px) {
  .q-footer .q-footer1 .container .cn2 .cn3 {
    margin-right: 0.2rem;
  }
}
.q-footer .q-footer1 .container .cn2 .cn3:hover {
  color: #00d1d1;
}
.q-footer .q-footer2 {
  padding-top: 0.4rem;
  padding-bottom: 0.4rem;
  position: relative;
  z-index: 20;
}
.q-footer .q-footer2 .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.q-footer .q-footer2 .container .left {
  width: 40%;
}
@media (max-width: 991px) {
  .q-footer .q-footer2 .container .left {
    width: 100%;
    text-align: center;
  }
}
.q-footer .q-footer2 .container .left .cn1 {
  padding-top: 0.2rem;
  color: rgba(255, 255, 255, 0.5);
}
.q-footer .q-footer2 .container .left .cn4 {
  color: #ffffff;
}
@media (max-width: 991px) {
  .q-footer .q-footer2 .container .left .cn4 {
    font-size: 0.54rem;
  }
}
.q-footer .q-footer2 .container .left .cn5 {
  margin: 0.3rem 0 0.4rem;
  color: rgba(255, 255, 255, 0.5);
}
@media (max-width: 991px) {
  .q-footer .q-footer2 .container .left .cn5 {
    margin: 0rem 0 0.4rem;
  }
}
.q-footer .q-footer2 .container .left .cn2 {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .q-footer .q-footer2 .container .left .cn2 {
    display: none;
  }
}
.q-footer .q-footer2 .container .left .cn2 .cn3 {
  margin-right: 0.25rem;
  position: relative;
}
.q-footer .q-footer2 .container .left .cn2 .cn3 svg {
  width: auto;
  height: 0.2rem;
}
@media (max-width: 991px) {
  .q-footer .q-footer2 .container .left .cn2 .cn3 svg {
    height: 0.4rem;
  }
}
.q-footer .q-footer2 .container .left .cn2 .cn3 svg path {
  transition: all 0.4s;
  fill: #93969d;
  opacity: 1;
}
.q-footer .q-footer2 .container .left .cn2 .cn3 img {
  height: 0.2rem;
}
@media (max-width: 991px) {
  .q-footer .q-footer2 .container .left .cn2 .cn3 img {
    height: 0.4rem;
  }
}
.q-footer .q-footer2 .container .left .cn2 .cn3 .footerqrcode {
  position: absolute;
  width: 172px;
  height: 200px;
  background-color: #fff;
  top: -220px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: all 0.24s;
  -o-transition: all 0.24s;
  -moz-transition: all 0.24s;
  transition: all 0.24s;
  visibility: hidden;
  opacity: 0;
  cursor: default;
  text-align: center;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  -webkit-box-shadow: 0 15px 40px 0 rgba(0, 0, 0, 0.09);
  -moz-box-shadow: 0 15px 40px 0 rgba(0, 0, 0, 0.09);
  box-shadow: 0 15px 40px 0 rgba(0, 0, 0, 0.09);
  z-index: 100000;
}
.q-footer .q-footer2 .container .left .cn2 .cn3 .footerqrcode::after {
  content: '';
  position: absolute;
  top: -webkit-calc(99%);
  top: -moz-calc(99%);
  top: calc(100% - 1px);
  left: 50%;
  margin-left: -10px;
  width: 18px;
  height: 11px;
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB2aWV3Qm94PSIwIDAgMTggMTEiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8ZyBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4KICAgICAgICA8ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtMTU0Mi4wMDAwMDAsIC00MjUuMDAwMDAwKSIgZmlsbD0iI0ZGRkZGRiI+CiAgICAgICAgICAgIDxnIHRyYW5zZm9ybT0idHJhbnNsYXRlKDE0NjUuMDAwMDAwLCAyMjUuMDAwMDAwKSI+CiAgICAgICAgICAgICAgICA8cGF0aCBkPSJNODcuNjk3OTYzNCwyMDkuNzM5NzI0IEM4OC4wMDE4MTk0LDIwOS41MjUwMTkgODguMjY0NjMzNCwyMDkuMjU0NTIzIDg4LjQ3MzI0MDgsMjA4Ljk0MTc4NSBMOTQuMjUsMjAwLjI4MjE3IEw3Ny43NSwyMDAuMjgyMTcgTDgzLjUyNjc1OTIsMjA4Ljk0MTc4NSBDODQuNDY0NTE4NSwyMTAuMzQ3NjQ1IDg2LjMzMjAzMDMsMjEwLjcwNDg5NCA4Ny42OTc5NjM0LDIwOS43Mzk3MjQgWiIgaWQ9IuWchuinkiI+PC9wYXRoPgogICAgICAgICAgICA8L2c+CiAgICAgICAgPC9nPgogICAgPC9nPgo8L3N2Zz4=);
  -webkit-background-size: 100% 100%;
  -moz-background-size: 100% 100%;
  -o-background-size: 100% 100%;
  background-size: 100% 100%;
}
.q-footer .q-footer2 .container .left .cn2 .cn3 .footerqrcode img {
  display: inline-block;
  margin-top: 16px;
  margin-bottom: 12px;
  width: 140px;
  height: 140px;
}
.q-footer .q-footer2 .container .left .cn2 .cn3 .footerqrcode span {
  display: block;
  color: #2d2d2d;
}
.q-footer .q-footer2 .container .left .cn2 .cn3:hover svg path {
  fill: #00d1d1;
}
.q-footer .q-footer2 .container .left .cn2 .cn3:hover .footerqrcode {
  visibility: visible;
  opacity: 1;
}
.q-footer .q-footer2 .container .right {
  width: 60%;
}
@media (max-width: 991px) {
  .q-footer .q-footer2 .container .right {
    width: 100%;
    margin-top: 0.5rem;
  }
}
.q-footer .q-footer2 .container .right .cn123456 {
  color: #00d1d1;
  opacity: 1;
  margin-bottom: 0.3rem;
  font-weight: bold;
}
.q-footer .q-footer2 .container .right .box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.q-footer .q-footer2 .container .right .box .cn1 {
  width: 31.25%;
  margin-bottom: 0.25rem;
  position: relative;
}
@media (max-width: 767px) {
  .q-footer .q-footer2 .container .right .box .cn1 {
    margin-top: 0.25rem;
    width: 45%;
  }
}
.q-footer .q-footer2 .container .right .box .cn1 label {
  position: absolute;
  left: 0;
  bottom: 0;
  color: #f4f4f4;
  opacity: 0.5;
  line-height: 0.55rem;
  transition: all 0.4s;
}
@media (max-width: 991px) {
  .q-footer .q-footer2 .container .right .box .cn1 label {
    line-height: 0.76rem;
  }
}
.q-footer .q-footer2 .container .right .box .cn1 label.on {
  font-size: 12px;
  bottom: 0.3rem;
}
@media (max-width: 991px) {
  .q-footer .q-footer2 .container .right .box .cn1 label.on {
    bottom: 0.5rem;
  }
}
.q-footer .q-footer2 .container .right .box .cn1 select {
  line-height: 0.55rem;
  width: 100%;
  color: #fff;
  opacity: 1;
  position: relative;
  transition: all 0.4s;
  z-index: 3;
}
@media (max-width: 991px) {
  .q-footer .q-footer2 .container .right .box .cn1 select {
    line-height: 0.76rem;
  }
}
.q-footer .q-footer2 .container .right .box .cn1.cn9 {
  line-height: 0.55rem;
  border-bottom: 1px solid rgba(221, 221, 221, 0.1);
  color: #fff;
  opacity: 1;
  position: relative;
  transition: all 0.4s;
  z-index: 3;
}
@media (max-width: 991px) {
  .q-footer .q-footer2 .container .right .box .cn1.cn9 {
    line-height: 0.76rem;
  }
}
.q-footer .q-footer2 .container .right .box .cn1.cn9 .layui-input {
  background-color: transparent;
}
.q-footer .q-footer2 .container .right .box .cn1.cn9 .layui-input::placeholder {
  color: #fff;
}
.q-footer .q-footer2 .container .right .box .cn1.cn9 input {
  border-bottom: 0;
  height: 0.55rem;
}
@media (max-width: 991px) {
  .q-footer .q-footer2 .container .right .box .cn1.cn9 input {
    height: 0.76rem;
  }
}
.q-footer .q-footer2 .container .right .box .cn1.cn9 input:focus {
  border-bottom: 0;
}
.q-footer .q-footer2 .container .right .box .cn1 .layui-input {
  padding-left: 0;
}
.q-footer .q-footer2 .container .right .box .cn1 .layui-form-select {
  line-height: 0.55rem;
  width: 100%;
  color: #333;
  opacity: 1;
  position: relative;
  transition: all 0.4s;
  z-index: 3;
}
@media (max-width: 991px) {
  .q-footer .q-footer2 .container .right .box .cn1 .layui-form-select {
    line-height: 0.76rem;
  }
}
.q-footer .q-footer2 .container .right .box .cn1 .layui-form-select .layui-select-title input::placeholder {
  color: #f4f4f4 !important;
  opacity: 0.5 !important;
}
.q-footer .q-footer2 .container .right .box .cn1 em {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background-color: #fff;
  transition: all 0.4s;
}
.q-footer .q-footer2 .container .right .box .cn1 em.on {
  width: 100%;
}
.q-footer .q-footer2 .container .right .box .cn1 input {
  line-height: 0.55rem;
  width: 100%;
  border-bottom: 1px solid rgba(221, 221, 221, 0.1);
  color: #fff;
  opacity: 1;
  position: relative;
  transition: all 0.4s;
  z-index: 3;
}
@media (max-width: 991px) {
  .q-footer .q-footer2 .container .right .box .cn1 input {
    line-height: 0.76rem;
  }
}
.q-footer .q-footer2 .container .right .box .cn1 input::placeholder {
  color: #f4f4f4;
  opacity: 0.5;
  transition: all 0.4s;
}
.q-footer .q-footer2 .container .right .box .cn1 input:focus {
  border-bottom: 1px solid #ddd;
}
.q-footer .q-footer2 .container .right .box .cn1 input:focus::placeholder {
  color: #fff;
  opacity: 1;
}
.q-footer .q-footer2 .container .right .box .cn2 {
  width: 100%;
  position: relative;
}
@media (max-width: 991px) {
  .q-footer .q-footer2 .container .right .box .cn2 {
    margin-top: 0.3rem;
  }
}
.q-footer .q-footer2 .container .right .box .cn2 textarea {
  position: relative;
  z-index: 2;
  height: 1rem;
  width: 100%;
  line-height: 0.55rem;
  border-bottom: 1px solid rgba(221, 221, 221, 0.1);
  color: #fff;
}
@media (max-width: 991px) {
  .q-footer .q-footer2 .container .right .box .cn2 textarea {
    line-height: 0.76rem;
    height: 1.42rem;
  }
}
.q-footer .q-footer2 .container .right .box .cn2 textarea::placeholder {
  color: #f4f4f4;
  opacity: 0.5;
  transition: all 0.4s;
}
.q-footer .q-footer2 .container .right .box .cn2 textarea:focus {
  border-bottom: 1px solid #ddd;
}
.q-footer .q-footer2 .container .right .box .cn2 textarea:focus::placeholder {
  color: #fff;
  opacity: 1;
}
.q-footer .q-footer2 .container .right .box .cn2 label {
  position: absolute;
  left: 0;
  bottom: 0.55rem;
  color: #f4f4f4;
  opacity: 0.5;
  line-height: 0.55rem;
  transition: all 0.4s;
}
@media (max-width: 991px) {
  .q-footer .q-footer2 .container .right .box .cn2 label {
    line-height: 0.76rem;
    bottom: 0.76rem;
  }
}
.q-footer .q-footer2 .container .right .box .cn2 label.on {
  font-size: 12px;
  bottom: 0.85rem;
}
@media (max-width: 991px) {
  .q-footer .q-footer2 .container .right .box .cn2 label.on {
    bottom: 1.35rem;
  }
}
.q-footer .q-footer2 .container .right .box .cn3 {
  margin-top: 0.2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
}
@media (max-width: 991px) {
  .q-footer .q-footer2 .container .right .box .cn3 {
    order: 6;
    display: none;
  }
}
.q-footer .q-footer2 .container .right .box .cn3 input {
  width: 0.18rem;
  height: 0.18rem;
  background-image: url(../images/qwe1.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 0.18rem 0.18rem;
}
@media (max-width: 991px) {
  .q-footer .q-footer2 .container .right .box .cn3 input {
    width: 0.25rem;
    height: 0.25rem;
    background-size: 0.25rem 0.25rem;
  }
}
.q-footer .q-footer2 .container .right .box .cn3 input.on {
  background-image: url(../images/qwe2.svg);
}
.q-footer .q-footer2 .container .right .box .cn3 .cn4 {
  margin-left: 0.1rem;
  line-height: 1.71428571em;
  color: #f4f4f4;
  opacity: 0.15;
}
.q-footer .q-footer2 .container .right .box .cn5 {
  margin-top: 0.2rem;
  width: 100%;
}
@media (max-width: 991px) {
  .q-footer .q-footer2 .container .right .box .cn5 {
    text-align: center;
  }
}
.q-footer .q-footer2 .container .right .box .cn5 .cn6 {
  width: 1.6rem;
  height: 0.5rem;
  line-height: 0.5rem;
}
@media (max-width: 991px) {
  .q-footer .q-footer2 .container .right .box .cn5 .cn6 {
    width: 2rem;
    height: 0.76rem;
    line-height: 0.76rem;
  }
}
.q-footer .q-footer3 {
  position: relative;
  z-index: 3;
  background-color: rgba(0, 0, 0, 0.3);
}
.q-footer .q-footer3 .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 0.15rem 0;
}
.q-footer .q-footer3 .container .left {
  display: flex;
  flex-wrap: wrap;
}
.q-footer .q-footer3 .container .left p {
  color: rgba(255, 255, 255, 0.2);
  margin-right: 0.2rem;
}
@media (max-width: 991px) {
  .q-footer .q-footer3 .container .left p {
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 991px) {
  .q-footer .q-footer3 .container .left p::nth-child(2) {
    display: none;
  }
}
@media (max-width: 991px) {
  .q-footer .q-footer3 .container .left p::nth-child(3) {
    display: none;
  }
}
.q-footer .q-footer3 .container .left a {
  color: rgba(255, 255, 255, 0.2);
  transition: all 0.4s;
}
.q-footer .q-footer3 .container .left a:hover {
  color: #00d1d1;
}
.q-footer .q-footer3 .container .right {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
@media (max-width: 991px) {
  .q-footer .q-footer3 .container .right {
    width: 100%;
    justify-content: center;
    display: none;
  }
}
.q-footer .q-footer3 .container .right a {
  margin-left: 0.4rem;
  color: rgba(255, 255, 255, 0.2);
  transition: all 0.4s;
  position: relative;
}
.q-footer .q-footer3 .container .right a::before {
  content: "";
  position: absolute;
  left: -0.2rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 0.14rem;
  background-color: rgba(61, 164, 255, 0.2);
}
.q-footer .q-footer3 .container .right a:first-child::before {
  display: none;
}
@media (max-width: 991px) {
  .q-footer .q-footer3 .container .right a {
    margin: 0 0.2rem;
  }
}
.q-footer .q-footer3 .container .right a:hover {
  color: #00d1d1;
}
/***************** 02-02产品详情 *****************/
.product-info1 {
  width: 100%;
  height: 250vh;
}
@media (max-width: 991px) {
  .product-info1 {
    display: none;
  }
}
.product-info1 .product-info1a {
  width: 100%;
  height: 100vh;
  position: sticky;
  left: 0;
  top: 0;
  overflow: hidden;
}
.product-info1 .product-info1a::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-image: linear-gradient(0deg, #fff 0%, #fff 50%, #eee 100%);
}
.product-info1 .product-info1a .cn1 {
  font-size: 3.6rem;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  line-height: 0.72222222em;
  color: #eeeeee;
  word-break: break-word;
}
@media (max-width: 1260px) {
  .product-info1 .product-info1a .cn1 {
    font-size: 3rem;
  }
}
@media (max-width: 991px) {
  .product-info1 .product-info1a .cn1 {
    top: 20%;
    font-size: 1.8rem;
    line-height: 0.9em;
  }
}
.product-info1 .product-info1a .img {
  z-index: 2;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100vw;
  height: 100vh;
}
@media (max-width: 991px) {
  .product-info1 .product-info1a .img {
    width: 80%;
    top: 37%;
  }
}
.product-info1 .product-info1a .img .img2 {
  margin: 0 auto;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
}
.product-info1 .product-info1a .img.img9 {
  width: 100%;
  height: auto;
}
.product-info1 .product-info1a .img.img9 .img2 {
  width: 40%;
  height: auto;
}
.product-info1 .product-info1a .container {
  opacity: 0;
  z-index: 3;
  position: absolute;
  left: 50%;
  top: 60%;
  transform: translate(-50%, -50%);
}
.product-info1 .product-info1a .container .text {
  width: 37.5%;
  background-color: #ffffff;
  border-radius: 15px;
  height: 70vh;
  overflow: auto;
  padding: 0.4rem;
}
@media (max-width: 991px) {
  .product-info1 .product-info1a .container .text {
    width: 100%;
  }
}
.product-info1 .product-info1a .container .text .cn2 {
  color: #999999;
}
.product-info1 .product-info1a .container .text .cn7 {
  margin: 0.25rem 0 0.6rem;
  line-height: 0.8em;
  color: #333333;
}
.product-info1 .product-info1a .container .text .cn3 {
  line-height: 1.5em;
  color: #999999;
}
.product-info1 .product-info1a .container .text .cn9 {
  margin: 0.45rem 0;
}
.product-info1 .product-info1a .container .text .cn9::before {
  background-color: #d5d5d5;
}
.product-info1 .product-info1a .container .text .cn9::after {
  background-color: #d5d5d5;
}
.product-info1 .product-info1a .container .text .cn5 .cn6 {
  line-height: 1.8em;
  color: #333333;
  display: block;
}
.product-info1 .product-info1a .container .text .cn10 {
  margin-top: 0.9rem;
  display: flex;
  align-items: center;
  flex-wrap: Wrap;
}
.product-info1 .product-info1a .container .text .cn10 .cn11 svg {
  margin-right: 0.1rem;
}
.product-info1 .product-info1a .container .text .cn10 .cn11 svg path {
  fill: #00d1d1;
  opacity: 1;
  transition: all 0.4s;
}
.product-info1 .product-info1a .container .text .cn10 .cn11 img {
  margin-right: 0.1rem;
}
.product-info1 .product-info1a .container .text .cn10 .cn11 span {
  color: #00d1d1;
  transition: all 0.4s;
}
.product-info1 .product-info1a .container .text .cn10 .cn11.productdownload {
  min-width: 1.8rem;
  padding: 0 0.3rem;
  line-height: 0.5rem;
  border: 2px solid #00d1d1;
  display: flex;
  align-items: center;
  border-radius: 25px;
  margin-right: 0.4rem;
  transition: all 0.4s;
}
@media (max-width: 991px) {
  .product-info1 .product-info1a .container .text .cn10 .cn11.productdownload {
    line-height: 0.7rem;
    border-radius: 0.35rem;
  }
}
.product-info1 .product-info1a .container .text .cn10 .cn11.productdownload:hover {
  background-color: #00d1d1;
}
@media (max-width: 991px) {
  .product-info1 .product-info1a .container .text .cn10 .cn11.productdownload:hover {
    background-color: transparent;
  }
}
.product-info1 .product-info1a .container .text .cn10 .cn11.productdownload:hover svg path {
  fill: #fff;
}
@media (max-width: 991px) {
  .product-info1 .product-info1a .container .text .cn10 .cn11.productdownload:hover svg path {
    color: #00d1d1;
  }
}
.product-info1 .product-info1a .container .text .cn10 .cn11.productdownload:hover span {
  color: #fff;
}
@media (max-width: 991px) {
  .product-info1 .product-info1a .container .text .cn10 .cn11.productdownload:hover span {
    color: #00d1d1;
  }
}
.product-info1 .product-info1a .container .text .cn10 .cn11.productdownload2 {
  line-height: 0.5rem;
  border: 2px solid transparent;
  display: flex;
  align-items: center;
}
.mbproduct-info1 {
  width: 100%;
  height: 140vh;
  display: none;
}
@media (max-width: 991px) {
  .mbproduct-info1 {
    display: block;
  }
}
.mbproduct-info1 .product-info1a {
  width: 100%;
  height: 100vh;
  position: sticky;
  left: 0;
  top: 0;
  overflow: hidden;
}
.mbproduct-info1 .product-info1a::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-image: linear-gradient(0deg, #fff 0%, #fff 50%, #eee 100%);
}
.mbproduct-info1 .product-info1a .cn1 {
  font-size: 3.6rem;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  line-height: 0.72222222em;
  color: #eeeeee;
  word-break: break-word;
}
@media (max-width: 1260px) {
  .mbproduct-info1 .product-info1a .cn1 {
    font-size: 3rem;
  }
}
@media (max-width: 991px) {
  .mbproduct-info1 .product-info1a .cn1 {
    top: 20%;
    font-size: 2rem;
    line-height: 0.9em;
  }
}
@media (max-width: 767px) {
  .mbproduct-info1 .product-info1a .cn1 {
    font-size: 1.3rem;
  }
}
.mbproduct-info1 .product-info1a .img {
  z-index: 2;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  max-width: 7.5rem;
  width: calc(750/1915*100%);
}
@media (max-width: 991px) {
  .mbproduct-info1 .product-info1a .img {
    width: 80%;
    top: 37%;
  }
}
.mbproduct-info1 .product-info1a .img .img2 {
  margin: 0 auto;
  width: 100%;
}
.mbproduct-info1 .product-info1a .container {
  opacity: 0;
  z-index: 3;
  position: absolute;
  left: 50%;
  top: 103%;
  transform: translate(-50%, -50%);
}
.mbproduct-info1 .product-info1a .container .text {
  width: 37.5%;
  background-color: #ffffff;
  border-radius: 15px;
  height: 55vh;
  overflow: auto;
  padding: 0.4rem;
}
@media (max-width: 991px) {
  .mbproduct-info1 .product-info1a .container .text {
    width: 100%;
  }
}
.mbproduct-info1 .product-info1a .container .text .cn2 {
  color: #999999;
}
.mbproduct-info1 .product-info1a .container .text .cn7 {
  margin: 0.25rem 0 0.6rem;
  line-height: 0.8em;
  color: #333333;
}
.mbproduct-info1 .product-info1a .container .text .cn3 {
  line-height: 1.5em;
  color: #999999;
}
.mbproduct-info1 .product-info1a .container .text .cn9 {
  margin: 0.45rem 0;
}
.mbproduct-info1 .product-info1a .container .text .cn9::before {
  background-color: #d5d5d5;
}
.mbproduct-info1 .product-info1a .container .text .cn9::after {
  background-color: #d5d5d5;
}
.mbproduct-info1 .product-info1a .container .text .cn5 .cn6 {
  line-height: 1.8em;
  color: #333333;
  display: block;
}
.mbproduct-info1 .product-info1a .container .text .cn10 {
  margin-top: 0.9rem;
  display: flex;
  align-items: center;
  flex-wrap: Wrap;
}
.mbproduct-info1 .product-info1a .container .text .cn10 .cn11 svg {
  margin-right: 0.1rem;
}
.mbproduct-info1 .product-info1a .container .text .cn10 .cn11 svg path {
  fill: #00d1d1;
  opacity: 1;
  transition: all 0.4s;
}
.mbproduct-info1 .product-info1a .container .text .cn10 .cn11 img {
  margin-right: 0.1rem;
}
.mbproduct-info1 .product-info1a .container .text .cn10 .cn11 span {
  color: #00d1d1;
  transition: all 0.4s;
}
.mbproduct-info1 .product-info1a .container .text .cn10 .cn11:nth-child(1) {
  min-width: 1.8rem;
  padding: 0 0.3rem;
  line-height: 0.5rem;
  border: 2px solid #00d1d1;
  display: flex;
  align-items: center;
  border-radius: 25px;
  margin-right: 0.4rem;
  transition: all 0.4s;
}
@media (max-width: 991px) {
  .mbproduct-info1 .product-info1a .container .text .cn10 .cn11:nth-child(1) {
    line-height: 0.7rem;
    border-radius: 0.35rem;
  }
}
.mbproduct-info1 .product-info1a .container .text .cn10 .cn11:nth-child(1):hover {
  background-color: #00d1d1;
}
@media (max-width: 991px) {
  .mbproduct-info1 .product-info1a .container .text .cn10 .cn11:nth-child(1):hover {
    background-color: transparent;
  }
}
.mbproduct-info1 .product-info1a .container .text .cn10 .cn11:nth-child(1):hover svg path {
  fill: #fff;
}
@media (max-width: 991px) {
  .mbproduct-info1 .product-info1a .container .text .cn10 .cn11:nth-child(1):hover svg path {
    color: #00d1d1;
  }
}
.mbproduct-info1 .product-info1a .container .text .cn10 .cn11:nth-child(1):hover span {
  color: #fff;
}
@media (max-width: 991px) {
  .mbproduct-info1 .product-info1a .container .text .cn10 .cn11:nth-child(1):hover span {
    color: #00d1d1;
  }
}
.mbproduct-info1 .product-info1a .container .text .cn10 .cn11:nth-child(2) {
  line-height: 0.5rem;
  border: 2px solid transparent;
  display: flex;
  align-items: center;
}
.product-info2 {
  padding-top: 1.1rem;
  padding-bottom: 1.2rem;
}
@media (max-width: 991px) {
  .product-info2 {
    padding-top: 0;
  }
}
.product-info2 .black {
  display: block;
  width: 12px;
  height: 12px;
  background-color: #000;
  border-radius: 50%;
  border: 1px solid #000;
  margin-right: 0.1rem;
}
.product-info2 .white {
  display: block;
  width: 12px;
  height: 12px;
  border: 1px solid #333;
  background-color: transparent;
  border-radius: 50%;
  margin-right: 0.1rem;
}
.product-info2 .heng {
  display: block;
  width: 12px;
  height: 12px;
  border: 1px solid transparent;
  position: relative;
  margin-right: 0.1rem;
}
.product-info2 .heng::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-505, -50%);
  width: 100%;
  height: 2px;
  background-color: #000;
}
.product-info2 .container {
  display: flex;
}
.product-info2 .container .left {
  padding-top: 1.3rem;
  width: 20%;
  position: relative;
}
@media (max-width: 991px) {
  .product-info2 .container .left {
    display: none;
  }
}
.product-info2 .container .left .box {
  position: sticky;
  left: 0;
  top: 1rem;
}
.product-info2 .container .left .box::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.1);
}
.product-info2 .container .left .box .cn1 {
  padding-left: 0.2rem;
  color: #999999;
  line-height: 1.88888889em;
  margin-bottom: 0.2rem;
  position: relative;
  transition: all 0.4s;
  cursor: pointer;
}
.product-info2 .container .left .box .cn1::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 2px;
  height: 0;
  transition: all 0.4s;
  background-color: #00d1d1;
}
.product-info2 .container .left .box .cn1.on {
  color: #333333;
}
.product-info2 .container .left .box .cn1.on::before {
  height: 100%;
}
.product-info2 .container .right {
  width: 80%;
}
@media (max-width: 991px) {
  .product-info2 .container .right {
    width: 100%;
  }
}
.product-info2 .container .right .box2 .box3 {
  display: flex;
  padding: 0.15rem 0;
  background-color: #effafa;
  border: solid 1px #e7e7e7;
  position: sticky;
  left: 0;
  top: 0;
}
@media (max-width: 991px) {
  .product-info2 .container .right .box2 .box3 {
    padding: 0.3rem 0;
  }
}
.product-info2 .container .right .box2 .box3 .box3left {
  width: 23.4375%;
}
@media (max-width: 991px) {
  .product-info2 .container .right .box2 .box3 .box3left {
    display: none;
  }
}
.product-info2 .container .right .box2 .box3 .box3left .cn2 {
  line-height: 1.81818182em;
  color: #333333;
  padding: 0 0.35rem;
}
.product-info2 .container .right .box2 .box3 .box3right {
  width: 76.5625%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 991px) {
  .product-info2 .container .right .box2 .box3 .box3right {
    width: 100%;
    justify-content: center;
  }
}
.product-info2 .container .right .box2 .box3 .box3right .cn3 {
  line-height: 1.81818182em;
  color: #333333;
}
@media (max-width: 991px) {
  .product-info2 .container .right .box2 .box3 .box3right .cn3 {
    font-size: 0.4rem;
  }
}
.product-info2 .container .right .box2 .box3 .box3right .cn4 {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 0 0.4rem;
}
@media (max-width: 767px) {
  .product-info2 .container .right .box2 .box3 .box3right .cn4 {
    display: none;
  }
}
.product-info2 .container .right .box2 .box3 .box3right .cn4 .cn5 {
  margin-left: 0.3rem;
  align-items: center;
  display: flex;
  flex-wrap: wrap;
}
.product-info2 .container .right .box2 .box3 .box3right .cn4 .cn5 .cn6 {
  display: block;
  margin-left: 0.1rem;
  font-style: normal;
  color: #333333;
}
.product-info2 .container .right .box2 .box4 {
  display: flex;
  flex-wrap: wrap;
  padding: 0.3rem 0;
  border-bottom: 1px solid #ddd;
}
.product-info2 .container .right .box2 .box4:last-child {
  border-bottom: 0;
}
.product-info2 .container .right .box2 .box4 .box4left {
  width: 23.4375%;
  padding: 0 0.35rem;
}
@media (max-width: 991px) {
  .product-info2 .container .right .box2 .box4 .box4left {
    padding: 0 0.2rem;
    width: 100%;
  }
}
.product-info2 .container .right .box2 .box4 .box4left .cn2 {
  padding: 0.15rem 0;
  color: #333;
  line-height: 1.875em;
}
@media (max-width: 991px) {
  .product-info2 .container .right .box2 .box4 .box4left .cn2 {
    font-size: 0.4rem;
    text-align: left;
  }
}
.product-info2 .container .right .box2 .box4 .box4right {
  width: 76.5625%;
}
@media (max-width: 991px) {
  .product-info2 .container .right .box2 .box4 .box4right {
    width: 100%;
  }
}
.product-info2 .container .right .box2 .box4 .box4right .cn3 {
  background-color: #f5f5f5;
  display: flex;
  flex-wrap: wrap;
}
.product-info2 .container .right .box2 .box4 .box4right .cn3:nth-child(even) {
  background-color: #fff;
}
.product-info2 .container .right .box2 .box4 .box4right .cn3 .cn4 {
  width: 50%;
  padding: 0.15rem 0.2rem;
  color: #999999;
  line-height: 1.875em;
}
@media (max-width: 767px) {
  .product-info2 .container .right .box2 .box4 .box4right .cn3 .cn4 {
    width: 50%;
    padding: 0.1rem 0.2rem;
  }
}
.product-info2 .container .right .box2 .box4 .box4right .cn3 .cn5 {
  width: 50%;
  padding: 0.15rem 0.2rem;
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .product-info2 .container .right .box2 .box4 .box4right .cn3 .cn5 {
    width: 50%;
    padding: 0.1rem 0.2rem;
  }
}
.product-info2 .container .right .box2 .box4 .box4right .cn3 .cn5 .cn6 {
  color: #333333;
}
/***************** 02-03产品对比 *****************/
.duibi-box2 {
  margin-bottom: 1.4rem;
}
@media (max-width: 991px) {
  .duibi-box2 {
    margin-top: 0.75rem;
  }
}
.duibi-box2 .box2 {
  position: relative;
}
.duibi-box2 .box2::-webkit-scrollbar {
  height: 8px;
  position: fixed;
  bottom: 0;
}
.duibi-box2 .black {
  display: block;
  width: 12px;
  height: 12px;
  background-color: #000;
  border-radius: 50%;
  border: 1px solid #000;
}
.duibi-box2 .white {
  display: block;
  width: 12px;
  height: 12px;
  border: 1px solid #333;
  background-color: transparent;
  border-radius: 50%;
}
.duibi-box2 .heng {
  display: block;
  width: 12px;
  height: 12px;
  border: 1px solid transparent;
  position: relative;
}
.duibi-box2 .heng::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-505, -50%);
  width: 100%;
  height: 2px;
  background-color: #000;
}
.duibi-box2 .container {
  max-width: 1400px;
}
.duibi-box2 .container .box .cn1 {
  background-color: #f5f5f5;
  padding: 0.25rem 0.3rem;
  display: flex;
  align-items: center;
}
.duibi-box2 .container .box .cn1 .cn2 {
  color: #333333;
  line-height: 1.5em;
}
.duibi-box2 .container .box .cn1 .cn3 {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .duibi-box2 .container .box .cn1 .cn3 {
    display: none;
  }
}
.duibi-box2 .container .box .cn1 .cn3 .cn4 {
  margin-left: 0.3rem;
  align-items: center;
  display: flex;
  flex-wrap: wrap;
}
.duibi-box2 .container .box .cn1 .cn3 .cn4 .cn5 {
  display: block;
  margin-left: 0.1rem;
  font-style: normal;
  color: #333333;
}
.duibi-box2 .container .box2 {
  border: 0;
  width: 100%;
  white-space: nowrap;
  display: block;
  position: relative;
}
.duibi-box2 .container .box2 thead {
  position: sticky;
  left: 0;
  top: 0;
  width: 100%;
  display: block;
  background-color: #fff;
  z-index: 5;
  opacity: 0;
  transition: all 1s;
  transform: translateY(-2rem);
}
.duibi-box2 .container .box2 thead.on {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 991px) {
  .duibi-box2 .container .box2 thead {
    overflow: auto;
    width: 0;
    height: 0;
  }
}
.duibi-box2 .container .box2 .box3 {
  display: block;
  width: 100%;
  white-space: nowrap;
  font-size: 0;
}
.duibi-box2 .container .box2 .box3.box3j .box3a {
  border-bottom: 0;
}
.duibi-box2 .container .box2 .box3.box3j .box3b {
  text-align: center;
  border-bottom: 0;
}
.duibi-box2 .container .box2 .box3.box3j .box3b:before {
  top: 50%;
  transform: translateY(-50%);
  height: 0.15rem;
}
.duibi-box2 .container .box2 .box3 td {
  background-color: #fff;
  align-items: center;
  width: 23.57142857%;
  display: inline-block;
  border-bottom: 1px solid #ddd;
}
@media (max-width: 991px) {
  .duibi-box2 .container .box2 .box3 td {
    width: 30%;
  }
}
@media (max-width: 767px) {
  .duibi-box2 .container .box2 .box3 td {
    width: 50%;
  }
}
.duibi-box2 .container .box2 .box3 td:nth-child(1) {
  width: 29.28571429%;
  z-index: 4;
  text-align: left;
  position: sticky;
  left: 0;
  top: 0.2rem;
  font-weight: bold;
  padding: 0.25rem 0.3rem;
  background-color: #fff;
}
.duibi-box2 .container .box2 .box3 td:nth-child(1) .cn6 {
  line-height: 1.5em;
  color: #999999;
  white-space: pre-line;
  word-break: break-all;
}
@media (max-width: 991px) {
  .duibi-box2 .container .box2 .box3 td:nth-child(1) {
    width: 30%;
  }
}
.duibi-box2 .container .box2 .box3 td.box3b {
  position: relative;
  padding: 0.25rem 0.3rem;
  white-space: normal;
}
.duibi-box2 .container .box2 .box3 td.box3b::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: 100%;
  background-color: #ddd;
}
.duibi-box2 .container .box2 .box3 td.box3b .cn4 {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  white-space: pre-line;
}
.duibi-box2 .container .box2 .box3 td.box3b .cn4 .cn5 {
  display: block;
  margin-left: 0.1rem;
  font-style: normal;
  color: #333333;
}
.duibi-box2 .container .box2 .box3 td.box3b .cn9 {
  color: #333333;
  white-space: break-spaces;
  word-break: break-all;
}
.duibi-box2 .container .box2 .box3.box3y {
  margin-bottom: 0.35rem;
}
.duibi-box2 .container .box2 .box3.box3y td {
  padding: 0;
  border-bottom: 0;
  width: 23.57142857%;
}
@media (max-width: 991px) {
  .duibi-box2 .container .box2 .box3.box3y td {
    width: 30%;
  }
}
@media (max-width: 767px) {
  .duibi-box2 .container .box2 .box3.box3y td {
    width: 50%;
  }
}
.duibi-box2 .container .box2 .box3.box3y td::before {
  display: none;
}
.duibi-box2 .container .box2 .box3.box3y td:nth-child(1) {
  width: 29.28571429%;
  align-items: flex-start;
}
@media (max-width: 991px) {
  .duibi-box2 .container .box2 .box3.box3y td:nth-child(1) {
    width: 30%;
  }
}
@media (max-width: 991px) {
  .duibi-box2 .container .box2 .box3.box3y td:nth-child(1) .zbox2 {
    display: none;
  }
}
.duibi-box2 .container .box2 .box3.box3y td:nth-child(1) .zcn1 {
  padding-top: 0.2rem;
  line-height: 1.33333333em;
  color: #333333;
}
.duibi-box2 .container .box2 .box3.box3y td:nth-child(1) .zcn2 {
  line-height: 1.33333333em;
  color: #333333;
  white-space: break-spaces;
}
.duibi-box2 .container .box2 .box3.box3y td:nth-child(1) .zcn2 span {
  color: #00d1d1;
}
.duibi-box2 .container .box2 .box3.box3y td:nth-child(1) .zcn3 {
  margin-top: 0.45rem;
}
.duibi-box2 .container .box2 .box3.box3y td:nth-child(1) .zcn3 svg {
  transform: rotate(180deg);
  margin-left: 0;
  margin-right: 0.1rem;
}
.duibi-box2 .container .box2 .box3.box3y td:nth-child(1) .zcn3 span {
  display: block;
}
.duibi-box2 .container .box2 .box3.box3y td .zbox1 {
  width: 87.87878788%;
  margin: 0 auto;
  position: relative;
}
@media (max-width: 991px) {
  .duibi-box2 .container .box2 .box3.box3y td .zbox1 {
    width: 95%;
  }
}
.duibi-box2 .container .box2 .box3.box3y td .zbox1 .zbox1cn1 {
  overflow: hidden;
  width: 100%;
  line-height: 0.6rem;
  color: #000000;
  border-radius: 10px 10px 0px 0px;
  border: 1px solid #e8e8e8;
  padding: 0 0.4rem 0 0.2rem;
  position: relative;
  cursor: pointer;
}
@media (max-width: 991px) {
  .duibi-box2 .container .box2 .box3.box3y td .zbox1 .zbox1cn1 {
    line-height: 1rem;
  }
}
.duibi-box2 .container .box2 .box3.box3y td .zbox1 .zbox1cn1 .zbox1cn1a {
  display: block;
}
.duibi-box2 .container .box2 .box3.box3y td .zbox1 .zbox1cn1 .zbox1cn1b {
  position: absolute;
  right: 0.2rem;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
}
.duibi-box2 .container .box2 .box3.box3y td .zbox1 .zbox2 {
  display: none;
  max-height: 5.8rem;
  overflow: auto;
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  border: 1px solid #e8e8e8;
  border-radius: 0 0 10px 10px;
  z-index: 5;
  border-top: 0;
  background-color: #fff;
}
.duibi-box2 .container .box2 .box3.box3y td .zbox1 .zbox2 .zbox3:first-child .zbox1cn2::before {
  display: none;
}
.duibi-box2 .container .box2 .box3.box3y td .zbox1 .zbox2 .zbox3 .zbox1cn2 {
  padding: 0 0.4rem 0 0.2rem;
  line-height: 0.65rem;
  cursor: pointer;
  position: relative;
}
@media (max-width: 991px) {
  .duibi-box2 .container .box2 .box3.box3y td .zbox1 .zbox2 .zbox3 .zbox1cn2 {
    line-height: 0.9rem;
  }
}
.duibi-box2 .container .box2 .box3.box3y td .zbox1 .zbox2 .zbox3 .zbox1cn2 .zbox1cn2a {
  position: absolute;
  width: 0.14rem;
  height: 0.14rem;
  right: 0.2rem;
  top: 50%;
  transform: translateY(-50%);
}
.duibi-box2 .container .box2 .box3.box3y td .zbox1 .zbox2 .zbox3 .zbox1cn2 .zbox1cn2a em {
  position: absolute;
  left: 50%;
  top: 50%;
  background-color: #000;
  transform: translate(-50%, -50%);
}
.duibi-box2 .container .box2 .box3.box3y td .zbox1 .zbox2 .zbox3 .zbox1cn2 .zbox1cn2a em:nth-child(1) {
  width: 100%;
  height: 2px;
}
.duibi-box2 .container .box2 .box3.box3y td .zbox1 .zbox2 .zbox3 .zbox1cn2 .zbox1cn2a em:nth-child(2) {
  width: 2px;
  height: 100%;
  transition: all 0.4s;
}
.duibi-box2 .container .box2 .box3.box3y td .zbox1 .zbox2 .zbox3 .zbox1cn2::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  width: calc(100% - 0.4rem);
  height: 1px;
  background-color: #e8e8e8;
}
.duibi-box2 .container .box2 .box3.box3y td .zbox1 .zbox2 .zbox3 .zbox1cn2::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: calc(100% - 0.4rem);
  height: 0;
  transition: all 0.4s;
  background-color: #e8e8e8;
}
.duibi-box2 .container .box2 .box3.box3y td .zbox1 .zbox2 .zbox3 .zbox1cn2.on em:nth-child(2) {
  transform: translate(-50%, -50%) rotate(90deg);
}
.duibi-box2 .container .box2 .box3.box3y td .zbox1 .zbox2 .zbox3 .zbox1cn2.on::before {
  height: 1px;
}
.duibi-box2 .container .box2 .box3.box3y td .zbox1 .zbox2 .zbox3 .zbox1cn2.on::after {
  height: 1px;
}
.duibi-box2 .container .box2 .box3.box3y td .zbox1 .zbox2 .zbox3 .zbox1cn3 {
  display: none;
  padding: 0.1rem 0;
}
.duibi-box2 .container .box2 .box3.box3y td .zbox1 .zbox2 .zbox3 .zbox1cn3 .zbox1cn4 .zbox1cn5 {
  line-height: 2.375em;
  color: #666;
  padding: 0 0.2rem;
  cursor: pointer;
  transition: all 0.4s;
}
.duibi-box2 .container .box2 .box3.box3y td .zbox1 .zbox2 .zbox3 .zbox1cn3 .zbox1cn4 .zbox1cn5:hover {
  color: #00d1d1;
}
.duibi-box2 .container .box2 .box3.box3y td .zbox1 .zbox2 .zbox3 .zbox1cn3 .zbox1cn4 .zbox1cn6 {
  display: none;
}
.duibi-box2 .container .box2 .box3.box3y td .zbox1 .zbox2 .zbox3 .zbox1cn3 .zbox1cn4 .zbox1cn6 .zbox1cn7 {
  line-height: 0.4rem;
  padding: 0 0.2rem 0 0.3rem;
  position: relative;
  color: #999999;
  transition: all 0.4s;
}
.duibi-box2 .container .box2 .box3.box3y td .zbox1 .zbox2 .zbox3 .zbox1cn3 .zbox1cn4 .zbox1cn6 .zbox1cn7::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0.2rem;
  transform: translateY(-50%);
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background-color: #999;
  transition: all 0.4s;
}
.duibi-box2 .container .box2 .box3.box3y td .zbox1 .zbox2 .zbox3 .zbox1cn3 .zbox1cn4 .zbox1cn6 .zbox1cn7:hover {
  cursor: pointer;
  background-color: #f6f6f6;
  color: #00d1d1;
}
.duibi-box2 .container .box2 .box3.box3y td .zbox1 .zbox2 .zbox3 .zbox1cn3 .zbox1cn4 .zbox1cn6 .zbox1cn7:hover::before {
  background-color: #00d1d1;
}
.duibi-box2 .container .box2 .box3.box3y td .zimg1 {
  width: 87.87878788%;
  margin: 0 auto;
  background-color: #f8f8f8;
  border-radius: 0px 0px 10px 10px;
}
@media (max-width: 991px) {
  .duibi-box2 .container .box2 .box3.box3y td .zimg1 {
    width: 95%;
  }
}
.duibi-box2 .container .box2 .box3.box3y td .zimg1:before {
  padding-top: 104.82758621%;
}
.duibi-box2 .container .box2 .box3.box3y td .zimg1:hover img {
  transform: scale(1.05);
}
.duibi-box2 .container .box2 .box3.box3y td .zlink {
  width: 87.87878788%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  color: #00d1d1;
  line-height: 0.55rem;
}
@media (max-width: 991px) {
  .duibi-box2 .container .box2 .box3.box3y td .zlink {
    line-height: 0.8rem;
  }
}
.duibi-box2 .container .box2 .box3.box3y td .zlink img {
  width: 7px;
  height: 12px;
  margin-left: 0.15rem;
  transition: all 0.4s;
}
.duibi-box2 .container .box2 .box3.box3y td .zlink:hover img {
  transform: translate(0.05rem);
}
.duibi-box2 .container .box2 .box3.box3z td {
  padding: 0;
  background-color: #f5f5f5;
  box-sizing: content-box;
}
.duibi-box2 .container .box2 .box3.box3z td::before {
  display: none;
}
.duibi-box2 .container .box2 tbody {
  display: block;
  width: 100%;
  overflow-x: auto;
}
.duibi-box2 .container .box2 tbody::-webkit-scrollbar {
  height: 5px;
}
/***************** 02-04产品软件劢微云 *****************/
.product-box1 {
  margin-top: 0.5rem;
}
.product-box1 .box1 {
  margin-bottom: 1.2rem;
}
.product-box1 .box1 .container .box1a {
  position: relative;
}
.product-box1 .box1 .container .box1a .img {
  box-shadow: 0px 0px 20px 0px rgba(0, 166, 166, 0.1);
  border-radius: 5px;
}
.product-box1 .box1 .container .box1a .img::before {
  padding-top: 40.625%;
}
@media (max-width: 767px) {
  .product-box1 .box1 .container .box1a .img::before {
    padding-top: 110%;
  }
}
.product-box1 .box1 .container .box1a .img2 {
  position: absolute;
  width: 54.125%;
  bottom: -0.42rem;
  right: 0.45rem;
}
@media (max-width: 767px) {
  .product-box1 .box1 .container .box1a .img2 {
    width: 100%;
    right: 0;
  }
}
.product-box1 .box1 .container .box1a .img2 .img2a::before {
  padding-top: 59.12240185%;
}
.product-box1 .box1 .container .box1a.box99 .text {
  left: 50%;
  text-align: center;
  top: 0.5rem !important;
  transform: translate(-50%, 0) !important;
}
.product-box1 .box1 .container .box1a .img3 {
  z-index: 3;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -0.5rem;
  width: 89.1875%;
}
.product-box1 .box1 .container .box1a .img3::before {
  padding-top: 29.43237561%;
}
@media (max-width: 991px) {
  .product-box1 .box1 .container .box1a .img3::before {
    padding-top: 72.91666667%;
  }
}
@media (max-width: 991px) {
  .product-box1 .box1 .container .box1a .img3 .pc-img {
    display: none;
  }
}
.product-box1 .box1 .container .box1a .img3 .mb-img {
  display: none;
}
@media (max-width: 991px) {
  .product-box1 .box1 .container .box1a .img3 .mb-img {
    display: block;
  }
}
.product-box1 .box1 .container .box1a .text {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 1rem;
  z-index: 3;
  width: calc(100% - 2rem);
}
@media (max-width: 767px) {
  .product-box1 .box1 .container .box1a .text {
    top: 0.5rem;
    transform: translateY(0);
    left: 0.5rem;
    width: calc(100% - 1rem);
  }
}
.product-box1 .box1 .container .box1a .text .cn1 {
  line-height: 1.38888889em;
  color: #fff;
}
@media (max-width: 991px) {
  .product-box1 .box1 .container .box1a .text .cn1 {
    text-align: center;
  }
}
.product-box1 .box1 .container .box1a .text .cn2 {
  margin-top: 0.3rem;
}
@media (max-width: 991px) {
  .product-box1 .box1 .container .box1a .text .cn2 {
    text-align: center;
  }
}
.product-box1 .box1 .container .box1a .text .cn2 .cn3 {
  margin-top: 0.2rem;
  margin-right: 0.2rem;
  background-color: transparent;
  border: 2px solid #fff;
}
@media (max-width: 991px) {
  .product-box1 .box1 .container .box1a .text .cn2 .cn3 {
    margin: 0 0.1rem;
  }
}
.product-box1 .box1 .container .box1a .text .cn2 .cn3 svg {
  width: 0.23rem;
  height: auto;
  margin-left: 0;
  margin-right: 0.1rem;
}
@media (max-width: 991px) {
  .product-box1 .box1 .container .box1a .text .cn2 .cn3 svg {
    width: 0.32rem;
  }
}
.product-box1 .box1 .container .box1a .text .cn2 .cn3:hover {
  background-color: #fff;
  transition-delay: 0.4s;
}
.product-box1 .box1 .container .box1a .text .cn2 .cn3:hover svg {
  transform: translateX(0);
}
.product-box1.product-fangzhen .box1 .container .box1a .img2 .img2a::before {
  padding-top: 60.59564719%;
}
.product-box1.product-fangzhen .box4 .container .box4a .box4aright {
  width: 53.75%;
  padding: 0.7rem 5.8125%;
}
@media (max-width: 991px) {
  .product-box1.product-fangzhen .box4 .container .box4a .box4aright {
    width: 100%;
    margin-top: 0.5rem;
  }
}
.product-box1.product-fangzhen .box4 .container .box4a .box4aright .box4b .swiper-wrapper .swiper-slide .img::before {
  padding-top: 59.94065282%;
}
.product-box1 .box2 .container {
  border-bottom: 1px solid #dddddd;
}
.product-box1 .box2 .container .cn1 {
  text-align: center;
  color: #333333;
  line-height: 1.5em;
}
@media (max-width: 991px) {
  .product-box1 .box2 .container .cn1 {
    font-size: 0.5rem;
  }
}
.product-box1 .box2 .container .cn2 {
  padding: 0.15rem 0 0.9rem;
  text-align: center;
  color: #333333;
  line-height: 1.66666667em;
  width: 66.875%;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .product-box1 .box2 .container .cn2 {
    width: 100%;
  }
}
.product-box1 .box3 {
  padding-top: 0.8rem;
  padding-bottom: 1.1rem;
}
.product-box1 .box3 .container .cn1 {
  text-align: center;
  color: #333333;
  line-height: 1.5em;
}
@media (max-width: 991px) {
  .product-box1 .box3 .container .cn1 {
    font-size: 0.5rem;
  }
}
.product-box1 .box3 .container .cn2 {
  padding: 0.15rem 0 0;
  text-align: center;
  color: #333333;
  line-height: 1.66666667em;
  width: 66.875%;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .product-box1 .box3 .container .cn2 {
    width: 100%;
  }
}
.product-box1 .box3 .container .box3a {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.product-box1 .box3 .container .box3a .box3b {
  margin: 0.7rem 0.1rem 0;
  width: 2rem;
}
.product-box1 .box3 .container .box3a .box3b .img {
  height: 1rem;
  width: 1rem;
  background-color: #00d1d1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto;
  position: relative;
}
.product-box1 .box3 .container .box3a .box3b .img::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background-color: #00d1d1;
  opacity: 0.2;
  z-index: 1;
  animation: prorotate 2s infinite linear;
}
.product-box1 .box3 .container .box3a .box3b .img::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  z-index: 2;
  background-color: #00d1d1;
}
.product-box1 .box3 .container .box3a .box3b .img img {
  position: relative;
  z-index: 3;
  max-width: 45%;
  height: auto;
}
.product-box1 .box3 .container .box3a .box3b .cn3 {
  margin-top: 0.4rem;
  text-align: center;
  color: #333333;
}
.product-box1 .box4 {
  padding: 1rem 0 1.42rem;
  background-color: #f8f8f8;
}
.product-box1 .box4 .container .cn1 {
  text-align: center;
  color: #333333;
  line-height: 1.5em;
}
@media (max-width: 991px) {
  .product-box1 .box4 .container .cn1 {
    font-size: 0.5rem;
  }
}
.product-box1 .box4 .container .cn2 {
  padding: 0.15rem 0 0.6rem;
  text-align: center;
  color: #333333;
  line-height: 1.66666667em;
  width: 66.875%;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .product-box1 .box4 .container .cn2 {
    width: 100%;
  }
}
.product-box1 .box4 .container .box4a {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.product-box1 .box4 .container .box4a .box4aleft {
  padding-left: 6.25%;
  width: 42.5%;
}
@media (max-width: 1260px) {
  .product-box1 .box4 .container .box4a .box4aleft {
    padding-left: 0;
  }
}
@media (max-width: 991px) {
  .product-box1 .box4 .container .box4a .box4aleft {
    width: 100%;
  }
}
.product-box1 .box4 .container .box4a .box4aleft .box4c {
  position: relative;
  overflow: hidden;
}
.product-box1 .box4 .container .box4a .box4aleft .box4c::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: 100%;
  background-color: #ddd;
}
@media (max-width: 991px) {
  .product-box1 .box4 .container .box4a .box4aleft .box4c::before {
    display: none;
  }
}
.product-box1 .box4 .container .box4a .box4aleft .box4c .swiper-slide {
  cursor: pointer;
  margin-bottom: 0.4rem;
  padding-left: 0.3rem;
  position: relative;
}
@media (max-width: 991px) {
  .product-box1 .box4 .container .box4a .box4aleft .box4c .swiper-slide {
    padding-bottom: 0.2rem;
    padding-left: 0;
    text-align: center;
  }
}
.product-box1 .box4 .container .box4a .box4aleft .box4c .swiper-slide::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: 100%;
  background-color: #ddd;
}
@media (max-width: 991px) {
  .product-box1 .box4 .container .box4a .box4aleft .box4c .swiper-slide::before {
    width: 100%;
    height: 1px;
    top: initial;
    bottom: 0;
  }
}
.product-box1 .box4 .container .box4a .box4aleft .box4c .swiper-slide::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 2px;
  height: 0;
  background-color: #00d1d1;
  transition: all 0.4s;
}
@media (max-width: 991px) {
  .product-box1 .box4 .container .box4a .box4aleft .box4c .swiper-slide::after {
    width: 0;
    height: 1px;
    top: initial;
    bottom: 0;
  }
}
.product-box1 .box4 .container .box4a .box4aleft .box4c .swiper-slide .cn3 {
  color: #999999;
  line-height: 1em;
}
.product-box1 .box4 .container .box4a .box4aleft .box4c .swiper-slide .cn4 {
  width: 76.36363636%;
  margin-top: 0.1rem;
  display: none;
  color: #333333;
  line-height: 1.5em;
}
@media (max-width: 1260px) {
  .product-box1 .box4 .container .box4a .box4aleft .box4c .swiper-slide .cn4 {
    width: 80%;
  }
}
.product-box1 .box4 .container .box4a .box4aleft .box4c .swiper-slide.swiper-slide-thumb-active::after {
  height: 100%;
}
@media (max-width: 991px) {
  .product-box1 .box4 .container .box4a .box4aleft .box4c .swiper-slide.swiper-slide-thumb-active::after {
    height: 1px;
    width: 100%;
  }
}
.product-box1 .box4 .container .box4a .box4aleft .box4c .swiper-slide.swiper-slide-thumb-active .cn3 {
  color: #333333;
}
.product-box1 .box4 .container .box4a .box4aleft .box4c .swiper-slide.swiper-slide-thumb-active .cn4 {
  display: block;
}
@media (max-width: 991px) {
  .product-box1 .box4 .container .box4a .box4aleft .box4c .swiper-slide.swiper-slide-thumb-active .cn4 {
    display: none;
  }
}
.product-box1 .box4 .container .box4a .box4aleft .box4c .swiper-slide:last-child {
  margin-bottom: 0;
}
.product-box1 .box4 .container .box4a .box4aright {
  width: 53.75%;
  background-color: #ffffff;
  border-radius: 15px;
  padding: 0.7rem 5.25%;
}
@media (max-width: 1260px) {
  .product-box1 .box4 .container .box4a .box4aright {
    width: 57.5%;
  }
}
@media (max-width: 991px) {
  .product-box1 .box4 .container .box4a .box4aright {
    width: 100%;
    margin-top: 0.5rem;
  }
}
.product-box1 .box4 .container .box4a .box4aright .box4b {
  position: relative;
  overflow: hidden;
}
.product-box1 .box4 .container .box4a .box4aright .box4b .swiper-slide .img::before {
  padding-top: 56.29522431%;
}
@keyframes prorotate {
  from {
    opacity: 1;
    transform: translate(-50%, -50%) scale(0.8);
  }
  to {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.2;
  }
}
.case-box3.public-case {
  padding-top: 2.1rem;
  padding-bottom: 0.4rem;
}
.case-box3.public-case .tcn1 {
  margin: 0 auto 0.6rem;
  max-width: 90%;
  text-align: center;
  color: #333333;
}
/***************** 02-05产品软件仓储管理系统 *****************/
.product-box2 {
  overflow: hidden;
  margin-top: 0.5rem;
}
.product-box2 .box5 {
  padding: 1rem 0 1.1rem;
  background-color: #f8f8f8;
}
.product-box2 .box5 .container .cn1 {
  text-align: center;
  color: #333333;
}
@media (max-width: 991px) {
  .product-box2 .box5 .container .cn1 {
    font-size: 0.5rem;
  }
}
.product-box2 .box5 .container .cn2 {
  text-align: center;
  color: #000000;
  margin: 0.2rem 0 0.3rem;
}
.product-box2 .box5 .container .box5a {
  position: relative;
  overflow: hidden;
}
.product-box2 .box5 .container .box5c {
  display: flex;
  justify-content: center;
}
.product-box2 .box5 .container .box5a {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  background-color: #fff;
}
@media (max-width: 767px) {
  .product-box2 .box5 .container .box5a {
    border-radius: 0.38rem;
  }
}
.product-box2 .box5 .container .box5a .swiper-slide {
  min-width: 2rem;
  width: auto;
  border-radius: 30px;
  cursor: pointer;
}
@media (max-width: 767px) {
  .product-box2 .box5 .container .box5a .swiper-slide {
    border-radius: 0.38rem;
  }
}
.product-box2 .box5 .container .box5a .swiper-slide .cn3 {
  text-align: center;
  padding: 0 0.4rem;
  color: #333;
  line-height: 0.6rem;
}
@media (max-width: 767px) {
  .product-box2 .box5 .container .box5a .swiper-slide .cn3 {
    line-height: 0.76rem;
  }
}
.product-box2 .box5 .container .box5a .swiper-slide.swiper-slide-thumb-active {
  background-color: #00d1d1;
}
.product-box2 .box5 .container .box5a .swiper-slide.swiper-slide-thumb-active .cn3 {
  color: #fff;
}
.product-box2 .box5 .container .box5b {
  margin-top: 0.6rem;
  position: relative;
  overflow: hidden;
}
.product-box2 .box5 .container .box5b .swiper-slide {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .product-box2 .box5 .container .box5b .swiper-slide {
    flex-direction: column-reverse;
  }
}
.product-box2 .box5 .container .box5b .swiper-slide .left {
  width: 40%;
}
@media (max-width: 991px) {
  .product-box2 .box5 .container .box5b .swiper-slide .left {
    margin-top: 0.5rem;
    width: 100%;
  }
}
.product-box2 .box5 .container .box5b .swiper-slide .left .cn4 {
  font-size: 1.6rem;
  line-height: 0.725em;
  color: #333333;
  opacity: 0.05;
}
.product-box2 .box5 .container .box5b .swiper-slide .left .cn5 {
  transform: translateY(-0.25rem);
  background-color: #f8f8f8;
  color: #333333;
}
.product-box2 .box5 .container .box5b .swiper-slide .left .cn6 {
  padding-left: 20px;
  width: 75%;
}
@media (max-width: 767px) {
  .product-box2 .box5 .container .box5b .swiper-slide .left .cn6 {
    width: 100%;
  }
}
.product-box2 .box5 .container .box5b .swiper-slide .left .cn6 .cn7 {
  line-height: 1.66666667em;
  list-style: disc;
  margin-bottom: 0.2rem;
}
.product-box2 .box5 .container .box5b .swiper-slide .left .arrow {
  margin-top: 0.5rem;
  display: flex;
}
@media (max-width: 991px) {
  .product-box2 .box5 .container .box5b .swiper-slide .left .arrow {
    justify-content: center;
  }
}
.product-box2 .box5 .container .box5b .swiper-slide .left .arrow .public-btn1 {
  margin-right: 0.2rem;
  width: 0.45rem;
  height: 0.45rem;
  padding: 0;
  cursor: pointer;
  background-color: transparent;
  border: 2px solid #00d1d1;
}
@media (max-width: 991px) {
  .product-box2 .box5 .container .box5b .swiper-slide .left .arrow .public-btn1 {
    width: 0.76rem;
    height: 0.76rem;
  }
}
.product-box2 .box5 .container .box5b .swiper-slide .left .arrow .public-btn1.box5bright svg {
  transform: translateX(0) rotate(180deg);
}
.product-box2 .box5 .container .box5b .swiper-slide .left .arrow .public-btn1 svg {
  transform: translateX(0);
  margin-left: 0;
  margin-right: 0;
}
.product-box2 .box5 .container .box5b .swiper-slide .left .arrow .public-btn1 svg path {
  fill: #00d1d1;
}
.product-box2 .box5 .container .box5b .swiper-slide .left .arrow .public-btn1:hover::before {
  background-color: #00d1d1;
}
.product-box2 .box5 .container .box5b .swiper-slide .left .arrow .public-btn1:hover svg path {
  fill: #fff;
}
.product-box2 .box5 .container .box5b .swiper-slide .right {
  width: 53.75%;
  background-color: #ffffff;
  border-radius: 15px;
  padding: 0.7rem 5.25%;
}
@media (max-width: 1260px) {
  .product-box2 .box5 .container .box5b .swiper-slide .right {
    width: 57.5%;
  }
}
@media (max-width: 991px) {
  .product-box2 .box5 .container .box5b .swiper-slide .right {
    width: 100%;
    padding: 0;
    margin-top: 0.5rem;
  }
}
.product-box2 .box5 .container .box5b .swiper-slide .right .img::before {
  padding-top: 56.29522431%;
}
.product-box2 .box6 {
  padding: 1rem 0 1.1rem;
  background-color: #f8f8f8;
  overflow: hidden;
}
.product-box2 .box6 .container {
  max-width: 1400px;
}
.product-box2 .box6 .container .cn1 {
  text-align: center;
  color: #333333;
}
@media (max-width: 991px) {
  .product-box2 .box6 .container .cn1 {
    font-size: 0.5rem;
  }
}
.product-box2 .box6 .container .cn2 {
  text-align: center;
  color: #000000;
  margin: 0.2rem 0 0;
}
.product-box2 .box6 .container .box5a {
  position: relative;
  overflow: hidden;
}
.product-box2 .box6 .container .box6c {
  margin-top: 0.3rem;
  display: flex;
  justify-content: center;
}
.product-box2 .box6 .container .box6a {
  position: relative;
  overflow: hidden;
}
.product-box2 .box6 .container .box6a .swiper-wrapper2 {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .product-box2 .box6 .container .box6a .swiper-wrapper2 {
    white-space: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
  }
}
.product-box2 .box6 .container .box6a .swiper-slide2 {
  min-width: 1.2rem;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  width: 20%;
}
@media (max-width: 991px) {
  .product-box2 .box6 .container .box6a .swiper-slide2 {
    width: 33%;
  }
}
.product-box2 .box6 .container .box6a .swiper-slide2 .cn3 {
  text-align: center;
  padding: 0 0.2rem;
  color: #333;
  line-height: 0.4rem;
}
@media (max-width: 991px) {
  .product-box2 .box6 .container .box6a .swiper-slide2 .cn3 {
    padding: 0;
  }
}
@media (max-width: 767px) {
  .product-box2 .box6 .container .box6a .swiper-slide2 .cn3 {
    line-height: 0.76rem;
  }
}
.product-box2 .box6 .container .box6a .swiper-slide2.on {
  border-bottom: 2px solid #00d1d1;
}
.product-box2 .box6 .container .box6a .swiper-slide2.on .cn3 {
  color: #00d1d1;
  font-weight: bold;
}
.product-box2 .box6 .container .box6b {
  margin-top: 0.6rem;
  position: relative;
}
.product-box2 .box6 .container .box6b.box6z .swiper-slide .left {
  width: 39.04761905%;
}
.product-box2 .box6 .container .box6b.box6z .swiper-slide .left .cn4 {
  padding-top: 1.25rem;
}
.product-box2 .box6 .container .box6b.box6z .swiper-slide .left .cn6 .cn7 {
  width: 80%;
}
.product-box2 .box6 .container .box6b.box6z .swiper-slide .right {
  width: 60.95238095%;
}
.product-box2 .box6 .container .box6b.box6z .swiper-slide .right .img::before {
  padding-top: 67.05729167%;
}
.product-box2 .box6 .container .box6b .arrow {
  display: flex;
}
@media (max-width: 991px) {
  .product-box2 .box6 .container .box6b .arrow {
    padding-bottom: 1rem;
    position: relative;
  }
}
.product-box2 .box6 .container .box6b .arrow .public-btn1 {
  width: 45px;
  height: 45px;
  padding: 0;
  cursor: pointer;
  background-color: transparent;
  border: 2px solid #00d1d1;
}
@media (max-width: 991px) {
  .product-box2 .box6 .container .box6b .arrow .public-btn1 {
    width: 0.76rem;
    height: 0.76rem;
  }
}
.product-box2 .box6 .container .box6b .arrow .public-btn1.box6bleft {
  position: absolute;
  right: calc(100% + 7.5px);
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}
@media (max-width: 991px) {
  .product-box2 .box6 .container .box6b .arrow .public-btn1.box6bleft {
    right: initial;
    left: 35%;
  }
}
.product-box2 .box6 .container .box6b .arrow .public-btn1.box6bleft svg {
  transform: translateX(0) rotate(180deg);
}
.product-box2 .box6 .container .box6b .arrow .public-btn1.box6bright {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: calc(100% + 7.5px);
}
@media (max-width: 991px) {
  .product-box2 .box6 .container .box6b .arrow .public-btn1.box6bright {
    left: initial;
    right: 35%;
  }
}
.product-box2 .box6 .container .box6b .arrow .public-btn1 svg {
  transform: translateX(0);
  margin-left: 0;
  margin-right: 0;
}
.product-box2 .box6 .container .box6b .arrow .public-btn1 svg path {
  fill: #00d1d1;
}
.product-box2 .box6 .container .box6b .arrow .public-btn1:hover::before {
  background-color: #00d1d1;
}
.product-box2 .box6 .container .box6b .arrow .public-btn1:hover svg path {
  fill: #fff;
}
.product-box2 .box6 .container .box6b .swiper-slide {
  display: flex;
  flex-wrap: wrap;
  background-color: #fff;
  border-radius: 15px;
  height: auto;
  padding: 0.8rem 5%;
}
.product-box2 .box6 .container .box6b .swiper-slide .left {
  width: 50.15873016%;
}
@media (max-width: 991px) {
  .product-box2 .box6 .container .box6b .swiper-slide .left {
    width: 100%;
  }
}
.product-box2 .box6 .container .box6b .swiper-slide .left .cn4 {
  line-height: 0.73333333em;
  color: #333333;
  opacity: 0.2;
}
.product-box2 .box6 .container .box6b .swiper-slide .left .cn5 {
  color: #333333;
  line-height: 1em;
  margin: 0.3rem 0;
}
.product-box2 .box6 .container .box6b .swiper-slide .left .cn6 {
  width: 100%;
  padding-right: 0.1rem;
  padding-left: 0.3rem;
}
.product-box2 .box6 .container .box6b .swiper-slide .left .cn6 .cn7 {
  list-style: disc;
  line-height: 1.66666667em;
}
.product-box2 .box6 .container .box6b .swiper-slide .right {
  width: 49.84126984%;
  background-color: #ffffff;
  border-radius: 15px;
}
@media (max-width: 1260px) {
  .product-box2 .box6 .container .box6b .swiper-slide .right {
    width: 57.5%;
  }
}
@media (max-width: 991px) {
  .product-box2 .box6 .container .box6b .swiper-slide .right {
    width: 100%;
    padding: 0;
    margin-top: 0.5rem;
  }
}
.product-box2 .box6 .container .box6b .swiper-slide .right .img::before {
  padding-top: 73.88535032%;
}
.product-box2 .box7 {
  background-color: #f8f8f8;
  padding: 1rem 0 1.2rem;
}
.product-box2 .box7 .container {
  max-width: 1400px;
}
.product-box2 .box7 .container .cn1 {
  text-align: center;
  color: #333333;
  line-height: 1em;
}
.product-box2 .box7 .container .cn2 {
  margin: 0.2rem 0 0.4rem;
  text-align: center;
  color: #000000;
  line-height: 1.66666667em;
}
.product-box2 .box7 .container .box7c {
  margin-top: 0.3rem;
  display: flex;
  justify-content: center;
}
.product-box2 .box7 .container .box7f {
  margin-top: 0.3rem;
  position: relative;
  overflow: hidden;
}
.product-box2 .box7 .container .box7f .swiper-slide .cn9 {
  text-align: center;
  color: #333333;
  line-height: 1.875em;
}
.product-box2 .box7 .container .box7a {
  position: relative;
}
.product-box2 .box7 .container .box7a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #Ddd;
}
.product-box2 .box7 .container .box7a .swiper-wrapper2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.product-box2 .box7 .container .box7a .swiper-slide2 {
  margin-right: 0.7rem;
  width: auto;
  position: relative;
  cursor: pointer;
}
.product-box2 .box7 .container .box7a .swiper-slide2:last-child {
  margin-right: 0;
}
.product-box2 .box7 .container .box7a .swiper-slide2 .cn3 {
  text-align: center;
  color: #999999;
  line-height: 0.4rem;
}
@media (max-width: 991px) {
  .product-box2 .box7 .container .box7a .swiper-slide2 .cn3 {
    line-height: 0.76rem;
  }
}
.product-box2 .box7 .container .box7a .swiper-slide2.on {
  border-bottom: 2px solid #00d1d1;
}
.product-box2 .box7 .container .box7a .swiper-slide2.on .cn3 {
  color: #00d1d1;
}
.product-box2 .box7 .container .box7a .swiper-slide2.swiper-slide-thumb-active {
  border-bottom: 2px solid #00d1d1;
}
.product-box2 .box7 .container .box7a .swiper-slide2.swiper-slide-thumb-active .cn3 {
  color: #00d1d1;
}
.product-box2 .box7 .container .box7d {
  position: relative;
}
.product-box2 .box7 .container .box7d .arrow {
  display: flex;
}
.product-box2 .box7 .container .box7d .arrow .public-btn1 {
  width: 0.45rem;
  height: 0.45rem;
  padding: 0;
  cursor: pointer;
  background-color: transparent;
  border: 1px solid #00d1d1;
}
@media (max-width: 991px) {
  .product-box2 .box7 .container .box7d .arrow .public-btn1 {
    width: 0.76rem;
    height: 0.76rem;
  }
}
.product-box2 .box7 .container .box7d .arrow .public-btn1.box7bleft {
  position: absolute;
  right: calc(100%);
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}
@media (max-width: 1260px) {
  .product-box2 .box7 .container .box7d .arrow .public-btn1.box7bleft {
    right: initial;
    left: 0;
  }
}
.product-box2 .box7 .container .box7d .arrow .public-btn1.box7bleft svg {
  transform: translateX(0) rotate(180deg);
}
.product-box2 .box7 .container .box7d .arrow .public-btn1.box7bright {
  position: absolute;
  top: 50%;
  z-index: 2;
  transform: translateY(-50%);
  left: calc(100%);
}
@media (max-width: 1260px) {
  .product-box2 .box7 .container .box7d .arrow .public-btn1.box7bright {
    right: 0;
    left: initial;
  }
}
.product-box2 .box7 .container .box7d .arrow .public-btn1 svg {
  transform: translateX(0);
  margin-left: 0;
  margin-right: 0;
}
.product-box2 .box7 .container .box7d .arrow .public-btn1 svg path {
  fill: #00d1d1;
}
.product-box2 .box7 .container .box7d .arrow .public-btn1:hover::before {
  background-color: #00d1d1;
}
.product-box2 .box7 .container .box7d .arrow .public-btn1:hover svg path {
  fill: #fff;
}
.product-box2 .box7 .container .box7b {
  width: 91.42857143%;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
@media (max-width: 991px) {
  .product-box2 .box7 .container .box7b {
    width: 100%;
  }
}
.product-box2 .box7 .container .box7b .swiper-slide {
  display: flex;
  flex-wrap: wrap;
  background-color: #fff;
  border-radius: 15px;
  padding: 0.8rem 0;
}
.product-box2 .box7 .container .box7b .swiper-slide .right {
  width: 64.21875%;
  margin: 0 auto;
}
@media (max-width: 1260px) {
  .product-box2 .box7 .container .box7b .swiper-slide .right {
    width: 57.5%;
  }
}
@media (max-width: 991px) {
  .product-box2 .box7 .container .box7b .swiper-slide .right {
    width: 100%;
    padding: 0;
    margin-top: 0.5rem;
  }
}
.product-box2 .box7 .container .box7b .swiper-slide .right .img::before {
  padding-top: 55.35279805%;
}
/***************** 03-01应用聚合页 *****************/
.public-btn1.public-btn2 {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  padding: 0;
}
.public-btn1.public-btn2 svg {
  margin-left: 0;
}
.public-btn1.public-btn2:hover svg {
  transform: translateX(0);
}
.application-box1 {
  padding: 1rem 0 1.4rem;
  background-color: #fff;
}
.application-box1 .container .text {
  border-bottom: 1px solid #eee;
}
.application-box1 .container .text .cn1 {
  color: #333333;
  line-height: 1.2em;
}
@media (max-width: 991px) {
  .application-box1 .container .text .cn1 {
    text-align: center;
    font-size: 0.5rem;
  }
}
.application-box1 .container .text .cn2 {
  padding: 0.2rem 0 0.4rem;
  color: #999999;
  line-height: 1.5em;
}
@media (max-width: 991px) {
  .application-box1 .container .text .cn2 {
    text-align: center;
  }
}
.application-box1 .container .box {
  display: flex;
  justify-content: space-between;
  height: 5rem;
}
@media (max-width: 767px) {
  .application-box1 .container .box {
    flex-wrap: wrap;
    height: auto;
  }
}
.application-box1 .container .box .box2 {
  margin-top: 0.5rem;
  padding: 0.7rem 0.2rem 0.65rem;
  margin-right: 0.2rem;
  width: 50%;
  background-color: #f8f8f8;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: all 0.4s;
}
@media (max-width: 991px) {
  .application-box1 .container .box .box2 {
    margin-right: 0.1rem;
    width: calc((100% - 0.4rem) / 5);
  }
}
@media (max-width: 767px) {
  .application-box1 .container .box .box2 {
    width: 100%;
    margin-right: 0;
    height: 5rem;
  }
}
.application-box1 .container .box .box2 .box3 {
  text-align: center;
  transition: all 0.4s;
  opacity: 1;
  margin-bottom: 0.2rem;
}
@media (max-width: 767px) {
  .application-box1 .container .box .box2 .box3 {
    opacity: 0 !important;
    z-index: -2 !important;
  }
}
.application-box1 .container .box .box2 .box3 .img {
  text-align: center;
}
.application-box1 .container .box .box2 .box3 .img svg {
  width: auto;
  height: 0.6rem;
}
.application-box1 .container .box .box2 .box3 .img svg path {
  fill: #333;
  opacity: 1;
}
.application-box1 .container .box .box2 .box3 .img img {
  height: 0.6rem;
}
.application-box1 .container .box .box2 .box3 .cn3 {
  margin-top: 0.2rem;
  color: #333333;
}
.application-box1 .container .box .box2 .text2 {
  position: absolute;
  left: 0.5rem;
  top: 0.7rem;
  display: none;
  width: calc(100% - 1rem);
}
@media (max-width: 767px) {
  .application-box1 .container .box .box2 .text2 {
    display: block !important;
    animation: none !important;
  }
}
.application-box1 .container .box .box2 .text2 .cn4 {
  color: #333333;
  line-height: 1.6em;
}
.application-box1 .container .box .box2 .text2 .cn5 {
  padding-right: 0.5rem;
  margin: 0.2rem 0 0.4rem;
  color: #666666;
  line-height: 1.875em;
}
.application-box1 .container .box .box2 .img2 {
  position: absolute;
  right: 0.6rem;
  bottom: 0.25rem;
  display: none;
}
@media (max-width: 767px) {
  .application-box1 .container .box .box2 .img2 {
    display: block !important;
    animation: none !important;
  }
}
.application-box1 .container .box .box2 .img2 svg {
  width: auto;
  height: 2.6rem;
}
.application-box1 .container .box .box2 .img2 svg path {
  fill: #00d1d1;
  opacity: 0.1;
}
.application-box1 .container .box .box2 .public-btn2 {
  margin: 0 auto;
  transition: opacity 0.4s;
  background-color: transparent;
}
@media (max-width: 767px) {
  .application-box1 .container .box .box2 .public-btn2 {
    opacity: 0 !important;
    z-index: -2 !important;
  }
}
.application-box1 .container .box .box2 .public-btn2 svg path {
  fill: #00d1d1;
}
.application-box1 .container .box .box2:last-child {
  margin-right: 0;
}
.application-box1 .container .box .box2.on {
  width: 50%;
  flex-shrink: 0;
}
@media (max-width: 991px) {
  .application-box1 .container .box .box2.on {
    width: 40%;
  }
}
@media (max-width: 767px) {
  .application-box1 .container .box .box2.on {
    width: 100%;
  }
}
.application-box1 .container .box .box2.on .box3 {
  opacity: 0;
  z-index: -2;
}
.application-box1 .container .box .box2.on .public-btn2 {
  opacity: 0;
  z-index: -2;
}
.application-box1 .container .box .box2.on .text2 {
  display: block;
  animation: mybottom1 0.4s 1 linear forwards;
}
.application-box1 .container .box .box2.on .img2 {
  display: block;
  animation: myleft1 0.4s 1 linear forwards;
}
@keyframes mybottom1 {
  from {
    transform: translateY(0.6rem);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes myleft1 {
  from {
    transform: translateX(-0.6rem);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
/***************** 03-02应用详情页 *****************/
.application-box2 {
  position: relative;
  width: 100%;
  height: 100vh;
}
@media (max-width: 991px) {
  .application-box2 {
    position: relative;
    width: 100%;
    height: auto;
    padding-top: 2.5rem;
    padding-bottom: 1rem;
    display: flex;
    flex-direction: column-reverse;
  }
}
.application-box2 .img {
  position: relative;
  width: 100%;
  height: 100%;
}
@media (max-width: 991px) {
  .application-box2 .img {
    margin-top: 2rem;
  }
}
.application-box2 .img video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 991px) {
  .application-box2 .img video {
    display: none;
  }
}
.application-box2 .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 991px) {
  .application-box2 .img img.pc-img {
    display: none;
  }
}
.application-box2 .img img.mb-img {
  display: none;
}
@media (max-width: 991px) {
  .application-box2 .img img.mb-img {
    display: block;
  }
}
.application-box2 .zhezao {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  max-height: 100%;
  width: 12.2rem;
}
@media (max-width: 991px) {
  .application-box2 .zhezao {
    display: none;
  }
}
.application-box2 .container {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
@media (max-width: 991px) {
  .application-box2 .container {
    position: relative;
    width: 90%;
    top: 0;
    left: 0;
    transform: initial;
    text-align: center;
  }
}
.application-box2 .container .cn1 {
  color: #000000;
  line-height: 1.2em;
}
@media (max-width: 991px) {
  .application-box2 .container .cn1 {
    font-size: 0.5rem;
  }
}
.application-box2 .container .cn2 {
  margin-top: 0.18rem;
  line-height: 1.875em;
  color: #666666;
}
@media (min-width: 1921px) {
  .application-box2 .zhezao {
    width: 60%;
  }
}
.application-box3 {
  padding: 1rem 0 1.2rem;
  background-color: #f8f8f8;
}
.application-box3 .container .box {
  margin-top: 0.8rem;
}
.application-box3 .container .box:nth-child(1) {
  margin-top: 0;
}
.application-box3 .container .box .cn1 {
  color: #000000;
  text-align: center;
  line-height: 1.5em;
  margin-bottom: 0.3rem;
}
.application-box3 .container .box .cn2 {
  color: #333333;
  text-align: center;
  line-height: 1.66666667em;
  width: 55%;
  margin: 0 auto 0.45rem;
}
@media (max-width: 991px) {
  .application-box3 .container .box .cn2 {
    width: 100%;
  }
}
.application-box3 .container .box .cn3 {
  width: 80%;
  margin: 0 auto;
}
.application-box3 .container .box .cn3 video {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
}
.application-box3 .container .box .cn3 .videobox {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
  cursor: pointer;
}
.application-box3 .container .box .cn3 .videobox .icon {
  width: 0.62rem;
  height: 0.62rem;
  background-color: #00d1d1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
}
.application-box3 .container .box .cn3 .videobox .icon::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 0.8rem;
  height: 0.8rem;
  border: 3px dashed #00d1d1;
  border-radius: 50%;
  animation: appmyrotate 9s infinite linear;
}
.application-box3 .container .box .cn3 .videobox .icon img {
  width: 0.15rem;
  height: 0.17rem;
}
.application-box3 .container .box .cn3 .videobox video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.application-box3 .container .box .cn3::before {
  padding-top: 43.75%;
}
@keyframes appmyrotate {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
.application-box4 {
  padding-top: 1.2rem;
  padding-bottom: 1.2rem;
}
.application-box4 .cn1 {
  text-align: center;
}
.application-box4 .cnz4 {
  text-align: center;
}
/***************** 04-01案例聚合页 *****************/
.case-box1 {
  position: relative;
  left: 0;
  top: 0;
  background-color: #fff;
  margin-top: 0.9rem;
  z-index: 5;
  transition: all 0.4s;
}
.case-box1 .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  border-bottom: 1px solid #eee;
}
@media (max-width: 991px) {
  .case-box1 .container .left {
    width: 100%;
    text-align: center;
  }
}
.case-box1 .container .left .cn1 {
  color: #333333;
  line-height: 1.2em;
}
@media (max-width: 991px) {
  .case-box1 .container .left .cn1 {
    font-size: 0.5rem;
  }
}
.case-box1 .container .left .cn2 {
  line-height: 1.2em;
  color: #999999;
  margin-top: 0.1rem;
  margin-bottom: 0.4rem;
}
.case-box1 .container .right {
  display: flex;
  white-space: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
}
@media (max-width: 991px) {
  .case-box1 .container .right {
    border-top: 1px solid #eee;
    overflow-x: initial;
    overflow-y: initial;
    flex-wrap: wrap;
    margin-top: 0.5rem;
    width: 100%;
  }
}
.case-box1 .container .right .cn3 {
  text-align: center;
  display: block;
  padding: 0 0.2rem 0.3rem;
  position: relative;
  margin: 0 0.25rem;
}
@media (max-width: 991px) {
  .case-box1 .container .right .cn3 {
    padding: 0.3rem 0.2rem;
    width: calc(100% / 3);
    margin: 0;
    position: relative;
  }
}
.case-box1 .container .right .cn3::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 0;
  height: 2px;
  background-color: #00d1d1;
  transition: all 0.4s;
}
.case-box1 .container .right .cn3::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 1px;
  height: 100%;
  background-color: #eee;
  display: none;
}
@media (max-width: 991px) {
  .case-box1 .container .right .cn3::after {
    display: block;
  }
}
@media (max-width: 991px) {
  .case-box1 .container .right .cn3:nth-child(-n+3)::before {
    height: 1px;
    width: 100% !important;
    background-color: #eee;
  }
}
.case-box1 .container .right .cn3:nth-child(3n)::after {
  display: none;
}
.case-box1 .container .right .cn3 .cn4.cn44 img {
  width: 0.3rem;
  height: 0.3rem;
}
.case-box1 .container .right .cn3 .cn4.cn44 svg {
  width: 0.3rem;
  height: 0.3rem;
}
.case-box1 .container .right .cn3 .cn4 img {
  width: 0.36rem;
  height: 0.36rem;
}
.case-box1 .container .right .cn3 .cn4 svg {
  width: 0.36rem;
  height: 0.36rem;
}
@media (max-width: 991px) {
  .case-box1 .container .right .cn3 .cn4 svg {
    width: 0.42rem;
    height: 0.42rem;
  }
}
.case-box1 .container .right .cn3 .cn4 svg path {
  fill: #999;
  opacity: 1;
}
.case-box1 .container .right .cn3 .cn5 {
  line-height: 1.875em;
  margin-top: 0.08rem;
  color: #999999;
}
@media (max-width: 991px) {
  .case-box1 .container .right .cn3 .cn5 {
    white-space: break-spaces;
    line-height: 1.3em;
  }
}
.case-box1 .container .right .cn3.on::before {
  width: 100%;
}
@media (max-width: 991px) {
  .case-box1 .container .right .cn3.on::before {
    width: 0;
  }
}
.case-box1 .container .right .cn3.on .cn4 svg path {
  fill: #00d1d1;
}
.case-box1 .container .right .cn3.on .cn5 {
  color: #00d1d1;
}
.case-box1.casebox1b {
  top: -2rem;
  margin-top: 0;
  display: none;
  position: fixed;
  width: 100%;
  z-index: 900;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
}
.case-box1.casebox1b.on {
  display: block;
  animation: caseboxtitle 0.4s 1 forwards;
}
@media (max-width: 991px) {
  .case-box1.casebox1b.on {
    animation: caseboxtitle2 0.4s 1 forwards;
  }
}
.case-box1.casebox1b.on .container {
  align-items: center;
}
.case-box1.casebox1b.on .container .left .cn1 {
  font-size: 0.2rem;
}
@media (max-width: 991px) {
  .case-box1.casebox1b.on .container .left .cn1 {
    display: none;
  }
}
.case-box1.casebox1b.on .container .left .cn2 {
  display: none;
}
@media (max-width: 991px) {
  .case-box1.casebox1b.on .container .right {
    width: 100%;
    margin-top: 0;
  }
}
.case-box1.casebox1b.on .container .right .cn3 {
  padding: 0.1rem 0.2rem;
}
.case-box1.casebox1b.on .container .right .cn3 .cn5 {
  margin-top: 0;
}
.case-box1.casebox1b.on .container .right .cn4 {
  display: none;
}
.case-box1.casebox1b.on .container .right .lb4 {
  padding: 0.1rem 0.2rem;
}
.case-box1.casebox1b.on .container .right .lb4 .cn4 {
  display: none;
}
.case-box1.casebox1b.on .container .right .lb4 .cn5 {
  margin-top: 0;
}
@keyframes caseboxtitle {
  from {
    top: -2rem;
  }
  to {
    top: 0.85rem;
  }
}
@keyframes caseboxtitle2 {
  from {
    top: -2rem;
  }
  to {
    top: 1.2rem;
  }
}
.case-box2 {
  padding: 0.4rem 0;
}
@media (max-width: 991px) {
  .case-box2 {
    display: none;
  }
}
.case-box2 .container {
  display: flex;
  flex-wrap: wrap;
}
.case-box2 .container .cn1 {
  margin-top: 10px;
  margin-right: 10px;
  min-width: 1rem;
  text-align: center;
  padding: 0.1rem 20px;
  border-radius: 25px;
  transition: all 0.4s;
  color: #999999;
  line-height: 1.875em;
}
.case-box2 .container .cn1 em {
  font-size: 12px;
  font-style: normal;
  transform: translateY(-0.05rem);
  position: relative;
  display: none;
}
.case-box2 .container .cn1:hover {
  background-color: #f8f8f8;
}
.case-box2 .container .cn1.on {
  background-color: #f8f8f8;
}
.case-box2 .container .cn1.on em {
  display: inline-block;
  margin-left: 0.1rem;
}
.case-box3 {
  padding-bottom: 1.4rem;
}
@media (max-width: 991px) {
  .case-box3 {
    margin-top: 0.4rem;
  }
}
.case-box3 .container {
  display: flex;
  flex-wrap: wrap;
}
.case-box3 .container .box {
  margin-bottom: 0.8rem;
  position: relative;
  display: flex;
  flex-direction: column;
  width: 32.0625%;
  margin-right: 1.875%;
  background-color: #ffffff;
  box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.05);
  border-radius: 0.15rem;
  overflow: hidden;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 991px) {
  .case-box3 .container .box {
    width: 100%;
    margin-right: 0;
  }
}
.case-box3 .container .box:nth-child(3n) {
  margin-right: 0;
}
.case-box3 .container .box .img {
  overflow: initial;
}
.case-box3 .container .box .img::before {
  padding-top: 42.88499025%;
}
.case-box3 .container .box .img .icon {
  overflow: hidden;
  position: absolute;
  bottom: -0.6rem;
  right: 0.3rem;
  width: 1.2rem;
  height: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ddd;
  background-color: #ffffff;
  border-radius: 50%;
  z-index: 4;
  text-align: center;
}
.case-box3 .container .box .img .icon img {
  max-width: 100%;
  max-height: 100%;
}
.case-box3 .container .box .icon {
  position: absolute;
  display: none;
}
.case-box3 .container .box .cn1 {
  padding: 0.3rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.case-box3 .container .box .cn1 .cn2 .cn12 {
  color: #00d1d1;
  line-height: 1.875em;
}
.case-box3 .container .box .cn1 .cn2 .cn4 {
  color: #333333;
  line-height: 1.25em;
  height: 2.5em;
  margin-top: 0.1rem;
  transition: all 0.3s;
}
.case-box3 .container .box .cn1 .cn2 .cn5 {
  margin-top: 0.5rem;
  height: calc(3.4em + 8px);
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .case-box3 .container .box .cn1 .cn2 .cn5 {
    height: auto;
  }
}
.case-box3 .container .box .cn1 .cn2 .cn5 .cn6 {
  margin: 5px 0.1rem 0 0;
  padding: 0 0.1rem;
  line-height: 1.7em;
  height: 1.7em;
  color: #333333;
  background-color: #f5f5f5;
  border-radius: 5px;
}
.case-box3 .container .box .cn1 .cn3 {
  margin-top: 0.1rem;
}
@media (max-width: 991px) {
  .case-box3 .container .box .cn1 .cn3 {
    margin-top: 0.3rem;
  }
}
.case-box3 .container .box .cn1 .cn3 .cn9 .cn11::before {
  background-color: #ddd;
}
.case-box3 .container .box .cn1 .cn3 .cn9 .cn11::after {
  background-color: #ddd;
}
.case-box3 .container .box .cn1 .cn3 .cn9 .cn10 {
  margin-top: 0.3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.case-box3 .container .box .cn1 .cn3 .cn9 .cn10 .cn7 {
  color: #999999;
  transition: all 0.3s;
}
.case-box3 .container .box .cn1 .cn3 .cn9 .cn10 .cn8 svg {
  width: 0.18rem;
  height: 0.11rem;
}
.case-box3 .container .box .cn1 .cn3 .cn9 .cn10 .cn8 svg path {
  transition: all 0.3s;
  fill: #7b7b7b;
  opacity: 1;
}
.case-box3 .container .box:hover {
  transform: translateY(-0.2rem);
}
.case-box3 .container .box:hover .cn1 .cn2 .cn4 {
  color: #00d1d1;
}
.case-box3 .container .box:hover .cn1 .cn3 .cn9 .cn11::before {
  display: none;
}
.case-box3 .container .box:hover .cn1 .cn3 .cn9 .cn11::after {
  display: none;
}
.case-box3 .container .box:hover .cn1 .cn3 .cn9 .cn11 span::before {
  width: 100%;
}
.case-box3 .container .box:hover .cn1 .cn3 .cn9 .cn11 span::after {
  height: 6px;
  transform: rotate(30deg) translateY(0);
}
.case-box3 .container .box:hover .cn1 .cn3 .cn9 .cn10 .cn7 {
  color: #00d1d1;
}
.case-box3 .container .box:hover .cn1 .cn3 .cn9 .cn10 .cn8 svg path {
  fill: #00d1d1;
}
.basepage {
  display: flex;
  justify-content: center;
}
@media (max-width: 767px) {
  .basepage {
    flex-wrap: wrap;
    padding: 0.4rem 0;
  }
}
.basepage .zong {
  display: flex;
  align-items: center;
  font-size: 18px;
  color: #161b27;
}
@media (max-width: 1580px) {
  .basepage .zong {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .basepage .zong {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .basepage .zong {
    order: 1;
  }
}
.basepage .zong span {
  color: #00d1d1;
}
.basepage .zong .li {
  margin-right: 0.26rem;
}
.basepage .zong .li:last-child {
  margin-right: 0;
}
.basepage .page {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}
@media (max-width: 767px) {
  .basepage .page {
    order: 0;
  }
}
.basepage .page a,
.basepage .page span {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #262626;
  flex-shrink: 0;
  float: left;
  font-size: 16px;
  margin: 0 5px 10px;
  background-color: #ffffff;
  border-radius: 5px;
  border: solid 1px #efefef;
  position: relative;
  color: #8e8e8e;
}
@media (max-width: 1580px) {
  .basepage .page a,
  .basepage .page span {
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  .basepage .page a,
  .basepage .page span {
    width: 35px;
    height: 35px;
    font-size: 14px;
  }
}
.basepage .page a i,
.basepage .page span i {
  font-style: initial;
  position: relative;
}
.basepage .page span {
  background-color: transparent;
  border-color: transparent;
  color: #0364dd;
}
.basepage .page .active {
  background-color: #00d1d1;
  color: #fff;
}
.basepage .page .active:before {
  opacity: 1;
}
.basepage .page .active:hover {
  color: #ffffff;
}
.basepage .page .prev,
.basepage .page .next {
  position: relative;
  font-weight: inherit;
  font-size: 16px;
  color: #999999;
}
@media (max-width: 1580px) {
  .basepage .page .prev,
  .basepage .page .next {
    font-size: 14px;
  }
}
@media (max-width: 991px) {
}
@media (max-width: 767px) {
}
.basepage .page .prev i,
.basepage .page .next i {
  display: block;
}
.basepage .page .prev img,
.basepage .page .next img,
.basepage .page .prev svg,
.basepage .page .next svg {
  position: relative;
  width: 8px;
  opacity: 0.3;
}
.basepage .page .prev img path,
.basepage .page .next img path,
.basepage .page .prev svg path,
.basepage .page .next svg path {
  fill: #2d2d2d;
  stroke: none;
  opacity: 1;
}
.basepage .page .prev:hover:before,
.basepage .page .next:hover:before {
  opacity: 0;
}
.basepage .page .prev:hover svg,
.basepage .page .next:hover svg {
  opacity: 1;
}
.basepage .page .prev:hover svg path,
.basepage .page .next:hover svg path {
  opacity: 1;
  fill: #00d1d1;
}
.basepage .page .prev i {
  margin-right: 8px;
}
.basepage .page .next i {
  margin-left: 8px;
}
.basepage .page a {
  position: relative;
}
.basepage .page a:hover {
  color: #00d1d1;
}
.basepage .page a:hover:before {
  opacity: 1;
}
.basepage .beforew {
  display: flex;
  align-items: center;
  color: #161b27;
  font-weight: bold;
  color: #222222;
  font-size: 16px;
  margin-left: 10px;
  margin-bottom: 10px;
}
@media (max-width: 1580px) {
  .basepage .beforew {
    font-size: 14px;
    margin-left: 10px;
  }
}
@media (max-width: 991px) {
  .basepage .beforew {
    font-size: 14px;
  }
}
.basepage .beforew input {
  width: 72px;
  height: 45px;
  border-radius: 3px;
  background-color: #ffffff;
  border: solid 1px #efefef;
  color: #161b27;
  color: #00d1d1;
  color: #8e8e8e;
  text-align: center;
  font-size: 16px;
}
@media (max-width: 1580px) {
  .basepage .beforew input {
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  .basepage .beforew input {
    height: 35px;
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .basepage .beforew input {
    width: 70px;
    height: 35px;
  }
}
/***************** 04-02案例详情页 *****************/
.caseinfo-box1 {
  margin-bottom: 1rem;
  position: relative;
}
.caseinfo-box1 .img {
  width: 100%;
  height: 6.6rem;
  position: relative;
}
.caseinfo-box1 .img::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
}
.caseinfo-box1 .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.caseinfo-box1 .img img.pc-img {
  display: block;
}
@media (max-width: 991px) {
  .caseinfo-box1 .img img.pc-img {
    display: none;
  }
}
.caseinfo-box1 .img img.mb-img {
  display: none;
}
@media (max-width: 991px) {
  .caseinfo-box1 .img img.mb-img {
    display: block;
  }
}
.caseinfo-box2 {
  position: relative;
  padding-bottom: 1rem;
}
@media (max-width: 991px) {
  .caseinfo-box2 {
    margin-top: -2rem;
  }
}
.caseinfo-box2 .bigbox1 {
  position: sticky;
  left: 0;
  top: 1rem;
  margin-top: -6.2rem;
  padding-bottom: 6.2rem;
}
@media (max-width: 991px) {
  .caseinfo-box2 .bigbox1 {
    margin-top: 0;
    padding-bottom: 0;
    top: 0;
    position: relative;
    margin-bottom: 1rem;
  }
}
.caseinfo-box2 .bigbox1 .container {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
}
@media (max-width: 991px) {
  .caseinfo-box2 .bigbox1 .container {
    left: 0;
    transform: translateX(0);
    position: relative;
  }
}
.caseinfo-box2 .bigbox1 .container .box {
  padding: 0.4rem 0 0;
  background-color: #fff;
  width: 30%;
  box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.1);
}
@media (max-width: 991px) {
  .caseinfo-box2 .bigbox1 .container .box {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .caseinfo-box2 .bigbox1 .container .box {
    width: 100%;
  }
}
.caseinfo-box2 .bigbox1 .container .box .box2 {
  width: 100%;
  height: 4.8rem;
  overflow: auto;
  padding: 0 0.4rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.caseinfo-box2 .bigbox1 .container .box .box2 .img1 img {
  height: 0.56rem;
}
.caseinfo-box2 .bigbox1 .container .box .box2 .cn1 {
  color: #000;
  line-height: 1em;
  margin: 0.3rem 0;
}
.caseinfo-box2 .bigbox1 .container .box .box2 .cn2 {
  height: 40px;
  border-radius: 20px;
  padding: 0 20px;
}
.caseinfo-box2 .bigbox1 .container .box .box2 .cn2 svg {
  margin-left: 0;
  margin-right: 0.1rem;
}
.caseinfo-box2 .bigbox1 .container .box .box2 .cn2:hover svg {
  transform: translateX(0);
}
.caseinfo-box2 .bigbox1 .container .box .box2 .cn5 {
  padding-bottom: 0.4rem;
  margin-top: 0.2rem;
  display: flex;
  align-items: center;
}
.caseinfo-box2 .bigbox1 .container .box .box2 .cn5 .cn6 {
  display: flex;
}
.caseinfo-box2 .bigbox1 .container .box .box2 .cn5 .cn6 svg {
  align-items: center;
}
.caseinfo-box2 .bigbox1 .container .box .box2 .cn5 .cn6 svg path {
  fill: #999;
  opacity: 1;
  transition: all 0.4s;
}
.caseinfo-box2 .bigbox1 .container .box .box2 .cn5 .cn7 {
  margin-left: 0.1rem;
  color: #999;
  transition: all 0.4s;
}
.caseinfo-box2 .bigbox1 .container .box .box2 .cn5:hover .cn6 svg path {
  fill: #00d1d1;
}
.caseinfo-box2 .bigbox1 .container .box .box2 .cn5:hover .cn7 {
  color: #00d1d1;
}
.caseinfo-box2 .bigbox1 .container .box .box5 {
  margin: 0 0.4rem;
  border-top: 1px solid #ddd;
}
.caseinfo-box2 .bigbox1 .container .box .box5 a.cn10 {
  color: #999999;
  line-height: 0.9rem;
  display: block;
  width: 100%;
  transition: all 0.4s;
}
.caseinfo-box2 .bigbox1 .container .box .box5 a.cn10:hover {
  color: #00d1d1;
}
.caseinfo-box2 .bigbox1 .container .box .box5 span.cn10 {
  color: #999999;
  line-height: 0.9rem;
  display: block;
  width: 100%;
  transition: all 0.4s;
}
.caseinfo-box2 .bigbox2 .container {
  display: flex;
  justify-content: flex-end;
}
.caseinfo-box2 .bigbox2 .container .box {
  width: calc(980/1600*100%);
}
@media (max-width: 991px) {
  .caseinfo-box2 .bigbox2 .container .box {
    width: 100%;
  }
}
.caseinfo-box2 .bigbox2 .container .box .box2 {
  padding-top: 0.2rem;
}
.caseinfo-box2 .bigbox2 .container .box .box2 .cn1 {
  padding-bottom: 0.3rem;
  color: #333333;
  border-bottom: 2px solid #ddd;
  position: relative;
}
.caseinfo-box2 .bigbox2 .container .box .box2 .cn1::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0.6rem;
  height: 2px;
  background-color: #00d1d1;
}
.caseinfo-box2 .bigbox2 .container .box .box3 {
  padding-top: 0.3rem;
}
.caseinfo-box2 .bigbox2 .container .box .box3 h3 {
  font-size: 30px;
  font-weight: bold;
  color: #333;
}
/***************** 05-01服务中心 *****************/
.server-box1 {
  padding-top: 0.6rem;
  padding-bottom: 0.73rem;
  position: relative;
}
.server-box1 .bgimg {
  position: absolute;
  left: 0;
  top: 0;
}
.server-box1 .bgimg img {
  width: 100%;
}
.server-box1 .container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
}
.server-box1 .container .left {
  width: 50%;
  padding-top: 0.9rem;
}
@media (max-width: 991px) {
  .server-box1 .container .left {
    width: 100%;
  }
}
.server-box1 .container .left .cn1 {
  color: #333;
  line-height: 1.25em;
  padding-left: 0.2rem;
  margin-bottom: 0.55rem;
}
@media (max-width: 991px) {
  .server-box1 .container .left .cn1 {
    text-align: center;
    font-size: 0.5rem;
    color: #000000;
    font-weight: bold;
  }
}
.server-box1 .container .left .form-box {
  position: relative;
  width: 67.5%;
}
@media (max-width: 991px) {
  .server-box1 .container .left .form-box {
    width: 100%;
  }
}
.server-box1 .container .left .form-box .icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0.2rem;
  display: flex;
  align-items: center;
}
.server-box1 .container .left .form-box .icon img {
  width: 0.24rem;
  height: 0.24rem;
}
@media (max-width: 991px) {
  .server-box1 .container .left .form-box .icon img {
    width: 0.48rem;
    height: 0.48rem;
  }
}
.server-box1 .container .left .form-box input {
  border: 1px solid #ddd;
  line-height: 0.6rem;
  width: 100%;
  border-radius: 30px;
  padding: 0 1.45rem 0 0.7rem;
  color: #999999;
}
.server-box1 .container .left .form-box input::placeholder {
  color: #999999;
}
@media (max-width: 991px) {
  .server-box1 .container .left .form-box input {
    line-height: 0.8rem;
  }
}
.server-box1 .container .left .form-box button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 1.2rem;
  height: 0.5rem;
  line-height: 0.5rem;
  right: 0.05rem;
  text-align: center;
  color: #fff;
  background-color: #00d1d1;
  border-radius: 25px;
}
@media (max-width: 991px) {
  .server-box1 .container .left .form-box button {
    height: 0.7rem;
  }
}
.server-box1 .container .left .cn2 {
  margin-top: 0.3rem;
  padding: 0 0.2rem;
  display: flex;
  flex-wrap: wrap;
  line-height: 1.5em;
}
@media (max-width: 991px) {
  .server-box1 .container .left .cn2 {
    justify-content: center;
  }
}
.server-box1 .container .left .cn2 b {
  color: #999999;
}
.server-box1 .container .left .cn2 a {
  margin-left: 0.15rem;
  color: #bbbbbb;
  transition: all 0.4s;
}
.server-box1 .container .left .cn2 a:hover {
  color: #00d1d1;
}
.server-box1 .container .right {
  width: 50%;
  padding-right: 0.88rem;
}
@media (max-width: 991px) {
  .server-box1 .container .right {
    margin-top: 0.5rem;
    width: 100%;
  }
}
.server-box1 .container .right .img {
  text-align: right;
}
.server-box1 .container .right .img img {
  object-fit: cover;
  height: 4rem;
}
.server-box2 {
  position: relative;
  z-index: 2;
}
.server-box2 .container {
  background-color: #f4f4f4;
  border-radius: 0.15rem;
  padding: 0.8rem 0;
  display: flex;
  flex-wrap: wrap;
}
.server-box2 .container .left {
  width: 41.25%;
  padding-left: 6.25%;
  padding-right: 0.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}
@media (max-width: 991px) {
  .server-box2 .container .left {
    width: 100%;
    padding: 0 0.3rem;
  }
}
.server-box2 .container .left::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 1px;
  height: 100%;
  background-color: #ddd;
}
@media (max-width: 991px) {
  .server-box2 .container .left .text {
    text-align: center;
  }
}
.server-box2 .container .left .text .cn1 {
  display: flex;
  align-items: center;
  color: #999999;
  line-height: 1.66666667em;
}
@media (max-width: 991px) {
  .server-box2 .container .left .text .cn1 {
    justify-content: center;
  }
}
.server-box2 .container .left .text .cn1 svg {
  width: 0.17rem;
  height: 0.17rem;
  margin-right: 0.1rem;
}
@media (max-width: 991px) {
  .server-box2 .container .left .text .cn1 svg {
    width: 0.34rem;
    height: 0.34rem;
  }
}
.server-box2 .container .left .text .cn1 svg path {
  fill: #00d1d1;
  opacity: 1;
}
.server-box2 .container .left .text2 {
  margin-top: 1rem;
}
@media (max-width: 991px) {
  .server-box2 .container .left .text2 {
    text-align: center;
  }
}
.server-box2 .container .left .text2 .cn3 {
  line-height: 1.41666667em;
  color: #999;
}
.server-box2 .container .left .text2 .cn4 {
  margin-top: 0.4rem;
}
.server-box2 .container .right {
  width: 58.75%;
  padding-right: 5.625%;
}
@media (max-width: 991px) {
  .server-box2 .container .right {
    margin-top: 0.5rem;
    width: 100%;
    padding: 0 0.3rem;
  }
}
.server-box2 .container .right .box {
  margin: 0 0 0 auto;
  display: flex;
  padding: 0.4rem 0.3rem;
  align-items: center;
  width: 75.29411765%;
  border-radius: 0.15rem;
  position: relative;
  transition: all 0.4s;
}
@media (max-width: 991px) {
  .server-box2 .container .right .box {
    width: 100%;
  }
}
.server-box2 .container .right .box::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: #ddd;
  transition: all 0.4s;
}
.server-box2 .container .right .box .cn5 {
  width: 50%;
}
.server-box2 .container .right .box .cn5 .cn7 {
  display: block;
  color: #333333;
  line-height: 1.6em;
  transition: all 0.4s;
}
.server-box2 .container .right .box .cn5 .cn8 {
  display: block;
  color: #999999;
  line-height: 1.66666667em;
}
.server-box2 .container .right .box .cn6 {
  width: 50%;
  text-align: right;
}
.server-box2 .container .right .box .cn6 img {
  max-height: 0.68rem;
}
.server-box2 .container .right .box:hover {
  background-color: #ffffff;
}
.server-box2 .container .right .box:hover .cn5 .cn7 {
  color: #00d1d1;
}
.server-box2 .container .right .box:hover::before {
  width: 0;
}
.server-box2 .container .right .box.on::before {
  width: 0;
}
.server-box3 {
  padding-top: 1.2rem;
  padding-bottom: 1.5rem;
}
.server-box3 .container .cn1 {
  text-align: center;
  line-height: 1.2em;
  color: #000;
  margin-bottom: 1.2rem;
}
.server-box3 .container .box {
  display: flex;
  flex-wrap: wrap;
}
.server-box3 .container .box .box2 {
  margin-bottom: 0.4rem;
  width: 31.875%;
  background-color: #f8f8f8;
  border-radius: 0.15rem;
  margin-right: 2.1875%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0.5rem 4.375%;
}
@media (max-width: 767px) {
  .server-box3 .container .box .box2 {
    width: 100%;
    margin-right: 0;
  }
}
.server-box3 .container .box .box2:nth-child(3n) {
  margin-right: 0;
}
.server-box3 .container .box .box2 .text1 .cn2 {
  color: #333333;
  line-height: 1.2em;
}
.server-box3 .container .box .box2 .text1 .cn3 {
  margin-top: 0.1rem;
  color: #666666;
  line-height: 1.66666667em;
}
.server-box3 .container .box .box2 .text2 {
  margin-top: 0.8rem;
}
.server-box3 .container .box .box2 .text2 .cn4 {
  width: 0.8rem;
  height: 0.8rem;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.server-box3 .container .box .box2 .text2 .cn4 img {
  max-width: 50%;
  max-height: 50%;
}
.server-box3 .container .box .box2 .text2 .cn4 svg {
  max-width: 100%;
  max-height: 100%;
}
/***************** 05-02下载中心 *****************/
.download-box1 {
  padding: 1rem 0 0;
  background-color: #fff;
}
.download-box1 .container .text {
  border-bottom: 1px solid #eee;
}
@media (max-width: 991px) {
  .download-box1 .container .text {
    text-align: center;
  }
}
.download-box1 .container .text .cn1 {
  color: #333333;
  line-height: 1.2em;
}
.download-box1 .container .text .cn2 {
  padding: 0.2rem 0 0.4rem;
  color: #999999;
  line-height: 1.5em;
}
.download-box2 {
  padding: 0.4rem 0;
}
.download-box2 .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.download-box2 .container .box {
  display: flex;
  flex-wrap: wrap;
}
.download-box2 .container .box .cn1 {
  margin-bottom: 10px;
  margin-right: 10px;
  min-width: 1rem;
  text-align: center;
  padding: 0.1rem 20px;
  border-radius: 25px;
  transition: all 0.4s;
  color: #999999;
  line-height: 1.875em;
}
.download-box2 .container .box .cn1 em {
  font-size: 12px;
  font-style: normal;
  transform: translateY(-0.05rem);
  position: relative;
  display: none;
}
.download-box2 .container .box .cn1:hover {
  background-color: #f8f8f8;
}
.download-box2 .container .box .cn1.on {
  background-color: #f8f8f8;
}
.download-box2 .container .box .cn1.on em {
  display: inline-block;
}
.download-box3 {
  padding-bottom: 1.4rem;
}
.download-box3 .container .box {
  flex-wrap: wrap;
  display: flex;
  justify-content: space-between;
}
.download-box3 .container .box .box2 {
  margin-top: 0.3rem;
  width: 49.0625%;
  line-height: 1rem;
  display: flex;
  padding: 0 0.3rem;
  align-items: center;
  background-color: #f8f8f8;
  border-radius: 5px;
  transition: all 0.4s;
}
@media (max-width: 991px) {
  .download-box3 .container .box .box2 {
    width: 100%;
  }
}
.download-box3 .container .box .box2:nth-child(-n+2) {
  margin-top: 0;
}
@media (max-width: 991px) {
  .download-box3 .container .box .box2:nth-child(-n+2) {
    margin-top: 0.3rem;
  }
}
@media (max-width: 991px) {
  .download-box3 .container .box .box2:nth-child(-n+1) {
    margin-top: 0;
  }
}
.download-box3 .container .box .box2 .icon {
  width: 0.4rem;
  display: flex;
  align-items: center;
}
.download-box3 .container .box .box2 .icon svg {
  width: 100%;
  height: auto;
}
.download-box3 .container .box .box2 .icon svg path {
  fill: #00d1d1;
  opacity: 1;
  transition: all 0.4s;
}
.download-box3 .container .box .box2 .text {
  padding-left: 0.2rem;
  width: calc(100% - 100px - 0.4rem);
  color: #333333;
  transition: all 0.4s;
}
@media (max-width: 991px) {
  .download-box3 .container .box .box2 .text {
    width: calc(100% - 2.4rem);
  }
}
.download-box3 .container .box .box2 .text2 {
  width: 100px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
@media (max-width: 991px) {
  .download-box3 .container .box .box2 .text2 {
    width: 2rem;
  }
}
.download-box3 .container .box .box2 .text2 svg {
  width: 0.17rem;
  height: 0.18rem;
}
@media (max-width: 991px) {
  .download-box3 .container .box .box2 .text2 svg {
    width: 0.34rem;
    height: 0.36rem;
  }
}
.download-box3 .container .box .box2 .text2 svg path {
  fill: #00d1d1;
  opacity: 1;
  transition: all 0.4s;
}
.download-box3 .container .box .box2 .text2 .cn2 {
  color: #333333;
  transition: all 0.4s;
  margin-left: 0.1rem;
}
.download-box3 .container .box .box2:hover {
  background-color: #00d1d1;
}
.download-box3 .container .box .box2:hover .icon svg path {
  fill: #fff;
}
.download-box3 .container .box .box2:hover .text {
  color: #fff;
}
.download-box3 .container .box .box2:hover .text2 svg path {
  fill: #fff;
}
.download-box3 .container .box .box2:hover .text2 .cn2 {
  color: #fff;
}
.download-box3 .container .basepage {
  margin-top: 0.8rem;
}
.public-form {
  width: 29.6875%;
  position: relative;
}
@media (max-width: 991px) {
  .public-form {
    margin-top: 0.5rem;
    width: 100%;
  }
}
.public-form input {
  padding: 0 0.8rem 0 0.3rem;
  width: 100%;
  line-height: 0.5rem;
  border-radius: 25px;
  background-color: #f8f8f8;
  color: #999999;
}
@media (max-width: 991px) {
  .public-form input {
    line-height: 0.76rem;
    border-radius: 0.38rem;
  }
}
.public-form input::placeholder {
  color: #999;
}
.public-form button {
  position: absolute;
  right: 0.3rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
}
.public-form button img {
  width: 0.24rem;
  height: 0.24rem;
}
/***************** 05-03常见问题 *****************/
.problem-list {
  padding-bottom: 1.2rem;
}
.problem-list .container {
  position: relative;
}
.problem-list .container::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 2px;
  background-color: #000;
}
.problem-list .container .box {
  position: relative;
}
.problem-list .container .box::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 2px;
  transition: all 0.4s;
  background-color: #00d1d1;
  z-index: 5;
}
.problem-list .container .box .box2 {
  display: flex;
  padding: 0.3rem 0.4rem;
  position: relative;
  cursor: pointer;
}
@media (max-width: 767px) {
  .problem-list .container .box .box2 {
    padding: 0.3rem 0.2rem;
  }
}
.problem-list .container .box .box2::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: calc(100% - 0.8rem);
  height: 1px;
  background-color: #ddd;
}
@media (max-width: 767px) {
  .problem-list .container .box .box2::before {
    width: calc(100% - 0.4rem);
  }
}
.problem-list .container .box .box2 .cn1 {
  width: 50px;
  color: #00d1d1;
  line-height: 1.2em;
}
@media (max-width: 767px) {
  .problem-list .container .box .box2 .cn1 {
    width: 0.5rem;
  }
}
.problem-list .container .box .box2 .cn2 {
  width: calc(100% - 70px);
  padding-right: 0.2rem;
  line-height: 1.5em;
}
@media (max-width: 767px) {
  .problem-list .container .box .box2 .cn2 {
    width: calc(100% - 20px - 0.5rem);
  }
}
.problem-list .container .box .box2 .cn3 {
  transform: translateY(0.08rem);
  width: 20px;
  height: 20px;
  position: relative;
}
.problem-list .container .box .box2 .cn3 em {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: block;
  position: absolute;
  background-color: #000;
  transition: all 0.4s;
}
.problem-list .container .box .box2 .cn3 em:nth-child(1) {
  width: 18px;
  height: 2px;
}
.problem-list .container .box .box2 .cn3 em:nth-child(2) {
  width: 2px;
  height: 18px;
}
.problem-list .container .box .box3 {
  display: none;
  padding: 0.4rem 0.4rem 0.8rem;
  background-color: #f8f8f8;
}
.problem-list .container .box .box3 .box3a {
  width: 68%;
}
@media (max-width: 991px) {
  .problem-list .container .box .box3 .box3a {
    width: 100%;
  }
}
.problem-list .container .box.on::before {
  width: 100%;
}
.problem-list .container .box.on .box2 {
  background-color: #f8f8f8;
}
.problem-list .container .box.on .box2 .cn3 em:nth-child(2) {
  transform: translate(-50%, -50%) rotate(90deg);
}
.problem-list .container .box4 {
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.problem-list .container .box4 .cn9 {
  display: flex;
  align-items: center;
  line-height: 1.5em;
  color: #666;
}
.problem-list .container .box4 .cn9 img {
  margin-right: 0.1rem;
  animation: problemrotat 10s infinite;
  position: relative;
}
@keyframes problemrotat {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
/***************** 06-02新闻动态 *****************/
.news-box1 {
  margin: 0.4rem 0 0.5rem;
  position: relative;
  z-index: 5;
}
.news-box1 .container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}
.news-box1 .container .box {
  width: 16.25%;
  margin-right: 0.2rem;
  background-color: #f8f8f8;
  border-radius: 25px;
  line-height: 0.5rem;
  display: flex;
  position: relative;
  z-index: 3;
}
@media (max-width: 1580px) {
  .news-box1 .container .box {
    width: 25%;
  }
}
@media (max-width: 1260px) {
  .news-box1 .container .box {
    width: 25%;
  }
}
@media (max-width: 991px) {
  .news-box1 .container .box {
    display: none;
    width: 100%;
    margin-right: 0;
    line-height: 0.76rem;
    border-radius: 0.76rem;
  }
}
.news-box1 .container .box .cn1 {
  width: 50%;
  text-align: center;
  color: #999;
}
.news-box1 .container .box .layui-form .layui-form-select dl {
  padding: 0;
  top: 0.5rem;
}
@media (max-width: 991px) {
  .news-box1 .container .box .layui-form .layui-form-select dl {
    top: 0.76rem;
  }
}
.news-box1 .container .box .layui-form .layui-form-select .layui-input {
  height: 0.5rem;
  border: 0;
  background-color: transparent;
}
@media (max-width: 991px) {
  .news-box1 .container .box .layui-form .layui-form-select .layui-input {
    height: 0.76rem;
  }
}
.news-box1 .container .box form {
  width: 50%;
}
.news-box1 .container .box .cn2 {
  width: 100%;
  text-align: center;
  background-color: #f8f8f8;
  background-image: url(../images/news-img5.svg);
  background-position: center right 0.2rem;
  background-repeat: no-repeat;
  background-size: 10px 6px;
}
.news-box1 .container .box .cn2 option {
  width: 100%;
  background-color: #f8f8f8;
}
.news-box2 {
  padding-bottom: 1rem;
}
.news-box2 .container .news-box2a {
  position: relative;
  overflow: hidden;
  padding-bottom: 0.4rem;
}
.news-box2 .container .news-box2a .swiper-slide {
  background-color: #f4f4f4;
  overflow: hidden;
  border-radius: 0.15rem;
  display: flex;
  flex-wrap: wrap;
}
.news-box2 .container .news-box2a .swiper-slide .img {
  width: 56.25%;
}
@media (max-width: 991px) {
  .news-box2 .container .news-box2a .swiper-slide .img {
    width: 100%;
  }
}
.news-box2 .container .news-box2a .swiper-slide .img::before {
  padding-top: 56.66666667%;
}
.news-box2 .container .news-box2a .swiper-slide .text {
  width: 43.75%;
  padding: 0.6rem 0.5rem;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
@media (max-width: 991px) {
  .news-box2 .container .news-box2a .swiper-slide .text {
    width: 100%;
    padding: 0.6rem 0.3rem;
  }
}
.news-box2 .container .news-box2a .swiper-slide .text .text1 .cn1 {
  color: #333333;
  line-height: 1.875em;
}
.news-box2 .container .news-box2a .swiper-slide .text .text1 .cn2 {
  margin: 0.3rem 0;
  color: #2d2d2d;
  line-height: 1.2em;
  height: 2.4em;
  transition: all 0.4s;
}
.news-box2 .container .news-box2a .swiper-slide .text .text1 .cn3 {
  color: #999999;
  line-height: 1.5em;
  height: 4.5em;
}
.news-box2 .container .news-box2a .swiper-slide .text .text2 {
  margin-top: 0.3rem;
}
.news-box2 .container .news-box2a .swiper-slide .text .text2 .cn9 {
  margin-bottom: 0.4rem;
}
.news-box2 .container .news-box2a .swiper-slide .text .text2 .cn9::before {
  background-color: #dddddd;
}
.news-box2 .container .news-box2a .swiper-slide .text .text2 .cn9::after {
  background-color: #dddddd;
}
.news-box2 .container .news-box2a .swiper-slide .text .text2 .cn5 {
  display: flex;
  justify-content: space-between;
}
.news-box2 .container .news-box2a .swiper-slide .text .text2 .cn5 .cn6 {
  line-height: 1.625em;
  color: #999999;
  transition: all 0.4s;
}
.news-box2 .container .news-box2a .swiper-slide .text .text2 .cn5 .cn7 svg {
  width: 0.18rem;
  height: 0.11rem;
}
.news-box2 .container .news-box2a .swiper-slide .text .text2 .cn5 .cn7 svg path {
  fill: #7b7b7b;
  opacity: 1;
  transition: all 0.4s;
}
.news-box2 .container .news-box2a .swiper-slide:hover .img img {
  transform: scale(1.05);
}
.news-box2 .container .news-box2a .swiper-slide:hover .text .text1 .cn2 {
  color: #00d1d1;
}
.news-box2 .container .news-box2a .swiper-slide:hover .text .text2 .cn9 span::before {
  z-index: 5;
  width: 100%;
}
.news-box2 .container .news-box2a .swiper-slide:hover .text .text2 .cn9 span::after {
  z-index: 5;
  height: 6px;
  transform: rotate(30deg) translateY(0);
}
.news-box2 .container .news-box2a .swiper-slide:hover .text .text2 .cn5 .cn6 {
  color: #00d1d1;
}
.news-box2 .container .news-box2a .swiper-slide:hover .text .text2 .cn5 .cn7 svg path {
  fill: #00d1d1;
}
.news-box2 .container .news-box2a .newsbox2apage {
  text-align: center;
  position: absolute;
  left: 0;
  width: 100%;
  bottom: 0;
}
@media (max-width: 991px) {
  .news-box2 .container .news-box2a .newsbox2apage {
    display: none;
  }
}
.news-box2 .container .news-box2a .newsbox2apage .swiper-pagination-bullet {
  width: 21px;
  height: 6px;
  position: relative;
  background-color: transparent;
  opacity: 1;
  margin: 0 5px;
}
.news-box2 .container .news-box2a .newsbox2apage .swiper-pagination-bullet::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: #ddd;
}
.news-box2 .container .news-box2a .newsbox2apage .swiper-pagination-bullet::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 6px;
  height: 2px;
  background-color: #ddd;
  transform: rotate(-60deg);
  display: none;
}
.news-box2 .container .news-box2a .newsbox2apage .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  background-color: #ffd522;
}
.news-box2 .container .news-box2a .newsbox2apage .swiper-pagination-bullet.swiper-pagination-bullet-active::after {
  display: block;
  background-color: #ffd522;
}
.news-box3 .index-news {
  padding: 1.05rem 0 1.4rem;
}
.news-box3 .index-news .container .indexnewsa1 .swiper-wrapper2 .swiper-slide2 {
  margin-bottom: 0.4rem;
}
.news-box3 .index-news .container .basepage {
  margin-top: 0.4rem;
}
/***************** 06-03新闻详情 *****************/
.news-info {
  background-color: #f4f4f4;
}
@media (max-width: 991px) {
  .news-info .public-bread {
    display: none;
  }
}
.public-bread .container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 0.3rem 0;
}
.public-bread .container a {
  color: #999999;
  display: flex;
  flex-wrap: wrap;
  transition: all 0.4s;
}
.public-bread .container a svg path {
  fill: #999;
  opacity: 1;
  transition: all 0.4s;
}
.public-bread .container a:hover {
  color: #00d1d1;
}
.public-bread .container a:hover svg path {
  fill: #00d1d1;
}
.public-bread .container span {
  margin: 0 0.1rem;
  color: #999999;
}
.public-bread .container span.cn2 {
  margin: 0;
  color: #666;
}
.news-info1 {
  margin-top: 0.5rem;
  padding-top: 1.3rem;
}
.news-info1.application-box9 {
  padding-top: 0;
}
.news-info1.application-box9 .container .box2 {
  background-color: transparent;
  padding-top: 0;
  padding-bottom: 0;
  width: 80%;
  margin: 0 auto;
}
.news-info1.application-box9 .container .box2 .box3 {
  width: 100%;
}
.news-info1.application-box9 .container .box2 .box3 .box5 {
  padding: 0;
  justify-content: flex-end;
}
.news-info1 .container .box1 {
  width: 65%;
  margin: 0 auto 0.75rem;
  text-align: center;
}
@media (max-width: 1260px) {
  .news-info1 .container .box1 {
    width: 87.5%;
  }
}
@media (max-width: 767px) {
  .news-info1 .container .box1 {
    width: 100%;
  }
}
.news-info1 .container .box1 .cn1 {
  color: #333333;
  padding: 0 0.2rem;
  line-height: 1.25em;
}
.news-info1 .container .box1 .cn2 {
  margin-top: 0.2rem;
  color: #333333;
  line-height: 1.875em;
}
.news-info1 .container .box2 {
  background-color: #ffffff;
  border-radius: 0.15rem;
  padding-top: 0.4rem;
  padding-bottom: 1rem;
}
.news-info1 .container .box2 .box3 {
  width: 65%;
  margin: 0 auto;
}
@media (max-width: 1260px) {
  .news-info1 .container .box2 .box3 {
    width: 87.5%;
  }
}
@media (max-width: 767px) {
  .news-info1 .container .box2 .box3 {
    width: 100%;
    padding: 0 0.2rem;
  }
}
.news-info1 .container .box2 .box3 .box4 {
  padding-top: 0.7rem;
  border-bottom: 1px solid #Ddd;
}
.news-info1 .container .box2 .box3 .box4 p {
  color: #333;
}
.news-info1 .container .box2 .box3 .box5 {
  padding: 0.3rem 0 0.4rem;
  flex-wrap: wrap;
  justify-content: space-between;
  display: flex;
}
.news-info1 .container .box2 .box3 .box5 .box6 {
  margin-right: 1rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.news-info1 .container .box2 .box3 .box5 .box6 .cn1 {
  color: #333333;
  line-height: 1.875em;
}
.news-info1 .container .box2 .box3 .box5 .box6 .cn2 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.news-info1 .container .box2 .box3 .box5 .box6 .cn2 .cn3 {
  margin-left: 0.2rem;
  display: flex;
}
.news-info1 .container .box2 .box3 .box5 .box6 .cn2 .cn3 svg {
  width: 0.22rem;
  height: auto;
}
@media (max-width: 991px) {
  .news-info1 .container .box2 .box3 .box5 .box6 .cn2 .cn3 svg {
    width: 0.44rem;
  }
}
.news-info1 .container .box2 .box3 .box5 .box6 .cn2 .cn3 svg path {
  fill: #999;
  opacity: 1;
  transition: all 0.4s;
}
.news-info1 .container .box2 .box3 .box5 .box6 .cn2 .cn3:hover svg path {
  fill: #00d1d1;
}
.news-info1 .container .box2 .box3 .box5 .box7 .cn5 {
  display: flex;
  align-items: center;
}
.news-info1 .container .box2 .box3 .box5 .box7 .cn5 .cn6 {
  display: flex;
}
.news-info1 .container .box2 .box3 .box5 .box7 .cn5 .cn6 svg {
  align-items: center;
  width: 0.22rem;
  height: auto;
}
@media (max-width: 991px) {
  .news-info1 .container .box2 .box3 .box5 .box7 .cn5 .cn6 svg {
    width: 0.44rem;
  }
}
.news-info1 .container .box2 .box3 .box5 .box7 .cn5 .cn6 svg path {
  fill: #999;
  opacity: 1;
  transition: all 0.4s;
}
.news-info1 .container .box2 .box3 .box5 .box7 .cn5 .cn7 {
  margin-left: 0.1rem;
  color: #999;
  transition: all 0.4s;
}
.news-info1 .container .box2 .box3 .box5 .box7 .cn5:hover .cn6 svg path {
  fill: #00d1d1;
}
.news-info1 .container .box2 .box3 .box5 .box7 .cn5:hover .cn7 {
  color: #00d1d1;
}
.news-info1 .container .box2 .box3 .box8 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.news-info1 .container .box2 .box3 .box8 .cn9 {
  width: 48.07692308%;
  background-color: #f4f4f4;
  border-radius: 0.15rem;
  transition: all 0.4s;
  padding: 0.3rem 0.3rem 0.6rem;
}
@media (max-width: 767px) {
  .news-info1 .container .box2 .box3 .box8 .cn9 {
    width: 100%;
    margin: 0.2rem 0;
  }
}
.news-info1 .container .box2 .box3 .box8 .cn9 .cn10 {
  color: #999999;
  line-height: 1.66666667em;
  transition: all 0.4s;
}
.news-info1 .container .box2 .box3 .box8 .cn9 .cn11 {
  color: #333;
  line-height: 1.25em;
  transition: all 0.4s;
}
.news-info1 .container .box2 .box3 .box8 .cn9:hover {
  background-color: #00d1d1;
}
.news-info1 .container .box2 .box3 .box8 .cn9:hover .cn10 {
  color: #fff;
}
.news-info1 .container .box2 .box3 .box8 .cn9:hover .cn11 {
  color: #fff;
}
.social-share a:before {
  display: none;
}
.social-share a:hover {
  background: transparent !important;
}
/* 微信二维码的 */
.social-share .icon-wechat .wechat-qrcode {
  top: 50px;
  left: 0;
}
.social-share .icon-wechat .wechat-qrcode:after {
  display: none;
}
@media (max-width: 992px) {
  .social-share .icon-wechat .wechat-qrcode h4 {
    display: none;
  }
  .social-share .icon-wechat .wechat-qrcode .help {
    display: none;
  }
  .social-share .icon-wechat .wechat-qrcode .qrcode {
    width: 100px;
  }
  .social-share .icon-wechat .wechat-qrcode {
    top: 50px;
    left: -50px;
    width: 120px;
    height: initial;
    z-index: 999;
  }
}
.news-info2 {
  text-align: center;
  padding-top: 1rem;
  padding-bottom: 0.8rem;
}
.news-info2 .news-box3 .index-news {
  padding: 0;
}
/***************** 06-04加入我们 *****************/
.news-box1.join-box1 {
  margin: 0.4rem 0 0.8rem;
}
.news-box1.join-box1 .container {
  position: relative;
}
@media (max-width: 991px) {
  .news-box1.join-box1 .container .box:nth-child(2) {
    margin-right: 0;
  }
}
@media (max-width: 991px) {
  .news-box1.join-box1 .container .box {
    width: 49%;
    margin-right: 2%;
  }
}
.news-box1.join-box1 .container .tcn1 {
  position: absolute;
  right: 0;
  top: 0;
  color: #999999;
  line-height: 0.5rem;
}
@media (max-width: 991px) {
  .news-box1.join-box1 .container .tcn1 {
    position: relative;
    margin-top: 0.5rem;
    width: 100%;
    text-align: right;
  }
}
.news-box1.join-box1 .container .tcn1 span {
  color: #00d1d1;
}
.join-list {
  padding-bottom: 1.2rem;
}
.join-list .container {
  position: relative;
}
.join-list .container::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 2px;
  background-color: #000;
}
.join-list .container .box {
  position: relative;
  border-top: 1px solid #ddd;
}
.join-list .container .box::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 2px;
  transition: all 0.4s;
  background-color: #000;
  z-index: 5;
}
.join-list .container .box .box2 {
  cursor: pointer;
  display: flex;
  align-items: center;
}
.join-list .container .box .box2 .cn0 {
  padding-top: 0.4rem;
  padding-bottom: 0.4rem;
}
.join-list .container .box .box2 .cn0.cn1 {
  width: 36.875%;
  padding: 0.4rem 2.5%;
}
@media (max-width: 991px) {
  .join-list .container .box .box2 .cn0.cn1 {
    width: 37.5%;
  }
}
@media (max-width: 767px) {
  .join-list .container .box .box2 .cn0.cn1 {
    width: 50%;
  }
}
.join-list .container .box .box2 .cn0.cn2 {
  width: 15.625%;
  padding-right: 2.5%;
}
@media (max-width: 991px) {
  .join-list .container .box .box2 .cn0.cn2 {
    width: 18.75%;
  }
}
@media (max-width: 767px) {
  .join-list .container .box .box2 .cn0.cn2 {
    display: none;
  }
}
.join-list .container .box .box2 .cn0.cn3 {
  color: #999;
  position: relative;
  width: 16.25%;
  padding-right: 2.5%;
}
@media (max-width: 991px) {
  .join-list .container .box .box2 .cn0.cn3 {
    width: 25%;
  }
}
@media (max-width: 767px) {
  .join-list .container .box .box2 .cn0.cn3 {
    width: 50%;
  }
}
.join-list .container .box .box2 .cn0.cn3 .cn3b {
  position: absolute;
  right: 0.4rem;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
}
.join-list .container .box .box2 .cn0.cn3 .cn3b em {
  position: absolute;
  left: 50%;
  display: block;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.4s;
}
.join-list .container .box .box2 .cn0.cn3 .cn3b em:nth-child(1) {
  width: 18px;
  height: 2px;
  background-color: #000;
}
.join-list .container .box .box2 .cn0.cn3 .cn3b em:nth-child(2) {
  width: 2px;
  height: 18px;
  background-color: #000;
}
@media (max-width: 991px) {
  .join-list .container .box .box2 .cn0.cn4 {
    display: none;
  }
}
.join-list .container .box .box3 {
  display: none;
  padding: 0 2.5% 0.8rem;
  background-color: #f8f8f8;
}
.join-list .container .box .box3 .box3a {
  border-top: 1px solid #ddd;
  padding-top: 0.4rem;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.join-list .container .box .box3 .box3a .box3b {
  width: 50%;
}
@media (max-width: 767px) {
  .join-list .container .box .box3 .box3a .box3b {
    width: 100%;
    margin-bottom: 0.4rem;
  }
}
.join-list .container .box .box3 .box3a .box3b .cn2 {
  padding-right: 0.4rem;
}
.join-list .container .box .box3 .box3a .box3b .cn2 h3 {
  font-weight: bold;
  font-size: 18px;
  color: #333;
}
@media (max-width: 991px) {
  .join-list .container .box .box3 .box3a .box3b .cn2 h3 {
    font-size: 0.3rem;
  }
}
@media (max-width: 991px) {
  .join-list .container .box .box3 .box3a {
    width: 100%;
  }
}
.join-list .container .box .box3 .cn3 {
  margin-top: 0.5rem;
}
.join-list .container .box.on::before {
  width: 100%;
}
.join-list .container .box.on .box2 {
  background-color: #f8f8f8;
}
.join-list .container .box.on .box2 .cn3 .cn3b em:nth-child(2) {
  transform: translate(-50%, -50%) rotate(90deg);
}
.join-list .container .box4 {
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.join-list .container .box4 .cn9 {
  display: flex;
  align-items: center;
  line-height: 1.5em;
  color: #666;
}
.join-list .container .box4 .cn9 img {
  margin-right: 0.1rem;
  animation: problemrotat 10s infinite;
  position: relative;
}
.join-list0 .container .box {
  display: flex;
  padding-bottom: 0.3rem;
}
.join-list0 .container .box .cn0.cn1 {
  width: 36.875%;
  padding: 0 2.5%;
}
@media (max-width: 991px) {
  .join-list0 .container .box .cn0.cn1 {
    width: 37.5%;
  }
}
@media (max-width: 767px) {
  .join-list0 .container .box .cn0.cn1 {
    width: 50%;
  }
}
.join-list0 .container .box .cn0.cn2 {
  width: 15.625%;
  padding-right: 2.5%;
}
@media (max-width: 991px) {
  .join-list0 .container .box .cn0.cn2 {
    width: 18.75%;
  }
}
@media (max-width: 767px) {
  .join-list0 .container .box .cn0.cn2 {
    display: none;
  }
}
.join-list0 .container .box .cn0.cn3 {
  width: 16.25%;
  padding-right: 2.5%;
}
@media (max-width: 991px) {
  .join-list0 .container .box .cn0.cn3 {
    width: 25%;
  }
}
@media (max-width: 767px) {
  .join-list0 .container .box .cn0.cn3 {
    width: 50%;
  }
}
@media (max-width: 991px) {
  .join-list0 .container .box .cn0.cn4 {
    display: none;
  }
}
/***************** 06-05联系我们 *****************/
.con-box1 {
  margin-top: 0.3rem;
}
.con-box1 .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.con-box1 .container .box {
  margin-top: 0.2rem;
  padding: 0.6rem 0.35rem 0.85rem;
  width: 49.375%;
  background-color: #f8f8f8;
  border-radius: 5px;
  position: relative;
}
@media (max-width: 991px) {
  .con-box1 .container .box {
    margin-top: 0.4rem;
    width: 48%;
  }
}
@media (max-width: 767px) {
  .con-box1 .container .box {
    width: 100%;
  }
}
.con-box1 .container .box .cn1 {
  color: #333333;
  line-height: 1em;
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 2;
}
.con-box1 .container .box .cn1::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.25rem;
  width: 0.4rem;
  height: 2px;
  background-color: #333;
}
.con-box1 .container .box .cn2 {
  position: relative;
  z-index: 2;
}
.con-box1 .container .box .cn2 .cn3 {
  color: #333333;
  line-height: 1.66666667em;
}
.con-box1 .container .box .cn4 {
  position: absolute;
  right: 0.8rem;
  bottom: 0;
}
.con-box1 .container .box .cn4 svg {
  height: 2.84rem;
  width: auto;
}
.con-box2.con-box4 {
  padding-bottom: 1.2rem;
}
.con-box2 .container {
  display: flex;
  flex-wrap: wrap;
}
.con-box2 .container .box {
  margin-top: 0.2rem;
  padding: 0.35rem 0.35rem 0.4rem;
  width: 32.5%;
  margin-right: 1.25%;
  background-color: #f8f8f8;
  border-radius: 5px;
  position: relative;
}
@media (max-width: 991px) {
  .con-box2 .container .box {
    margin-top: 0.4rem;
    width: 48%;
    margin-right: 4%;
  }
}
@media (max-width: 767px) {
  .con-box2 .container .box {
    width: 100%;
    margin-right: 0;
  }
}
.con-box2 .container .box::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 5px;
  transition: all 0.4s;
  background-color: #00d1d1;
}
.con-box2 .container .box:hover::before {
  width: 100%;
}
.con-box2 .container .box:nth-child(3n) {
  margin-right: 0;
}
@media (max-width: 991px) {
  .con-box2 .container .box:nth-child(3n) {
    margin-right: 4%;
  }
}
@media (max-width: 767px) {
  .con-box2 .container .box:nth-child(3n) {
    margin-right: 0;
  }
}
@media (max-width: 991px) {
  .con-box2 .container .box:nth-child(2n) {
    margin-right: 0;
  }
}
.con-box2 .container .box .cn1 {
  color: #333333;
  line-height: 1em;
  margin-bottom: 0.5rem;
  position: relative;
}
.con-box2 .container .box .cn1::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.25rem;
  width: 0.4rem;
  height: 2px;
  background-color: #333;
}
.con-box2 .container .box .cn2 .cn3 {
  color: #333333;
  line-height: 1.66666667em;
}
.con-box3 {
  margin-top: 0.6rem;
}
.con-box3 .cn1 {
  line-height: 1em;
  color: #000;
  margin-bottom: 0.2rem;
}
/***************** 06-06招商合作 *****************/
.con-box5 {
  background-color: #f8f8f8;
  padding: 1.2rem 0;
}
.con-box5 .container .cn1 {
  text-align: center;
  color: #333333;
  line-height: 1em;
}
.con-box5 .container .cn2 {
  margin-top: 0.25rem;
  text-align: center;
  line-height: 1.66666667em;
  color: #666;
  margin-bottom: 0.45rem;
}
.con-box5 .container .box {
  border-radius: 15px;
  background-color: #fff;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 0.4rem 11.875%;
}
@media (max-width: 991px) {
  .con-box5 .container .box {
    padding: 0.4rem 5%;
  }
}
.con-box5 .container .box .cn3 {
  width: 49.18032787%;
}
@media (max-width: 767px) {
  .con-box5 .container .box .cn3 {
    width: 100%;
  }
}
.con-box5 .container .box .cn3 .cn4 {
  display: block;
  line-height: 0.6rem;
  color: #333333;
}
.con-box5 .container .box .cn3 .cn5 {
  display: block;
}
.con-box5 .container .box .cn3 .cn5 input {
  width: 100%;
  background-color: #f5f5f5;
  border-radius: 5px;
  line-height: 0.6rem;
  padding: 0 0.2rem;
  height: 0.6rem;
  color: #333333;
}
.con-box5 .container .box .cn3 .cn5 input::placeholder {
  color: #999;
}
@media (max-width: 991px) {
  .con-box5 .container .box .cn3 .cn5 input {
    line-height: 0.76rem;
    height: 0.76rem;
  }
}
.con-box5 .container .box .cn3 .cn5 textarea {
  width: 100%;
  background-color: #f5f5f5;
  border-radius: 5px;
  line-height: 1.6875em;
  height: 1.12rem;
  padding: 0.2rem;
  color: #333333;
}
.con-box5 .container .box .cn3 .cn5 textarea::placeholder {
  color: #999;
}
.con-box5 .container .box .cn3 .cn5 select {
  line-height: 0.6rem;
}
.con-box5 .container .box .cn3.cn9 {
  width: 100%;
}
.con-box5 .container .box .cn10 {
  width: 100%;
  margin: 0.4rem 0 0.2rem;
  display: block;
  color: #999999;
}
.con-box5 .container .box .cn15 {
  display: block;
  color: #999999;
}
.con-box5 .container .box .cn16 {
  width: 100%;
}
.layui-input,
.layui-select,
.layui-textarea {
  border-width: 0;
}
.layui-form-select dl {
  top: 0.6rem;
}
@media (max-width: 991px) {
  .layui-form-select dl {
    top: 0.76rem;
  }
}
.layui-form-select dl dd.layui-this {
  background-color: #00d1d1;
}
.layui-form-select input::placeholder {
  color: #333 !important;
}
.layui-form-select .layui-edge {
  background-image: url(../images/news-img5.svg);
  background-size: 10px 6px;
  border-width: 0;
  width: 10px;
  height: 6px;
  transform: translateY(-50%);
  margin-top: 0;
  right: 0.2rem;
}
.layui-form-select.layui-form-selected .layui-edge {
  transform: translateY(-50%) rotate(180deg);
}
.con-box5 .layui-form-select .layui-edge {
  background-image: url(../images/con-img5.svg);
}
.con-box5.coobox2 .container .cn1 {
  margin-bottom: 0.6rem;
}
.coobox9 {
  padding: 0.8rem 0 0.6rem;
}
.coobox0 {
  background-color: #f8f8f8;
  position: relative;
}
.coobox0 .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.coobox0 .container .box {
  padding: 0.5rem 0.5rem 0.5rem 0;
  width: 40%;
  position: relative;
  cursor: pointer;
  transition: all 0.5s;
}
@media (max-width: 767px) {
  .coobox0 .container .box {
    width: 50%;
    padding: 0.3rem;
  }
}
.coobox0 .container .box .cn1 {
  color: #333333;
  opacity: 0.5;
  position: relative;
  z-index: 2;
  line-height: 1.2em;
}
@media (max-width: 767px) {
  .coobox0 .container .box .cn1 {
    width: 75%;
    font-size: 0.24rem;
  }
}
.coobox0 .container .box .cn2 {
  color: #333333;
  opacity: 0.5;
  position: relative;
  z-index: 2;
  margin-top: 0.1rem;
}
@media (max-width: 991px) {
  .coobox0 .container .box .cn2 {
    display: none;
  }
}
.coobox0 .container .box .cn3 {
  position: absolute;
  right: 0;
  top: 0;
  width: 200%;
  height: 100%;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  border-radius: 0px 90px 90px 0px;
  background-color: #fff;
  display: none;
}
.coobox0 .container .box .cn4 {
  position: absolute;
  right: 0.7rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  opacity: 0;
  transition: all 0.4s;
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .coobox0 .container .box .cn4 {
    right: 0.5rem;
    opacity: 0.3;
  }
}
.coobox0 .container .box .cn4 img {
  width: 27px;
  height: 14px;
}
@media (max-width: 767px) {
  .coobox0 .container .box .cn4 img {
    width: 0.4rem;
    height: 0.2rem;
  }
}
.coobox0 .container .box .cn4 svg {
  width: 27px;
  height: 14px;
}
@media (max-width: 767px) {
  .coobox0 .container .box .cn4 svg {
    width: 0.4rem;
    height: 0.2rem;
  }
}
.coobox0 .container .box .cn4 svg path {
  fill: #00d1d1;
  opacity: 1;
}
.coobox0 .container .box:nth-child(2) {
  padding-left: 1.6rem;
}
@media (max-width: 991px) {
  .coobox0 .container .box:nth-child(2) {
    padding-left: 1rem;
  }
}
@media (max-width: 767px) {
  .coobox0 .container .box:nth-child(2) {
    padding: 0.3rem;
  }
}
.coobox0 .container .box:nth-child(2) .cn3 {
  right: initial;
  left: 0;
  border-radius: 90px 0px 0px  90px;
}
.coobox0 .container .box:nth-child(2) .cn4 {
  left: 0.7rem;
  right: initial;
}
@media (max-width: 767px) {
  .coobox0 .container .box:nth-child(2) .cn4 {
    right: 0.7rem;
    left: initial;
  }
}
.coobox0 .container .box.on {
  width: 60%;
}
@media (max-width: 767px) {
  .coobox0 .container .box.on {
    width: 50%;
    padding: 0.3rem;
  }
}
@media (max-width: 991px) {
  .coobox0 .container .box.on:nth-child(2) {
    padding-left: 1.6rem;
  }
}
@media (max-width: 767px) {
  .coobox0 .container .box.on:nth-child(2) {
    padding: 0.3rem;
  }
}
.coobox0 .container .box.on .cn1 {
  opacity: 1;
}
.coobox0 .container .box.on .cn2 {
  opacity: 1;
}
.coobox0 .container .box.on .cn3 {
  display: block;
}
@media (max-width: 767px) {
  .coobox0 .container .box.on .cn3 {
    display: none;
  }
}
.coobox0 .container .box.on .cn4 {
  opacity: 1;
}
.coobox1 {
  padding-bottom: 0.8rem;
}
.coobox1 .container .box {
  display: none;
  flex-wrap: wrap;
  justify-content: space-between;
}
.coobox1 .container .box .box2 {
  border-radius: 15px;
  background-color: #f8f8f8;
  width: 49.125%;
  display: flex;
  align-items: center;
  margin-bottom: 0.3rem;
  padding: 0.4rem 0.8rem 0.4rem 0.4rem;
  position: relative;
  overflow: hidden;
}
@media (max-width: 991px) {
  .coobox1 .container .box .box2 {
    width: 100%;
  }
}
.coobox1 .container .box .box2 .num {
  position: absolute;
  right: 0.3rem;
  bottom: -0.3rem;
  font-size: 1.2rem;
  line-height: 1em;
  color: rgba(102, 102, 102, 0.05);
  transition: all 0.4s;
}
.coobox1 .container .box .box2 .img {
  margin-right: 0.25rem;
  width: 1.2rem;
  height: 1.2rem;
  background-color: rgba(0, 209, 209, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s;
}
.coobox1 .container .box .box2 .img svg {
  max-width: 45%;
  height: auto;
}
.coobox1 .container .box .box2 .img svg path {
  fill: #00d1d1;
  opacity: 1;
}
.coobox1 .container .box .box2 .img img {
  max-width: 45%;
  height: auto;
}
.coobox1 .container .box .box2 .text {
  width: calc(100% - 1.45rem);
  position: relative;
  z-index: 2;
}
.coobox1 .container .box .box2 .text .cn1 {
  color: #333333;
  transition: all 0.4s;
}
.coobox1 .container .box .box2 .text .cn2 {
  margin-top: 0.1rem;
  color: #666666;
  line-height: 1.5em;
  height: 7.5em;
  -webkit-line-clamp: 5;
  transition: all 0.4s;
}
.coobox1 .container .box .box2:hover {
  background-color: #00d1d1;
}
.coobox1 .container .box .box2:hover .num {
  color: rgba(255, 255, 255, 0.2);
}
.coobox1 .container .box .box2:hover .img {
  background-color: #ffffff;
}
.coobox1 .container .box .box2:hover .text .cn1 {
  color: #fff;
}
.coobox1 .container .box .box2:hover .text .cn2 {
  color: #Fff;
}
.coobox1 .container .box.on {
  display: flex;
}
.error {
  padding-bottom: 1.3rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.error .container .cn1 {
  margin-top: 0.8rem;
  text-align: center;
}
.error .container .cn1 img {
  width: 4.28rem;
}
.error .container .cn2 {
  text-align: center;
  margin: 0 0 0.5rem;
  color: #333333;
}
.error .container .cn4 {
  display: flex;
  justify-content: center;
}
.error .container .cn3 {
  background-color: #fff;
  color: #333;
  margin: 0 auto;
  padding: 0.14rem 0.57rem;
}
.error .container .cn3:hover {
  border-color: #00d1d1;
  background-color: #00d1d1;
  color: #fff;
}
.error .container .cn4 .zcn3 svg {
  transform: rotate(180deg);
  margin-left: 0;
  margin-right: 0.1rem;
}
.error .container .cn5 {
  margin-top: 0.15rem;
  text-align: center;
  color: #333;
}
.error .container .cn5 span {
  color: #333;
}
.policy {
  padding-bottom: 1.4rem;
}
.policy .container .fztitle {
  margin-top: 0.9rem;
  text-align: center;
}
.policy .container .jut {
  text-align: center;
  margin: 0.3rem 0 0.5rem;
}
.policy .container .cont .make-text {
  border-bottom: 0;
  padding-bottom: 0;
}
.policy .container .cont .make-text h3 {
  font-size: 24px;
}
.policy .container .cont .make-text span {
  font-size: 16px;
}
.policy .container .cont .make-text a {
  color: #00d1d1;
}
.z-windows {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  z-index: 999;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
}
.z-windows .box1 {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  max-width: 950px;
  width: 49.60835509%;
  background-color: #Fff;
  padding: 0.6rem 1.2rem;
  max-height: 80%;
  overflow: auto;
}
@media (max-width: 1260px) {
  .z-windows .box1 {
    width: 90%;
    padding: 0.6rem;
  }
}
.z-windows .box1 .cn0 {
  position: absolute;
  right: 0.25rem;
  top: 0.25rem;
  cursor: pointer;
}
.z-windows .box1 .cn0 svg {
  width: 0.25rem;
  height: 0.25rem;
}
.z-windows .box1 .cn0 svg path {
  fill: #333;
  opacity: 1;
}
.z-windows .box1 .cn1 {
  text-align: center;
  color: #333333;
}
.z-windows .box1 .cn2 {
  text-align: center;
  color: #999999;
  margin-bottom: 0.2rem;
}
.z-windows .box1 .cn2 span {
  color: #00d1d1;
}
.z-windows .box1 .box2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.z-windows .box1 .box2 .cn3 {
  margin-top: 0.2rem;
  width: 48.5%;
}
@media (max-width: 767px) {
  .z-windows .box1 .box2 .cn3 {
    width: 100%;
  }
}
.z-windows .box1 .box2 .cn3.cn3a {
  width: 100%;
}
.z-windows .box1 .box2 .cn3 input {
  width: 100%;
  line-height: 0.48rem;
  padding: 0 0.2rem;
  background-color: #f3f3f5;
  border: solid 1px #eaeaea;
  color: #999;
}
.z-windows .box1 .box2 .cn3 input::placeholder {
  color: #999;
}
@media (max-width: 767px) {
  .z-windows .box1 .box2 .cn3 input {
    line-height: 0.76rem;
  }
}
.z-windows .box1 .box3 {
  margin-top: 0.2rem;
  padding: 0.2rem;
  background-color: #f3f3f5;
  border: solid 1px #eaeaea;
}
.z-windows .box1 .box3 .cn4 {
  color: #999999;
  line-height: 1.71428571em;
}
.z-windows .box1 .box3 .cn5 {
  width: 1.2rem;
  margin-top: 0.25rem;
  position: relative;
  line-height: 0.4rem;
  background-color: #fff;
  border-radius: 8px;
  border: 1px solid #c5c5c5;
  text-align: center;
  cursor: pointer;
  font-size: 0;
  overflow: hidden;
}
@media (max-width: 767px) {
  .z-windows .box1 .box3 .cn5 {
    line-height: 0.76rem;
    width: 2rem;
  }
}
.z-windows .box1 .box3 .cn5 input {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  font-size: 0;
}
.z-windows .box1 .box3 .cn5 .cn6 {
  width: 100%;
  line-height: 0.4rem;
  background-color: #fff;
  position: relative;
  z-index: 2;
  pointer-events: none;
  display: block;
  cursor: pointer;
  color: #333333;
}
@media (max-width: 767px) {
  .z-windows .box1 .box3 .cn5 .cn6 {
    line-height: 0.76rem;
  }
}
.z-windows .box1 .box3 .cn5.on {
  display: none;
}
.z-windows .box1 .box3 .cn15 {
  display: none;
}
.z-windows .box1 .box3 .cn15 .cn17 {
  padding: 0 0.2rem;
  min-width: 1.2rem;
  margin-top: 0.25rem;
  line-height: 0.4rem;
  background-color: #fff;
  border-radius: 8px;
  border: 1px solid #c5c5c5;
  text-align: center;
  cursor: pointer;
  position: relative;
}
@media (max-width: 767px) {
  .z-windows .box1 .box3 .cn15 .cn17 {
    line-height: 0.76rem;
  }
}
.z-windows .box1 .box3 .cn15 .cn16 {
  width: 100%;
  line-height: 0.4rem;
  background-color: #fff;
  position: relative;
  z-index: 2;
  pointer-events: none;
  display: block;
  cursor: pointer;
  color: #333333;
}
@media (max-width: 767px) {
  .z-windows .box1 .box3 .cn15 .cn16 {
    line-height: 0.76rem;
  }
}
.z-windows .box1 .box3 .cn15 .cn18 {
  position: absolute;
  right: -8.5px;
  top: -8.5px;
}
.z-windows .box1 .box3 .cn15 .cn18 img {
  width: 17px;
  height: 17px;
}
.z-windows .box1 .box3 .cn15 .cn18 svg {
  width: 17px;
  height: 17px;
}
.z-windows .box1 .box3 .cn15.on {
  display: flex;
}
.z-windows .box1 .box4 .cn9 {
  margin-top: 0.1rem;
  color: #999999;
  line-height: 1.71428571em;
}
.z-windows .box1 .box4 .cn10 {
  margin: 0.5rem auto 0;
  width: 1.54rem;
  line-height: 0.52rem;
  background-color: #00d1d1;
  color: #fff;
  display: block;
  transition: all 0.4s;
}
@media (max-width: 767px) {
  .z-windows .box1 .box4 .cn10 {
    line-height: 0.76rem;
  }
}
.z-windows .box1 .box4 .cn10:hover {
  opacity: 0.8;
}
#c-header .c-nav > li {
  position: initial;
}
.ztopproduct {
  display: none;
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 100%;
  background-color: #fff;
  z-index: 2;
}
.ztopproduct .container {
  padding-bottom: 0.75rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start !important;
}
.ztopproduct .container .left {
  padding-top: 0.36rem;
  width: 53.125%;
}
.ztopproduct .container .left .cn1 {
  line-height: 1em;
  padding: 0 0.2rem;
  color: #aaaaaa;
  text-align: left;
  margin-bottom: 0.2rem;
}
.ztopproduct .container .left .cn9::before {
  background-color: #f4f4f4;
}
.ztopproduct .container .left .cn9::after {
  background-color: #f4f4f4;
}
.ztopproduct .container .left .cn2 {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin: 0.15rem 0;
}
.ztopproduct .container .left .cn2::before {
  content: "";
  position: absolute;
  left: 23.52941176%;
  top: 0;
  width: 1px;
  height: 100%;
  background-color: #f4f4f4;
}
.ztopproduct .container .left .cn2 #cn3a {
  width: 23.52941176%;
  padding-right: 0.2rem;
}
.ztopproduct .container .left .cn2 #cn3a .cn4 {
  text-align: left;
  padding: 0 0.2rem;
  border-radius: 0.2rem;
  line-height: 0.4rem;
  width: 100%;
  margin-bottom: 0.1rem;
  transition: all 0.4s;
  opacity: 0;
  transform: translateY(0.5rem);
}
.ztopproduct .container .left .cn2 #cn3a .cn4:nth-child(1) {
  transition: all 0.4s 0.05s;
}
.ztopproduct .container .left .cn2 #cn3a .cn4:nth-child(2) {
  transition: all 0.4s 0.1s;
}
.ztopproduct .container .left .cn2 #cn3a .cn4:nth-child(3) {
  transition: all 0.4s 0.15s;
}
.ztopproduct .container .left .cn2 #cn3a .cn4:nth-child(4) {
  transition: all 0.4s 0.2s;
}
.ztopproduct .container .left .cn2 #cn3a .cn4:nth-child(5) {
  transition: all 0.4s 0.25s;
}
.ztopproduct .container .left .cn2 #cn3a .cn4:nth-child(6) {
  transition: all 0.4s 0.3s;
}
.ztopproduct .container .left .cn2 #cn3a .cn4 .cn5 {
  color: #333333;
  transition: all 0.4s;
  line-height: 0.4rem;
}
.ztopproduct .container .left .cn2 #cn3a .cn4 svg {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(0, -50%);
  transition: all 0.4s;
}
.ztopproduct .container .left .cn2 #cn3a .cn4 svg path {
  fill: #ccc;
  opacity: 1;
  transition: all 0.4s;
}
.ztopproduct .container .left .cn2 #cn3a .cn4.on {
  background-color: #f8f8f8;
}
.ztopproduct .container .left .cn2 #cn3a .cn4.on .cn5 {
  color: #00d1d1;
}
.ztopproduct .container .left .cn2 #cn3a .cn4.on svg {
  transform: translate(0.05rem, -50%);
}
.ztopproduct .container .left .cn2 #cn3a .cn4.on svg path {
  fill: #00d1d1;
}
.ztopproduct .container .left .cn2 #cn3a .cn4:hover {
  background-color: #f8f8f8;
}
.ztopproduct .container .left .cn2 #cn3a .cn4:hover .cn5 {
  color: #00d1d1;
}
.ztopproduct .container .left .cn2 #cn3a .cn4:hover svg path {
  fill: #00d1d1;
}
.ztopproduct .container .left .cn2 .cn6a {
  width: 76.47058824%;
  display: flex;
  justify-content: space-between;
  padding-left: 0.6rem;
  display: none;
}
.ztopproduct .container .left .cn2 .cn6a.on {
  display: flex;
}
.ztopproduct .container .left .cn2 .cn6a .cn7 {
  width: 32.61538462%;
}
@media (max-width: 1580px) {
  .ztopproduct .container .left .cn2 .cn6a .cn7 {
    width: 50%;
  }
}
.ztopproduct .container .left .cn2 .cn6a .cn7 .cn4 {
  text-align: left;
  position: relative;
  margin-bottom: 0.1rem;
  display: flex;
  padding-left: 0.1rem;
  align-items: center;
  transition: all 0.4s;
  opacity: 0;
  transform: translateY(0.5rem);
}
.ztopproduct .container .left .cn2 .cn6a .cn7 .cn4:nth-child(1) {
  transition: all 0.4s 0.05s;
}
.ztopproduct .container .left .cn2 .cn6a .cn7 .cn4:nth-child(2) {
  transition: all 0.4s 0.1s;
}
.ztopproduct .container .left .cn2 .cn6a .cn7 .cn4:nth-child(3) {
  transition: all 0.4s 0.15s;
}
.ztopproduct .container .left .cn2 .cn6a .cn7 .cn4:nth-child(4) {
  transition: all 0.4s 0.2s;
}
.ztopproduct .container .left .cn2 .cn6a .cn7 .cn4:nth-child(5) {
  transition: all 0.4s 0.25s;
}
.ztopproduct .container .left .cn2 .cn6a .cn7 .cn4:nth-child(6) {
  transition: all 0.4s 0.3s;
}
.ztopproduct .container .left .cn2 .cn6a .cn7 .cn4 .cn5 {
  display: flex;
  align-items: center;
  width: 100%;
  line-height: 0.4rem;
}
.ztopproduct .container .left .cn2 .cn6a .cn7 .cn4 em {
  display: block;
  position: absolute;
  left: -0.1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background-color: #333;
  transition: all 0.4s;
}
.ztopproduct .container .left .cn2 .cn6a .cn7 .cn4 .cn199 {
  width: 100%;
  display: inline-block;
  line-height: 0.4rem;
  position: relative;
  padding-right: 0.2rem;
}
.ztopproduct .container .left .cn2 .cn6a .cn7 .cn4 .cn199::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background-color: #f4f4f4;
  transition: all 0.4s;
}
.ztopproduct .container .left .cn2 .cn6a .cn7 .cn4 svg {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(0, -50%);
  transition: all 0.4s;
}
.ztopproduct .container .left .cn2 .cn6a .cn7 .cn4 svg path {
  fill: #999;
  opacity: 1;
  transition: all 0.4s;
}
.ztopproduct .container .left .cn2 .cn6a .cn7 .cn4.on .cn5 em {
  background-color: #00d1d1;
}
.ztopproduct .container .left .cn2 .cn6a .cn7 .cn4.on .cn199 {
  color: #00d1d1 !important;
}
.ztopproduct .container .left .cn2 .cn6a .cn7 .cn4.on .cn199::before {
  width: 100%;
}
.ztopproduct .container .left .cn2 .cn6a .cn7 .cn4.on svg {
  transform: translate(0.1rem, -50%);
}
.ztopproduct .container .left .cn2 .cn6a .cn7 .cn4.on svg path {
  fill: #00d1d1;
}
.ztopproduct .container .left .cn2 .cn6a .cn8 {
  width: 34.61538462%;
}
.ztopproduct .container .left .cn2 .cn6a .cn8::before {
  padding-top: 91.11111111%;
}
.ztopproduct .container .right {
  padding-top: 0.36rem;
  width: 40.625%;
}
.ztopproduct .container .right .cn1 {
  line-height: 1em;
  padding: 0 0.2rem;
  color: #aaaaaa;
  text-align: left;
  margin-bottom: 0.2rem;
}
.ztopproduct .container .right .cn9::before {
  background-color: #f4f4f4;
}
.ztopproduct .container .right .cn9::after {
  background-color: #f4f4f4;
}
.ztopproduct .container .right .cn2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ztopproduct .container .right .cn2 #cn3 {
  padding: 0.2rem 0 0;
  width: 40%;
}
@media (max-width: 1580px) {
  .ztopproduct .container .right .cn2 #cn3 {
    width: 50%;
  }
}
.ztopproduct .container .right .cn2 #cn3 .cn4 {
  text-align: left;
  padding: 0 0.2rem;
  border-radius: 0.2rem;
  line-height: 0.4rem;
  width: 100%;
  margin-bottom: 0.1rem;
  transition: all 0.4s;
  opacity: 0;
  transform: translateY(0.5rem);
}
.ztopproduct .container .right .cn2 #cn3 .cn4:nth-child(1) {
  transition: all 0.4s 0.05s;
}
.ztopproduct .container .right .cn2 #cn3 .cn4:nth-child(2) {
  transition: all 0.4s 0.1s;
}
.ztopproduct .container .right .cn2 #cn3 .cn4:nth-child(3) {
  transition: all 0.4s 0.15s;
}
.ztopproduct .container .right .cn2 #cn3 .cn4:nth-child(4) {
  transition: all 0.4s 0.2s;
}
.ztopproduct .container .right .cn2 #cn3 .cn4:nth-child(5) {
  transition: all 0.4s 0.25s;
}
.ztopproduct .container .right .cn2 #cn3 .cn4:nth-child(6) {
  transition: all 0.4s 0.3s;
}
.ztopproduct .container .right .cn2 #cn3 .cn4:nth-child(7) {
  transition: all 0.4s 0.35s;
}
.ztopproduct .container .right .cn2 #cn3 .cn4 .cn5 {
  color: #333333;
  transition: all 0.4s;
  line-height: 0.4rem;
}
.ztopproduct .container .right .cn2 #cn3 .cn4 svg {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(0, -50%);
  transition: all 0.4s;
}
.ztopproduct .container .right .cn2 #cn3 .cn4 svg path {
  fill: #ccc;
  opacity: 1;
  transition: all 0.4s;
}
.ztopproduct .container .right .cn2 #cn3 .cn4.on {
  background-color: #f8f8f8;
}
.ztopproduct .container .right .cn2 #cn3 .cn4.on .cn5 {
  color: #00d1d1;
}
.ztopproduct .container .right .cn2 #cn3 .cn4.on svg {
  transform: translate(0.05rem, -50%);
}
.ztopproduct .container .right .cn2 #cn3 .cn4.on svg path {
  fill: #00d1d1;
}
.ztopproduct .container .right .cn2 #cn3 .cn4:hover {
  background-color: #f8f8f8;
}
.ztopproduct .container .right .cn2 #cn3 .cn4:hover .cn5 {
  color: #00d1d1;
}
.ztopproduct .container .right .cn2 #cn3 .cn4:hover svg path {
  fill: #00d1d1;
}
.ztopproduct .container .right .cn2 .cn6 {
  width: 40.30769231%;
}
.ztopproduct .container .right .cn2 .cn6::before {
  padding-top: 52.29007634%;
}
.chanpinxiala.on99 .ztopproduct .container .left .cn2 #cn3a .cn4 {
  opacity: 1;
  transform: translateY(0);
}
.chanpinxiala.on99 .ztopproduct .container .left .cn2 .cn6a .cn7 .cn4 {
  opacity: 1;
  transform: translateY(0);
}
.chanpinxiala.on99 .ztopproduct .container .right .cn2 #cn3 .cn4 {
  opacity: 1;
  transform: translateY(0);
}
.erjifenlei {
  position: relative !important;
}
.erjifenlei ul {
  top: 0.55rem !important;
}
@media (max-width: 1580px) {
  .erjifenlei ul {
    top: 0.6rem !important;
  }
}
.erjifenlei ul li {
  border-bottom: 0 !important;
  position: relative;
}
.erjifenlei ul li a {
  border-bottom: 0;
}
.erjifenlei ul li::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 70%;
  height: 1px;
  background-color: #eee;
}
.erjifenlei ul li:last-child::before {
  display: none;
}
.layui-form-select dl dd,
.layui-form-select dl dt {
  line-height: 0.5rem;
}
.ztext0 {
  position: relative;
}
.ztext1 {
  display: flex;
  align-items: center;
  transition: all 0.6s;
}
.ztext2 {
  display: flex;
  align-items: center;
  position: absolute;
  left: 0;
  bottom: 0;
  color: #00d1d1;
  opacity: 0;
  transform: translateY(0.5rem);
  transition: all 0.6s;
}
#c-header .c-nav > li:hover .ztext1 {
  transform: translateY(-0.5rem);
  opacity: 0;
}
#c-header .c-nav > li:hover .ztext1 svg {
  transition: all 0.6s;
}
#c-header .c-nav > li:hover .ztext2 svg {
  transition: all 0.6s;
}
#c-header .c-nav > li:hover .ztext2 {
  transform: translateY(0);
  opacity: 1;
}
#c-header .c-nav > li > .c-title-box > a {
  overflow: hidden;
}
.layui-form input[type=checkbox] {
  display: block;
}
.layui-form-checkbox {
  display: none;
}
@media (max-width: 991px) {
  .index-trait {
    display: none;
  }
}
.mbindex-trait3 {
  padding-top: 1.2rem;
  display: none;
  width: 100%;
  overflow: hidden;
}
@media (max-width: 991px) {
  .mbindex-trait3 {
    display: block;
  }
}
.mbindex-trait3 .mbindex-trait {
  position: relative;
  overflow: hidden;
  padding-bottom: 0.25rem;
}
.mbindex-trait3 .mbindex-trait .swiper-wrapper .swiper-slide {
  position: relative;
}
.mbindex-trait3 .mbindex-trait .swiper-wrapper .swiper-slide::before {
  content: "";
  position: absolute;
  right: 100%;
  top: 50%;
  transform: translateY(-50%);
  background-image: url(../images/zxc1.svg);
  width: 0.8rem;
  height: 0.14rem;
  background-size: 0.8rem 0.14rem;
  background-repeat: no-repeat;
  background-position: center;
}
.mbindex-trait3 .mbindex-trait .swiper-wrapper .swiper-slide::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -0.24rem;
  width: 0.19rem;
  height: 0.12rem;
  background-image: url(../images/zxc4.png);
  background-size: 0.19rem 0.12rem;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0;
}
.mbindex-trait3 .mbindex-trait .swiper-wrapper .swiper-slide .cn1 {
  line-height: 0.6rem;
  color: #cccccc;
  text-align: center;
  font-size: 0.32rem;
}
.mbindex-trait3 .mbindex-trait .swiper-wrapper .swiper-slide.swiper-slide-active .cn1 {
  font-size: 0.32rem;
  color: #00d1d1;
}
.mbindex-trait3 .mbindex-trait .swiper-wrapper .swiper-slide.swiper-slide-active::after {
  opacity: 1;
}
.mbindex-trait3 .mbindex-trait2 {
  position: relative;
  overflow: hidden;
  margin-top: 0.8rem;
  padding-bottom: 3rem;
}
.mbindex-trait3 .mbindex-trait2 .swiper-pagination99 {
  position: absolute;
  left: 50%;
  bottom: 1.6rem;
  transform: translateX(-50%);
  width: 100%;
  text-align: center;
}
.mbindex-trait3 .mbindex-trait2 .swiper-pagination99 .swiper-pagination-bullet {
  width: 0.16rem;
  height: 0.16rem;
  background-color: #333333;
  opacity: 1;
}
.mbindex-trait3 .mbindex-trait2 .swiper-pagination99 .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #00d1d1;
}
.mbindex-trait3 .mbindex-trait2 .swiper-wrapper .swiper-slide .cn2 {
  text-align: center;
  color: #000000;
  line-height: 1.5em;
  max-width: 90%;
  margin: 0 auto;
}
.mbindex-trait3 .mbindex-trait2 .swiper-wrapper .swiper-slide .left3 {
  display: flex;
  justify-content: center;
  margin: 0.6rem 0 1.2rem;
}
.mbindex-trait3 .mbindex-trait2 .swiper-wrapper .swiper-slide .video:before {
  padding-top: 60.66666667%;
}
.mbindex-news {
  padding: 1.1rem 0 2.2rem;
  background-color: #f4f4f4;
  position: relative;
  z-index: 10;
  display: none;
  overflow: hidden;
}
@media (max-width: 991px) {
  .mbindex-news {
    display: block;
    padding: 1.2rem 0;
  }
}
.mbindex-news .container .textbox .tcn1 {
  text-align: center;
  color: #000;
}
@media (max-width: 991px) {
  .mbindex-news .container .textbox .tcn1 {
    font-size: 0.54rem;
  }
}
.mbindex-news .container .tcn2 {
  display: flex;
  justify-content: center;
  margin: 0.25rem 0 0.28rem;
}
@media (max-width: 991px) {
  .mbindex-news .container .tcn2 {
    margin: 0.5rem 0 0.28rem;
  }
}
.mbindex-news .container .tcn2 .tcn3 {
  text-align: center;
  margin: 0 auto;
  min-width: 1.4rem;
  line-height: 0.45rem;
  border: 2px solid #00d1d1;
  border-radius: 0.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s;
}
@media (max-width: 767px) {
  .mbindex-news .container .tcn2 .tcn3 {
    border-radius: 1rem;
  }
}
.mbindex-news .container .tcn2 .tcn3 svg {
  margin-left: 0.1rem;
}
@media (max-width: 991px) {
  .mbindex-news .container .tcn2.tcn2a {
    display: none;
  }
}
.mbindex-news .container .tcn2.tcn2b {
  display: none;
}
@media (max-width: 991px) {
  .mbindex-news .container .tcn2.tcn2b {
    display: flex;
  }
}
.mbindex-news .container .indexnewsa1aaaaaa {
  position: relative;
}
.mbindex-news .container .indexnewsa1aaaaaa .swiper-wrapper .swiper-slide {
  width: 23.125%;
  margin-right: 2.5%;
  background-color: #ffffff;
  border-radius: 15px;
  overflow: hidden;
  height: auto;
  position: relative;
  transition: all 0.4s;
  transition-timing-function: ease-in-out;
  top: 0;
}
@media (max-width: 991px) {
  .mbindex-news .container .indexnewsa1aaaaaa .swiper-wrapper .swiper-slide {
    width: 48.75%;
    margin-top: 0.4rem;
    margin-right: 2.5%;
  }
}
@media (max-width: 767px) {
  .mbindex-news .container .indexnewsa1aaaaaa .swiper-wrapper .swiper-slide {
    width: 100%;
    margin-right: 0;
  }
}
.mbindex-news .container .indexnewsa1aaaaaa .swiper-wrapper .swiper-slide:nth-child(4n) {
  margin-right: 0;
}
@media (max-width: 991px) {
  .mbindex-news .container .indexnewsa1aaaaaa .swiper-wrapper .swiper-slide:nth-child(2n) {
    margin-right: 0;
  }
}
.mbindex-news .container .indexnewsa1aaaaaa .swiper-wrapper .swiper-slide .box {
  transition: all 0.4s;
}
.mbindex-news .container .indexnewsa1aaaaaa .swiper-wrapper .swiper-slide .img {
  width: 100%;
}
.mbindex-news .container .indexnewsa1aaaaaa .swiper-wrapper .swiper-slide .img::before {
  padding-top: 56.75675676%;
}
.mbindex-news .container .indexnewsa1aaaaaa .swiper-wrapper .swiper-slide .cn1 {
  padding: 0.35rem 0.3rem;
}
.mbindex-news .container .indexnewsa1aaaaaa .swiper-wrapper .swiper-slide .cn1 .cn2 {
  margin-bottom: 0.9rem;
}
.mbindex-news .container .indexnewsa1aaaaaa .swiper-wrapper .swiper-slide .cn1 .cn2 .cn3 {
  display: block;
  color: #999999;
  line-height: 2.14285714em;
  margin-bottom: 0.1rem;
  text-align: left;
}
.mbindex-news .container .indexnewsa1aaaaaa .swiper-wrapper .swiper-slide .cn1 .cn2 .cn4 {
  color: #2d2d2d;
  line-height: 1.3em;
  height: 2.6em;
  transition: all 0.4s;
  text-align: left;
}
.mbindex-news .container .indexnewsa1aaaaaa .swiper-wrapper .swiper-slide .cn1 .cn9::before {
  background-color: #ddd;
}
.mbindex-news .container .indexnewsa1aaaaaa .swiper-wrapper .swiper-slide .cn1 .cn9::after {
  background-color: #ddd;
}
.mbindex-news .container .indexnewsa1aaaaaa .swiper-wrapper .swiper-slide .cn1 .cn5 {
  padding-top: 0.3rem;
  display: flex;
  justify-content: space-between;
}
.mbindex-news .container .indexnewsa1aaaaaa .swiper-wrapper .swiper-slide .cn1 .cn5 .cn6 {
  color: #999999;
  transition: all 0.4s;
}
.mbindex-news .container .indexnewsa1aaaaaa .swiper-wrapper .swiper-slide .cn1 .cn5 .cn6 svg {
  width: 0.18rem;
  height: 0.11rem;
  transition: all 0.4s 0.4s;
  opacity: 0;
  transform: translateX(-0.15rem);
}
@media (max-width: 991px) {
  .mbindex-news .container .indexnewsa1aaaaaa .swiper-wrapper .swiper-slide .cn1 .cn5 .cn6 svg {
    width: 0.36rem;
    height: 0.22rem;
  }
}
.mbindex-news .container .indexnewsa1aaaaaa .swiper-wrapper .swiper-slide .cn1 .cn5 .cn6 svg path {
  fill: #7b7b7b;
  transition: all 0.4s;
  opacity: 1;
}
.mbindex-news .container .indexnewsa1aaaaaa .swiper-wrapper .swiper-slide .cn1 .cn5 .cn7 svg {
  width: 0.18rem;
  height: 0.11rem;
  transition: all 0.4s;
}
@media (max-width: 991px) {
  .mbindex-news .container .indexnewsa1aaaaaa .swiper-wrapper .swiper-slide .cn1 .cn5 .cn7 svg {
    width: 0.36rem;
    height: 0.22rem;
  }
}
.mbindex-news .container .indexnewsa1aaaaaa .swiper-wrapper .swiper-slide .cn1 .cn5 .cn7 svg path {
  fill: #7b7b7b;
  transition: all 0.4s;
  opacity: 1;
}
@media (min-width: 992px) {
  .mbindex-news .container .indexnewsa1aaaaaa .swiper-wrapper .swiper-slide:hover {
    top: -0.2rem;
  }
  .mbindex-news .container .indexnewsa1aaaaaa .swiper-wrapper .swiper-slide:hover .box .img img {
    transform: scale(1.05);
  }
  .mbindex-news .container .indexnewsa1aaaaaa .swiper-wrapper .swiper-slide:hover .box .cn1 .cn2 .cn4 {
    color: #00d1d1;
  }
  .mbindex-news .container .indexnewsa1aaaaaa .swiper-wrapper .swiper-slide:hover .box .cn1 .cn9::before {
    display: none;
  }
  .mbindex-news .container .indexnewsa1aaaaaa .swiper-wrapper .swiper-slide:hover .box .cn1 .cn9::after {
    display: none;
  }
  .mbindex-news .container .indexnewsa1aaaaaa .swiper-wrapper .swiper-slide:hover .box .cn1 .cn9 span::before {
    width: 100%;
  }
  .mbindex-news .container .indexnewsa1aaaaaa .swiper-wrapper .swiper-slide:hover .box .cn1 .cn9 span::after {
    height: 6px;
    transform: rotate(30deg) translateY(0);
  }
  .mbindex-news .container .indexnewsa1aaaaaa .swiper-wrapper .swiper-slide:hover .box .cn1 .cn5 .cn6 {
    color: #00d1d1;
  }
  .mbindex-news .container .indexnewsa1aaaaaa .swiper-wrapper .swiper-slide:hover .box .cn1 .cn5 .cn6 svg {
    transform: translateX(0.05rem);
    opacity: 1;
  }
  .mbindex-news .container .indexnewsa1aaaaaa .swiper-wrapper .swiper-slide:hover .box .cn1 .cn5 .cn6 svg path {
    fill: #00d1d1;
  }
  .mbindex-news .container .indexnewsa1aaaaaa .swiper-wrapper .swiper-slide:hover .box .cn1 .cn5 .cn7 svg {
    transform: translateX(0.2rem);
    opacity: 0;
  }
  .mbindex-news .container .indexnewsa1aaaaaa .swiper-wrapper .swiper-slide:hover .box .cn1 .cn5 .cn7 svg path {
    fill: #00d1d1;
  }
}
#c-header .mb-lan {
  margin-top: 0.5rem;
  padding: 0 0.5rem 1rem;
  display: flex;
  flex-wrap: wrap;
}
#c-header .mb-lan .mb-lan2 {
  text-align: center;
  margin-right: 0.2rem;
  width: 1.2rem;
  line-height: 0.6rem;
  border-radius: 0.4rem;
  border: solid 0.02rem #333;
  color: #333;
}
#c-header .mb-lan .mb-lan2.default {
  background-color: #00d1d1;
  border: solid 0.02rem #00d1d1;
  color: #fff;
}
#c-header .c-gn .ztop-language .cn2 {
  opacity: 1;
  border: 1px solid transparent;
}
#c-header .c-gn .ztop-language .cn2 .cn3 {
  opacity: 0;
  height: 0;
}
#c-header .c-gn .ztop-language:hover .cn2 {
  border: 1px solid #d5d5d5;
  transition: all 0.4s;
}
#c-header .c-gn .ztop-language:hover .cn2 .cn3 {
  opacity: 1;
  height: auto;
}
.hv-image-play {
  background-size: 100%;
}
.tongzhi .cn1 {
  width: 60px;
  height: 60px;
  background-color: #00d1d1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.5s;
}
.tongzhi .cn1 svg path {
  fill: #fff;
  opacity: 1;
}
.tongzhi .cn1:hover {
  opacity: 0.8;
}
.tongzhi .box1 {
  position: fixed;
  right: 20px;
  bottom: calc(7vh + 80px);
  z-index: 533;
}
.tongzhi .box2 {
  position: fixed;
  right: 20px;
  bottom: calc(7vh);
  z-index: 533;
}
.tongzhi .box3 {
  position: fixed;
  right: 20px;
  bottom: calc(7vh + 160px);
  z-index: 533;
  background-color: #e8e8e8;
  background-color: transparent;
  display: flex;
  width: 345px;
  border-radius: 30px;
  right: -265px;
  transition: all 0.4s;
}
.tongzhi .box3 .cn1 {
  width: 60px;
}
.tongzhi .box3 .box3a {
  width: 285px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  display: none;
}
.tongzhi .box3 .box3a .cn3a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border: 1px solid #ccc;
  border-radius: 50%;
  transition: all 0.4s;
}
.tongzhi .box3 .box3a .cn3a svg {
  width: 50%;
}
.tongzhi .box3 .box3a .cn3a svg path {
  transition: all 0.4s;
  fill: #999;
  opacity: 1;
}
.tongzhi .box3 .box3a .cn3a:hover {
  border: 1px solid #00d1d1;
}
.tongzhi .box3 .box3a .cn3a:hover svg path {
  fill: #00d1d1;
}
.tongzhi .box3:hover {
  background-color: #e8e8e8;
  right: 20px;
}
.tongzhi .box3:hover .box3a {
  display: flex;
}
.progress-wrap {
  background-color: #fff;
  position: fixed;
  right: 33px;
  bottom: 50px;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.2);
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}
.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.progress-wrap::after {
  position: absolute;
  background-image: url(../images/asdasd.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 12px 17px;
  content: "";
  text-align: center;
  line-height: 46px;
  font-size: 24px;
  color: var(--grey);
  left: 0;
  top: 0;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  z-index: 1;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}
.progress-wrap:hover::after {
  opacity: 0;
}
.progress-wrap::before {
  position: absolute;
  background-image: url(../images/asdasd2.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 12px 17px;
  content: "";
  text-align: center;
  line-height: 46px;
  font-size: 24px;
  left: 0;
  top: 0;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  z-index: 1;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}
.progress-wrap:hover {
  background-color: #00d1d1;
}
.progress-wrap:hover::before {
  opacity: 1;
}
.progress-wrap svg path {
  fill: none;
}
.progress-wrap svg.progress-circle path {
  stroke: #00d1d1;
  stroke-width: 4;
  box-sizing: border-box;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}
.index-trait .container .indextraita1 .swiper-wrapper9 .swiper-slide9:nth-child(1) .box .cn1 svg .cls-98 {
  fill: none;
  stroke: #999;
}
.index-trait .container .indextraita1 .swiper-wrapper9 .swiper-slide9:nth-child(1) .box .cn1 svg .cls-99 {
  fill: none;
  stroke: #999;
}
.index-trait .container .indextraita1 .swiper-wrapper9 .swiper-slide9.on .box .cn1 svg .cls-98 {
  stroke: #00d1d1;
}
.index-trait .container .indextraita1 .swiper-wrapper9 .swiper-slide9.on .box .cn1 svg .cls-99 {
  stroke: #00d1d1;
}
.index-product .container .box .box2a:hover .hezi .left .left3 .public-btn1 {
  background-color: #00d1d1;
}
.index-product .container .box .box3 .box3a:hover .public-btn1 {
  background-color: #00d1d1;
}
.index-product .container .box .box3 .box3b:hover .public-btn1 {
  background-color: #00d1d1;
}
.product-box1.style3 .box6 .container .box6a .swiper-wrapper2 {
  justify-content: center;
}
.product-box1.style3 .box6 .container .box6a .swiper-slide2 {
  width: auto;
}
.product-box2 .box6 .container .box6a .swiper-wrapper2 {
  white-space: normal;
}
.product-box2 .box6 .container .box6a .swiper-slide2 {
  background-color: #f4f4f4;
  border-radius: 0.5rem;
  text-align: center;
  padding: 0 0.2rem;
  margin-top: 0.2rem;
  border-bottom: 0;
  width: 18%;
  margin-right: 2.5%;
}
.product-box2 .box6 .container .box6a .swiper-slide2:nth-child(5n) {
  margin-right: 0;
}
.product-box2 .box6 .container .box6a .swiper-slide2 .cn3 {
  line-height: 1.5em;
  padding: 0.2rem 0;
  font-size: 0.24rem;
}
.product-box2 .box6 .container .box6a .swiper-slide2.on {
  border-bottom: 0;
  background-color: #00d1d1;
  color: #fff;
}
.product-box2 .box6 .container .box6a .swiper-slide2.on .cn3 {
  color: #fff;
}
@media (max-width: 991px) {
  .product-box2 .box6 .container .box6a .swiper-slide2 {
    background-color: #f4f4f4;
    border-radius: 0.5rem;
    text-align: center;
    padding: 0 0.2rem;
    margin-top: 0.2rem;
    border-bottom: 0;
    width: 30%;
    margin-right: 5%;
  }
  .product-box2 .box6 .container .box6a .swiper-slide2:nth-child(5n) {
    margin-right: 5%;
  }
  .product-box2 .box6 .container .box6a .swiper-slide2:nth-child(3n) {
    margin-right: 0;
  }
  .product-box1.style3 .box6 .container .box6a .swiper-wrapper2 {
    justify-content: flex-start;
  }
  .product-box1.style3 .box6 .container .box6a .swiper-slide2 {
    width: 30%;
  }
  .product-box1 .box4 .container .box4a .box4aright .box4b .cn4 {
    display: block !important;
    font-size: 0.28rem;
    line-height: 1.5em;
    color: #333;
    margin-bottom: 0.2rem;
  }
  .case-box1.casebox1a .container {
    border-bottom: 0;
  }
  .case-box1.casebox1a .container .right .cn3 {
    background-color: #f4f4f4;
  }
  .case-box1.casebox1a .container .right .cn3::before {
    display: none;
  }
  .case-box1.casebox1a .container .right .cn3::after {
    display: none;
  }
  .case-box1.casebox1a .container .right {
    border-top: 0;
    justify-content: center;
  }
  .case-box1.casebox1a .container .right .cn3 {
    padding: 0.3rem 0.2rem;
    width: 30%;
    margin: 0;
    position: relative;
    border: 1px solid #f4f4f4;
    background-color: transparent;
    border-radius: 0.1rem;
    display: flex;
    margin-bottom: 0.2rem;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.4s;
    margin-right: 5%;
  }
  .case-box1.casebox1a .container .right .cn3:nth-child(3n) {
    margin-right: 0;
  }
  .case-box1 .container .right .cn3 .cn4 {
    width: 0.8rem;
    height: 0.8rem;
    margin: 0 auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #F4f4f4;
    transition: all 0.4s;
  }
  .case-box1 .container .right .cn3 .cn4 svg {
    width: 80%;
    transition: all 0.4s;
  }
  .case-box1 .container .right .cn3 .cn4 svg path {
    fill: #ddd;
    transition: all 0.4s;
  }
  .case-box1 .container .right .cn3 .cn5 {
    font-size: 0.24rem;
  }
  .case-box1.casebox1a .container .right .cn3.on {
    background-color: #f4f4f4;
  }
  .case-box1.casebox1a .container .right .cn3.on .cn4 {
    background-color: #00d1d1;
  }
  .case-box1.casebox1a .container .right .cn3.on .cn4 svg path {
    fill: #fff;
  }
  .product-box1.style6 .box1 .container .box1a .img {
    min-height: 9rem;
  }
}
@media (max-width: 768px) {
  .product-box1.style6 .box1 .container .box1a .img {
    min-height: auto;
  }
}
@media (max-width: 991px) {
  .case-box1 .container {
    display: none;
  }
}
@media (max-width: 991px) {
  .case-box1.case-box1c {
    position: sticky;
    left: 0;
    top: 1.2rem;
  }
}
@media (max-width: 991px) {
  .case-box1.case-box1d {
    display: none !important;
  }
}
.case-box1 .bigbox {
  padding: 0.3rem 0;
  border-top: 1px solid #f4f4f4;
  border-bottom: 1px solid #f4f4f4;
  width: 90%;
  margin: 0 auto;
  display: none;
}
@media (max-width: 991px) {
  .case-box1 .bigbox {
    display: flex;
    align-items: center;
  }
}
.case-box1 .bigbox .bigboxleft {
  width: 65%;
  position: relative;
  height: 0.76rem;
  line-height: 0.76rem;
  border: 1px solid #eee;
  border-radius: 0.38rem;
  overflow: hidden;
}
.case-box1 .bigbox .bigboxleft input {
  width: 100%;
  padding: 0 1.2rem 0 0.3rem;
  color: #333;
}
.case-box1 .bigbox .bigboxleft button {
  border-radius: 0.38rem;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1.5rem;
  height: 100%;
  color: #fff;
  background-color: #00d1d1;
}
.case-box1 .bigbox .bigboxright {
  width: 35%;
  display: flex;
  position: relative;
  justify-content: flex-end;
  line-height: 0.76rem;
}
.case-box1 .bigbox .bigboxright .tcn3 {
  display: flex;
  align-items: center;
  color: #333;
  transition: all 0.4s;
}
.case-box1 .bigbox .bigboxright .tcn3 svg {
  margin-left: 5px;
  transition: all 0.4s;
}
.case-box1 .bigbox .bigboxright .tcn3 svg path {
  fill: #333;
  opacity: 1;
  transition: all 0.4s;
}
.case-box1 .bigbox .bigboxright .tcn3.on {
  color: #00d1d1;
}
.case-box1 .bigbox .bigboxright .tcn3.on svg {
  transform: rotate(180deg);
}
.case-box1 .bigbox .bigboxright .tcn3.on svg path {
  fill: #00d1d1;
  opacity: 1;
}
.case-box1 .bigbox .bigboxright .tcn4 {
  display: none;
  width: calc(100vw);
  position: absolute;
  right: -5vw;
  top: calc(100% + 0.3rem);
  background-color: #Fff;
  padding: 0 5vw 5vw;
}
.case-box1 .bigbox .bigboxright .tcn4 .tcn5 {
  border-top: 1px solid #f4f4f4;
  border-bottom: 1px solid #f4f4f4;
}
.case-box1 .bigbox .bigboxright .tcn4 .tcn5 .tcn6 {
  display: block;
  color: #333;
  transition: all 0.4s;
}
.case-box1 .bigbox .bigboxright .tcn4 .tcn5 .tcn6:hover {
  color: #00d1d1;
}
.case-box1 .bigbox .bigboxright .tcn4 .tcn15 {
  border-bottom: 1px solid #f4f4f4;
}
.case-box1 .bigbox .bigboxright .tcn4 .tcn15 .tcn7 {
  display: flex;
  align-items: center;
  color: #333;
  font-weight: bold;
}
.case-box1 .bigbox .bigboxright .tcn4 .tcn15 .tcn7 .tcn11 {
  margin-right: 0.1rem;
  width: 0.3rem;
  height: 0.3rem;
  border-radius: 4px;
  border: 1px solid #00d1d1;
}
.case-box1 .bigbox .bigboxright .tcn4 .tcn15 .tcn7.on .tcn11 {
  background-color: #00d1d1;
  border: 1px solid #00d1d1;
}
.case-box1 .bigbox .bigboxright .tcn4 .tcn15 .tcn8 .tcn9 {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.case-box1 .bigbox .bigboxright .tcn4 .tcn15 .tcn8 .tcn9 .tcn10 {
  margin-right: 0.2rem;
  display: flex;
  align-items: center;
  color: #333;
  font-size: 0.24rem;
}
.case-box1 .bigbox .bigboxright .tcn4 .tcn15 .tcn8 .tcn9 .tcn10 .tcn11 {
  display: block;
  margin-right: 0.1rem;
  width: 0.3rem;
  height: 0.3rem;
  border-radius: 4px;
  border: 1px solid #00d1d1;
}
.case-box1 .bigbox .bigboxright .tcn4 .tcn15 .tcn8 .tcn9 .tcn10 .tcn13 {
  position: relative;
  right: 0;
  background-color: #f7f8fc;
  color: #bcbcbf;
  font-size: 12px;
  line-height: 16px;
  padding: 0 2px;
  margin-left: 0.05rem;
}
.case-box1 .bigbox .bigboxright .tcn4 .tcn15 .tcn8 .tcn9 .tcn10.on .tcn11 {
  background-color: #00d1d1;
  border: 1px solid #00d1d1;
}
.index-product .container .box .hezi {
  border-radius: 15px;
}
.application-box1 .container .box .box2 .img2 svg .cls-45 {
  fill: none;
  opacity: 1;
  stroke: #333;
}
.application-box1 .container .box .box2 .img2 svg .cls-46 {
  fill: none;
  opacity: 1;
  stroke: #333;
}
.application-box1 .container .box .box2 .img2 svg .cls-47 {
  fill: none;
  opacity: 1;
  stroke: #333;
}
.application-box1 .container .box .box2:nth-child(1) .box3 .img svg path {
  fill: none;
}
.application-box1 .container .box .box2.on .img2 svg .cls-45 {
  fill: none;
  opacity: 1;
  stroke: #00d1d1;
}
.application-box1 .container .box .box2.on .img2 svg .cls-46 {
  fill: none;
  opacity: 1;
  stroke: #00d1d1;
}
.application-box1 .container .box .box2.on .img2 svg .cls-47 {
  fill: none;
  opacity: 1;
  stroke: #00d1d1;
}
.index-trait .container .indextraita1 .swiper-wrapper9 .swiper-slide9:nth-child(1) .box .cn1 svg .cls-45 {
  fill: none;
  opacity: 1;
  stroke: #999;
}
.index-trait .container .indextraita1 .swiper-wrapper9 .swiper-slide9:nth-child(1) .box .cn1 svg .cls-46 {
  fill: none;
  opacity: 1;
  stroke: #999;
}
.index-trait .container .indextraita1 .swiper-wrapper9 .swiper-slide9:nth-child(1) .box .cn1 svg .cls-47 {
  fill: none;
  opacity: 1;
  stroke: #999;
}
.index-trait .container .indextraita1 .swiper-wrapper9 .swiper-slide9:nth-child(1) .box .cn1 svg path {
  fill: none;
  stroke: #999;
}
.index-trait .container .indextraita1 .swiper-wrapper9 .swiper-slide9.on .box .cn1 svg .cls-45 {
  fill: none;
  opacity: 1;
  stroke: #00d1d1;
}
.index-trait .container .indextraita1 .swiper-wrapper9 .swiper-slide9.on .box .cn1 svg .cls-46 {
  fill: none;
  opacity: 1;
  stroke: #00d1d1;
}
.index-trait .container .indextraita1 .swiper-wrapper9 .swiper-slide9.on .box .cn1 svg .cls-47 {
  fill: none;
  opacity: 1;
  stroke: #00d1d1;
}
.layui-form-select dl {
  max-height: 3rem;
}
.application-box1 .container .box .box2:nth-child(1) .box3 .img svg path {
  fill: #333;
}
.application-box1 .container .box .box2:nth-child(1) .img2 svg path {
  opacity: 1;
}
.index-trait .container .indextraita1 .swiper-wrapper9 .swiper-slide9:nth-child(1) .box .cn1 svg path {
  fill: #999;
  stroke: none;
}
.index-trait .container .indextraita1 .swiper-wrapper9 .swiper-slide9.on .box .cn1 svg path {
  fill: #00d1d1;
  stroke: none;
}
.application-box1 .container .box .box2 .img2 svg path {
  opacity: 0.2;
}
.box131 {
  padding-top: 0.8rem;
  padding-bottom: 1.1rem;
}
.box131 .container .cn1 {
  text-align: center;
  color: #333333;
  line-height: 1.5em;
}
@media (max-width: 991px) {
  .box131 .container .cn1 {
    font-size: 0.5rem;
  }
}
.box131 .container .cn2 {
  padding: 0.15rem 0 0;
  text-align: center;
  color: #333333;
  line-height: 1.66666667em;
  width: 66.875%;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .box131 .container .cn2 {
    width: 100%;
  }
}
.box131 .container .box3a {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media (max-width: 991px) {
  .box131 .container .box3a {
    justify-content: flex-start;
  }
}
.box131 .container .box3a .box3b {
  margin: 0.7rem 0.2rem 0;
  width: 3.5rem;
  padding: 0.3rem 0.2rem;
  border: 1px solid #00d1d1;
  border-radius: 15px;
}
@media (max-width: 1580px) {
  .box131 .container .box3a .box3b {
    width: 4rem;
  }
}
@media (max-width: 991px) {
  .box131 .container .box3a .box3b {
    width: calc((100% - 0.8rem) / 2);
  }
}
@media (max-width: 767px) {
  .box131 .container .box3a .box3b {
    width: 100%;
  }
}
.box131 .container .box3a .box3b .cn12 {
  text-align: center;
  margin-bottom: 0.4rem;
  height: 4.5em;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  word-break: break-word;
}
.box131 .container .box3a .box3b .cn13 {
  text-align: center;
}
.box131 .container .box3a .box3b .img {
  height: 1rem;
  width: 1rem;
  background-color: #00d1d1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto;
  position: relative;
}
.box131 .container .box3a .box3b .img::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background-color: #00d1d1;
  opacity: 0.2;
  z-index: 1;
  animation: prorotate 2s infinite linear;
}
.box131 .container .box3a .box3b .img::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  z-index: 2;
  background-color: #00d1d1;
}
.box131 .container .box3a .box3b .img img {
  position: relative;
  z-index: 3;
  max-width: 45%;
  height: auto;
}
.box131 .container .box3a .box3b .cn3 {
  margin-top: 0.4rem;
  text-align: center;
  color: #333333;
}
.con-box5z {
  display: none;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 1.2rem 0;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
}
.con-box5z .container {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
}
@media (max-width: 991px) {
  .con-box5z .container {
    max-height: 80%;
    overflow-y: auto;
    width: 90%;
  }
}
.con-box5z .container .close {
  position: absolute;
  right: 0.2rem;
  top: 0.2rem;
  width: 20px;
  height: 20px;
  cursor: pointer;
}
.con-box5z .container .close span {
  position: absolute;
  left: 50%;
  top: 50%;
  background-color: #333;
  transform: translate(-50%, -50%) rotate(45deg);
}
.con-box5z .container .close span:nth-child(1) {
  width: 20px;
  height: 2px;
}
.con-box5z .container .close span:nth-child(2) {
  width: 2px;
  height: 20px;
}
.con-box5z .container .cn1 {
  text-align: center;
  color: #333333;
  line-height: 1em;
}
.con-box5z .container .cn2 {
  margin-top: 0.25rem;
  text-align: center;
  line-height: 1.66666667em;
  color: #666;
  margin-bottom: 0.45rem;
}
.con-box5z .container .box {
  border-radius: 15px;
  background-color: #fff;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 0.4rem 1rem;
}
@media (max-width: 991px) {
  .con-box5z .container .box {
    padding: 0.4rem 5%;
  }
}
.con-box5z .container .box .cn3 {
  width: 49.18032787%;
}
@media (max-width: 767px) {
  .con-box5z .container .box .cn3 {
    width: 100%;
  }
}
.con-box5z .container .box .cn3 .cn4 {
  display: block;
  line-height: 0.6rem;
  color: #333333;
}
.con-box5z .container .box .cn3 .cn5 {
  display: block;
}
.con-box5z .container .box .cn3 .cn5 input {
  width: 100%;
  background-color: #f5f5f5;
  border-radius: 5px;
  line-height: 0.6rem;
  padding: 0 0.2rem;
  height: 0.6rem;
  color: #333333;
}
.con-box5z .container .box .cn3 .cn5 input::placeholder {
  color: #999;
}
@media (max-width: 991px) {
  .con-box5z .container .box .cn3 .cn5 input {
    line-height: 0.76rem;
    height: 0.76rem;
  }
}
.con-box5z .container .box .cn3 .cn5 textarea {
  width: 100%;
  background-color: #f5f5f5;
  border-radius: 5px;
  line-height: 1.6875em;
  height: 1.12rem;
  padding: 0.2rem;
  color: #333333;
}
.con-box5z .container .box .cn3 .cn5 textarea::placeholder {
  color: #999;
}
.con-box5z .container .box .cn3 .cn5 select {
  line-height: 0.6rem;
}
.con-box5z .container .box .cn3.cn9 {
  width: 100%;
}
.con-box5z .container .box .cn10 {
  width: 100%;
  margin: 0.4rem 0 0.2rem;
  display: block;
  color: #999999;
}
.con-box5z .container .box .cn15 {
  display: block;
  color: #999999;
}
.con-box5z .container .box .cn16 {
  width: 100%;
}
.con-box5z .layui-input,
.layui-select,
.layui-textarea {
  border-width: 0;
}
.con-box5z .layui-form-select dl {
  top: 0.6rem;
}
@media (max-width: 991px) {
  .con-box5z .layui-form-select dl {
    top: 0.76rem;
  }
}
.con-box5z .layui-form-select dl dd.layui-this {
  background-color: #00d1d1;
}
.con-box5z .layui-form-select input::placeholder {
  color: #333 !important;
}
.con-box5z .layui-form-select .layui-edge {
  background-image: url(../images/news-img5.svg);
  background-size: 10px 6px;
  border-width: 0;
  width: 10px;
  height: 6px;
  transform: translateY(-50%);
  margin-top: 0;
  right: 0.2rem;
}
.con-box5z .layui-form-select.layui-form-selected .layui-edge {
  transform: translateY(-50%) rotate(180deg);
}
.con-box5z .layui-form-select .layui-edge {
  background-image: url(../images/con-img5.svg);
}
.con-box5z.coobox2 .container .cn1 {
  margin-bottom: 0.6rem;
}
.cookies {
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
}
.cookies .container {
  padding: 0 8%;
}
@media (max-width: 991px) {
  .cookies .container {
    padding: 0;
  }
}
.cookies .container .cn1 {
  text-align: center;
  line-height: 1.5em;
  color: #080713;
}
.cookies .container .cn2 {
  line-height: 1.5em;
  text-align: center;
  color: #999999;
}
.cookies .container .box {
  margin-top: 0.6rem;
}
.cookies .container .box h3 {
  font-weight: bold;
  color: #080713;
  line-height: 1.5em;
  font-size: 0.28rem;
}
@media (max-width: 991px) {
  .cookies .container .box h3 {
    font-size: 0.4rem;
  }
}
.cookies .container .box p {
  color: #666666;
  line-height: 2em;
  font-size: 16px;
}
@media (max-width: 1580px) {
  .cookies .container .box p {
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  .cookies .container .box p {
    font-size: 0.28rem;
  }
}
.cookies .container .box2 .box3 {
  border-bottom: 1px solid #ddd;
  padding-top: 0.5rem;
}
.cookies .container .box2 .box3 .cn5 {
  line-height: 1.5em;
  color: #000000;
  margin-bottom: 0.2rem;
  display: block;
}
.cookies .container .box2 .box3 .cn5:hover {
  color: #00d1d1;
  text-decoration: underline;
}
.cookies .container .box2 .box3 .cn6 {
  display: flex;
  flex-wrap: wrap;
}
.cookies .container .box2 .box3 .cn6 .cn7 {
  display: block;
  width: 25%;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cookies .container .box2 .box3 .cn6 .cn7 {
    width: 50%;
  }
}
.cookies .container .box2 .box3 .cn6 .cn7 .cn8 {
  color: #000000;
  display: block;
  margin-bottom: 0.2rem;
}
.cookies .container .box2 .box3 .cn6 .cn7 .cn8:hover {
  color: #00d1d1;
  text-decoration: underline;
}
.cookies .container .box2 .box3 .cn6 .cn7 .cn9 .cn10 .cn11 {
  line-height: 2em;
  color: #666666;
}
.cookies .container .box2 .box3 .cn6 .cn7 .cn9 .cn10 .cn11:hover {
  color: #00d1d1;
  text-decoration: underline;
}
@media (max-width: 1650px) {
  .q-footer .q-footer3 .container .left {
    width: 100%;
    justify-content: center;
  }
  .q-footer .q-footer3 .container .right {
    width: 100%;
    justify-content: center;
  }
  .q-footer .q-footer3 .container .right a {
    margin: 0 0.2rem;
  }
}
.product-box2 .box6 .container .box6a .swiper-slide2 {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.application-box1 .container .box .box2 .text2 .cn5 {
  width: 50%;
  word-break: break-word;
  -webkit-line-clamp: 4;
}
.duibi-box2 .container .box2 .box3z .box3a {
  width: 52.85714286% !important;
}
.duibi-box2 .container .box2 .box3z .box3b:nth-child(2) {
  width: 0;
}
@media (max-width: 768px) {
  .duibi-box2 .container .box2 .box3z .box3a {
    width: 80% !important;
  }
  .duibi-box2 .container .box2 .box3z .box3b:nth-child(2) {
    width: 0%;
  }
}
