@charset "utf-8";
/* CSS Document */
/*

主题颜色   适配   统一间距   常用简单动画   特殊字体  上导航高度统一


*/
@font-face {
  font-family: 'cn1';
  src: url('../fonts/cn/NotoSansHans-Regular.ttf');
}
@font-face {
  font-family: 'cn2';
  src: url('https://qlvideo.ruoguang.vip/zsfont/NotoSansHans-Regular.ttf');
}
@font-face {
  font-family: 'en1';
  src: url('../fonts/en/AbhayaLibre-ExtraBold.ttf');
}
@font-face {
  font-family: 'en2';
  src: url('../fonts/en/Archivo-Bold.ttf');
}
@font-face {
  font-family: 'en3';
  src: url('../fonts/en/Caveat.ttf');
}
@font-face {
  font-family: 'en4';
  src: url('../fonts/en/MontserratAlternates-BlackItalic.ttf');
}
@font-face {
  font-family: 'en5';
  src: url('../fonts/en/NewBaskerville.ttf');
}
@font-face {
  font-family: 'en6';
  src: url('../fonts/en/utile.woff2');
}
@font-face {
  font-family: 'en7';
  src: url('../fonts/en/OpenSans-Light.ttf');
}
@font-face {
  font-family: 'en8';
  src: url('../fonts/en/Square721BT.ttf');
}
@font-face {
  font-family: 'en9';
  src: url('../fonts/en/D-DIN-PRO-900-Heavy.otf');
}
/* 弹跳 */
@keyframes bounce {
  0% {
    transform: translate3d(0, 0, 0);
    /* text-shadow: rgba(255, 255, 255, 0.4) 0 0 0.05em; */
  }
  100% {
    transform: translate3d(0, -0.5em, 0);
    /* text-shadow: rgba(255, 255, 255, 0.4) 0 1em 0.35em; */
  }
}
/* 旋转 */
@keyframes xuanzhuan {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* 波浪 */
@keyframes ripple {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.15), 0 0 0 10px rgba(255, 255, 255, 0.15), 0 0 0 20px rgba(255, 255, 255, 0.15);
  }
  100% {
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.15), 0 0 0 20px rgba(255, 255, 255, 0.15), 0 0 0 40px rgba(255, 255, 255, 0);
  }
}
a,
div,
section,
p,
button,
ul,
li,
body,
html,
img,
textarea,
input,
mod {
  margin: 0;
  padding: 0;
  color: #333;
  -webkit-tap-highlight-color: transparent;
  background-repeat: no-repeat;
  box-sizing: border-box;
  touch-action: pan-y;
  font-size: 20px;
  font-family: 'cn2';
}
@media (max-width:1680px) {
  a,
  div,
  section,
  p,
  button,
  ul,
  li,
  body,
  html,
  img,
  textarea,
  input,
  mod {
    font-size: 16px;
  }
}
@media (max-width:1680px) and (max-width:1360px) {
  a,
  div,
  section,
  p,
  button,
  ul,
  li,
  body,
  html,
  img,
  textarea,
  input,
  mod {
    font-size: 12px;
  }
}
@media (max-width:1680px) and (max-width:1360px) and (max-width:1024px) {
  a,
  div,
  section,
  p,
  button,
  ul,
  li,
  body,
  html,
  img,
  textarea,
  input,
  mod {
    font-size: 3vw;
  }
}
a {
  display: block;
  text-decoration: none;
}
img {
  border: 0;
  display: block;
}
body {
  margin: 0 auto;
  background-repeat: repeat;
}
ul,
li {
  list-style-type: none;
}
button {
  border: none;
  outline: none;
  background-color: transparent;
  box-sizing: content-box;
}
p {
  color: #666;
  line-height: 2em;
  text-align: justify;
  padding: 4px 0;
}
p img {
  max-width: 100%;
  display: inline-block;
  text-indent: 0!important;
  text-align: justify;
}
@media (max-width:1024px) {
  p img {
    width: 100% !important;
    height: unset !important;
  }
}
table {
  border: none;
  border-collapse: collapse;
  border: 0;
}
tr {
  border: none;
  border: 1px solid #DDD;
}
td {
  border: none;
  border: 1px solid #DDD;
}
input {
  outline: none;
  border: none;
}
.fancybox__container * {
  color: #fff !important;
}
.buttonLink {
  display: none;
}
.twoPageBox {
  padding-top: 70px;
}
@media (max-width:1680px) {
  .twoPageBox {
    padding-top: 60px;
  }
}
@media (max-width:1680px) and (max-width:1360px) {
  .twoPageBox {
    padding-top: 60px;
  }
}
@media (max-width:1680px) and (max-width:1360px) and (max-width:1024px) {
  .twoPageBox {
    padding-top: 14vw;
  }
}
.pageContent {
  position: relative;
  z-index: 4;
  padding: 110px 0;
}
@media (max-width:1680px) {
  .pageContent {
    padding: 90px 0;
  }
}
@media (max-width:1360px) {
  .pageContent {
    padding: 70px 0;
  }
}
@media (max-width:1024px) {
  .pageContent {
    padding: 15vw 0;
  }
}
mod {
  display: block;
}
::-webkit-scrollbar {
  /*滚动条整体样式*/
  width: 4px;
  /*高宽分别对应横竖滚动条的尺寸*/
  height: 1px;
  background-color: rgba(0, 0, 0, 0.1);
}
::-webkit-scrollbar-thumb {
  /*滚动条里面小方块*/
  width: 4px;
  border-radius: 10px;
  background-color: #fb7416;
}
::-webkit-scrollbar-track {
  /*滚动条里面轨道*/
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.2);
}
.biaoti-two .name {
  font-size: 40px;
}
@media (max-width:1360px) {
  .biaoti-two .name {
    font-size: 30px;
  }
}
@media (max-width:1360px) and (max-width:1024px) {
  .biaoti-two .name {
    font-size: 5vw;
  }
}
.pageBox {
  background-color: #f5f5f7;
}
.pageBox .cn {
  font-family: 'cn2';
}
.pageBox .en {
  font-family: 'en8';
  text-transform: uppercase;
}
.pageBox .imgBox img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.pageBox .cenBox {
  width: 1640px;
  margin: 0 auto;
}
@media (max-width:1680px) {
  .pageBox .cenBox {
    width: 1300px;
  }
}
@media (max-width:1360px) {
  .pageBox .cenBox {
    width: 90%;
  }
}
@media (max-width:1024px) {
  .pageBox .cenBox {
    width: 90%;
  }
}
.pageBox .phoneMask {
  position: fixed;
  z-index: 11111111111;
  width: 100%;
  height: 100%;
  top: 0;
  background-color: #ccc;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
  font-size: 5vw;
  display: none;
}
.pageBox .topNav .topNavBox {
  position: fixed;
  top: 0;
  width: 100%;
  height: 70px;
  z-index: 10;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
}
@media (max-width:1680px) {
  .pageBox .topNav .topNavBox {
    height: 60px;
  }
}
@media (max-width:1360px) {
  .pageBox .topNav .topNavBox {
    height: 60px;
  }
}
@media (max-width:1024px) {
  .pageBox .topNav .topNavBox {
    height: 14vw;
  }
}
.pageBox .topNav .topNavBox .cenBox {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  flex-wrap: unset;
}
.pageBox .topNav .topNavBox .cenBox .left {
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
}
.pageBox .topNav .topNavBox .cenBox .left .logoBox {
  height: 70%;
}
.pageBox .topNav .topNavBox .cenBox .left .logoBox img {
  height: 100%;
}
@media (max-width:1024px) {
  .pageBox .topNav .topNavBox .cenBox .center {
    display: none;
  }
}
.pageBox .topNav .topNavBox .cenBox .center .navBar .ul1 {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
}
.pageBox .topNav .topNavBox .cenBox .center .navBar .ul1 .li1 {
  position: relative;
  margin-right: 40px;
}
@media (max-width:1360px) {
  .pageBox .topNav .topNavBox .cenBox .center .navBar .ul1 .li1 {
    margin-right: 40px;
  }
}
.pageBox .topNav .topNavBox .cenBox .center .navBar .ul1 .li1 .a1 .txt {
  color: #fff;
  transition-duration: 0.5s;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.56, -0.01, 0.04, 1);
}
.pageBox .topNav .topNavBox .cenBox .center .navBar .ul1 .li1 .twoBox {
  position: absolute;
  overflow: hidden;
  left: 50%;
  pointer-events: none;
  width: max-content;
  top: 100%;
  transform: translateX(-50%);
}
.pageBox .topNav .topNavBox .cenBox .center .navBar .ul1 .li1 .twoBox .twoUl {
  opacity: 0;
  transition-duration: 0.5s;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.56, -0.01, 0.04, 1);
  padding-top: 40px;
  transform: translateY(-20px);
}
.pageBox .topNav .topNavBox .cenBox .center .navBar .ul1 .li1 .twoBox .twoUl .ul2 {
  position: relative;
  padding: 20px;
  background-color: #fff;
}
.pageBox .topNav .topNavBox .cenBox .center .navBar .ul1 .li1 .twoBox .twoUl .ul2 .li2 {
  margin-bottom: 18px;
}
.pageBox .topNav .topNavBox .cenBox .center .navBar .ul1 .li1 .twoBox .twoUl .ul2 .li2 a span {
  font-size: 20px;
}
@media (max-width:1680px) {
  .pageBox .topNav .topNavBox .cenBox .center .navBar .ul1 .li1 .twoBox .twoUl .ul2 .li2 a span {
    font-size: 16px;
  }
}
@media (max-width:1680px) and (max-width:1360px) {
  .pageBox .topNav .topNavBox .cenBox .center .navBar .ul1 .li1 .twoBox .twoUl .ul2 .li2 a span {
    font-size: 14px;
  }
}
.pageBox .topNav .topNavBox .cenBox .center .navBar .ul1 .li1 .twoBox .twoUl .ul2 .li2 a:hover span {
  color: #fb7416;
}
.pageBox .topNav .topNavBox .cenBox .center .navBar .ul1 .li1 .twoBox .twoUl .ul2 .li2:last-child {
  margin-bottom: 0;
}
.pageBox .topNav .topNavBox .cenBox .center .navBar .ul1 .li1.on .a1 .txt {
  color: #fb7416 !important;
}
.pageBox .topNav .topNavBox .cenBox .center .navBar .ul1 .li1:last-child {
  margin-right: 0;
}
.pageBox .topNav .topNavBox .cenBox .center .navBar .ul1 .li1:hover .twoBox {
  pointer-events: auto;
}
.pageBox .topNav .topNavBox .cenBox .center .navBar .ul1 .li1:hover .twoBox .twoUl {
  opacity: 1;
  transform: translateY(0);
}
.pageBox .topNav .topNavBox .cenBox .right {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
  gap: 2vw;
}
@media (max-width:1024px) {
  .pageBox .topNav .topNavBox .cenBox .right .langChange {
    margin: 0;
  }
}
.pageBox .topNav .topNavBox .cenBox .right .langChange .nbox {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
}
.pageBox .topNav .topNavBox .cenBox .right .langChange .nbox a {
  position: relative;
  z-index: 1;
  font-size: 14px;
  transition-duration: 0.5s;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.56, -0.01, 0.04, 1);
  font-weight: bold;
  width: 30px;
  height: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
}
@media (max-width:1360px) {
  .pageBox .topNav .topNavBox .cenBox .right .langChange .nbox a {
    width: 24px;
    height: 24px;
  }
}
@media (max-width:1360px) and (max-width:1024px) {
  .pageBox .topNav .topNavBox .cenBox .right .langChange .nbox a {
    width: 8vw;
    height: 8vw;
  }
}
.pageBox .topNav .topNavBox .cenBox .right .langChange .nbox a.on {
  color: #fff;
}
.pageBox .topNav .topNavBox .cenBox .right .langChange .nbox .yuanDi {
  position: absolute;
  top: 0;
  width: 30px;
  height: 30px;
  border-radius: 20px;
  background-color: #fb7416;
  transition-duration: 0.5s;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.56, -0.01, 0.04, 1);
}
@media (max-width:1360px) {
  .pageBox .topNav .topNavBox .cenBox .right .langChange .nbox .yuanDi {
    width: 24px;
    height: 24px;
  }
}
@media (max-width:1360px) and (max-width:1024px) {
  .pageBox .topNav .topNavBox .cenBox .right .langChange .nbox .yuanDi {
    width: 8vw;
    height: 8vw;
  }
}
.pageBox .topNav .topNavBox .cenBox .right .bohao {
  position: relative;
  height: 30px;
  padding: 0 20px;
  background-color: #fb7416;
  border-radius: 15px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
  cursor: pointer;
}
.pageBox .topNav .topNavBox .cenBox .right .bohao .txt {
  color: #fff;
}
@media (max-width:1024px) {
  .pageBox .topNav .topNavBox .cenBox .right .bohao {
    display: none;
  }
}
.pageBox .topNav .topNavBox .cenBox .right .bohao .bohao-open {
  position: absolute;
  top: 0;
  right: 0;
  pointer-events: none;
  top: 150%;
}
.pageBox .topNav .topNavBox .cenBox .right .bohao .bohao-open .tt {
  width: max-content;
  padding: 4px 20px;
  border-radius: 100px;
  opacity: 0;
  transition-duration: 0.5s;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.56, -0.01, 0.04, 1);
  background-color: #fff;
  transform: translateY(40px);
}
.pageBox .topNav .topNavBox .cenBox .right .bohao:hover {
  pointer-events: auto;
}
.pageBox .topNav .topNavBox .cenBox .right .bohao:hover .bohao-open .tt {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width:1024px) {
  .pageBox .topNav .topNavBox .cenBox .navOpenBox .navBtn {
    width: 25px;
    height: 25px;
    cursor: pointer;
  }
  .pageBox .topNav .topNavBox .cenBox .navOpenBox .navBtn ul {
    width: 100%;
    position: relative;
    height: 80%;
  }
  .pageBox .topNav .topNavBox .cenBox .navOpenBox .navBtn ul li {
    height: 1px;
    background-color: #fff;
    position: absolute;
    width: 100%;
    right: 0;
    transition-duration: 0.5s;
    transition-property: all;
    transition-timing-function: cubic-bezier(0.56, -0.01, 0.04, 1);
  }
  .pageBox .topNav .topNavBox .cenBox .navOpenBox .navBtn ul li:nth-child(1) {
    top: 0;
  }
  .pageBox .topNav .topNavBox .cenBox .navOpenBox .navBtn ul li:nth-child(2) {
    top: 50%;
  }
  .pageBox .topNav .topNavBox .cenBox .navOpenBox .navBtn ul li:nth-child(3) {
    top: 100%;
  }
  .pageBox .topNav .topNavBox .cenBox .navOpenBox .navBtn.on ul li {
    background-color: #fff;
  }
  .pageBox .topNav .topNavBox .cenBox .navOpenBox .navBtn.on ul li:nth-child(1) {
    transform: translate(0, 10px) rotate(140deg);
  }
  .pageBox .topNav .topNavBox .cenBox .navOpenBox .navBtn.on ul li:nth-child(2) {
    opacity: 0;
    transform: translate(0, 0) rotate(180deg);
  }
  .pageBox .topNav .topNavBox .cenBox .navOpenBox .navBtn.on ul li:nth-child(3) {
    transform: translate(0, -10px) rotate(220deg);
  }
}
.pageBox .topNav .topNavBox::after {
  content: '';
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  transform: translateY(-100%);
  background-color: #fff;
  transition-duration: 0.5s;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.56, -0.01, 0.04, 1);
}
.pageBox .topNav .topNavBox .openCout {
  width: 100%;
  position: absolute;
  top: 14vw;
  left: 0;
  border-top: 1px solid #f3f3f3;
  background-color: #fff;
  padding: 2vw 0 6vw;
  display: none;
}
.pageBox .topNav .topNavBox .openCout .openCoutBox {
  width: 1640px;
  margin: 0 auto;
}
@media (max-width:1680px) {
  .pageBox .topNav .topNavBox .openCout .openCoutBox {
    width: 1300px;
  }
}
@media (max-width:1360px) {
  .pageBox .topNav .topNavBox .openCout .openCoutBox {
    width: 90%;
  }
}
@media (max-width:1024px) {
  .pageBox .topNav .topNavBox .openCout .openCoutBox {
    width: 90%;
  }
}
.pageBox .topNav .topNavBox .openCout .openCoutBox .openNav .li .link {
  height: 10vw;
  line-height: 10vw;
  font-size: 4vw;
}
.pageBox .topNav.show .topNavBox .cenBox .center .navBar .ul1 .li1 .a1 .txt {
  color: #333;
}
.pageBox .topNav.show .topNavBox .cenBox .navOpenBox .navBtn ul li {
  background-color: #333;
}
.pageBox .topNav.show .topNavBox::after {
  transform: translateY(0);
}
@media (max-width:1024px) {
  .pageBox .topNav.showTwo .topNavBox .cenBox .navOpenBox .navBtn ul li {
    background-color: #333;
  }
  .pageBox .topNav.showTwo .topNavBox::after {
    transform: translateY(0);
  }
}
.pageBox .biaoti {
  margin-bottom: 60px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: unset;
}
@media (max-width:1360px) {
  .pageBox .biaoti {
    margin-bottom: 40px;
  }
}
@media (max-width:1360px) and (max-width:1024px) {
  .pageBox .biaoti {
    margin-bottom: 6vw;
  }
}
.pageBox .biaoti .name {
  font-size: 50px;
  font-weight: bold;
}
@media (max-width:1680px) {
  .pageBox .biaoti .name {
    font-size: 44px;
  }
}
@media (max-width:1680px) and (max-width:1360px) {
  .pageBox .biaoti .name {
    font-size: 34px;
  }
}
@media (max-width:1680px) and (max-width:1360px) and (max-width:1024px) {
  .pageBox .biaoti .name {
    font-size: 6.8vw;
  }
}
.pageBox .biaoti .subname {
  font-size: 30px;
  margin-top: 24px;
}
@media (max-width:1680px) {
  .pageBox .biaoti .subname {
    font-size: 24px;
  }
}
@media (max-width:1680px) and (max-width:1360px) {
  .pageBox .biaoti .subname {
    font-size: 18px;
    margin-top: 10px;
  }
}
@media (max-width:1680px) and (max-width:1360px) and (max-width:1024px) {
  .pageBox .biaoti .subname {
    font-size: 4vw;
  }
}
.pageBox #callButton {
  position: fixed;
  z-index: 11;
  width: 16vw;
  height: 16vw;
  top: 70%;
  left: 4vw;
  border-radius: 50%;
  background-color: #fb7416;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
}
@media (min-width:1024px) {
  .pageBox #callButton {
    display: none;
  }
}
.pageBox #callButton img {
  width: 4.4vw;
  height: 4.4vw;
  object-fit: contain;
}
.pageBox #callButton .txt {
  color: #fff;
  font-size: 2.6vw;
}
.pageBox .navTwo2 {
  width: 100%;
  position: fixed;
  z-index: 5;
  top: 60px;
  background-color: #F0F0F2;
}
@media (max-width:1024px) {
  .pageBox .navTwo2 {
    top: 14vw;
  }
}
.pageBox .navTwo2 .clickBox {
  width: 100%;
  height: 12vw;
  padding: 0 4vw;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  flex-wrap: unset;
}
@media (min-width:1024px) {
  .pageBox .navTwo2 .clickBox {
    display: none;
  }
}
.pageBox .navTwo2 .clickBox .info {
  font-size: 4vw;
}
.pageBox .navTwo2 .clickBox i {
  transition-duration: 0.5s;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.56, -0.01, 0.04, 1);
}
.pageBox .navTwo2 .clickBox.show i {
  transform: rotate(180deg);
}
.pageBox .navTwo2 .nav2List {
  padding: 0 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
  gap: 40px;
  height: 70px;
}
@media (max-width:1024px) {
  .pageBox .navTwo2 .nav2List {
    padding: 0 4vw;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: unset;
    display: none;
    gap: 0;
    height: unset;
  }
}
.pageBox .navTwo2 .nav2List .li {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: unset;
}
@media (max-width:1024px) {
  .pageBox .navTwo2 .nav2List .li {
    height: 12vw;
  }
}
.pageBox .navTwo2 .nav2List .li .aBox {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: unset;
}
@media (max-width:1024px) {
  .pageBox .navTwo2 .nav2List .li .aBox {
    font-size: 4vw;
  }
}
@media (min-width:1024px) {
  .pageBox .navTwo2 .nav2List .li.on .aBox {
    color: #fb7416;
  }
}
.pageBox .lrControl {
  cursor: pointer;
  background-color: #fff;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
  border-radius: 50%;
  width: 56px;
  height: 56px;
}
@media (max-width:1360px) {
  .pageBox .lrControl {
    width: 40px;
    height: 40px;
  }
}
.pageBox .lrControl:hover {
  background-color: #333;
}
.pageBox .lrControl:hover i {
  color: #fff;
}
.pageBox .moreA {
  width: fit-content;
  margin-top: 2vw;
}
.pageBox .moreA .moreBtn {
  position: relative;
  width: 8vw;
  height: 2.4vw;
  transition-duration: 0.5s;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.56, -0.01, 0.04, 1);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
}
.pageBox .moreA .moreBtn .txt {
  font-size: 0.7vw;
  color: #fff;
  position: relative;
  z-index: 1;
}
.pageBox .moreA .moreBtn::after {
  content: '';
  position: absolute;
  display: block;
  transition-duration: 0.5s;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.56, -0.01, 0.04, 1);
  width: 100%;
  height: 100%;
  top: 0;
  background-color: #fb7416;
}
.pageBox .moreA .moreBtn:hover::after {
  transform: scale(0.9);
}
.pageBox .formBiaodan {
  padding: 110px 0;
}
@media (max-width:1680px) {
  .pageBox .formBiaodan {
    padding: 90px 0;
  }
}
@media (max-width:1360px) {
  .pageBox .formBiaodan {
    padding: 70px 0;
  }
}
@media (max-width:1024px) {
  .pageBox .formBiaodan {
    padding: 15vw 0;
  }
}
.pageBox .formBiaodan .thisBox .cenBox {
  width: 1088px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
}
@media (max-width:1360px) {
  .pageBox .formBiaodan .thisBox .cenBox {
    width: 70%;
  }
}
@media (max-width:1360px) and (max-width:1024px) {
  .pageBox .formBiaodan .thisBox .cenBox {
    width: 76%;
  }
}
.pageBox .formBiaodan .thisBox .cenBox .def1 {
  font-size: 24px;
  margin-bottom: 10px;
}
@media (max-width:1360px) {
  .pageBox .formBiaodan .thisBox .cenBox .def1 {
    font-size: 18px;
  }
}
@media (max-width:1360px) and (max-width:1024px) {
  .pageBox .formBiaodan .thisBox .cenBox .def1 {
    margin-bottom: 0;
  }
}
.pageBox .formBiaodan .thisBox .cenBox .def2 {
  font-size: 24px;
}
@media (max-width:1360px) {
  .pageBox .formBiaodan .thisBox .cenBox .def2 {
    font-size: 18px;
  }
}
.pageBox .formBiaodan .thisBox .cenBox .biaodan {
  width: 100%;
  margin-top: 66px;
}
@media (max-width:1680px) {
  .pageBox .formBiaodan .thisBox .cenBox .biaodan {
    margin-top: 50px;
  }
}
.pageBox .formBiaodan .thisBox .cenBox .biaodan form {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
}
.pageBox .formBiaodan .thisBox .cenBox .biaodan form .inputBox {
  position: relative;
}
@media (max-width:1024px) {
  .pageBox .formBiaodan .thisBox .cenBox .biaodan form .inputBox {
    margin-bottom: 6vw;
  }
}
.pageBox .formBiaodan .thisBox .cenBox .biaodan form .inputBox .bdTitle {
  position: relative;
  margin-bottom: 14px;
}
@media (max-width:1360px) {
  .pageBox .formBiaodan .thisBox .cenBox .biaodan form .inputBox .bdTitle {
    margin-bottom: 10px;
  }
}
.pageBox .formBiaodan .thisBox .cenBox .biaodan form .inputBox .input input {
  border-radius: 6px;
  width: 100%;
  height: 52px;
  padding-left: 26px;
  background-color: #fff;
}
@media (max-width:1680px) {
  .pageBox .formBiaodan .thisBox .cenBox .biaodan form .inputBox .input input {
    height: 46px;
  }
}
@media (max-width:1680px) and (max-width:1360px) {
  .pageBox .formBiaodan .thisBox .cenBox .biaodan form .inputBox .input input {
    height: 40px;
  }
}
@media (max-width:1680px) and (max-width:1360px) and (max-width:1024px) {
  .pageBox .formBiaodan .thisBox .cenBox .biaodan form .inputBox .input input {
    height: 10vw;
  }
}
.pageBox .formBiaodan .thisBox .cenBox .biaodan form .inputBox.must .bdTitle::after {
  content: '*';
  position: absolute;
  right: -8px;
  color: red;
  top: -4px;
}
.pageBox .formBiaodan .thisBox .cenBox .biaodan form .inputBox .tianxieInfo {
  position: absolute;
  left: 0;
  top: 110%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
}
.pageBox .formBiaodan .thisBox .cenBox .biaodan form .inputBox .tianxieInfo .txt {
  font-size: 12px;
}
.pageBox .formBiaodan .thisBox .cenBox .biaodan form .inputBox.zhengque .tianxieInfo i {
  color: green;
}
.pageBox .formBiaodan .thisBox .cenBox .biaodan form .inputBox.zhengque .tianxieInfo .txt {
  color: green;
}
.pageBox .formBiaodan .thisBox .cenBox .biaodan form .inputBox.cuowu .tianxieInfo i {
  color: red;
}
.pageBox .formBiaodan .thisBox .cenBox .biaodan form .inputBox.cuowu .tianxieInfo .txt {
  color: red;
}
.pageBox .formBiaodan .thisBox .cenBox .biaodan form .topInput {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: unset;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media (max-width:1024px) {
  .pageBox .formBiaodan .thisBox .cenBox .biaodan form .topInput {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-wrap: unset;
  }
}
.pageBox .formBiaodan .thisBox .cenBox .biaodan form .topInput .inputBox {
  width: 49%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: unset;
}
@media (max-width:1024px) {
  .pageBox .formBiaodan .thisBox .cenBox .biaodan form .topInput .inputBox {
    width: 100%;
  }
}
.pageBox .formBiaodan .thisBox .cenBox .biaodan form .topInput .inputBox .input {
  width: 100%;
}
@media (min-width:1024px) {
  .pageBox .formBiaodan .thisBox .cenBox .biaodan form .topInput .inputBox:nth-child(1),
  .pageBox .formBiaodan .thisBox .cenBox .biaodan form .topInput .inputBox:nth-child(2) {
    margin-bottom: 42px;
  }
}
@media (min-width:1024px) and (max-width:1680px) {
  .pageBox .formBiaodan .thisBox .cenBox .biaodan form .topInput .inputBox:nth-child(1),
  .pageBox .formBiaodan .thisBox .cenBox .biaodan form .topInput .inputBox:nth-child(2) {
    margin-bottom: 34px;
  }
}
@media (min-width:1024px) and (max-width:1680px) and (max-width:1360px) {
  .pageBox .formBiaodan .thisBox .cenBox .biaodan form .topInput .inputBox:nth-child(1),
  .pageBox .formBiaodan .thisBox .cenBox .biaodan form .topInput .inputBox:nth-child(2) {
    margin-bottom: 20px;
  }
}
.pageBox .formBiaodan .thisBox .cenBox .biaodan form .textarea {
  margin-top: 42px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: unset;
  width: 100%;
}
@media (max-width:1680px) {
  .pageBox .formBiaodan .thisBox .cenBox .biaodan form .textarea {
    margin-top: 34px;
  }
}
@media (max-width:1680px) and (max-width:1360px) {
  .pageBox .formBiaodan .thisBox .cenBox .biaodan form .textarea {
    margin-top: 20px;
  }
}
@media (max-width:1680px) and (max-width:1360px) and (max-width:1024px) {
  .pageBox .formBiaodan .thisBox .cenBox .biaodan form .textarea {
    margin-top: 0;
  }
}
.pageBox .formBiaodan .thisBox .cenBox .biaodan form .textarea textarea {
  padding: 20px 26px;
  border: none;
  height: 120px;
  width: 100%;
  outline: none;
  background-color: #fff;
  border-radius: 6px;
}
@media (max-width:1360px) {
  .pageBox .formBiaodan .thisBox .cenBox .biaodan form .textarea textarea {
    height: 90px;
  }
}
@media (max-width:1360px) and (max-width:1024px) {
  .pageBox .formBiaodan .thisBox .cenBox .biaodan form .textarea textarea {
    height: 34vw;
  }
}
.pageBox .formBiaodan .thisBox .cenBox .biaodan form .yanzhengma {
  width: 500px;
  align-self: start;
  margin-top: 42px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: unset;
}
@media (max-width:1680px) {
  .pageBox .formBiaodan .thisBox .cenBox .biaodan form .yanzhengma {
    margin-top: 34px;
    width: 400px;
  }
}
@media (max-width:1680px) and (max-width:1360px) {
  .pageBox .formBiaodan .thisBox .cenBox .biaodan form .yanzhengma {
    margin-top: 20px;
    width: 300px;
  }
}
.pageBox .formBiaodan .thisBox .cenBox .biaodan form .yanzhengma .input {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: unset;
}
.pageBox .formBiaodan .thisBox .cenBox .biaodan form .yanzhengma .input .yanz {
  margin-left: 20px;
}
.pageBox .formBiaodan .thisBox .cenBox .biaodan form .yanzhengma .input .yanz img {
  height: 52px;
  border-radius: 6px;
}
@media (max-width:1680px) {
  .pageBox .formBiaodan .thisBox .cenBox .biaodan form .yanzhengma .input .yanz img {
    height: 46px;
  }
}
@media (max-width:1680px) and (max-width:1360px) {
  .pageBox .formBiaodan .thisBox .cenBox .biaodan form .yanzhengma .input .yanz img {
    height: 40px;
  }
}
.pageBox .formBiaodan .thisBox .cenBox .biaodan form .button {
  margin-top: 48px;
}
@media (max-width:1360px) {
  .pageBox .formBiaodan .thisBox .cenBox .biaodan form .button {
    margin-top: 20px;
  }
}
.pageBox .formBiaodan .thisBox .cenBox .biaodan form .button .submit {
  width: 400px;
  height: 66px;
  background-color: #1a1a1a;
  border-radius: 10px;
  color: #fff;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
  font-size: 24px;
  cursor: pointer;
}
@media (max-width:1680px) {
  .pageBox .formBiaodan .thisBox .cenBox .biaodan form .button .submit {
    width: 360px;
    height: 50px;
    font-size: 18px;
  }
}
@media (max-width:1680px) and (max-width:1360px) {
  .pageBox .formBiaodan .thisBox .cenBox .biaodan form .button .submit {
    width: 300px;
    height: 40px;
    font-size: 14px;
  }
}
@media (max-width:1680px) and (max-width:1360px) and (max-width:1024px) {
  .pageBox .formBiaodan .thisBox .cenBox .biaodan form .button .submit {
    width: 60vw;
  }
}
.pageBox .tongzhi {
  position: fixed;
  z-index: 1111;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
}
.pageBox .tongzhi .kuangjia {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
  transition-duration: 0.5s;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.56, -0.01, 0.04, 1);
}
.pageBox .tongzhi .kuangjia .box {
  width: 400px;
  padding: 20px 0;
  background-color: #fff;
  box-shadow: 2px 2px 30px rgba(255, 255, 255, 0.5);
  transform: translateY(50px);
  transition-duration: 0.5s;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.56, -0.01, 0.04, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
  border-radius: 10px;
}
@media (max-width:1024px) {
  .pageBox .tongzhi .kuangjia .box {
    width: 90%;
  }
}
.pageBox .tongzhi .kuangjia .box i {
  font-size: 80px;
  margin-bottom: 20px;
}
@media (max-width:1024px) {
  .pageBox .tongzhi .kuangjia .box i {
    font-size: 18vw;
  }
}
.pageBox .tongzhi .kuangjia .box i.icon-zhengque {
  color: #46ad75;
}
.pageBox .tongzhi .kuangjia .box i.icon-cuowu {
  color: #b62c2c;
}
.pageBox .tongzhi .kuangjia .box span {
  font-size: 18px;
  color: #666;
}
.pageBox .tongzhi .kuangjia .box .jishi {
  margin-top: 20px;
  color: #666;
  font-size: 14px;
  transition-duration: 0.5s;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.56, -0.01, 0.04, 1);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
}
.pageBox .tongzhi .kuangjia.on .box {
  transform: translateY(0px);
}
.pageBox .foot {
  background-color: #f0f0f1;
}
.pageBox .foot .thisBox {
  padding-top: 96px;
}
@media (max-width:1360px) {
  .pageBox .foot .thisBox {
    padding-top: 60px;
  }
}
@media (max-width:1360px) and (max-width:1024px) {
  .pageBox .foot .thisBox {
    padding-top: 10vw;
  }
}
.pageBox .foot .thisBox .cenBox .coutBox {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: unset;
}
@media (max-width:1024px) {
  .pageBox .foot .thisBox .cenBox .coutBox {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-wrap: unset;
    flex-direction: column-reverse;
  }
}
@media (max-width:1024px) {
  .pageBox .foot .thisBox .cenBox .coutBox .left {
    width: 100%;
    margin-top: 10vw;
  }
}
.pageBox .foot .thisBox .cenBox .coutBox .left .footNavBar .ul1 {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: unset;
}
@media (max-width:1024px) {
  .pageBox .foot .thisBox .cenBox .coutBox .left .footNavBar .ul1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-wrap: unset;
  }
}
.pageBox .foot .thisBox .cenBox .coutBox .left .footNavBar .ul1 .li1 {
  margin-right: 50px;
}
@media (max-width:1680px) {
  .pageBox .foot .thisBox .cenBox .coutBox .left .footNavBar .ul1 .li1 {
    margin-right: 40px;
  }
}
@media (max-width:1680px) and (max-width:1360px) {
  .pageBox .foot .thisBox .cenBox .coutBox .left .footNavBar .ul1 .li1 {
    margin-right: 40px;
  }
}
@media (max-width:1680px) and (max-width:1360px) and (max-width:1024px) {
  .pageBox .foot .thisBox .cenBox .coutBox .left .footNavBar .ul1 .li1 {
    width: 100%;
    margin-right: 0;
    border-top: 1px solid #ccc;
  }
}
.pageBox .foot .thisBox .cenBox .coutBox .left .footNavBar .ul1 .li1 .title {
  font-size: 20px;
  margin-bottom: 40px;
}
@media (max-width:1680px) {
  .pageBox .foot .thisBox .cenBox .coutBox .left .footNavBar .ul1 .li1 .title {
    font-size: 18px;
  }
}
@media (max-width:1680px) and (max-width:1360px) {
  .pageBox .foot .thisBox .cenBox .coutBox .left .footNavBar .ul1 .li1 .title {
    font-size: 16px;
  }
}
@media (max-width:1680px) and (max-width:1360px) and (max-width:1024px) {
  .pageBox .foot .thisBox .cenBox .coutBox .left .footNavBar .ul1 .li1 .title {
    width: 100%;
    margin-bottom: 0;
    height: 12vw;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-wrap: unset;
  }
}
@media (max-width:1024px) {
  .pageBox .foot .thisBox .cenBox .coutBox .left .footNavBar .ul1 .li1 .title i {
    transform: rotate(45deg);
    transition-duration: 0.5s;
    transition-property: all;
    transition-timing-function: cubic-bezier(0.56, -0.01, 0.04, 1);
  }
}
@media (max-width:1024px) {
  .pageBox .foot .thisBox .cenBox .coutBox .left .footNavBar .ul1 .li1 .ul2 {
    display: none;
    padding-bottom: 3vw;
  }
}
.pageBox .foot .thisBox .cenBox .coutBox .left .footNavBar .ul1 .li1 .ul2 .li2 {
  margin-bottom: 24px;
}
@media (max-width:1360px) {
  .pageBox .foot .thisBox .cenBox .coutBox .left .footNavBar .ul1 .li1 .ul2 .li2 {
    margin-bottom: 18px;
  }
}
@media (max-width:1360px) and (max-width:1024px) {
  .pageBox .foot .thisBox .cenBox .coutBox .left .footNavBar .ul1 .li1 .ul2 .li2 {
    margin-bottom: 0;
  }
}
.pageBox .foot .thisBox .cenBox .coutBox .left .footNavBar .ul1 .li1 .ul2 .li2 a {
  color: #808080;
}
@media (max-width:1024px) {
  .pageBox .foot .thisBox .cenBox .coutBox .left .footNavBar .ul1 .li1 .ul2 .li2 a {
    padding: 2vw 0;
  }
}
.pageBox .foot .thisBox .cenBox .coutBox .left .footNavBar .ul1 .li1 .ul2 .li2:last-child {
  margin-bottom: 0;
}
@media (max-width:1024px) {
  .pageBox .foot .thisBox .cenBox .coutBox .left .footNavBar .ul1 .li1:first-child {
    border-top: none;
  }
}
@media (max-width:1024px) {
  .pageBox .foot .thisBox .cenBox .coutBox .left .footNavBar .ul1 .li1.show .title i {
    transform: rotate(270deg);
  }
}
.pageBox .foot .thisBox .cenBox .coutBox .right {
  width: 400px;
}
@media (max-width:1680px) {
  .pageBox .foot .thisBox .cenBox .coutBox .right {
    width: 300px;
  }
}
@media (max-width:1680px) and (max-width:1360px) {
  .pageBox .foot .thisBox .cenBox .coutBox .right {
    width: 240px;
  }
}
@media (max-width:1680px) and (max-width:1360px) and (max-width:1024px) {
  .pageBox .foot .thisBox .cenBox .coutBox .right {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-wrap: unset;
    gap: 2vw;
  }
}
.pageBox .foot .thisBox .cenBox .coutBox .right .rightTop .phone {
  font-size: 30px;
}
@media (max-width:1680px) {
  .pageBox .foot .thisBox .cenBox .coutBox .right .rightTop .phone {
    font-size: 26px;
  }
}
@media (max-width:1680px) and (max-width:1360px) {
  .pageBox .foot .thisBox .cenBox .coutBox .right .rightTop .phone {
    font-size: 22px;
  }
}
@media (max-width:1680px) and (max-width:1360px) and (max-width:1024px) {
  .pageBox .foot .thisBox .cenBox .coutBox .right .rightTop .phone {
    font-size: 6vw;
  }
}
.pageBox .foot .thisBox .cenBox .coutBox .right .rightTop .time {
  font-size: 20px;
}
@media (max-width:1680px) {
  .pageBox .foot .thisBox .cenBox .coutBox .right .rightTop .time {
    font-size: 16px;
  }
}
@media (max-width:1680px) and (max-width:1360px) {
  .pageBox .foot .thisBox .cenBox .coutBox .right .rightTop .time {
    font-size: 14px;
  }
}
@media (max-width:1680px) and (max-width:1360px) and (max-width:1024px) {
  .pageBox .foot .thisBox .cenBox .coutBox .right .rightTop .time {
    font-size: 3.2vw;
  }
}
.pageBox .foot .thisBox .cenBox .coutBox .right .xian {
  width: 100%;
  height: 4px;
  background-color: #272727;
  margin: 26px 0 24px;
}
@media (max-width:1024px) {
  .pageBox .foot .thisBox .cenBox .coutBox .right .xian {
    display: none;
  }
}
.pageBox .foot .thisBox .cenBox .coutBox .right .erweiBox .ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 1vw;
}
@media (max-width:1024px) {
  .pageBox .foot .thisBox .cenBox .coutBox .right .erweiBox .ul {
    grid-template-columns: repeat(4, 1fr);
  }
}
.pageBox .foot .thisBox .cenBox .coutBox .right .erweiBox .ul .li {
  width: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
}
.pageBox .foot .thisBox .cenBox .coutBox .right .erweiBox .ul .li .imgBox {
  width: 100px;
  height: 100px;
}
@media (max-width:1024px) {
  .pageBox .foot .thisBox .cenBox .coutBox .right .erweiBox .ul .li .imgBox {
    width: 20vw;
    height: 20vw;
  }
}
.pageBox .foot .thisBox .cenBox .coutBox .right .erweiBox .ul .li .title {
  font-size: 20px;
}
@media (max-width:1680px) {
  .pageBox .foot .thisBox .cenBox .coutBox .right .erweiBox .ul .li .title {
    font-size: 16px;
  }
}
@media (max-width:1680px) and (max-width:1360px) {
  .pageBox .foot .thisBox .cenBox .coutBox .right .erweiBox .ul .li .title {
    font-size: 14px;
  }
}
@media (max-width:1680px) and (max-width:1360px) and (max-width:1024px) {
  .pageBox .foot .thisBox .cenBox .coutBox .right .erweiBox .ul .li .title {
    font-size: 3vw;
  }
}
.pageBox .foot .thisBox .cenBox .bottomInfo {
  margin-top: 88px;
  padding: 28px 0 44px;
  border-top: 1px solid #bfbfbf;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  flex-wrap: unset;
}
@media (max-width:1360px) {
  .pageBox .foot .thisBox .cenBox .bottomInfo {
    margin-top: 40px;
  }
}
@media (max-width:1360px) and (max-width:1024px) {
  .pageBox .foot .thisBox .cenBox .bottomInfo {
    margin-top: 18vw;
    border-color: #d5d5d5;
    padding: 5vw 0 8vw;
  }
}
.pageBox .foot .thisBox .cenBox .bottomInfo .info {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  flex-wrap: unset;
}
@media (max-width:1024px) {
  .pageBox .foot .thisBox .cenBox .bottomInfo .info {
    justify-content: space-between;
  }
}
@media (max-width:1024px) {
  .pageBox .foot .thisBox .cenBox .bottomInfo .info span {
    font-size: 2.4vw;
  }
}
.pageBox .fenye-2 {
  margin-top: 40px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
}
.pageBox .fenye-2 * {
  transition-duration: 0.5s;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.56, -0.01, 0.04, 1);
}
.pageBox .fenye-2 .box {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
}
.pageBox .fenye-2 > div a {
  width: 40px;
  height: 40px;
  font-weight: bold;
  margin: 0 10px;
  border-radius: 50%;
  color: #333;
  background-color: #f3f3f3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
}
.pageBox .fenye-2 .page-numbar {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
}
.pageBox .fenye-2 .page-numbar a:hover {
  background-color: #fb7416;
  transition-duration: 0.5s;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.56, -0.01, 0.04, 1);
  color: #fff;
}
.pageBox .fenye-2 .page-numbar a:hover i {
  color: #fff;
}
.pageBox .fenye-2 .page-numbar a.page-num-current {
  color: #fff;
  background-color: #fb7416;
}
.pageBox .fenye-2 .page-next a i,
.pageBox .fenye-2 .page-pre a i {
  color: #999;
  font-size: 16px;
  transition-duration: 0.5s;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.56, -0.01, 0.04, 1);
}
.pageBox .fenye-2 .page-next a:hover,
.pageBox .fenye-2 .page-pre a:hover {
  background-color: #fb7416;
}
.pageBox .fenye-2 .page-next a:hover i,
.pageBox .fenye-2 .page-pre a:hover i {
  color: #fff;
}
@media (max-width:1024px) {
  .pageBox .fenye-2 {
    padding: 2vw 0 20vw;
  }
}
#indexPage .biaoti {
  align-items: center;
}
#indexPage .inxBanner {
  position: relative;
  width: 100%;
  height: 100vh;
}
@media (max-width:1024px) {
  #indexPage .inxBanner {
    height: unset;
  }
}
#indexPage .inxBanner .swiperBox {
  width: 100%;
  height: 100%;
}
@media (max-width:1024px) {
  #indexPage .inxBanner .swiperBox {
    height: 60vw;
  }
}
#indexPage .inxBanner .swiperBox #inxBanner {
  width: 100%;
  height: 100%;
}
#indexPage .inxBanner .swiperBox #inxBanner .swiper-slide .box {
  position: relative;
  width: 100%;
  height: 100%;
}
#indexPage .inxBanner .swiperBox #inxBanner .swiper-slide .box .imgVideoBox {
  width: 100%;
  height: 100%;
}
#indexPage .inxBanner .swiperBox #inxBanner .swiper-slide .box .imgVideoBox video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#indexPage .inxBanner .swiperBox #inxBanner .swiper-slide .box .imgVideoBox .imgBox {
  width: 100%;
  height: 100%;
}
#indexPage .inxBanner .swiperBox .lrControl {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}
@media (max-width:1024px) {
  #indexPage .inxBanner .swiperBox .lrControl {
    display: none;
  }
}
#indexPage .inxBanner .swiperBox .lrControl.leftBtn {
  left: 40px;
}
#indexPage .inxBanner .swiperBox .lrControl.rightBtn {
  right: 40px;
}
#indexPage .inxBanner .textSwiper {
  position: absolute;
  z-index: 1;
  left: 8vw;
  bottom: 6vw;
}
@media (max-width:1024px) {
  #indexPage .inxBanner .textSwiper {
    position: unset;
    padding-top: 10vw;
  }
}
#indexPage .inxBanner .textSwiper .ul .li {
  width: max-content;
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  pointer-events: none;
}
@media (max-width:1024px) {
  #indexPage .inxBanner .textSwiper .ul .li {
    width: 100%;
  }
}
@media (max-width:1024px) {
  #indexPage .inxBanner .textSwiper .ul .li .textBox {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-wrap: unset;
  }
}
#indexPage .inxBanner .textSwiper .ul .li .textBox .title {
  transform: translateX(100px);
  color: #fff;
  font-size: 48px;
  opacity: 0;
  margin-bottom: 50px;
  transition-duration: 0.3s;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.56, -0.01, 0.04, 1);
}
@media (max-width:1360px) {
  #indexPage .inxBanner .textSwiper .ul .li .textBox .title {
    font-size: 30px;
    margin-bottom: 30px;
  }
}
@media (max-width:1360px) and (max-width:1024px) {
  #indexPage .inxBanner .textSwiper .ul .li .textBox .title {
    color: #333;
    transform: translateX(6vw);
    text-align: center;
    font-size: 6vw;
    margin-bottom: 2vw;
  }
}
#indexPage .inxBanner .textSwiper .ul .li .textBox .subtitle {
  transform: translateX(100px);
  color: #fff;
  font-size: 24px;
  opacity: 0;
  transition-duration: 0.3s;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.56, -0.01, 0.04, 1);
}
@media (max-width:1360px) {
  #indexPage .inxBanner .textSwiper .ul .li .textBox .subtitle {
    font-size: 16px;
  }
}
@media (max-width:1360px) and (max-width:1024px) {
  #indexPage .inxBanner .textSwiper .ul .li .textBox .subtitle {
    color: #333;
    transform: translateX(6vw);
  }
}
#indexPage .inxBanner .textSwiper .ul .li.on {
  pointer-events: auto;
}
#indexPage .inxBanner .textSwiper .ul .li.on .textBox .title {
  transform: translateX(0);
  transition-duration: 1s;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.56, -0.01, 0.04, 1);
  opacity: 1;
}
#indexPage .inxBanner .textSwiper .ul .li.on .textBox .subtitle {
  transform: translateX(0);
  transition-delay: 0.3s;
  transition-duration: 1s;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.56, -0.01, 0.04, 1);
  opacity: 1;
}
@media (max-width:1024px) {
  #indexPage .inxBanner .textSwiper .ul .li.on .textBox .subtitle {
    font-size: 4vw;
  }
}
#indexPage .inxProduct {
  padding: 110px 0;
}
@media (max-width:1680px) {
  #indexPage .inxProduct {
    padding: 90px 0;
  }
}
@media (max-width:1360px) {
  #indexPage .inxProduct {
    padding: 70px 0;
  }
}
@media (max-width:1024px) {
  #indexPage .inxProduct {
    padding: 15vw 0;
  }
}
#indexPage .inxProduct .thisBox .proTabsBox {
  margin-bottom: 120px;
}
@media (max-width:1360px) {
  #indexPage .inxProduct .thisBox .proTabsBox {
    margin-bottom: 60px;
  }
}
@media (max-width:1360px) and (max-width:1024px) {
  #indexPage .inxProduct .thisBox .proTabsBox {
    margin-bottom: 8vw;
  }
}
#indexPage .inxProduct .thisBox .proTabsBox .thisCen {
  width: 1640px;
  margin: 0 auto;
}
@media (max-width:1680px) {
  #indexPage .inxProduct .thisBox .proTabsBox .thisCen {
    width: 1300px;
  }
}
@media (max-width:1360px) {
  #indexPage .inxProduct .thisBox .proTabsBox .thisCen {
    width: 90%;
  }
}
@media (max-width:1024px) {
  #indexPage .inxProduct .thisBox .proTabsBox .thisCen {
    width: 90%;
  }
}
#indexPage .inxProduct .thisBox .proTabsBox .thisCen .ul {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  flex-wrap: unset;
}
#indexPage .inxProduct .thisBox .proTabsBox .thisCen .ul .li {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
}
#indexPage .inxProduct .thisBox .proTabsBox .thisCen .ul .li .box {
  padding: 20px;
  cursor: pointer;
  border-radius: 4px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
}
@media (max-width:1680px) {
  #indexPage .inxProduct .thisBox .proTabsBox .thisCen .ul .li .box {
    padding: 12px;
  }
}
@media (max-width:1680px) and (max-width:1024px) {
  #indexPage .inxProduct .thisBox .proTabsBox .thisCen .ul .li .box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-wrap: unset;
  }
}
#indexPage .inxProduct .thisBox .proTabsBox .thisCen .ul .li .box .ico {
  margin-right: 16px;
  width: 75px;
  height: 75px;
  border-radius: 50%;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
}
@media (max-width:1360px) {
  #indexPage .inxProduct .thisBox .proTabsBox .thisCen .ul .li .box .ico {
    width: 50px;
    height: 50px;
  }
}
@media (max-width:1360px) and (max-width:1024px) {
  #indexPage .inxProduct .thisBox .proTabsBox .thisCen .ul .li .box .ico {
    width: 8vw;
    height: 8vw;
    margin-right: 0;
  }
}
#indexPage .inxProduct .thisBox .proTabsBox .thisCen .ul .li .box .ico img {
  object-fit: contain;
  width: 80%;
  height: 80%;
}
@media (max-width:1024px) {
  #indexPage .inxProduct .thisBox .proTabsBox .thisCen .ul .li .box .textBox {
    margin-top: 4vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-wrap: unset;
  }
}
#indexPage .inxProduct .thisBox .proTabsBox .thisCen .ul .li .box .textBox .title {
  font-size: 30px;
  line-height: 1em;
  margin-bottom: 10px;
}
@media (max-width:1680px) {
  #indexPage .inxProduct .thisBox .proTabsBox .thisCen .ul .li .box .textBox .title {
    font-size: 26px;
  }
}
@media (max-width:1680px) and (max-width:1360px) {
  #indexPage .inxProduct .thisBox .proTabsBox .thisCen .ul .li .box .textBox .title {
    font-size: 20px;
  }
}
@media (max-width:1680px) and (max-width:1360px) and (max-width:1024px) {
  #indexPage .inxProduct .thisBox .proTabsBox .thisCen .ul .li .box .textBox .title {
    font-size: 4vw;
    margin-bottom: 0;
  }
}
#indexPage .inxProduct .thisBox .proTabsBox .thisCen .ul .li .content {
  font-size: 18px;
  text-indent: 0;
  color: #666;
}
@media (max-width:1680px) {
  #indexPage .inxProduct .thisBox .proTabsBox .thisCen .ul .li .content {
    font-size: 16px;
  }
}
@media (max-width:1680px) and (max-width:1360px) {
  #indexPage .inxProduct .thisBox .proTabsBox .thisCen .ul .li .content {
    font-size: 12px;
  }
}
@media (max-width:1680px) and (max-width:1360px) and (max-width:1024px) {
  #indexPage .inxProduct .thisBox .proTabsBox .thisCen .ul .li .content {
    line-height: 1.5em;
    font-size: 3vw;
    width: 12vw;
    margin-top: 2vw;
  }
}
#indexPage .inxProduct .thisBox .proTabsBox .thisCen .ul .li.on .box {
  background-color: #ebebed;
}
#indexPage .inxProduct .thisBox .cenBox {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
}
@media (max-width:1024px) {
  #indexPage .inxProduct .thisBox .cenBox {
    width: 90%;
    align-items: flex-end;
  }
}
#indexPage .inxProduct .thisBox .cenBox .lrControl {
  cursor: pointer;
  background-color: #fff;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
  border-radius: 50%;
  width: 56px;
  height: 56px;
}
@media (max-width:1360px) {
  #indexPage .inxProduct .thisBox .cenBox .lrControl {
    width: 40px;
    height: 40px;
  }
}
@media (max-width:1360px) and (max-width:1024px) {
  #indexPage .inxProduct .thisBox .cenBox .lrControl {
    margin-bottom: 32vw;
    width: 8vw;
    height: 8vw;
  }
}
#indexPage .inxProduct .thisBox .cenBox .lrControl:hover {
  background-color: #333;
}
#indexPage .inxProduct .thisBox .cenBox .lrControl:hover i {
  color: #fff;
}
#indexPage .inxProduct .thisBox .cenBox .center {
  width: calc(100% - 56px * 2);
}
@media (max-width:1360px) {
  #indexPage .inxProduct .thisBox .cenBox .center {
    width: calc(100% - 40px * 2);
  }
}
@media (max-width:1360px) and (max-width:1024px) {
  #indexPage .inxProduct .thisBox .cenBox .center {
    width: calc(100% - 8vw * 2);
  }
}
#indexPage .inxProduct .thisBox .cenBox .center .swiperBox {
  width: 100%;
  height: 100%;
}
#indexPage .inxProduct .thisBox .cenBox .center .swiperBox #inxProduct {
  width: 100%;
  height: 100%;
}
#indexPage .inxProduct .thisBox .cenBox .center .swiperBox #inxProduct .swiper-wrapper .swiper-slide .box {
  margin: 0 auto;
  width: 76%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  flex-wrap: unset;
}
@media (max-width:1680px) {
  #indexPage .inxProduct .thisBox .cenBox .center .swiperBox #inxProduct .swiper-wrapper .swiper-slide .box {
    width: 80%;
  }
}
@media (max-width:1680px) and (max-width:1024px) {
  #indexPage .inxProduct .thisBox .cenBox .center .swiperBox #inxProduct .swiper-wrapper .swiper-slide .box {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-wrap: unset;
  }
}
#indexPage .inxProduct .thisBox .cenBox .center .swiperBox #inxProduct .swiper-wrapper .swiper-slide .box .leftBox {
  width: 42%;
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  flex-wrap: unset;
}
@media (max-width:1024px) {
  #indexPage .inxProduct .thisBox .cenBox .center .swiperBox #inxProduct .swiper-wrapper .swiper-slide .box .leftBox {
    width: 100%;
    aspect-ratio: unset;
  }
}
#indexPage .inxProduct .thisBox .cenBox .center .swiperBox #inxProduct .swiper-wrapper .swiper-slide .box .leftBox .topText {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
}
#indexPage .inxProduct .thisBox .cenBox .center .swiperBox #inxProduct .swiper-wrapper .swiper-slide .box .leftBox .topText .title {
  font-size: 48px;
  font-weight: bold;
}
@media (max-width:1680px) {
  #indexPage .inxProduct .thisBox .cenBox .center .swiperBox #inxProduct .swiper-wrapper .swiper-slide .box .leftBox .topText .title {
    font-size: 40px;
  }
}
@media (max-width:1680px) and (max-width:1360px) {
  #indexPage .inxProduct .thisBox .cenBox .center .swiperBox #inxProduct .swiper-wrapper .swiper-slide .box .leftBox .topText .title {
    font-size: 28px;
  }
}
#indexPage .inxProduct .thisBox .cenBox .center .swiperBox #inxProduct .swiper-wrapper .swiper-slide .box .leftBox .topText .slogen {
  position: relative;
  font-size: 28px;
  margin: 48px 0;
}
@media (max-width:1680px) {
  #indexPage .inxProduct .thisBox .cenBox .center .swiperBox #inxProduct .swiper-wrapper .swiper-slide .box .leftBox .topText .slogen {
    font-size: 24px;
  }
}
@media (max-width:1680px) and (max-width:1360px) {
  #indexPage .inxProduct .thisBox .cenBox .center .swiperBox #inxProduct .swiper-wrapper .swiper-slide .box .leftBox .topText .slogen {
    font-size: 18px;
    margin: 28px 0;
  }
}
#indexPage .inxProduct .thisBox .cenBox .center .swiperBox #inxProduct .swiper-wrapper .swiper-slide .box .leftBox .topText .slogen::before {
  content: '';
  position: absolute;
  display: block;
  width: 22px;
  height: 22px;
  right: 100%;
  bottom: 100%;
  transform: translateY(50%);
  border-top: 3px solid #B3B3B3;
  border-left: 3px solid #B3B3B3;
}
@media (max-width:1360px) {
  #indexPage .inxProduct .thisBox .cenBox .center .swiperBox #inxProduct .swiper-wrapper .swiper-slide .box .leftBox .topText .slogen::before {
    width: 16px;
    height: 16px;
    border-top: 1px solid #B3B3B3;
    border-left: 1px solid #B3B3B3;
  }
}
#indexPage .inxProduct .thisBox .cenBox .center .swiperBox #inxProduct .swiper-wrapper .swiper-slide .box .leftBox .topText .slogen::after {
  content: '';
  position: absolute;
  display: block;
  width: 22px;
  height: 22px;
  left: 100%;
  top: 100%;
  transform: translateY(-50%);
  border-right: 3px solid #B3B3B3;
  border-bottom: 3px solid #B3B3B3;
}
@media (max-width:1360px) {
  #indexPage .inxProduct .thisBox .cenBox .center .swiperBox #inxProduct .swiper-wrapper .swiper-slide .box .leftBox .topText .slogen::after {
    width: 16px;
    height: 16px;
    border-right: 1px solid #B3B3B3;
    border-bottom: 1px solid #B3B3B3;
  }
}
#indexPage .inxProduct .thisBox .cenBox .center .swiperBox #inxProduct .swiper-wrapper .swiper-slide .box .leftBox .topText .indexT {
  font-size: 20px;
  line-height: 2em;
  text-align: center;
}
@media (max-width:1680px) {
  #indexPage .inxProduct .thisBox .cenBox .center .swiperBox #inxProduct .swiper-wrapper .swiper-slide .box .leftBox .topText .indexT {
    font-size: 16px;
  }
}
@media (max-width:1680px) and (max-width:1360px) {
  #indexPage .inxProduct .thisBox .cenBox .center .swiperBox #inxProduct .swiper-wrapper .swiper-slide .box .leftBox .topText .indexT {
    font-size: 12px;
  }
}
@media (max-width:1680px) and (max-width:1360px) and (max-width:1024px) {
  #indexPage .inxProduct .thisBox .cenBox .center .swiperBox #inxProduct .swiper-wrapper .swiper-slide .box .leftBox .topText .indexT {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
}
#indexPage .inxProduct .thisBox .cenBox .center .swiperBox #inxProduct .swiper-wrapper .swiper-slide .box .rightBox {
  width: 55%;
}
@media (max-width:1024px) {
  #indexPage .inxProduct .thisBox .cenBox .center .swiperBox #inxProduct .swiper-wrapper .swiper-slide .box .rightBox {
    width: 100%;
  }
}
#indexPage .inxProduct .thisBox .cenBox .center .swiperBox #inxProduct .swiper-wrapper .swiper-slide .box .rightBox .imgBox {
  width: 100%;
}
#indexPage .inxProduct .thisBox .cenBox .center .swiperBox #inxProduct .swiper-wrapper .swiper-slide .box .moreBtn {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
}
#indexPage .inxProduct .thisBox .cenBox .center .swiperBox #inxProduct .swiper-wrapper .swiper-slide .box .moreBtn .txt {
  font-size: 20px;
  margin-right: 12px;
  line-height: 1em;
}
@media (max-width:1360px) {
  #indexPage .inxProduct .thisBox .cenBox .center .swiperBox #inxProduct .swiper-wrapper .swiper-slide .box .moreBtn .txt {
    font-size: 14px;
  }
}
#indexPage .inxProduct .thisBox .cenBox .center .swiperBox #inxProduct .swiper-wrapper .swiper-slide .box .moreBtn i {
  font-size: 26px;
}
@media (max-width:1360px) {
  #indexPage .inxProduct .thisBox .cenBox .center .swiperBox #inxProduct .swiper-wrapper .swiper-slide .box .moreBtn i {
    font-size: 20px;
  }
}
#indexPage .inxXitong {
  padding-bottom: 110px;
}
@media (max-width:1680px) {
  #indexPage .inxXitong {
    padding-bottom: 90px;
  }
}
@media (max-width:1360px) {
  #indexPage .inxXitong {
    padding-bottom: 70px;
  }
}
@media (max-width:1024px) {
  #indexPage .inxXitong {
    padding-bottom: 15vw;
  }
}
#indexPage .inxXitong .thisBox .cenBox .ul {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  flex-wrap: unset;
}
@media (max-width:1024px) {
  #indexPage .inxXitong .thisBox .cenBox .ul {
    display: flex;
    flex-direction: row;
    align-items: unset;
    justify-content: space-between;
    flex-wrap: wrap;
  }
}
#indexPage .inxXitong .thisBox .cenBox .ul li {
  padding: 44px;
  width: 24%;
  border-radius: 20px;
  background-color: #ebebed;
}
@media (max-width:1360px) {
  #indexPage .inxXitong .thisBox .cenBox .ul li {
    padding: 30px;
  }
}
@media (max-width:1360px) and (max-width:1024px) {
  #indexPage .inxXitong .thisBox .cenBox .ul li {
    width: 49%;
    margin-top: 2vw;
    padding: 7vw 5vw;
  }
}
#indexPage .inxXitong .thisBox .cenBox .ul li .box {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: unset;
}
#indexPage .inxXitong .thisBox .cenBox .ul li .box .textBox {
  margin-bottom: 58px;
}
@media (max-width:1360px) {
  #indexPage .inxXitong .thisBox .cenBox .ul li .box .textBox {
    margin-bottom: 20px;
  }
}
#indexPage .inxXitong .thisBox .cenBox .ul li .box .textBox .title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 30px;
}
@media (max-width:1360px) {
  #indexPage .inxXitong .thisBox .cenBox .ul li .box .textBox .title {
    font-size: 18px;
    margin-bottom: 16px;
  }
}
@media (max-width:1360px) and (max-width:1024px) {
  #indexPage .inxXitong .thisBox .cenBox .ul li .box .textBox .title {
    font-size: 4vw;
  }
}
#indexPage .inxXitong .thisBox .cenBox .ul li .box .textBox .content p {
  text-indent: 0;
  color: #808080;
  font-size: 16px;
}
@media (max-width:1360px) {
  #indexPage .inxXitong .thisBox .cenBox .ul li .box .textBox .content p {
    font-size: 14px;
  }
}
@media (max-width:1360px) and (max-width:1024px) {
  #indexPage .inxXitong .thisBox .cenBox .ul li .box .textBox .content p {
    font-size: 2.7vw;
    line-height: 1.5em;
  }
}
@media (max-width:1680px) {
  #indexPage .inxXitong .thisBox .cenBox .ul li .box .ico {
    height: 140px;
  }
}
@media (max-width:1680px) and (max-width:1360px) {
  #indexPage .inxXitong .thisBox .cenBox .ul li .box .ico {
    height: 80px;
  }
}
@media (max-width:1680px) and (max-width:1360px) and (max-width:1024px) {
  #indexPage .inxXitong .thisBox .cenBox .ul li .box .ico {
    width: 18vw;
    height: 18vw;
  }
}
#indexPage .inxXitong .thisBox .cenBox .ul li .box .ico img {
  object-fit: contain;
  width: 100%;
  height: 100%;
}
#indexPage .inxXiandao {
  padding: 110px 0;
}
@media (max-width:1680px) {
  #indexPage .inxXiandao {
    padding: 90px 0;
  }
}
@media (max-width:1360px) {
  #indexPage .inxXiandao {
    padding: 70px 0;
  }
}
@media (max-width:1024px) {
  #indexPage .inxXiandao {
    padding: 15vw 0;
  }
}
#indexPage .inxXiandao .thisBox .cenBox {
  background-color: #ebebed;
  padding-top: 58px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
}
@media (max-width:1024px) {
  #indexPage .inxXiandao .thisBox .cenBox {
    padding-top: 6vw;
  }
}
#indexPage .inxXiandao .thisBox .cenBox .ul {
  width: 70%;
  display: flex;
  flex-direction: row;
  align-items: unset;
  justify-content: unset;
  flex-wrap: wrap;
  gap: 8%;
}
@media (max-width:1024px) {
  #indexPage .inxXiandao .thisBox .cenBox .ul {
    width: 85%;
    gap: unset;
    display: flex;
    flex-direction: row;
    align-items: unset;
    justify-content: space-between;
    flex-wrap: wrap;
  }
}
#indexPage .inxXiandao .thisBox .cenBox .ul .li {
  background-color: #fff;
  width: 28%;
  border-radius: 10px;
  padding: 40px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: unset;
}
@media (max-width:1680px) {
  #indexPage .inxXiandao .thisBox .cenBox .ul .li {
    padding: 20px;
  }
}
@media (max-width:1680px) and (max-width:1024px) {
  #indexPage .inxXiandao .thisBox .cenBox .ul .li {
    width: 47%;
    padding: 3vw;
    padding-right: 0;
    margin-top: 4vw;
  }
}
#indexPage .inxXiandao .thisBox .cenBox .ul .li .ico {
  margin-right: 34px;
  width: 62px;
  height: 62px;
}
@media (max-width:1680px) {
  #indexPage .inxXiandao .thisBox .cenBox .ul .li .ico {
    margin-right: 26px;
    width: 48px;
    height: 48px;
  }
}
@media (max-width:1680px) and (max-width:1360px) {
  #indexPage .inxXiandao .thisBox .cenBox .ul .li .ico {
    margin-right: 14px;
    width: 38px;
    height: 38px;
  }
}
@media (max-width:1680px) and (max-width:1360px) and (max-width:1024px) {
  #indexPage .inxXiandao .thisBox .cenBox .ul .li .ico {
    margin-right: 2vw;
    width: 8vw;
    height: 8vw;
  }
}
#indexPage .inxXiandao .thisBox .cenBox .ul .li .ico img {
  object-fit: contain;
  width: 100%;
  height: 100%;
}
#indexPage .inxXiandao .thisBox .cenBox .ul .li .textBox .shuju {
  font-size: 34px;
  font-weight: bold;
}
@media (max-width:1680px) {
  #indexPage .inxXiandao .thisBox .cenBox .ul .li .textBox .shuju {
    font-size: 30px;
  }
}
@media (max-width:1680px) and (max-width:1360px) {
  #indexPage .inxXiandao .thisBox .cenBox .ul .li .textBox .shuju {
    font-size: 20px;
  }
}
@media (max-width:1680px) and (max-width:1360px) and (max-width:1024px) {
  #indexPage .inxXiandao .thisBox .cenBox .ul .li .textBox .shuju {
    font-size: 4vw;
  }
}
#indexPage .inxXiandao .thisBox .cenBox .ul .li .textBox .title {
  font-size: 20px;
  color: #808080;
}
@media (max-width:1680px) {
  #indexPage .inxXiandao .thisBox .cenBox .ul .li .textBox .title {
    font-size: 16px;
  }
}
@media (max-width:1680px) and (max-width:1360px) {
  #indexPage .inxXiandao .thisBox .cenBox .ul .li .textBox .title {
    font-size: 12px;
  }
}
@media (min-width:1024px) {
  #indexPage .inxXiandao .thisBox .cenBox .ul .li:nth-child(1),
  #indexPage .inxXiandao .thisBox .cenBox .ul .li:nth-child(2),
  #indexPage .inxXiandao .thisBox .cenBox .ul .li:nth-child(3) {
    margin-bottom: 30px;
  }
}
#indexPage .inxXiandao .thisBox .cenBox .sortImg {
  margin-top: -34px;
}
@media (max-width:1360px) {
  #indexPage .inxXiandao .thisBox .cenBox .sortImg {
    width: 70%;
    margin-top: -14px;
  }
}
@media (max-width:1360px) and (max-width:1024px) {
  #indexPage .inxXiandao .thisBox .cenBox .sortImg {
    width: 80vw;
    margin-top: 10vw;
  }
}
@media (max-width:1360px) {
  #indexPage .inxXiandao .thisBox .cenBox .sortImg img {
    width: 100%;
  }
}
#indexPage .inxBiaozhun {
  position: relative;
}
#indexPage .inxBiaozhun .thisBox {
  padding-top: 136px;
  padding-bottom: 92px;
  position: relative;
  z-index: 1;
}
@media (max-width:1680px) {
  #indexPage .inxBiaozhun .thisBox {
    padding-top: 100px;
    padding-bottom: 76px;
  }
}
@media (max-width:1680px) and (max-width:1024px) {
  #indexPage .inxBiaozhun .thisBox {
    padding-top: 10vw;
    padding-bottom: 12vw;
  }
}
#indexPage .inxBiaozhun .thisBox .cenBox .textBox .def1 {
  font-size: 48px;
  color: #fff;
  margin-bottom: 54px;
  line-height: 1.5em;
}
@media (max-width:1680px) {
  #indexPage .inxBiaozhun .thisBox .cenBox .textBox .def1 {
    font-size: 40px;
  }
}
@media (max-width:1680px) and (max-width:1360px) {
  #indexPage .inxBiaozhun .thisBox .cenBox .textBox .def1 {
    font-size: 30px;
  }
}
@media (max-width:1680px) and (max-width:1360px) and (max-width:1024px) {
  #indexPage .inxBiaozhun .thisBox .cenBox .textBox .def1 {
    font-size: 6vw;
    margin-bottom: 4vw;
  }
}
#indexPage .inxBiaozhun .thisBox .cenBox .textBox .def2 {
  width: 40%;
  line-height: 1.8em;
  font-size: 24px;
  color: #fff;
}
@media (max-width:1680px) {
  #indexPage .inxBiaozhun .thisBox .cenBox .textBox .def2 {
    font-size: 18px;
  }
}
@media (max-width:1680px) and (max-width:1360px) {
  #indexPage .inxBiaozhun .thisBox .cenBox .textBox .def2 {
    font-size: 14px;
  }
}
@media (max-width:1680px) and (max-width:1360px) and (max-width:1024px) {
  #indexPage .inxBiaozhun .thisBox .cenBox .textBox .def2 {
    font-size: 3vw;
    width: 60%;
  }
}
#indexPage .inxBiaozhun .thisBox .swiperBox {
  margin-top: 122px;
}
@media (max-width:1360px) {
  #indexPage .inxBiaozhun .thisBox .swiperBox {
    margin-top: 60px;
  }
}
#indexPage .inxBiaozhun .thisBox .swiperBox #photo li {
  width: unset;
}
#indexPage .inxBiaozhun .thisBox .swiperBox #photo li .box {
  width: 250px;
}
@media (max-width:1360px) {
  #indexPage .inxBiaozhun .thisBox .swiperBox #photo li .box {
    width: 200px;
  }
}
@media (max-width:1360px) and (max-width:1024px) {
  #indexPage .inxBiaozhun .thisBox .swiperBox #photo li .box {
    width: 24vw;
  }
}
#indexPage .inxBiaozhun .thisBox .swiperBox #photo li .box .imgBox {
  width: 100%;
  height: 130px;
}
@media (max-width:1360px) {
  #indexPage .inxBiaozhun .thisBox .swiperBox #photo li .box .imgBox {
    height: 100px;
  }
}
@media (max-width:1360px) and (max-width:1024px) {
  #indexPage .inxBiaozhun .thisBox .swiperBox #photo li .box .imgBox {
    height: 14vw;
  }
}
#indexPage .inxBiaozhun .thisBox .swiperBox #photo li .box .title {
  width: 100%;
  background-color: #fff;
  height: 36px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
  font-size: 18px;
}
@media (max-width:1360px) {
  #indexPage .inxBiaozhun .thisBox .swiperBox #photo li .box .title {
    font-size: 14px;
    height: 30px;
  }
}
@media (max-width:1360px) and (max-width:1024px) {
  #indexPage .inxBiaozhun .thisBox .swiperBox #photo li .box .title {
    font-size: 2.6vw;
    height: 6vw;
  }
}
#indexPage .inxBiaozhun .bgImg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#indexPage .inxBiaozhun .bgImg img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.twoPageBox .topNav .topNavBox .cenBox .center .navBar .ul1 .li1 .a1 .txt {
  color: #333;
}
.twoPageBox .topNav .topNavBox .cenBox .navOpenBox .navBtn ul li {
  background-color: #333;
}
.twoPageBox .topNav .topNavBox::after {
  transform: translateY(0);
}
.twoPageBox .pageContent .sortNav {
  margin-bottom: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
}
@media (max-width:1360px) {
  .twoPageBox .pageContent .sortNav {
    margin-bottom: 50px;
  }
}
@media (max-width:1360px) and (max-width:1024px) {
  .twoPageBox .pageContent .sortNav {
    margin-bottom: 8vw;
  }
}
.twoPageBox .pageContent .sortNav .sortName {
  font-size: 48px;
  margin-bottom: 34px;
}
@media (max-width:1360px) {
  .twoPageBox .pageContent .sortNav .sortName {
    font-size: 30px;
  }
}
@media (max-width:1024px) {
  .twoPageBox .pageContent .sortNav .sortTabs {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: unset;
  }
}
.twoPageBox .pageContent .sortNav .sortTabs .ul {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
}
.twoPageBox .pageContent .sortNav .sortTabs .ul .li {
  padding: 0 26px;
}
@media (max-width:1360px) {
  .twoPageBox .pageContent .sortNav .sortTabs .ul .li {
    padding: 0 18px;
  }
}
@media (max-width:1360px) and (max-width:1024px) {
  .twoPageBox .pageContent .sortNav .sortTabs .ul .li {
    padding: 0 2vw;
  }
}
.twoPageBox .pageContent .sortNav .sortTabs .ul .li .aBox {
  width: 160px;
  height: 50px;
  border-radius: 25px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
  border: 1px solid #333;
  font-size: 20px;
}
@media (max-width:1360px) {
  .twoPageBox .pageContent .sortNav .sortTabs .ul .li .aBox {
    width: 120px;
    height: 40px;
    font-size: 16px;
  }
}
@media (max-width:1360px) and (max-width:1024px) {
  .twoPageBox .pageContent .sortNav .sortTabs .ul .li .aBox {
    width: 20vw;
    height: 6vw;
    border-color: #999;
    font-size: 2.8vw;
  }
}
.twoPageBox .pageContent .sortNav .sortTabs .ul .li.on .aBox {
  background-color: #333;
  color: #fff;
}
#newsPage .pageContent .newsList .thisBox .cenBox .ul {
  gap: 2%;
  display: flex;
  flex-direction: row;
  align-items: unset;
  justify-content: unset;
  flex-wrap: wrap;
}
@media (max-width:1024px) {
  #newsPage .pageContent .newsList .thisBox .cenBox .ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-wrap: unset;
  }
}
#newsPage .pageContent .newsList .thisBox .cenBox .ul .li {
  margin-bottom: 60px;
  width: 32%;
}
@media (max-width:1024px) {
  #newsPage .pageContent .newsList .thisBox .cenBox .ul .li {
    width: 100%;
    margin-bottom: 10vw;
  }
}
#newsPage .pageContent .newsList .thisBox .cenBox .ul .li .box {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
}
@media (max-width:1024px) {
  #newsPage .pageContent .newsList .thisBox .cenBox .ul .li .box {
    border-radius: 2vw;
    overflow: hidden;
  }
}
#newsPage .pageContent .newsList .thisBox .cenBox .ul .li .box .imgBox {
  width: 100%;
  height: 300px;
}
@media (max-width:1680px) {
  #newsPage .pageContent .newsList .thisBox .cenBox .ul .li .box .imgBox {
    height: 250px;
  }
}
@media (max-width:1680px) and (max-width:1360px) {
  #newsPage .pageContent .newsList .thisBox .cenBox .ul .li .box .imgBox {
    height: 200px;
  }
}
@media (max-width:1680px) and (max-width:1360px) and (max-width:1024px) {
  #newsPage .pageContent .newsList .thisBox .cenBox .ul .li .box .imgBox {
    height: 44vw;
  }
}
#newsPage .pageContent .newsList .thisBox .cenBox .ul .li .box .textBox {
  padding: 0 44px;
  padding-top: 26px;
  background-color: #fff;
  width: 100%;
  height: 132px;
}
@media (max-width:1360px) {
  #newsPage .pageContent .newsList .thisBox .cenBox .ul .li .box .textBox {
    padding: 0 30px;
    padding-top: 18px;
    height: 110px;
  }
}
@media (max-width:1360px) and (max-width:1024px) {
  #newsPage .pageContent .newsList .thisBox .cenBox .ul .li .box .textBox {
    border-radius: 2vw;
  }
}
#newsPage .pageContent .newsList .thisBox .cenBox .ul .li .box .textBox .title {
  font-size: 20px;
  line-height: 1.5em;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
@media (max-width:1680px) {
  #newsPage .pageContent .newsList .thisBox .cenBox .ul .li .box .textBox .title {
    font-size: 16px;
  }
}
@media (max-width:1680px) and (max-width:1024px) {
  #newsPage .pageContent .newsList .thisBox .cenBox .ul .li .box .textBox .title {
    font-size: 4vw;
  }
}
#newsPage .pageContent .newsList .thisBox .cenBox .ul .li .box .textBox .date {
  margin-top: 4px;
  font-size: 14px;
  color: #999;
}
#productPage .pageContent {
  padding: 0;
}
@media (max-width:1024px) {
  #productPage .pageContent .proListBox {
    display: none;
  }
}
#productPage .pageContent .proListBox .thisBox .cenBox .ul .li {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  flex-wrap: unset;
}
#productPage .pageContent .proListBox .thisBox .cenBox .ul .li .box {
  margin: 0 auto;
  width: 76%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  flex-wrap: unset;
  width: 90%;
  margin: unset;
}
@media (max-width:1680px) {
  #productPage .pageContent .proListBox .thisBox .cenBox .ul .li .box {
    width: 80%;
  }
}
@media (max-width:1680px) and (max-width:1024px) {
  #productPage .pageContent .proListBox .thisBox .cenBox .ul .li .box {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-wrap: unset;
  }
}
#productPage .pageContent .proListBox .thisBox .cenBox .ul .li .box .leftBox {
  width: 42%;
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  flex-wrap: unset;
}
@media (max-width:1024px) {
  #productPage .pageContent .proListBox .thisBox .cenBox .ul .li .box .leftBox {
    width: 100%;
    aspect-ratio: unset;
  }
}
#productPage .pageContent .proListBox .thisBox .cenBox .ul .li .box .leftBox .topText {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
}
#productPage .pageContent .proListBox .thisBox .cenBox .ul .li .box .leftBox .topText .title {
  font-size: 48px;
  font-weight: bold;
}
@media (max-width:1680px) {
  #productPage .pageContent .proListBox .thisBox .cenBox .ul .li .box .leftBox .topText .title {
    font-size: 40px;
  }
}
@media (max-width:1680px) and (max-width:1360px) {
  #productPage .pageContent .proListBox .thisBox .cenBox .ul .li .box .leftBox .topText .title {
    font-size: 28px;
  }
}
#productPage .pageContent .proListBox .thisBox .cenBox .ul .li .box .leftBox .topText .slogen {
  position: relative;
  font-size: 28px;
  margin: 48px 0;
}
@media (max-width:1680px) {
  #productPage .pageContent .proListBox .thisBox .cenBox .ul .li .box .leftBox .topText .slogen {
    font-size: 24px;
  }
}
@media (max-width:1680px) and (max-width:1360px) {
  #productPage .pageContent .proListBox .thisBox .cenBox .ul .li .box .leftBox .topText .slogen {
    font-size: 18px;
    margin: 28px 0;
  }
}
#productPage .pageContent .proListBox .thisBox .cenBox .ul .li .box .leftBox .topText .slogen::before {
  content: '';
  position: absolute;
  display: block;
  width: 22px;
  height: 22px;
  right: 100%;
  bottom: 100%;
  transform: translateY(50%);
  border-top: 3px solid #B3B3B3;
  border-left: 3px solid #B3B3B3;
}
@media (max-width:1360px) {
  #productPage .pageContent .proListBox .thisBox .cenBox .ul .li .box .leftBox .topText .slogen::before {
    width: 16px;
    height: 16px;
    border-top: 1px solid #B3B3B3;
    border-left: 1px solid #B3B3B3;
  }
}
#productPage .pageContent .proListBox .thisBox .cenBox .ul .li .box .leftBox .topText .slogen::after {
  content: '';
  position: absolute;
  display: block;
  width: 22px;
  height: 22px;
  left: 100%;
  top: 100%;
  transform: translateY(-50%);
  border-right: 3px solid #B3B3B3;
  border-bottom: 3px solid #B3B3B3;
}
@media (max-width:1360px) {
  #productPage .pageContent .proListBox .thisBox .cenBox .ul .li .box .leftBox .topText .slogen::after {
    width: 16px;
    height: 16px;
    border-right: 1px solid #B3B3B3;
    border-bottom: 1px solid #B3B3B3;
  }
}
#productPage .pageContent .proListBox .thisBox .cenBox .ul .li .box .leftBox .topText .indexT {
  font-size: 20px;
  line-height: 2em;
  text-align: center;
}
@media (max-width:1680px) {
  #productPage .pageContent .proListBox .thisBox .cenBox .ul .li .box .leftBox .topText .indexT {
    font-size: 16px;
  }
}
@media (max-width:1680px) and (max-width:1360px) {
  #productPage .pageContent .proListBox .thisBox .cenBox .ul .li .box .leftBox .topText .indexT {
    font-size: 12px;
  }
}
@media (max-width:1680px) and (max-width:1360px) and (max-width:1024px) {
  #productPage .pageContent .proListBox .thisBox .cenBox .ul .li .box .leftBox .topText .indexT {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
}
#productPage .pageContent .proListBox .thisBox .cenBox .ul .li .box .rightBox {
  width: 55%;
}
@media (max-width:1024px) {
  #productPage .pageContent .proListBox .thisBox .cenBox .ul .li .box .rightBox {
    width: 100%;
  }
}
#productPage .pageContent .proListBox .thisBox .cenBox .ul .li .box .rightBox .imgBox {
  width: 100%;
}
#productPage .pageContent .proListBox .thisBox .cenBox .ul .li .box .moreBtn {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
}
#productPage .pageContent .proListBox .thisBox .cenBox .ul .li .box .moreBtn .txt {
  font-size: 20px;
  margin-right: 12px;
  line-height: 1em;
}
@media (max-width:1360px) {
  #productPage .pageContent .proListBox .thisBox .cenBox .ul .li .box .moreBtn .txt {
    font-size: 14px;
  }
}
#productPage .pageContent .proListBox .thisBox .cenBox .ul .li .box .moreBtn i {
  font-size: 26px;
}
@media (max-width:1360px) {
  #productPage .pageContent .proListBox .thisBox .cenBox .ul .li .box .moreBtn i {
    font-size: 20px;
  }
}
#productPage .pageContent .proListBox .thisBox .cenBox .ul .li:nth-child(even) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: unset;
}
#productPage .pageContent .proListBox .thisBox .cenBox .ul .li:nth-child(even) .box {
  flex-direction: row-reverse;
}
@media (min-width:1024px) {
  #productPage .pageContent .proListBox-m {
    display: none;
  }
}
#productPage .pageContent .proListBox-m .thisBox .slogenBT {
  text-align: center;
  width: 70%;
  font-size: 6vw;
  line-height: 1.5em;
  font-weight: bold;
  margin: 12vw auto;
}
#productPage .pageContent .proListBox-m .thisBox .cenBox .ul .li {
  margin-bottom: 2vw;
}
#productPage .pageContent .proListBox-m .thisBox .cenBox .ul .li .box {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: unset;
}
#productPage .pageContent .proListBox-m .thisBox .cenBox .ul .li .box .imgBox {
  transform: translateX(-6vw);
  z-index: 1;
  position: relative;
  width: 48vw;
  height: 48vw;
}
#productPage .pageContent .proListBox-m .thisBox .cenBox .ul .li .box .textBox {
  position: absolute;
  left: 24vw;
  right: 0;
  padding-right: 2vw;
  top: 50%;
  transform: translateY(-50%);
  background-color: #fff;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  flex-wrap: unset;
}
#productPage .pageContent .proListBox-m .thisBox .cenBox .ul .li .box .textBox .topText {
  width: 70vw;
  padding: 6vw 2vw 6vw 10vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
}
#productPage .pageContent .proListBox-m .thisBox .cenBox .ul .li .box .textBox .topText .title {
  font-size: 4.2vw;
  margin-bottom: 2vw;
}
#productPage .pageContent .proListBox-m .thisBox .cenBox .ul .li .box .textBox .topText .slogen {
  font-size: 4vw;
  color: #808080;
}
#productPage .pageContent .proListBox-m .thisBox .cenBox .ul .li .box .textBox .iconfont {
  color: #ccc;
}
#productDetailPage {
  padding-top: calc(60px + 70px);
}
@media (max-width:1024px) {
  #productDetailPage {
    padding-top: calc(14vw + 12vw);
  }
}
#productDetailPage .pageContent {
  padding: 0;
}
#productDetailPage .pageContent .jianjie {
  background-color: #e5e5e6;
}
@media (max-width:1024px) {
  #productDetailPage .pageContent .jianjie {
    padding-bottom: 20vw;
    background-color: #e4e4e6;
  }
}
#productDetailPage .pageContent .jianjie .thisBox {
  height: 990px;
}
@media (max-width:1680px) {
  #productDetailPage .pageContent .jianjie .thisBox {
    height: 770px;
  }
}
@media (max-width:1680px) and (max-width:1360px) {
  #productDetailPage .pageContent .jianjie .thisBox {
    height: 550px;
  }
}
@media (max-width:1680px) and (max-width:1360px) and (max-width:1024px) {
  #productDetailPage .pageContent .jianjie .thisBox {
    height: unset;
  }
}
#productDetailPage .pageContent .jianjie .thisBox .cenBox {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
  width: 100%;
  height: 100%;
}
@media (max-width:1024px) {
  #productDetailPage .pageContent .jianjie .thisBox .cenBox {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-wrap: unset;
  }
}
#productDetailPage .pageContent .jianjie .thisBox .cenBox .left {
  padding-left: calc(50% - 1640px * 0.5);
  padding-top: 120px;
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: unset;
}
@media (max-width:1680px) {
  #productDetailPage .pageContent .jianjie .thisBox .cenBox .left {
    padding-top: 80px;
    padding-left: calc(50% - 1300px * 0.5);
  }
}
@media (max-width:1680px) and (max-width:1360px) {
  #productDetailPage .pageContent .jianjie .thisBox .cenBox .left {
    padding-left: calc(50% - 90% * 0.5);
    width: 65%;
  }
}
@media (max-width:1680px) and (max-width:1360px) and (max-width:1024px) {
  #productDetailPage .pageContent .jianjie .thisBox .cenBox .left {
    padding-top: 10vw;
    padding-left: 0;
    width: 90%;
  }
}
#productDetailPage .pageContent .jianjie .thisBox .cenBox .left .topBox {
  width: 82%;
  height: 45%;
}
@media (max-width:1024px) {
  #productDetailPage .pageContent .jianjie .thisBox .cenBox .left .topBox {
    width: 100%;
  }
}
#productDetailPage .pageContent .jianjie .thisBox .cenBox .left .topBox .title {
  font-size: 50px;
  margin-bottom: 44px;
}
@media (max-width:1680px) {
  #productDetailPage .pageContent .jianjie .thisBox .cenBox .left .topBox .title {
    font-size: 40px;
  }
}
@media (max-width:1680px) and (max-width:1024px) {
  #productDetailPage .pageContent .jianjie .thisBox .cenBox .left .topBox .title {
    width: 100%;
    margin-bottom: 4vw;
    font-size: 6vw;
  }
}
#productDetailPage .pageContent .jianjie .thisBox .cenBox .left .topBox .content p {
  text-indent: 0;
  color: #1A1311;
}
@media (max-width:1024px) {
  #productDetailPage .pageContent .jianjie .thisBox .cenBox .left .topBox .content p {
    font-size: 2.8vw;
    line-height: 1.8em;
  }
}
#productDetailPage .pageContent .jianjie .thisBox .cenBox .left .bottomBox {
  position: relative;
  width: 100%;
  height: 55%;
}
@media (max-width:1024px) {
  #productDetailPage .pageContent .jianjie .thisBox .cenBox .left .bottomBox {
    padding-bottom: 12vw;
  }
}
#productDetailPage .pageContent .jianjie .thisBox .cenBox .left .bottomBox .canshu {
  width: 100%;
}
#productDetailPage .pageContent .jianjie .thisBox .cenBox .left .bottomBox .canshu .ul {
  gap: 2%;
  display: flex;
  flex-direction: row;
  align-items: unset;
  justify-content: unset;
  flex-wrap: wrap;
}
#productDetailPage .pageContent .jianjie .thisBox .cenBox .left .bottomBox .canshu .ul .li {
  width: 32%;
  border-radius: 8px;
  padding: 0 22px;
  background-color: #fff;
  height: 100px;
  padding-right: 0;
  margin-top: 16px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: unset;
}
@media (max-width:1680px) {
  #productDetailPage .pageContent .jianjie .thisBox .cenBox .left .bottomBox .canshu .ul .li {
    padding: 0 16px;
    height: 80px;
    padding-right: 0;
  }
}
@media (max-width:1680px) and (max-width:1360px) {
  #productDetailPage .pageContent .jianjie .thisBox .cenBox .left .bottomBox .canshu .ul .li {
    padding: 0 10px;
  }
}
@media (max-width:1680px) and (max-width:1360px) and (max-width:1024px) {
  #productDetailPage .pageContent .jianjie .thisBox .cenBox .left .bottomBox .canshu .ul .li {
    border-radius: 1vw;
    height: 10vw;
    margin-top: 2vw;
    padding-right: 0;
  }
}
#productDetailPage .pageContent .jianjie .thisBox .cenBox .left .bottomBox .canshu .ul .li .imgBox {
  margin-right: 15px;
}
@media (max-width:1680px) {
  #productDetailPage .pageContent .jianjie .thisBox .cenBox .left .bottomBox .canshu .ul .li .imgBox {
    margin-right: 8px;
    width: 34px;
    height: 34px;
  }
}
@media (max-width:1680px) and (max-width:1360px) {
  #productDetailPage .pageContent .jianjie .thisBox .cenBox .left .bottomBox .canshu .ul .li .imgBox {
    width: 24px;
    height: 24px;
    margin-right: 5px;
  }
}
@media (max-width:1680px) and (max-width:1360px) and (max-width:1024px) {
  #productDetailPage .pageContent .jianjie .thisBox .cenBox .left .bottomBox .canshu .ul .li .imgBox {
    width: 5vw;
    height: 5vw;
  }
}
#productDetailPage .pageContent .jianjie .thisBox .cenBox .left .bottomBox .canshu .ul .li .imgBox img {
  object-fit: contain;
}
#productDetailPage .pageContent .jianjie .thisBox .cenBox .left .bottomBox .canshu .ul .li .textBox .neirong {
  font-size: 20px;
  margin-bottom: 4px;
}
@media (max-width:1680px) {
  #productDetailPage .pageContent .jianjie .thisBox .cenBox .left .bottomBox .canshu .ul .li .textBox .neirong {
    font-size: 16px;
  }
}
@media (max-width:1680px) and (max-width:1360px) {
  #productDetailPage .pageContent .jianjie .thisBox .cenBox .left .bottomBox .canshu .ul .li .textBox .neirong {
    font-size: 14px;
  }
}
@media (max-width:1680px) and (max-width:1360px) and (max-width:1024px) {
  #productDetailPage .pageContent .jianjie .thisBox .cenBox .left .bottomBox .canshu .ul .li .textBox .neirong {
    margin-bottom: 0;
    font-size: 2.3vw;
  }
}
#productDetailPage .pageContent .jianjie .thisBox .cenBox .left .bottomBox .canshu .ul .li .textBox .title {
  font-size: 18px;
  color: #808080;
}
@media (max-width:1680px) {
  #productDetailPage .pageContent .jianjie .thisBox .cenBox .left .bottomBox .canshu .ul .li .textBox .title {
    font-size: 16px;
  }
}
@media (max-width:1680px) and (max-width:1360px) {
  #productDetailPage .pageContent .jianjie .thisBox .cenBox .left .bottomBox .canshu .ul .li .textBox .title {
    font-size: 14px;
  }
}
@media (max-width:1680px) and (max-width:1360px) and (max-width:1024px) {
  #productDetailPage .pageContent .jianjie .thisBox .cenBox .left .bottomBox .canshu .ul .li .textBox .title {
    font-size: 2.6vw;
  }
}
#productDetailPage .pageContent .jianjie .thisBox .cenBox .left .bottomBox .canshu .ul .li:nth-child(1),
#productDetailPage .pageContent .jianjie .thisBox .cenBox .left .bottomBox .canshu .ul .li:nth-child(2),
#productDetailPage .pageContent .jianjie .thisBox .cenBox .left .bottomBox .canshu .ul .li:nth-child(3) {
  margin-top: 0;
}
#productDetailPage .pageContent .jianjie .thisBox .cenBox .left .bottomBox .zhenghao {
  position: absolute;
  left: 0;
  bottom: 2vw;
  color: #1A1311;
  opacity: 0.5;
  line-height: 1.5em;
}
#productDetailPage .pageContent .jianjie .thisBox .cenBox .right {
  width: 50%;
  height: 100%;
}
@media (max-width:1360px) {
  #productDetailPage .pageContent .jianjie .thisBox .cenBox .right {
    width: 45%;
  }
}
@media (max-width:1360px) and (max-width:1024px) {
  #productDetailPage .pageContent .jianjie .thisBox .cenBox .right {
    width: 100%;
    margin: 0 auto;
  }
}
#productDetailPage .pageContent .jianjie .thisBox .cenBox .right .imgBox {
  width: 100%;
  height: 100%;
}
#productDetailPage .pageContent .jianjie .thisBox .cenBox .right .imgBox img {
  object-fit: contain;
}
@media (max-width:1024px) {
  #productDetailPage .pageContent .imgVideo {
    width: 100%;
  }
}
#productDetailPage .pageContent .imgVideo .thisBox {
  height: calc(100vh - 70px * 2);
}
@media (max-width:1680px) {
  #productDetailPage .pageContent .imgVideo .thisBox {
    height: calc(100vh - 60px* 2);
  }
}
@media (max-width:1360px) {
  #productDetailPage .pageContent .imgVideo .thisBox {
    height: calc(100vh - 60px* 2);
  }
}
@media (max-width:1024px) {
  #productDetailPage .pageContent .imgVideo .thisBox {
    height: unset;
  }
}
@media (max-width:1024px) {
  #productDetailPage .pageContent .imgVideo .thisBox {
    width: 100%;
  }
}
#productDetailPage .pageContent .imgVideo .thisBox video {
  height: 100%;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
  margin: 0 auto;
  object-fit: contain;
}
@media (max-width:1024px) {
  #productDetailPage .pageContent .imgVideo .thisBox video {
    height: unset;
  }
}
#productDetailPage .pageContent .imgVideo .thisBox .imgBox {
  width: 100%;
  height: 100%;
}
#productDetailPage .pageContent .liucheng {
  padding: 110px 0;
}
@media (max-width:1680px) {
  #productDetailPage .pageContent .liucheng {
    padding: 90px 0;
  }
}
@media (max-width:1360px) {
  #productDetailPage .pageContent .liucheng {
    padding: 70px 0;
  }
}
@media (max-width:1024px) {
  #productDetailPage .pageContent .liucheng {
    padding: 15vw 0;
  }
}
@media (max-width:1024px) {
  #productDetailPage .pageContent .liucheng .thisBox .cenBox {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-wrap: unset;
  }
}
#productDetailPage .pageContent .liucheng .thisBox .cenBox .biaoti {
  font-size: 40px;
  margin-bottom: 70px;
}
@media (max-width:1360px) {
  #productDetailPage .pageContent .liucheng .thisBox .cenBox .biaoti {
    font-size: 30px;
  }
}
@media (max-width:1360px) and (max-width:1024px) {
  #productDetailPage .pageContent .liucheng .thisBox .cenBox .biaoti {
    font-size: 6vw;
    margin-bottom: 6vw;
  }
}
#productDetailPage .pageContent .liucheng .thisBox .cenBox .ul {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
  gap: 1.666666%;
}
@media (max-width:1024px) {
  #productDetailPage .pageContent .liucheng .thisBox .cenBox .ul {
    gap: unset;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
  }
}
#productDetailPage .pageContent .liucheng .thisBox .cenBox .ul .li {
  padding: 36px;
  width: 24%;
  background-color: #fff;
  border-radius: 12px;
}
@media (max-width:1024px) {
  #productDetailPage .pageContent .liucheng .thisBox .cenBox .ul .li {
    width: 49%;
    margin-top: 6vw;
    padding: 3vw;
  }
  #productDetailPage .pageContent .liucheng .thisBox .cenBox .ul .li:nth-child(1),
  #productDetailPage .pageContent .liucheng .thisBox .cenBox .ul .li:nth-child(2) {
    margin-top: 0;
  }
}
#productDetailPage .pageContent .liucheng .thisBox .cenBox .ul .li .box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
}
#productDetailPage .pageContent .liucheng .thisBox .cenBox .ul .li .box .title {
  margin-bottom: 30px;
  font-size: 24px;
  font-weight: bold;
}
@media (max-width:1680px) {
  #productDetailPage .pageContent .liucheng .thisBox .cenBox .ul .li .box .title {
    font-size: 20px;
  }
}
@media (max-width:1680px) and (max-width:1360px) {
  #productDetailPage .pageContent .liucheng .thisBox .cenBox .ul .li .box .title {
    font-size: 18px;
  }
}
@media (max-width:1680px) and (max-width:1360px) and (max-width:1024px) {
  #productDetailPage .pageContent .liucheng .thisBox .cenBox .ul .li .box .title {
    font-size: 3vw;
    margin-bottom: 2vw;
  }
}
@media (max-width:1024px) {
  #productDetailPage .pageContent .liucheng .thisBox .cenBox .ul .li .box .imgBox {
    width: 100%;
  }
}
@media (max-width:1024px) {
  #productDetailPage .pageContent .tese-shezhen .thisBox {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-wrap: unset;
  }
}
#productDetailPage .pageContent .tese-shezhen .thisBox .biaoti {
  width: 1640px;
  margin: 0 auto;
  margin-bottom: 70px;
  font-size: 40px;
}
@media (max-width:1680px) {
  #productDetailPage .pageContent .tese-shezhen .thisBox .biaoti {
    width: 1300px;
  }
}
@media (max-width:1360px) {
  #productDetailPage .pageContent .tese-shezhen .thisBox .biaoti {
    width: 90%;
  }
}
@media (max-width:1024px) {
  #productDetailPage .pageContent .tese-shezhen .thisBox .biaoti {
    width: 90%;
  }
}
@media (max-width:1360px) {
  #productDetailPage .pageContent .tese-shezhen .thisBox .biaoti {
    font-size: 30px;
  }
}
@media (max-width:1360px) and (max-width:1024px) {
  #productDetailPage .pageContent .tese-shezhen .thisBox .biaoti {
    font-size: 6vw;
    width: unset;
    margin-bottom: 6vw;
  }
}
#productDetailPage .pageContent .tese-shezhen .thisBox .coutBox {
  height: 538px;
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
}
@media (max-width:1680px) {
  #productDetailPage .pageContent .tese-shezhen .thisBox .coutBox {
    height: 460px;
  }
}
@media (max-width:1680px) and (max-width:1024px) {
  #productDetailPage .pageContent .tese-shezhen .thisBox .coutBox {
    height: unset;
    width: 100%;
  }
}
#productDetailPage .pageContent .tese-shezhen .thisBox .coutBox .cenBox {
  position: relative;
  z-index: 1;
}
@media (max-width:1024px) {
  #productDetailPage .pageContent .tese-shezhen .thisBox .coutBox .cenBox {
    padding: 8vw 0;
    width: 100%;
  }
}
#productDetailPage .pageContent .tese-shezhen .thisBox .coutBox .cenBox .ul {
  width: 84%;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
}
@media (max-width:1024px) {
  #productDetailPage .pageContent .tese-shezhen .thisBox .coutBox .cenBox .ul {
    width: 96%;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
  }
}
#productDetailPage .pageContent .tese-shezhen .thisBox .coutBox .cenBox .ul .li {
  flex: 1;
}
@media (max-width:1024px) {
  #productDetailPage .pageContent .tese-shezhen .thisBox .coutBox .cenBox .ul .li {
    flex: none;
    padding: 4vw 0;
    width: 50%;
  }
}
#productDetailPage .pageContent .tese-shezhen .thisBox .coutBox .cenBox .ul .li .box {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
}
#productDetailPage .pageContent .tese-shezhen .thisBox .coutBox .cenBox .ul .li .box .imgBox {
  margin-bottom: 44px;
}
@media (max-width:1024px) {
  #productDetailPage .pageContent .tese-shezhen .thisBox .coutBox .cenBox .ul .li .box .imgBox {
    width: 9vw;
    height: 9vw;
    margin-bottom: 2vw;
  }
}
#productDetailPage .pageContent .tese-shezhen .thisBox .coutBox .cenBox .ul .li .box .imgBox img {
  object-fit: contain;
}
#productDetailPage .pageContent .tese-shezhen .thisBox .coutBox .cenBox .ul .li .box .title {
  color: #fff;
  font-size: 24px;
  margin-bottom: 24px;
}
@media (max-width:1024px) {
  #productDetailPage .pageContent .tese-shezhen .thisBox .coutBox .cenBox .ul .li .box .title {
    font-size: 4vw;
    margin-bottom: 2vw;
  }
}
#productDetailPage .pageContent .tese-shezhen .thisBox .coutBox .cenBox .ul .li .box .content p {
  color: #fff;
  text-indent: 0;
  line-height: 1em;
}
@media (max-width:1024px) {
  #productDetailPage .pageContent .tese-shezhen .thisBox .coutBox .cenBox .ul .li .box .content p {
    font-size: 3vw;
  }
}
#productDetailPage .pageContent .tese-shezhen .thisBox .coutBox .bgImg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#productDetailPage .pageContent .tese-shezhen .thisBox .coutBox .bgImg .imgBox {
  width: 100%;
  height: 100%;
}
#productDetailPage .pageContent .tese-shezhen .thisBox .coutBox .bgImg .imgBox img {
  object-fit: cover;
}
#productDetailPage .pageContent .tese {
  padding-top: 110px;
}
@media (max-width:1680px) {
  #productDetailPage .pageContent .tese {
    padding-top: 90px;
  }
}
@media (max-width:1360px) {
  #productDetailPage .pageContent .tese {
    padding-top: 70px;
  }
}
@media (max-width:1024px) {
  #productDetailPage .pageContent .tese {
    padding-top: 15vw;
  }
}
@media (max-width:1024px) {
  #productDetailPage .pageContent .tese .thisBox .cenBox {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-wrap: unset;
  }
}
#productDetailPage .pageContent .tese .thisBox .cenBox .biaoti {
  font-size: 40px;
  margin-bottom: 70px;
}
@media (max-width:1360px) {
  #productDetailPage .pageContent .tese .thisBox .cenBox .biaoti {
    font-size: 30px;
  }
}
@media (max-width:1360px) and (max-width:1024px) {
  #productDetailPage .pageContent .tese .thisBox .cenBox .biaoti {
    font-size: 6vw;
    margin-bottom: 10vw;
  }
}
@media (max-width:1024px) {
  #productDetailPage .pageContent .tese .thisBox .coutBox {
    margin: 0 auto;
    width: 90%;
  }
}
#productDetailPage .pageContent .tese .thisBox .coutBox .ul .li {
  height: 460px;
  display: flex;
  flex-direction: row;
  align-items: unset;
  justify-content: unset;
  flex-wrap: wrap;
}
@media (max-width:1680px) {
  #productDetailPage .pageContent .tese .thisBox .coutBox .ul .li {
    height: 400px;
  }
}
@media (max-width:1680px) and (max-width:1024px) {
  #productDetailPage .pageContent .tese .thisBox .coutBox .ul .li {
    height: unset;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-wrap: unset;
  }
}
#productDetailPage .pageContent .tese .thisBox .coutBox .ul .li .imgVideoBox {
  width: 50%;
  height: 100%;
}
@media (max-width:1024px) {
  #productDetailPage .pageContent .tese .thisBox .coutBox .ul .li .imgVideoBox {
    width: 100%;
    border-radius: 2vw;
    overflow: hidden;
  }
}
#productDetailPage .pageContent .tese .thisBox .coutBox .ul .li .imgVideoBox video {
  width: 100%;
  height: 100%;
  object-fit: fill;
}
#productDetailPage .pageContent .tese .thisBox .coutBox .ul .li .imgVideoBox .imgBox {
  width: 100%;
  height: 100%;
}
#productDetailPage .pageContent .tese .thisBox .coutBox .ul .li .textCout {
  width: 50%;
  height: 100%;
  background-color: #f0f0f1;
  padding: 6vw 10vw;
  padding-bottom: 0;
}
@media (max-width:1024px) {
  #productDetailPage .pageContent .tese .thisBox .coutBox .ul .li .textCout {
    background-color: unset;
    width: 100%;
    padding: 0;
    padding-top: 6vw;
    padding-bottom: 10vw;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: unset;
  }
}
#productDetailPage .pageContent .tese .thisBox .coutBox .ul .li .textCout .title {
  font-size: 40px;
  margin-bottom: 32px;
}
@media (max-width:1680px) {
  #productDetailPage .pageContent .tese .thisBox .coutBox .ul .li .textCout .title {
    font-size: 30px;
  }
}
@media (max-width:1680px) and (max-width:1024px) {
  #productDetailPage .pageContent .tese .thisBox .coutBox .ul .li .textCout .title {
    font-size: 4vw;
    padding-right: 2vw;
    width: 45%;
  }
}
@media (max-width:1024px) {
  #productDetailPage .pageContent .tese .thisBox .coutBox .ul .li .textCout .content {
    width: 55%;
  }
}
#productDetailPage .pageContent .tese .thisBox .coutBox .ul .li .textCout .content p {
  text-indent: 0;
  color: #000;
}
@media (max-width:1024px) {
  #productDetailPage .pageContent .tese .thisBox .coutBox .ul .li .textCout .content p {
    font-size: 2.8vw;
    padding: 0;
  }
}
@media (min-width:1024px) {
  #productDetailPage .pageContent .tese .thisBox .coutBox .ul .li:nth-child(2n) {
    flex-direction: row-reverse;
  }
}
#aboutPage .pageContent .cpJieshao .thisBox .cenBox {
  height: 460px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: unset;
}
@media (max-width:1360px) {
  #aboutPage .pageContent .cpJieshao .thisBox .cenBox {
    height: 300px;
  }
}
@media (max-width:1360px) and (max-width:1024px) {
  #aboutPage .pageContent .cpJieshao .thisBox .cenBox {
    height: unset;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-wrap: unset;
  }
}
#aboutPage .pageContent .cpJieshao .thisBox .cenBox .left {
  width: 50%;
  height: 100%;
}
@media (max-width:1024px) {
  #aboutPage .pageContent .cpJieshao .thisBox .cenBox .left {
    width: 100%;
  }
}
#aboutPage .pageContent .cpJieshao .thisBox .cenBox .left .imgBox {
  width: 100%;
  height: 100%;
  border-radius: 14px;
  overflow: hidden;
}
#aboutPage .pageContent .cpJieshao .thisBox .cenBox .right {
  width: 50%;
  height: 100%;
  padding-left: 50px;
}
@media (max-width:1024px) {
  #aboutPage .pageContent .cpJieshao .thisBox .cenBox .right {
    width: 100%;
    padding-left: 0;
    margin-top: 8vw;
  }
}
#aboutPage .pageContent .cpJieshao .thisBox .cenBox .right .title {
  font-size: 30px;
}
@media (max-width:1680px) {
  #aboutPage .pageContent .cpJieshao .thisBox .cenBox .right .title {
    font-size: 24px;
  }
}
@media (max-width:1680px) and (max-width:1360px) {
  #aboutPage .pageContent .cpJieshao .thisBox .cenBox .right .title {
    font-size: 16px;
    text-align: justify;
    line-height: 1.5em;
  }
}
#aboutPage .pageContent .cpJieshao .thisBox .cenBox .right .xian {
  width: 30px;
  height: 3px;
  margin: 60px 0;
  background-color: #333;
}
@media (max-width:1360px) {
  #aboutPage .pageContent .cpJieshao .thisBox .cenBox .right .xian {
    margin: 36px 0;
  }
}
#aboutPage .pageContent .cpJieshao .thisBox .cenBox .right .content p {
  color: #333;
}
#aboutPage .pageContent .cpShuju {
  padding: 110px 0;
}
@media (max-width:1680px) {
  #aboutPage .pageContent .cpShuju {
    padding: 90px 0;
  }
}
@media (max-width:1360px) {
  #aboutPage .pageContent .cpShuju {
    padding: 70px 0;
  }
}
@media (max-width:1024px) {
  #aboutPage .pageContent .cpShuju {
    padding: 15vw 0;
  }
}
@media (max-width:1024px) {
  #aboutPage .pageContent .cpShuju {
    padding-top: 0;
  }
}
@media (max-width:1024px) {
  #aboutPage .pageContent .cpShuju .thisBox .cenBox {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: unset;
  }
}
@media (max-width:1024px) {
  #aboutPage .pageContent .cpShuju .thisBox .cenBox .content {
    width: 50%;
  }
}
#aboutPage .pageContent .cpShuju .thisBox .cenBox .ul {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  flex-wrap: unset;
}
@media (max-width:1024px) {
  #aboutPage .pageContent .cpShuju .thisBox .cenBox .ul {
    padding-left: 16VW;
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-wrap: unset;
  }
}
@media (max-width:1024px) {
  #aboutPage .pageContent .cpShuju .thisBox .cenBox .ul .li {
    margin-bottom: 10vw;
  }
}
#aboutPage .pageContent .cpShuju .thisBox .cenBox .ul .li .shuju {
  font-size: 60px;
}
@media (max-width:1680px) {
  #aboutPage .pageContent .cpShuju .thisBox .cenBox .ul .li .shuju {
    font-size: 50px;
  }
}
@media (max-width:1680px) and (max-width:1360px) {
  #aboutPage .pageContent .cpShuju .thisBox .cenBox .ul .li .shuju {
    font-size: 40px;
  }
}
@media (max-width:1680px) and (max-width:1360px) and (max-width:1024px) {
  #aboutPage .pageContent .cpShuju .thisBox .cenBox .ul .li .shuju {
    font-size: 5.6vw;
  }
}
#aboutPage .pageContent .cpShuju .thisBox .cenBox .ul .li .title {
  font-size: 20px;
}
@media (max-width:1360px) {
  #aboutPage .pageContent .cpShuju .thisBox .cenBox .ul .li .title {
    font-size: 14px;
  }
}
@media (max-width:1360px) and (max-width:1024px) {
  #aboutPage .pageContent .cpShuju .thisBox .cenBox .ul .li .title {
    font-size: 2.6vw;
  }
}
#aboutPage .pageContent .cpMap .thisBox .cenBox {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
}
#aboutPage .pageContent .cpMap .thisBox .cenBox .sortTxt {
  font-size: 40px;
  width: 68%;
  text-align: center;
  margin-bottom: 80px;
}
@media (max-width:1360px) {
  #aboutPage .pageContent .cpMap .thisBox .cenBox .sortTxt {
    font-size: 26px;
    margin-bottom: 40px;
  }
}
@media (max-width:1360px) and (max-width:1024px) {
  #aboutPage .pageContent .cpMap .thisBox .cenBox .sortTxt {
    font-size: 4vw;
    width: 100%;
  }
}
#aboutPage .pageContent .cpMap .thisBox .cenBox .imgBox {
  width: 70%;
}
@media (max-width:1024px) {
  #aboutPage .pageContent .cpMap .thisBox .cenBox .imgBox {
    width: 130%;
  }
}
@media (max-width:1024px) {
  #aboutPage .pageContent .mapShow .thisBox {
    overflow: hidden;
  }
}
#aboutPage .pageContent .mapShow .thisBox .cenBox {
  padding: 2vw;
  background-color: #eaeaef;
  border-radius: 2vw;
  position: relative;
}
@media (max-width:1024px) {
  #aboutPage .pageContent .mapShow .thisBox .cenBox {
    width: 100%;
    padding: 0;
    height: 100vw;
  }
}
#aboutPage .pageContent .mapShow .thisBox .cenBox #chartdiv {
  width: 100%;
  height: 36vw;
}
@media (max-width:1024px) {
  #aboutPage .pageContent .mapShow .thisBox .cenBox #chartdiv {
    height: 100%;
  }
}
#aboutPage .pageContent .mapShow .thisBox .cenBox #chartdiv .pointHtmlBox {
  position: relative;
  transition-duration: 0.5s;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.56, -0.01, 0.04, 1);
  z-index: 1;
}
#aboutPage .pageContent .mapShow .thisBox .cenBox #chartdiv .pointHtmlBox .dianBoxAll {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
}
#aboutPage .pageContent .mapShow .thisBox .cenBox #chartdiv .pointHtmlBox .dianBoxAll .xxOn {
  opacity: 0;
  transition-duration: 1s;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.56, -0.01, 0.04, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
  transform: translateY(1vw);
}
#aboutPage .pageContent .mapShow .thisBox .cenBox #chartdiv .pointHtmlBox .dianBoxAll .xxOn .title {
  font-weight: bold;
  margin-bottom: 4px;
  font-size: 12px;
  background-color: #ff954c;
  color: #6e3500;
  padding: 4px 10px;
  border-radius: 100px;
}
#aboutPage .pageContent .mapShow .thisBox .cenBox #chartdiv .pointHtmlBox .dianBoxAll .xxOn .yuan {
  cursor: pointer;
  width: 9px;
  height: 9px;
  background-color: #ff954c;
  border-radius: 50%;
}
#aboutPage .pageContent .mapShow .thisBox .cenBox #chartdiv .pointHtmlBox .dianBoxAll .xxOn .xian {
  width: 1px;
  height: 24px;
  border-radius: 1px;
  background: linear-gradient(to bottom, #ff954c, #ff954c, #ff954c, transparent);
}
#aboutPage .pageContent .mapShow .thisBox .cenBox #chartdiv .pointHtmlBox .dianBoxAll .xxOn.on {
  opacity: 1;
  transform: translateY(0);
}
#aboutPage .pageContent .mapShow .thisBox .cenBox #chartdiv .pointHtmlBox .dianBoxAll .dddd {
  width: 3px;
  height: 3px;
  background-color: #ff954c;
  border-radius: 50%;
}
#aboutPage .pageContent .mapShow .thisBox .cenBox .nanSha {
  position: absolute;
  pointer-events: none;
  z-index: 111111;
  bottom: 2vw;
  right: 2vw;
  transition-duration: 1s;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.56, -0.01, 0.04, 1);
  opacity: 0;
  height: 13vw;
  transform: translateY(4vw);
}
@media (max-width:1024px) {
  #aboutPage .pageContent .mapShow .thisBox .cenBox .nanSha {
    height: 26vw;
  }
}
#aboutPage .pageContent .mapShow .thisBox .cenBox .nanSha img {
  object-fit: contain;
  height: 100%;
}
#aboutPage .pageContent .mapShow .thisBox .cenBox .nanSha.on {
  transform: translateY(0);
  opacity: 1;
}
#aboutPage .pageContent .mapShow .thisBox .cenBox .gunlunTxt {
  position: absolute;
  pointer-events: none;
  bottom: 1vw;
  transition-duration: 1s;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.56, -0.01, 0.04, 1);
  left: 50%;
  font-size: 0.8vw;
  background-color: #333;
  padding: 2px 16px;
  border-radius: 50px;
  color: #fff;
  transform: translateX(-50%);
}
@media (max-width:1024px) {
  #aboutPage .pageContent .mapShow .thisBox .cenBox .gunlunTxt {
    font-size: 3vw;
  }
}
#aboutPage .pageContent .mapShow .thisBox .cenBox .gunlunTxt.on {
  opacity: 1;
}
#honorPage .pageContent .honorList .thisBox .cenBox .ul {
  gap: 1.33333%;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: unset;
  flex-wrap: wrap;
}
@media (max-width:1024px) {
  #honorPage .pageContent .honorList .thisBox .cenBox .ul {
    width: 100%;
    justify-content: space-between;
    gap: unset;
  }
}
#honorPage .pageContent .honorList .thisBox .cenBox .ul .li {
  width: 24%;
}
@media (max-width:1024px) {
  #honorPage .pageContent .honorList .thisBox .cenBox .ul .li {
    margin-bottom: 6vw;
    width: 48%;
  }
}
#honorPage .pageContent .honorList .thisBox .cenBox .ul .li .box {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
}
#honorPage .pageContent .honorList .thisBox .cenBox .ul .li .box .imgBox {
  position: relative;
  z-index: 1;
  width: 80%;
  height: 350px;
}
@media (max-width:1360px) {
  #honorPage .pageContent .honorList .thisBox .cenBox .ul .li .box .imgBox {
    height: 220px;
  }
}
@media (max-width:1360px) and (max-width:1024px) {
  #honorPage .pageContent .honorList .thisBox .cenBox .ul .li .box .imgBox {
    height: 36vw;
  }
}
#honorPage .pageContent .honorList .thisBox .cenBox .ul .li .box .imgBox img {
  object-fit: contain;
  position: relative;
  z-index: 1;
}
#honorPage .pageContent .honorList .thisBox .cenBox .ul .li .box .imgBox::after {
  bottom: 0;
  left: 50%;
  content: '';
  position: absolute;
  display: block;
  width: 70%;
  height: 10px;
  transform: translate(-50%, 80%);
  border-radius: 50%;
  filter: blur(5px);
  background-color: rgba(0, 0, 0, 0.2);
}
#honorPage .pageContent .honorList .thisBox .cenBox .ul .li .box .textBox {
  position: relative;
  z-index: 1;
  padding: 40px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
}
@media (max-width:1360px) {
  #honorPage .pageContent .honorList .thisBox .cenBox .ul .li .box .textBox {
    padding: 20px 0;
  }
}
#honorPage .pageContent .honorList .thisBox .cenBox .ul .li .box .textBox .shuju {
  font-size: 20px;
}
@media (max-width:1360px) {
  #honorPage .pageContent .honorList .thisBox .cenBox .ul .li .box .textBox .shuju {
    font-size: 14px;
  }
}
@media (max-width:1360px) and (max-width:1024px) {
  #honorPage .pageContent .honorList .thisBox .cenBox .ul .li .box .textBox .shuju {
    font-size: 2.4vw;
  }
}
#honorPage .pageContent .honorList .thisBox .cenBox .ul .li .box .textBox .shuju span {
  font-size: 50px;
}
@media (max-width:1360px) {
  #honorPage .pageContent .honorList .thisBox .cenBox .ul .li .box .textBox .shuju span {
    font-size: 30px;
  }
}
@media (max-width:1360px) and (max-width:1024px) {
  #honorPage .pageContent .honorList .thisBox .cenBox .ul .li .box .textBox .shuju span {
    font-size: 6vw;
  }
}
#honorPage .pageContent .honorList .thisBox .cenBox .ul .li .box .textBox .title {
  font-size: 30px;
}
@media (max-width:1360px) {
  #honorPage .pageContent .honorList .thisBox .cenBox .ul .li .box .textBox .title {
    font-size: 20px;
  }
}
@media (max-width:1360px) and (max-width:1024px) {
  #honorPage .pageContent .honorList .thisBox .cenBox .ul .li .box .textBox .title {
    font-size: 3vw;
  }
}
#honorPage .pageContent .honorList .thisBox .cenBox .ul .li .box .textBox .sq {
  font-size: 20px;
  margin-top: 10px;
}
@media (max-width:1360px) {
  #honorPage .pageContent .honorList .thisBox .cenBox .ul .li .box .textBox .sq {
    font-size: 14px;
  }
}
@media (max-width:1360px) and (max-width:1024px) {
  #honorPage .pageContent .honorList .thisBox .cenBox .ul .li .box .textBox .sq {
    font-size: 2.4vw;
    margin-top: 1vw;
  }
}
#honorPage .pageContent .honorList .thisBox .cenBox .ul .li .box::after {
  content: '';
  position: absolute;
  display: block;
  width: 100%;
  height: 450px;
  bottom: 0;
  background-color: #ebebed;
  border-radius: 10px;
}
@media (max-width:1360px) {
  #honorPage .pageContent .honorList .thisBox .cenBox .ul .li .box::after {
    height: 280px;
  }
}
@media (max-width:1360px) and (max-width:1024px) {
  #honorPage .pageContent .honorList .thisBox .cenBox .ul .li .box::after {
    height: 50vw;
  }
}
#servicePage .pageContent {
  padding-bottom: 0;
}
#servicePage .pageContent .baozhang {
  padding-bottom: 110px;
}
@media (max-width:1680px) {
  #servicePage .pageContent .baozhang {
    padding-bottom: 90px;
  }
}
@media (max-width:1360px) {
  #servicePage .pageContent .baozhang {
    padding-bottom: 70px;
  }
}
@media (max-width:1024px) {
  #servicePage .pageContent .baozhang {
    padding-bottom: 15vw;
  }
}
@media (max-width:1024px) {
  #servicePage .pageContent .baozhang {
    padding-bottom: 8vw;
  }
}
#servicePage .pageContent .baozhang .thisBox .cenBox {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
}
#servicePage .pageContent .baozhang .thisBox .cenBox .biaoti {
  font-size: 40px;
  margin-bottom: 40px;
}
@media (max-width:1360px) {
  #servicePage .pageContent .baozhang .thisBox .cenBox .biaoti {
    font-size: 30px;
  }
}
@media (max-width:1360px) and (max-width:1024px) {
  #servicePage .pageContent .baozhang .thisBox .cenBox .biaoti {
    font-size: 4vw;
    margin-bottom: 6vw;
  }
}
#servicePage .pageContent .baozhang .thisBox .cenBox .ul {
  width: 100%;
  gap: 1.33333%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
}
#servicePage .pageContent .baozhang .thisBox .cenBox .ul .li {
  width: 24%;
}
@media (max-width:1024px) {
  #servicePage .pageContent .baozhang .thisBox .cenBox .ul .li {
    flex: 1;
  }
}
#servicePage .pageContent .baozhang .thisBox .cenBox .ul .li .box {
  width: 100%;
  padding: 38px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
  background-color: #ebebed;
  border-radius: 10px;
  height: 256px;
}
@media (max-width:1360px) {
  #servicePage .pageContent .baozhang .thisBox .cenBox .ul .li .box {
    height: 180px;
  }
}
@media (max-width:1360px) and (max-width:1024px) {
  #servicePage .pageContent .baozhang .thisBox .cenBox .ul .li .box {
    padding: 4vw 0;
    height: unset;
  }
}
@media (max-width:1360px) {
  #servicePage .pageContent .baozhang .thisBox .cenBox .ul .li .box .ico {
    width: 70px;
    height: 70px;
  }
}
@media (max-width:1360px) and (max-width:1024px) {
  #servicePage .pageContent .baozhang .thisBox .cenBox .ul .li .box .ico {
    width: 8vw;
    height: 8vw;
  }
}
#servicePage .pageContent .baozhang .thisBox .cenBox .ul .li .box .title {
  font-size: 30px;
  margin-top: 24px;
}
@media (max-width:1360px) {
  #servicePage .pageContent .baozhang .thisBox .cenBox .ul .li .box .title {
    font-size: 20px;
    margin-top: 12px;
  }
}
@media (max-width:1360px) and (max-width:1024px) {
  #servicePage .pageContent .baozhang .thisBox .cenBox .ul .li .box .title {
    font-size: 3vw;
  }
}
#servicePage .pageContent .baozhang .thisBox .cenBox .ul .li .box .content p {
  text-indent: 0;
  color: #1A1311;
}
@media (max-width:1024px) {
  #servicePage .pageContent .baozhang .thisBox .cenBox .ul .li .box .content p {
    font-size: 2.4vw;
  }
}
#servicePage .pageContent .wuyou {
  padding-bottom: 110px;
}
@media (max-width:1680px) {
  #servicePage .pageContent .wuyou {
    padding-bottom: 90px;
  }
}
@media (max-width:1360px) {
  #servicePage .pageContent .wuyou {
    padding-bottom: 70px;
  }
}
@media (max-width:1024px) {
  #servicePage .pageContent .wuyou {
    padding-bottom: 15vw;
  }
}
@media (max-width:1024px) {
  #servicePage .pageContent .wuyou {
    padding-bottom: 8vw;
  }
}
#servicePage .pageContent .wuyou .thisBox .cenBox {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
}
#servicePage .pageContent .wuyou .thisBox .cenBox .biaoti {
  font-size: 40px;
  margin-bottom: 40px;
}
@media (max-width:1360px) {
  #servicePage .pageContent .wuyou .thisBox .cenBox .biaoti {
    font-size: 30px;
  }
}
@media (max-width:1360px) and (max-width:1024px) {
  #servicePage .pageContent .wuyou .thisBox .cenBox .biaoti {
    font-size: 4vw;
    margin-bottom: 6vw;
  }
}
#servicePage .pageContent .wuyou .thisBox .cenBox .ul {
  width: 100%;
  gap: 1.33333%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
}
#servicePage .pageContent .wuyou .thisBox .cenBox .ul .li {
  width: 24%;
}
@media (max-width:1024px) {
  #servicePage .pageContent .wuyou .thisBox .cenBox .ul .li {
    flex: 1;
  }
}
#servicePage .pageContent .wuyou .thisBox .cenBox .ul .li .box {
  width: 100%;
  padding: 38px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
  background-color: #ebebed;
  border-radius: 10px;
  height: 256px;
}
@media (max-width:1360px) {
  #servicePage .pageContent .wuyou .thisBox .cenBox .ul .li .box {
    height: 180px;
  }
}
@media (max-width:1360px) and (max-width:1024px) {
  #servicePage .pageContent .wuyou .thisBox .cenBox .ul .li .box {
    padding: 4vw 0;
    height: unset;
  }
}
@media (max-width:1360px) {
  #servicePage .pageContent .wuyou .thisBox .cenBox .ul .li .box .ico {
    width: 70px;
    height: 70px;
  }
}
@media (max-width:1360px) and (max-width:1024px) {
  #servicePage .pageContent .wuyou .thisBox .cenBox .ul .li .box .ico {
    width: 8vw;
    height: 8vw;
  }
}
#servicePage .pageContent .wuyou .thisBox .cenBox .ul .li .box .title {
  font-size: 30px;
  margin-top: 24px;
}
@media (max-width:1360px) {
  #servicePage .pageContent .wuyou .thisBox .cenBox .ul .li .box .title {
    font-size: 20px;
    margin-top: 12px;
  }
}
@media (max-width:1360px) and (max-width:1024px) {
  #servicePage .pageContent .wuyou .thisBox .cenBox .ul .li .box .title {
    font-size: 3vw;
  }
}
#servicePage .pageContent .wuyou .thisBox .cenBox .ul .li .box .content p {
  text-indent: 0;
  color: #1A1311;
}
@media (max-width:1024px) {
  #servicePage .pageContent .wuyou .thisBox .cenBox .ul .li .box .content p {
    font-size: 2.4vw;
  }
}
@media (max-width:1024px) {
  #servicePage .pageContent .wuyou .thisBox .cenBox .ul {
    display: flex;
    flex-direction: row;
    align-items: unset;
    justify-content: space-between;
    flex-wrap: wrap;
  }
}
@media (max-width:1024px) {
  #servicePage .pageContent .wuyou .thisBox .cenBox .ul .li {
    width: 48%;
    margin-bottom: 2vw;
    flex: none;
  }
}
#servicePage .pageContent .yizhanshi .thisBox .cenBox {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
}
#servicePage .pageContent .yizhanshi .thisBox .cenBox .biaoti {
  font-size: 40px;
  margin-bottom: 40px;
}
@media (max-width:1360px) {
  #servicePage .pageContent .yizhanshi .thisBox .cenBox .biaoti {
    font-size: 30px;
  }
}
@media (max-width:1360px) and (max-width:1024px) {
  #servicePage .pageContent .yizhanshi .thisBox .cenBox .biaoti {
    font-size: 4vw;
    margin-bottom: 6vw;
  }
}
#servicePage .pageContent .yizhanshi .thisBox .cenBox .ul {
  width: 100%;
  gap: 1.33333%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
}
@media (max-width:1024px) {
  #servicePage .pageContent .yizhanshi .thisBox .cenBox .ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-wrap: unset;
  }
}
#servicePage .pageContent .yizhanshi .thisBox .cenBox .ul .li {
  width: 24%;
}
@media (max-width:1024px) {
  #servicePage .pageContent .yizhanshi .thisBox .cenBox .ul .li {
    width: 100%;
    margin-bottom: 6vw;
  }
}
#servicePage .pageContent .yizhanshi .thisBox .cenBox .ul .li .box {
  position: relative;
  width: 100%;
  height: 256px;
}
@media (max-width:1360px) {
  #servicePage .pageContent .yizhanshi .thisBox .cenBox .ul .li .box {
    height: 180px;
  }
}
@media (max-width:1360px) and (max-width:1024px) {
  #servicePage .pageContent .yizhanshi .thisBox .cenBox .ul .li .box {
    height: 44vw;
    overflow: hidden;
    border-radius: 2vw;
  }
}
#servicePage .pageContent .yizhanshi .thisBox .cenBox .ul .li .box .textBox {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
}
#servicePage .pageContent .yizhanshi .thisBox .cenBox .ul .li .box .textBox .txt {
  font-size: 30px;
  color: #fff;
}
@media (max-width:1360px) {
  #servicePage .pageContent .yizhanshi .thisBox .cenBox .ul .li .box .textBox .txt {
    font-size: 20px;
  }
}
@media (max-width:1360px) and (max-width:1024px) {
  #servicePage .pageContent .yizhanshi .thisBox .cenBox .ul .li .box .textBox .txt {
    font-size: 4vw;
  }
}
#servicePage .pageContent .yizhanshi .thisBox .cenBox .ul .li .box .bgImg {
  width: 100%;
  height: 100%;
}
#servicePage .pageContent .yizhanshi .thisBox .cenBox .ul .li .box .bgImg img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
#supportPage .pageContent .supportBox .thisBox .cenBox {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
}
@media (max-width:1680px) {
  #supportPage .pageContent .supportBox .thisBox .cenBox .imgBox {
    width: 90%;
    margin: 0 auto;
  }
}
#supportPage .pageContent .supportBox .thisBox .cenBox .mendian {
  margin-top: 50px;
  width: 258px;
  border-radius: 10px;
  border: 1px solid #333;
  height: 50px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
}
@media (max-width:1360px) {
  #supportPage .pageContent .supportBox .thisBox .cenBox .mendian {
    margin-top: 20px;
    width: 200px;
    height: 40px;
  }
}
@media (max-width:1360px) and (max-width:1024px) {
  #supportPage .pageContent .supportBox .thisBox .cenBox .mendian {
    width: 36vw;
    height: 8vw;
    border-color: #999;
    border-radius: 1vw;
  }
}
#supportPage .pageContent .supportBox .thisBox .cenBox .mendian .txt {
  font-size: 20px;
}
@media (max-width:1360px) {
  #supportPage .pageContent .supportBox .thisBox .cenBox .mendian .txt {
    font-size: 16px;
  }
}
@media (max-width:1360px) and (max-width:1024px) {
  #supportPage .pageContent .supportBox .thisBox .cenBox .mendian .txt {
    font-size: 3vw;
  }
}
#contactPage .pageContent {
  padding-bottom: 0;
}
#contactPage .pageContent .qudeConta > .thisBox > .cenBox {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: unset;
}
#contactPage .pageContent .qudeConta > .thisBox > .cenBox .left {
  width: 50%;
}
@media (max-width:1024px) {
  #contactPage .pageContent .qudeConta > .thisBox > .cenBox .left {
    width: 100%;
  }
}
#contactPage .pageContent .qudeConta > .thisBox > .cenBox .left .biaoti {
  align-items: center;
}
#contactPage .pageContent .qudeConta > .thisBox > .cenBox .left .ul .li {
  width: 100%;
  background-color: #ebebed;
  border-radius: 10px;
  margin-bottom: 58px;
  padding: 30px;
  min-height: 322px;
}
@media (max-width:1360px) {
  #contactPage .pageContent .qudeConta > .thisBox > .cenBox .left .ul .li {
    min-height: 240px;
    margin-bottom: 30px;
  }
}
@media (max-width:1360px) and (max-width:1024px) {
  #contactPage .pageContent .qudeConta > .thisBox > .cenBox .left .ul .li {
    padding: 2vw;
    min-height: 34vw;
  }
}
#contactPage .pageContent .qudeConta > .thisBox > .cenBox .left .ul .li .box {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: unset;
}
#contactPage .pageContent .qudeConta > .thisBox > .cenBox .left .ul .li .box .topBox {
  margin-bottom: 80px;
}
#contactPage .pageContent .qudeConta > .thisBox > .cenBox .left .ul .li .box .topBox .title {
  font-size: 24px;
}
@media (max-width:1360px) {
  #contactPage .pageContent .qudeConta > .thisBox > .cenBox .left .ul .li .box .topBox .title {
    font-size: 16px;
  }
}
@media (max-width:1360px) and (max-width:1024px) {
  #contactPage .pageContent .qudeConta > .thisBox > .cenBox .left .ul .li .box .topBox .title {
    font-size: 3.8vw;
  }
}
#contactPage .pageContent .qudeConta > .thisBox > .cenBox .left .ul .li .box .topBox .dianhua {
  font-size: 40px;
  font-weight: bold;
}
@media (max-width:1360px) {
  #contactPage .pageContent .qudeConta > .thisBox > .cenBox .left .ul .li .box .topBox .dianhua {
    font-size: 30px;
  }
}
@media (max-width:1360px) and (max-width:1024px) {
  #contactPage .pageContent .qudeConta > .thisBox > .cenBox .left .ul .li .box .topBox .dianhua {
    font-size: 4vw;
  }
}
#contactPage .pageContent .qudeConta > .thisBox > .cenBox .left .ul .li .box .topBox .yunying {
  font-size: 20px;
  color: #808080;
}
@media (max-width:1360px) {
  #contactPage .pageContent .qudeConta > .thisBox > .cenBox .left .ul .li .box .topBox .yunying {
    font-size: 14px;
  }
}
@media (max-width:1360px) and (max-width:1024px) {
  #contactPage .pageContent .qudeConta > .thisBox > .cenBox .left .ul .li .box .topBox .yunying {
    font-size: 2.8vw;
  }
}
@media (max-width:1360px) {
  #contactPage .pageContent .qudeConta > .thisBox > .cenBox .left .ul .li .box .bottomBox {
    width: 80%;
  }
}
@media (max-width:1360px) and (max-width:1024px) {
  #contactPage .pageContent .qudeConta > .thisBox > .cenBox .left .ul .li .box .bottomBox {
    width: 100%;
  }
}
#contactPage .pageContent .qudeConta > .thisBox > .cenBox .left .ul .li .box .bottomBox .dizhi {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: unset;
}
@media (max-width:1024px) {
  #contactPage .pageContent .qudeConta > .thisBox > .cenBox .left .ul .li .box .bottomBox .dizhi {
    width: 100%;
  }
}
#contactPage .pageContent .qudeConta > .thisBox > .cenBox .left .ul .li .box .bottomBox .dizhi .lable {
  width: 60px;
  font-size: 20px;
  margin-bottom: 4px;
}
@media (max-width:1680px) {
  #contactPage .pageContent .qudeConta > .thisBox > .cenBox .left .ul .li .box .bottomBox .dizhi .lable {
    font-size: 16px;
  }
}
@media (max-width:1680px) and (max-width:1360px) {
  #contactPage .pageContent .qudeConta > .thisBox > .cenBox .left .ul .li .box .bottomBox .dizhi .lable {
    font-size: 14px;
  }
}
@media (max-width:1680px) and (max-width:1360px) and (max-width:1024px) {
  #contactPage .pageContent .qudeConta > .thisBox > .cenBox .left .ul .li .box .bottomBox .dizhi .lable {
    font-size: 3.4vw;
  }
}
#contactPage .pageContent .qudeConta > .thisBox > .cenBox .left .ul .li .box .bottomBox .dizhi .txt {
  padding-right: 100px;
  width: calc(100% - 60px);
  font-size: 20px;
  margin-bottom: 4px;
}
@media (max-width:1680px) {
  #contactPage .pageContent .qudeConta > .thisBox > .cenBox .left .ul .li .box .bottomBox .dizhi .txt {
    font-size: 16px;
  }
}
@media (max-width:1680px) and (max-width:1360px) {
  #contactPage .pageContent .qudeConta > .thisBox > .cenBox .left .ul .li .box .bottomBox .dizhi .txt {
    font-size: 14px;
  }
}
@media (max-width:1680px) and (max-width:1360px) and (max-width:1024px) {
  #contactPage .pageContent .qudeConta > .thisBox > .cenBox .left .ul .li .box .bottomBox .dizhi .txt {
    font-size: 3.4vw;
    padding-right: 0;
  }
}
#contactPage .pageContent .qudeConta > .thisBox > .cenBox .left .ul .li .box .bottomBox .youxiang {
  font-size: 20px;
}
@media (max-width:1680px) {
  #contactPage .pageContent .qudeConta > .thisBox > .cenBox .left .ul .li .box .bottomBox .youxiang {
    font-size: 16px;
  }
}
@media (max-width:1680px) and (max-width:1360px) {
  #contactPage .pageContent .qudeConta > .thisBox > .cenBox .left .ul .li .box .bottomBox .youxiang {
    font-size: 14px;
  }
}
@media (max-width:1680px) and (max-width:1360px) and (max-width:1024px) {
  #contactPage .pageContent .qudeConta > .thisBox > .cenBox .left .ul .li .box .bottomBox .youxiang {
    font-size: 2.6vw;
  }
}
#contactPage .pageContent .qudeConta > .thisBox > .cenBox .left .ul .li .box .ico {
  position: absolute;
  right: 0;
  bottom: 0;
}
@media (max-width:1360px) {
  #contactPage .pageContent .qudeConta > .thisBox > .cenBox .left .ul .li .box .ico img {
    width: 50px;
    height: 50px;
  }
}
@media (max-width:1360px) and (max-width:1024px) {
  #contactPage .pageContent .qudeConta > .thisBox > .cenBox .left .ul .li .box .ico img {
    width: 8vw;
    height: 8vw;
  }
}
#contactPage .pageContent .qudeConta > .thisBox > .cenBox .left .ul .li:last-child {
  margin-bottom: 0;
}
#contactPage .pageContent .qudeConta > .thisBox > .cenBox .right {
  width: 34%;
}
@media (max-width:1024px) {
  #contactPage .pageContent .qudeConta > .thisBox > .cenBox .right {
    display: none;
  }
}
#contactPage .pageContent .qudeConta > .thisBox > .cenBox .right .formBiaodan {
  padding: 0;
}
#contactPage .pageContent .qudeConta > .thisBox > .cenBox .right .formBiaodan .thisBox .cenBox {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
}
#contactPage .pageContent .qudeConta > .thisBox > .cenBox .right .formBiaodan .thisBox .cenBox .biaodan {
  margin-top: 30px;
}
#contactPage .pageContent .qudeConta > .thisBox > .cenBox .right .formBiaodan .thisBox .cenBox .biaodan form .topInput {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
}
#contactPage .pageContent .qudeConta > .thisBox > .cenBox .right .formBiaodan .thisBox .cenBox .biaodan form .topInput .inputBox {
  width: 100%;
  margin-bottom: 20px;
}
@media (max-width:1360px) {
  #contactPage .pageContent .qudeConta > .thisBox > .cenBox .right .formBiaodan .thisBox .cenBox .biaodan form .topInput .inputBox {
    margin-bottom: 10px;
  }
}
#contactPage .pageContent .qudeConta > .thisBox > .cenBox .right .formBiaodan .thisBox .cenBox .biaodan form .textarea {
  margin-top: 0;
}
#contactPage .pageContent .qudeConta > .thisBox > .cenBox .right .formBiaodan .thisBox .cenBox .biaodan form .button {
  width: 100%;
}
#contactPage .pageContent .qudeConta > .thisBox > .cenBox .right .formBiaodan .thisBox .cenBox .biaodan form .button .submit {
  width: 100%;
}
#contactPage .pageContent .xsSuppot {
  padding: 110px 0;
}
@media (max-width:1680px) {
  #contactPage .pageContent .xsSuppot {
    padding: 90px 0;
  }
}
@media (max-width:1360px) {
  #contactPage .pageContent .xsSuppot {
    padding: 70px 0;
  }
}
@media (max-width:1024px) {
  #contactPage .pageContent .xsSuppot {
    padding: 15vw 0;
  }
}
#contactPage .pageContent .xsSuppot .thisBox .cenBox {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
}
#contactPage .pageContent .xsSuppot .thisBox .cenBox .biaoti .name {
  font-size: 40px;
}
@media (max-width:1360px) {
  #contactPage .pageContent .xsSuppot .thisBox .cenBox .biaoti .name {
    font-size: 30px;
  }
}
@media (max-width:1360px) and (max-width:1024px) {
  #contactPage .pageContent .xsSuppot .thisBox .cenBox .biaoti .name {
    font-size: 5vw;
  }
}
#contactPage .pageContent .xsSuppot .thisBox .cenBox .ul {
  gap: 1%;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: unset;
}
@media (max-width:1024px) {
  #contactPage .pageContent .xsSuppot .thisBox .cenBox .ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-wrap: unset;
  }
}
#contactPage .pageContent .xsSuppot .thisBox .cenBox .ul .li {
  width: 19%;
}
@media (max-width:1024px) {
  #contactPage .pageContent .xsSuppot .thisBox .cenBox .ul .li {
    width: 100%;
    margin-bottom: 2vw;
  }
  #contactPage .pageContent .xsSuppot .thisBox .cenBox .ul .li:last-child {
    margin-bottom: 0;
  }
}
@media (max-width:1024px) {
  #contactPage .pageContent .xsSuppot .thisBox .cenBox .ul .li .box {
    height: 22vw;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: unset;
  }
}
#contactPage .pageContent .xsSuppot .thisBox .cenBox .ul .li .box .title {
  font-size: 28px;
  margin-bottom: 24px;
}
@media (max-width:1680px) {
  #contactPage .pageContent .xsSuppot .thisBox .cenBox .ul .li .box .title {
    font-size: 22px;
    margin-bottom: 18px;
  }
}
@media (max-width:1680px) and (max-width:1360px) {
  #contactPage .pageContent .xsSuppot .thisBox .cenBox .ul .li .box .title {
    font-size: 16px;
    margin-bottom: 8px;
  }
}
@media (max-width:1680px) and (max-width:1360px) and (max-width:1024px) {
  #contactPage .pageContent .xsSuppot .thisBox .cenBox .ul .li .box .title {
    font-size: 3vw;
  }
}
#contactPage .pageContent .xsSuppot .thisBox .cenBox .ul .li .box .imgBox {
  border-radius: 10px;
  overflow: hidden;
  height: 130px;
}
@media (max-width:1360px) {
  #contactPage .pageContent .xsSuppot .thisBox .cenBox .ul .li .box .imgBox {
    height: 80px;
  }
}
@media (max-width:1360px) and (max-width:1024px) {
  #contactPage .pageContent .xsSuppot .thisBox .cenBox .ul .li .box .imgBox {
    width: 30vw;
    height: 100%;
  }
}
#contactPage .pageContent .xsSuppot .thisBox .cenBox .ul .li .box .textBox {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: unset;
  background-color: #fff;
  padding: 36px;
}
@media (max-width:1680px) {
  #contactPage .pageContent .xsSuppot .thisBox .cenBox .ul .li .box .textBox {
    padding: 30px;
  }
}
@media (max-width:1680px) and (max-width:1360px) {
  #contactPage .pageContent .xsSuppot .thisBox .cenBox .ul .li .box .textBox {
    padding: 20px;
  }
}
@media (max-width:1680px) and (max-width:1360px) and (max-width:1024px) {
  #contactPage .pageContent .xsSuppot .thisBox .cenBox .ul .li .box .textBox {
    padding: 2vw;
    height: 100%;
    width: calc(100% - 30vw);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: unset;
    padding-left: 4vw;
  }
}
#contactPage .pageContent .xsSuppot .thisBox .cenBox .ul .li .box .textBox .content p {
  text-indent: 0;
  color: #333;
}
@media (max-width:1680px) {
  #contactPage .pageContent .xsSuppot .thisBox .cenBox .ul .li .box .textBox .content p {
    font-size: 14px;
  }
}
@media (max-width:1680px) and (max-width:1360px) {
  #contactPage .pageContent .xsSuppot .thisBox .cenBox .ul .li .box .textBox .content p {
    font-size: 12px;
  }
}
@media (max-width:1680px) and (max-width:1360px) and (max-width:1024px) {
  #contactPage .pageContent .xsSuppot .thisBox .cenBox .ul .li .box .textBox .content p {
    font-size: 2.4vw;
    padding: 0;
    line-height: 1.5em;
  }
}
#contactPage .pageContent .daili {
  position: relative;
}
#contactPage .pageContent .daili .thisBox {
  padding: 110px 0;
  position: relative;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.6);
}
@media (max-width:1680px) {
  #contactPage .pageContent .daili .thisBox {
    padding: 90px 0;
  }
}
@media (max-width:1360px) {
  #contactPage .pageContent .daili .thisBox {
    padding: 70px 0;
  }
}
@media (max-width:1024px) {
  #contactPage .pageContent .daili .thisBox {
    padding: 15vw 0;
  }
}
#contactPage .pageContent .daili .thisBox .cenBox {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
}
#contactPage .pageContent .daili .thisBox .cenBox .biaoti .name {
  color: #fff;
  font-size: 40px;
}
@media (max-width:1360px) {
  #contactPage .pageContent .daili .thisBox .cenBox .biaoti .name {
    font-size: 30px;
  }
}
@media (max-width:1360px) and (max-width:1024px) {
  #contactPage .pageContent .daili .thisBox .cenBox .biaoti .name {
    font-size: 5vw;
  }
}
#contactPage .pageContent .daili .thisBox .cenBox .ul {
  width: 80%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
}
@media (max-width:1024px) {
  #contactPage .pageContent .daili .thisBox .cenBox .ul {
    width: 100%;
    justify-content: space-between;
  }
}
#contactPage .pageContent .daili .thisBox .cenBox .ul .li {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
}
@media (max-width:1024px) {
  #contactPage .pageContent .daili .thisBox .cenBox .ul .li {
    flex: none;
  }
}
#contactPage .pageContent .daili .thisBox .cenBox .ul .li .box {
  border-radius: 50%;
  border: 1px solid #fff;
  width: 210px;
  height: 210px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
}
@media (max-width:1680px) {
  #contactPage .pageContent .daili .thisBox .cenBox .ul .li .box {
    width: 150px;
    height: 150px;
  }
}
@media (max-width:1680px) and (max-width:1360px) {
  #contactPage .pageContent .daili .thisBox .cenBox .ul .li .box {
    width: 120px;
    height: 120px;
  }
}
@media (max-width:1680px) and (max-width:1360px) and (max-width:1024px) {
  #contactPage .pageContent .daili .thisBox .cenBox .ul .li .box {
    width: 24vw;
    height: 24vw;
    border-color: rgba(255, 255, 255, 0.5);
  }
}
@media (max-width:1680px) {
  #contactPage .pageContent .daili .thisBox .cenBox .ul .li .box .ico {
    width: 50px;
    height: 50px;
  }
}
@media (max-width:1680px) and (max-width:1360px) {
  #contactPage .pageContent .daili .thisBox .cenBox .ul .li .box .ico {
    width: 34px;
    height: 34px;
  }
}
@media (max-width:1680px) and (max-width:1360px) and (max-width:1024px) {
  #contactPage .pageContent .daili .thisBox .cenBox .ul .li .box .ico {
    width: 7vw;
    height: 7vw;
  }
}
@media (max-width:1680px) {
  #contactPage .pageContent .daili .thisBox .cenBox .ul .li .box .ico img {
    object-fit: contain;
    width: 100%;
    height: 100%;
  }
}
#contactPage .pageContent .daili .thisBox .cenBox .ul .li .box .title {
  color: #fff;
  font-size: 24px;
}
@media (max-width:1680px) {
  #contactPage .pageContent .daili .thisBox .cenBox .ul .li .box .title {
    font-size: 16px;
  }
}
@media (max-width:1680px) and (max-width:1360px) {
  #contactPage .pageContent .daili .thisBox .cenBox .ul .li .box .title {
    font-size: 14px;
  }
}
#contactPage .pageContent .daili .bgImg {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
}
#contactPage .pageContent .daili .bgImg img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
#contactPage .pageContent .dailiChoose {
  padding-top: 110px;
}
@media (max-width:1680px) {
  #contactPage .pageContent .dailiChoose {
    padding-top: 90px;
  }
}
@media (max-width:1360px) {
  #contactPage .pageContent .dailiChoose {
    padding-top: 70px;
  }
}
@media (max-width:1024px) {
  #contactPage .pageContent .dailiChoose {
    padding-top: 15vw;
  }
}
#contactPage .pageContent .dailiChoose .thisBox .cenBox {
  width: 1136px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
}
@media (max-width: 1180px) {
  #contactPage .pageContent .dailiChoose .thisBox .cenBox {
    width: 90%;
  }
}
#contactPage .pageContent .dailiChoose .thisBox .cenBox .biaoti {
  align-items: center;
}
#contactPage .pageContent .dailiChoose .thisBox .cenBox .biaoti .name {
  font-size: 40px;
}
@media (max-width:1360px) {
  #contactPage .pageContent .dailiChoose .thisBox .cenBox .biaoti .name {
    font-size: 30px;
  }
}
@media (max-width:1360px) and (max-width:1024px) {
  #contactPage .pageContent .dailiChoose .thisBox .cenBox .biaoti .name {
    font-size: 5vw;
  }
}
#contactPage .pageContent .dailiChoose .thisBox .cenBox .biaoti .subname {
  width: 70%;
}
#contactPage .pageContent .dailiChoose .thisBox .cenBox .shaixuan {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  flex-wrap: unset;
}
#contactPage .pageContent .dailiChoose .thisBox .cenBox .shaixuan .sxBox {
  position: relative;
  width: 45%;
  height: 70px;
}
@media (max-width:1360px) {
  #contactPage .pageContent .dailiChoose .thisBox .cenBox .shaixuan .sxBox {
    height: 46px;
  }
}
@media (max-width:1360px) and (max-width:1024px) {
  #contactPage .pageContent .dailiChoose .thisBox .cenBox .shaixuan .sxBox {
    height: 8vw;
  }
}
#contactPage .pageContent .dailiChoose .thisBox .cenBox .shaixuan .sxBox .inputBox {
  position: relative;
  z-index: 1;
  cursor: pointer;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: unset;
  border-bottom: 2px solid #707070;
  color: #808080;
  font-size: 30px;
}
@media (max-width:1680px) {
  #contactPage .pageContent .dailiChoose .thisBox .cenBox .shaixuan .sxBox .inputBox {
    font-size: 24px;
  }
}
@media (max-width:1680px) and (max-width:1360px) {
  #contactPage .pageContent .dailiChoose .thisBox .cenBox .shaixuan .sxBox .inputBox {
    font-size: 18px;
  }
}
@media (max-width:1680px) and (max-width:1360px) and (max-width:1024px) {
  #contactPage .pageContent .dailiChoose .thisBox .cenBox .shaixuan .sxBox .inputBox {
    font-size: 3vw;
    border-width: 1px;
  }
}
#contactPage .pageContent .dailiChoose .thisBox .cenBox .shaixuan .sxBox .inputBox.change {
  color: #fb7416;
}
#contactPage .pageContent .dailiChoose .thisBox .cenBox .shaixuan .sxBox .iconfont {
  position: absolute;
  z-index: 1;
  right: 0;
  top: 20px;
  font-size: 30px;
  transition-duration: 0.5s;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.56, -0.01, 0.04, 1);
}
@media (max-width:1680px) {
  #contactPage .pageContent .dailiChoose .thisBox .cenBox .shaixuan .sxBox .iconfont {
    font-size: 24px;
  }
}
@media (max-width:1680px) and (max-width:1360px) {
  #contactPage .pageContent .dailiChoose .thisBox .cenBox .shaixuan .sxBox .iconfont {
    top: 10px;
  }
}
@media (max-width:1680px) and (max-width:1360px) and (max-width:1024px) {
  #contactPage .pageContent .dailiChoose .thisBox .cenBox .shaixuan .sxBox .iconfont {
    font-size: 3vw;
  }
}
#contactPage .pageContent .dailiChoose .thisBox .cenBox .shaixuan .sxBox .openBox {
  overflow: hidden;
  position: absolute;
  top: 110%;
  width: 100%;
  left: 0;
  pointer-events: none;
}
#contactPage .pageContent .dailiChoose .thisBox .cenBox .shaixuan .sxBox .openBox .neirBox {
  background-color: #fff;
  border-radius: 10px;
  padding: 20px;
  transform: translateY(-70px);
  transition-duration: 0.5s;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.56, -0.01, 0.04, 1);
  opacity: 0;
}
#contactPage .pageContent .dailiChoose .thisBox .cenBox .shaixuan .sxBox .openBox .neirBox .ul .li {
  font-size: 24px;
  height: 52px;
  cursor: pointer;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: unset;
  border-bottom: 1px solid #EBEBED;
}
@media (max-width:1680px) {
  #contactPage .pageContent .dailiChoose .thisBox .cenBox .shaixuan .sxBox .openBox .neirBox .ul .li {
    height: 46px;
    font-size: 20px;
  }
}
@media (max-width:1680px) and (max-width:1024px) {
  #contactPage .pageContent .dailiChoose .thisBox .cenBox .shaixuan .sxBox .openBox .neirBox .ul .li {
    height: 9vw;
    font-size: 3.4vw;
  }
}
#contactPage .pageContent .dailiChoose .thisBox .cenBox .shaixuan .sxBox .openBox .neirBox .ul .li.on {
  color: #fb7416;
}
#contactPage .pageContent .dailiChoose .thisBox .cenBox .shaixuan .sxBox .openBox .neirBox .ul .li:last-child {
  border-bottom: none;
}
#contactPage .pageContent .dailiChoose .thisBox .cenBox .shaixuan .sxBox.open .openBox {
  pointer-events: auto;
}
#contactPage .pageContent .dailiChoose .thisBox .cenBox .shaixuan .sxBox.open .openBox .neirBox {
  opacity: 1;
  transform: translateY(0);
}
#contactPage .pageContent .dailiChoose .thisBox .cenBox .shaixuan .sxBox.open i {
  transform: rotate(180deg);
}
#contactPage .pageContent .dailiChoose .thisBox .cenBox .fengexian {
  width: 100%;
  margin-top: 110px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  flex-wrap: unset;
}
@media (max-width:1680px) {
  #contactPage .pageContent .dailiChoose .thisBox .cenBox .fengexian {
    margin-top: 80px;
  }
}
@media (max-width:1680px) and (max-width:1024px) {
  #contactPage .pageContent .dailiChoose .thisBox .cenBox .fengexian {
    margin-top: 10vw;
  }
}
#contactPage .pageContent .dailiChoose .thisBox .cenBox .fengexian i {
  width: 45%;
  height: 1px;
  background-color: #707070;
  display: block;
}
@media (max-width:1024px) {
  #contactPage .pageContent .dailiChoose .thisBox .cenBox .fengexian i {
    background-color: #ccc;
  }
}
#contactPage .pageContent .dailiChoose .thisBox .cenBox .fengexian .shuliang {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
}
#contactPage .pageContent .dailiChoose .thisBox .cenBox .fengexian .shuliang .num {
  font-size: 30px;
}
@media (max-width:1680px) {
  #contactPage .pageContent .dailiChoose .thisBox .cenBox .fengexian .shuliang .num {
    font-size: 24px;
  }
}
@media (max-width:1680px) and (max-width:1024px) {
  #contactPage .pageContent .dailiChoose .thisBox .cenBox .fengexian .shuliang .num {
    font-size: 5vw;
  }
}
#contactPage .pageContent .dailiChoose .thisBox .cenBox .fengexian .shuliang .txt {
  font-size: 30px;
}
@media (max-width:1680px) {
  #contactPage .pageContent .dailiChoose .thisBox .cenBox .fengexian .shuliang .txt {
    font-size: 24px;
  }
}
@media (max-width:1680px) and (max-width:1024px) {
  #contactPage .pageContent .dailiChoose .thisBox .cenBox .fengexian .shuliang .txt {
    font-size: 3vw;
  }
}
#contactPage .pageContent .dailiChoose .thisBox .cenBox .jieguo {
  width: 100%;
  margin-top: 80px;
}
@media (max-width:1360px) {
  #contactPage .pageContent .dailiChoose .thisBox .cenBox .jieguo {
    margin-top: 50px;
  }
}
#contactPage .pageContent .dailiChoose .thisBox .cenBox .jieguo .sTitle {
  font-size: 40px;
  margin-bottom: 48px;
}
@media (max-width:1680px) {
  #contactPage .pageContent .dailiChoose .thisBox .cenBox .jieguo .sTitle {
    font-size: 30px;
  }
}
@media (max-width:1680px) and (max-width:1360px) {
  #contactPage .pageContent .dailiChoose .thisBox .cenBox .jieguo .sTitle {
    margin-bottom: 20px;
  }
}
@media (max-width:1680px) and (max-width:1360px) and (max-width:1024px) {
  #contactPage .pageContent .dailiChoose .thisBox .cenBox .jieguo .sTitle {
    font-size: 4vw;
  }
}
#contactPage .pageContent .dailiChoose .thisBox .cenBox .jieguo .cout .ul {
  display: flex;
  flex-direction: row;
  align-items: unset;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media (max-width:1024px) {
  #contactPage .pageContent .dailiChoose .thisBox .cenBox .jieguo .cout .ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-wrap: unset;
  }
}
#contactPage .pageContent .dailiChoose .thisBox .cenBox .jieguo .cout .ul .li {
  width: 47%;
  padding: 30px 0;
}
@media (max-width:1360px) {
  #contactPage .pageContent .dailiChoose .thisBox .cenBox .jieguo .cout .ul .li {
    padding: 16px 0;
  }
}
@media (max-width:1360px) and (max-width:1024px) {
  #contactPage .pageContent .dailiChoose .thisBox .cenBox .jieguo .cout .ul .li {
    width: 100%;
  }
}
@media (max-width:1360px) and (max-width:1024px) and (max-width:1024px) {
  #contactPage .pageContent .dailiChoose .thisBox .cenBox .jieguo .cout .ul .li {
    padding: 2vw 0;
  }
}
#contactPage .pageContent .dailiChoose .thisBox .cenBox .jieguo .cout .ul .li .box {
  width: 100%;
  background-color: #fff;
  border-radius: 10px;
  padding: 28px 36px;
}
@media (max-width:1024px) {
  #contactPage .pageContent .dailiChoose .thisBox .cenBox .jieguo .cout .ul .li .box {
    padding: 4vw;
  }
}
#contactPage .pageContent .dailiChoose .thisBox .cenBox .jieguo .cout .ul .li .box .title {
  font-size: 30px;
  width: 100%;
  margin-bottom: 10px;
}
@media (max-width:1680px) {
  #contactPage .pageContent .dailiChoose .thisBox .cenBox .jieguo .cout .ul .li .box .title {
    font-size: 26px;
  }
}
@media (max-width:1680px) and (max-width:1360px) {
  #contactPage .pageContent .dailiChoose .thisBox .cenBox .jieguo .cout .ul .li .box .title {
    font-size: 22px;
  }
}
@media (max-width:1680px) and (max-width:1360px) and (max-width:1024px) {
  #contactPage .pageContent .dailiChoose .thisBox .cenBox .jieguo .cout .ul .li .box .title {
    font-size: 3vw;
  }
}
#contactPage .pageContent .dailiChoose .thisBox .cenBox .jieguo .cout .ul .li .box .tag {
  margin-bottom: 20px;
  display: flex;
  flex-direction: row;
  align-items: unset;
  justify-content: unset;
  flex-wrap: wrap;
}
@media (max-width:1024px) {
  #contactPage .pageContent .dailiChoose .thisBox .cenBox .jieguo .cout .ul .li .box .tag {
    margin-bottom: 2vw;
  }
}
#contactPage .pageContent .dailiChoose .thisBox .cenBox .jieguo .cout .ul .li .box .tag > div {
  height: 26px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
  margin-right: 20px;
  font-size: 14px;
  background-color: #fb7416;
  color: #fff;
  border-radius: 20px;
  padding: 0 20px;
}
@media (max-width:1024px) {
  #contactPage .pageContent .dailiChoose .thisBox .cenBox .jieguo .cout .ul .li .box .tag > div {
    margin-right: 2vw;
    font-size: 2.6vw;
    height: 4vw;
    padding: 0 2vw;
  }
}
#contactPage .pageContent .dailiChoose .thisBox .cenBox .jieguo .cout .ul .li .box .coutBox .ziduan {
  display: flex;
  flex-direction: row;
  align-items: unset;
  justify-content: unset;
  flex-wrap: unset;
  margin-bottom: 12px;
}
@media (max-width:1024px) {
  #contactPage .pageContent .dailiChoose .thisBox .cenBox .jieguo .cout .ul .li .box .coutBox .ziduan {
    margin-bottom: 1vw;
  }
}
#contactPage .pageContent .dailiChoose .thisBox .cenBox .jieguo .cout .ul .li .box .coutBox .ziduan .ico {
  margin-top: 6px;
  width: 20px;
  height: 20px;
  object-fit: contain;
}
@media (max-width:1360px) {
  #contactPage .pageContent .dailiChoose .thisBox .cenBox .jieguo .cout .ul .li .box .coutBox .ziduan .ico {
    width: 16px;
    height: 16px;
    margin-top: 2px;
  }
}
@media (max-width:1360px) and (max-width:1024px) {
  #contactPage .pageContent .dailiChoose .thisBox .cenBox .jieguo .cout .ul .li .box .coutBox .ziduan .ico {
    width: 3vw;
    height: 3vw;
  }
}
#contactPage .pageContent .dailiChoose .thisBox .cenBox .jieguo .cout .ul .li .box .coutBox .ziduan .txt {
  padding-left: 10px;
  width: calc(100% - 20px);
  line-height: 1.5em;
  font-size: 20px;
}
@media (max-width:1680px) {
  #contactPage .pageContent .dailiChoose .thisBox .cenBox .jieguo .cout .ul .li .box .coutBox .ziduan .txt {
    font-size: 18px;
  }
}
@media (max-width:1680px) and (max-width:1360px) {
  #contactPage .pageContent .dailiChoose .thisBox .cenBox .jieguo .cout .ul .li .box .coutBox .ziduan .txt {
    font-size: 14px;
  }
}
@media (max-width:1680px) and (max-width:1360px) and (max-width:1024px) {
  #contactPage .pageContent .dailiChoose .thisBox .cenBox .jieguo .cout .ul .li .box .coutBox .ziduan .txt {
    font-size: 2.6vw;
  }
}
#contactPage .pageContent .dailiChoose .thisBox .cenBox .jieguo .cout .ul .li .box .coutBox .ziduan:last-child {
  margin-bottom: 0;
}
@media (min-width:1024px) {
  #contactPage .pageContent .form-m {
    display: none;
  }
}
@media (max-width:1024px) {
  #solutionPage {
    padding-top: calc(14vw + 12vw);
  }
}
#solutionPage .pageContent {
  padding: 0;
}
#solutionPage .pageContent .biaoti {
  margin-bottom: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
}
@media (max-width:1680px) {
  #solutionPage .pageContent .biaoti {
    margin-bottom: 60px;
  }
}
@media (max-width:1680px) and (max-width:1024px) {
  #solutionPage .pageContent .biaoti {
    margin-bottom: 8vw;
  }
}
#solutionPage .pageContent .first .thisBox {
  height: calc(100vh - 70px * 1);
  width: 100%;
}
@media (max-width:1680px) {
  #solutionPage .pageContent .first .thisBox {
    height: calc(100vh - 60px* 1);
  }
}
@media (max-width:1360px) {
  #solutionPage .pageContent .first .thisBox {
    height: calc(100vh - 60px* 1);
  }
}
@media (max-width:1024px) {
  #solutionPage .pageContent .first .thisBox {
    height: unset;
  }
}
@media (max-width:1024px) {
  #solutionPage .pageContent .first .thisBox {
    height: 50vw;
  }
}
#solutionPage .pageContent .first .thisBox video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#solutionPage .pageContent .first .thisBox .imgBox {
  width: 100%;
  height: 100%;
}
#solutionPage .pageContent .zhineng {
  padding: 110px 0;
}
@media (max-width:1680px) {
  #solutionPage .pageContent .zhineng {
    padding: 90px 0;
  }
}
@media (max-width:1360px) {
  #solutionPage .pageContent .zhineng {
    padding: 70px 0;
  }
}
@media (max-width:1024px) {
  #solutionPage .pageContent .zhineng {
    padding: 15vw 0;
  }
}
#solutionPage .pageContent .zhineng .thisBox .cenBox {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
}
#solutionPage .pageContent .zhineng .thisBox .cenBox .biaoti .name {
  text-align: center;
}
#solutionPage .pageContent .zhineng .thisBox .cenBox .topBox {
  margin-bottom: 32px;
  width: 100%;
}
#solutionPage .pageContent .zhineng .thisBox .cenBox .topBox .ul {
  gap: 1%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  flex-wrap: unset;
}
@media (max-width:1024px) {
  #solutionPage .pageContent .zhineng .thisBox .cenBox .topBox .ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-wrap: unset;
  }
}
#solutionPage .pageContent .zhineng .thisBox .cenBox .topBox .ul .li {
  flex: 1;
}
@media (max-width:1024px) {
  #solutionPage .pageContent .zhineng .thisBox .cenBox .topBox .ul .li {
    width: 100%;
    margin-bottom: 10vw;
  }
}
#solutionPage .pageContent .zhineng .thisBox .cenBox .topBox .ul .li .box {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
}
@media (max-width:1024px) {
  #solutionPage .pageContent .zhineng .thisBox .cenBox .topBox .ul .li .box {
    width: 100%;
  }
}
#solutionPage .pageContent .zhineng .thisBox .cenBox .topBox .ul .li .box .title {
  font-size: 24px;
  margin-bottom: 22px;
}
@media (max-width:1360px) {
  #solutionPage .pageContent .zhineng .thisBox .cenBox .topBox .ul .li .box .title {
    font-size: 16px;
  }
}
#solutionPage .pageContent .zhineng .thisBox .cenBox .topBox .ul .li .box .imgBox {
  overflow: hidden;
  width: 100%;
  height: 314px;
  border-radius: 16px;
}
@media (max-width:1680px) {
  #solutionPage .pageContent .zhineng .thisBox .cenBox .topBox .ul .li .box .imgBox {
    height: 250px;
  }
}
@media (max-width:1680px) and (max-width:1360px) {
  #solutionPage .pageContent .zhineng .thisBox .cenBox .topBox .ul .li .box .imgBox {
    height: 200px;
  }
}
@media (max-width:1680px) and (max-width:1360px) and (max-width:1024px) {
  #solutionPage .pageContent .zhineng .thisBox .cenBox .topBox .ul .li .box .imgBox {
    height: 46vw;
  }
}
#solutionPage .pageContent .zhineng .thisBox .cenBox .bottomBox {
  width: 100%;
  border-radius: 14px;
  background-color: #fff;
  padding: 26px 80px 54px;
}
@media (max-width:1680px) {
  #solutionPage .pageContent .zhineng .thisBox .cenBox .bottomBox {
    padding: 26px 50px 40px;
  }
}
@media (max-width:1680px) and (max-width:1024px) {
  #solutionPage .pageContent .zhineng .thisBox .cenBox .bottomBox {
    padding: 4vw;
  }
}
#solutionPage .pageContent .zhineng .thisBox .cenBox .bottomBox .ul {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
}
@media (max-width:1024px) {
  #solutionPage .pageContent .zhineng .thisBox .cenBox .bottomBox .ul {
    display: flex;
    flex-direction: row;
    align-items: unset;
    justify-content: unset;
    flex-wrap: wrap;
  }
}
#solutionPage .pageContent .zhineng .thisBox .cenBox .bottomBox .ul .li {
  padding: 0 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
}
@media (max-width:1680px) {
  #solutionPage .pageContent .zhineng .thisBox .cenBox .bottomBox .ul .li {
    padding: 0 20px;
  }
}
@media (max-width:1680px) and (max-width:1024px) {
  #solutionPage .pageContent .zhineng .thisBox .cenBox .bottomBox .ul .li {
    flex: none;
    width: 50%;
    padding: 4vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: unset;
    position: relative;
  }
  #solutionPage .pageContent .zhineng .thisBox .cenBox .bottomBox .ul .li::after {
    content: '';
    position: absolute;
    display: block;
    width: 80%;
    height: 1px;
    left: 10%;
    top: 0;
    background-color: #ccc;
  }
  #solutionPage .pageContent .zhineng .thisBox .cenBox .bottomBox .ul .li::before {
    content: '';
    position: absolute;
    display: block;
    width: 1px;
    height: 80%;
    top: 10%;
    left: 0;
    background-color: #ccc;
  }
  #solutionPage .pageContent .zhineng .thisBox .cenBox .bottomBox .ul .li:nth-child(odd)::before {
    display: none;
  }
  #solutionPage .pageContent .zhineng .thisBox .cenBox .bottomBox .ul .li:nth-child(1)::after,
  #solutionPage .pageContent .zhineng .thisBox .cenBox .bottomBox .ul .li:nth-child(2)::after {
    display: none;
  }
}
@media (max-width:1360px) {
  #solutionPage .pageContent .zhineng .thisBox .cenBox .bottomBox .ul .li .ico {
    width: 66px;
    height: 66px;
  }
}
@media (max-width:1360px) and (max-width:1024px) {
  #solutionPage .pageContent .zhineng .thisBox .cenBox .bottomBox .ul .li .ico {
    width: 10vw;
    height: 10vw;
  }
}
@media (max-width:1360px) {
  #solutionPage .pageContent .zhineng .thisBox .cenBox .bottomBox .ul .li .ico img {
    width: 100%;
    height: 100%;
  }
}
#solutionPage .pageContent .zhineng .thisBox .cenBox .bottomBox .ul .li .title {
  font-size: 24px;
  margin: 24px 0;
  font-weight: bold;
}
@media (max-width:1360px) {
  #solutionPage .pageContent .zhineng .thisBox .cenBox .bottomBox .ul .li .title {
    font-size: 18px;
    margin: 18px 0;
  }
}
@media (max-width:1360px) and (max-width:1024px) {
  #solutionPage .pageContent .zhineng .thisBox .cenBox .bottomBox .ul .li .title {
    font-size: 3.4vw;
    margin: 1vw 0 2vw;
  }
}
#solutionPage .pageContent .zhineng .thisBox .cenBox .bottomBox .ul .li .content p {
  text-indent: 0;
  text-align: center;
  padding: 0;
  line-height: 1.5em;
}
@media (max-width:1024px) {
  #solutionPage .pageContent .zhineng .thisBox .cenBox .bottomBox .ul .li .content p {
    font-size: 2.6vw;
  }
}
#solutionPage .pageContent .liucheng {
  padding-bottom: 110px;
}
@media (max-width:1680px) {
  #solutionPage .pageContent .liucheng {
    padding-bottom: 90px;
  }
}
@media (max-width:1360px) {
  #solutionPage .pageContent .liucheng {
    padding-bottom: 70px;
  }
}
@media (max-width:1024px) {
  #solutionPage .pageContent .liucheng {
    padding-bottom: 15vw;
  }
}
#solutionPage .pageContent .liucheng .thisBox .cenBox .tabsBox {
  background-color: #E4E4E6;
  border-radius: 29px;
  padding: 0 6px;
  height: 58px;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
}
@media (max-width:1024px) {
  #solutionPage .pageContent .liucheng .thisBox .cenBox .tabsBox {
    height: unset;
    background-color: unset;
    padding: 0;
  }
}
#solutionPage .pageContent .liucheng .thisBox .cenBox .tabsBox .lrCon {
  background-color: #EBEBED;
  border-radius: 50%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
  width: 42px;
  height: 42px;
}
@media (max-width:1024px) {
  #solutionPage .pageContent .liucheng .thisBox .cenBox .tabsBox .lrCon {
    display: none;
  }
}
#solutionPage .pageContent .liucheng .thisBox .cenBox .tabsBox .swiperBox {
  padding: 0 64px;
  width: calc(100% - 42px * 2);
}
@media (max-width:1680px) {
  #solutionPage .pageContent .liucheng .thisBox .cenBox .tabsBox .swiperBox {
    padding: 0 40px;
  }
}
@media (max-width:1680px) and (max-width:1360px) {
  #solutionPage .pageContent .liucheng .thisBox .cenBox .tabsBox .swiperBox {
    padding: 0 20px;
  }
}
@media (max-width:1680px) and (max-width:1360px) and (max-width:1024px) {
  #solutionPage .pageContent .liucheng .thisBox .cenBox .tabsBox .swiperBox {
    width: 100%;
    padding: 0;
  }
}
#solutionPage .pageContent .liucheng .thisBox .cenBox .tabsBox .swiperBox #liuchengTabs {
  width: 100%;
  height: 100%;
}
@media (max-width:1024px) {
  #solutionPage .pageContent .liucheng .thisBox .cenBox .tabsBox .swiperBox #liuchengTabs ul {
    gap: 2%;
    display: flex;
    flex-direction: row;
    align-items: unset;
    justify-content: unset;
    flex-wrap: wrap;
  }
}
#solutionPage .pageContent .liucheng .thisBox .cenBox .tabsBox .swiperBox #liuchengTabs ul li {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
  flex: 1;
}
@media (max-width:1024px) {
  #solutionPage .pageContent .liucheng .thisBox .cenBox .tabsBox .swiperBox #liuchengTabs ul li {
    flex: none;
    width: 32%;
    margin-bottom: 2VW;
  }
}
#solutionPage .pageContent .liucheng .thisBox .cenBox .tabsBox .swiperBox #liuchengTabs ul li .box {
  height: 42px;
  padding: 0 20px;
  border-radius: 21px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
  cursor: pointer;
}
@media (max-width:1360px) {
  #solutionPage .pageContent .liucheng .thisBox .cenBox .tabsBox .swiperBox #liuchengTabs ul li .box {
    padding: 0 10px;
  }
}
@media (max-width:1360px) and (max-width:1024px) {
  #solutionPage .pageContent .liucheng .thisBox .cenBox .tabsBox .swiperBox #liuchengTabs ul li .box {
    height: 8vw;
    width: 100%;
    justify-content: flex-start;
    background-color: #fff;
  }
}
@media (max-width:1024px) {
  #solutionPage .pageContent .liucheng .thisBox .cenBox .tabsBox .swiperBox #liuchengTabs ul li .box .ico {
    width: 4vw;
    height: 100%;
  }
}
@media (max-width:1024px) {
  #solutionPage .pageContent .liucheng .thisBox .cenBox .tabsBox .swiperBox #liuchengTabs ul li .box .ico img {
    object-fit: contain;
    width: 100%;
    height: 100%;
  }
}
#solutionPage .pageContent .liucheng .thisBox .cenBox .tabsBox .swiperBox #liuchengTabs ul li .box .name {
  margin-left: 10px;
}
@media (max-width:1680px) {
  #solutionPage .pageContent .liucheng .thisBox .cenBox .tabsBox .swiperBox #liuchengTabs ul li .box .name {
    font-size: 14px;
  }
}
@media (max-width:1680px) and (max-width:1360px) {
  #solutionPage .pageContent .liucheng .thisBox .cenBox .tabsBox .swiperBox #liuchengTabs ul li .box .name {
    font-size: 12px;
  }
}
@media (max-width:1680px) and (max-width:1360px) and (max-width:1024px) {
  #solutionPage .pageContent .liucheng .thisBox .cenBox .tabsBox .swiperBox #liuchengTabs ul li .box .name {
    margin-left: 1vw;
    font-size: 2.5vw;
  }
}
#solutionPage .pageContent .liucheng .thisBox .cenBox .tabsBox .swiperBox #liuchengTabs ul li.on .box {
  background-color: #272727;
}
#solutionPage .pageContent .liucheng .thisBox .cenBox .tabsBox .swiperBox #liuchengTabs ul li.on .box .ico {
  filter: brightness(1000) grayscale(1);
}
#solutionPage .pageContent .liucheng .thisBox .cenBox .tabsBox .swiperBox #liuchengTabs ul li.on .box .name {
  color: #fff;
}
#solutionPage .pageContent .liucheng .thisBox .cenBox .coutBox {
  margin-top: 28px;
  background-color: #ebebed;
  border-radius: 28px;
  overflow: hidden;
  height: 790px;
}
@media (max-width:1680px) {
  #solutionPage .pageContent .liucheng .thisBox .cenBox .coutBox {
    height: 610px;
  }
}
@media (max-width:1680px) and (max-width:1360px) {
  #solutionPage .pageContent .liucheng .thisBox .cenBox .coutBox {
    height: 480px;
  }
}
@media (max-width:1680px) and (max-width:1360px) and (max-width:1024px) {
  #solutionPage .pageContent .liucheng .thisBox .cenBox .coutBox {
    height: 120vw;
  }
}
@media (max-width:1680px) and (max-width:1360px) and (max-width:1024px) and (max-width:1024px) {
  #solutionPage .pageContent .liucheng .thisBox .cenBox .coutBox {
    border-radius: 4vw;
  }
}
#solutionPage .pageContent .liucheng .thisBox .cenBox .coutBox .parentBox {
  width: 100%;
  height: 100%;
  position: relative;
}
#solutionPage .pageContent .liucheng .thisBox .cenBox .coutBox .parentBox .changeBox {
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  position: absolute;
}
#solutionPage .pageContent .liucheng .thisBox .cenBox .coutBox .parentBox .changeBox .box {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: unset;
}
#solutionPage .pageContent .liucheng .thisBox .cenBox .coutBox .parentBox .changeBox .box .listMiaosu {
  position: absolute;
  left: 50%;
  z-index: 1;
  top: 54px;
  width: max-content;
  transform: translateX(-50%);
}
@media (max-width:1360px) {
  #solutionPage .pageContent .liucheng .thisBox .cenBox .coutBox .parentBox .changeBox .box .listMiaosu {
    top: 30px;
  }
}
@media (max-width:1360px) and (max-width:1024px) {
  #solutionPage .pageContent .liucheng .thisBox .cenBox .coutBox .parentBox .changeBox .box .listMiaosu {
    top: 10vw;
  }
}
#solutionPage .pageContent .liucheng .thisBox .cenBox .coutBox .parentBox .changeBox .box .listMiaosu p {
  font-size: 30px;
  color: #333;
  text-align: center;
  padding: 0;
  line-height: 1.5em;
  text-indent: 0;
  font-weight: bold;
}
@media (max-width:1680px) {
  #solutionPage .pageContent .liucheng .thisBox .cenBox .coutBox .parentBox .changeBox .box .listMiaosu p {
    font-size: 22px;
  }
}
@media (max-width:1680px) and (max-width:1024px) {
  #solutionPage .pageContent .liucheng .thisBox .cenBox .coutBox .parentBox .changeBox .box .listMiaosu p {
    font-size: 4vw;
  }
}
#solutionPage .pageContent .liucheng .thisBox .cenBox .coutBox .parentBox .changeBox .box .coutNei .txtDes {
  padding-top: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: unset;
}
#solutionPage .pageContent .liucheng .thisBox .cenBox .coutBox .parentBox .changeBox .box .coutNei .txtDes .miaoshu {
  font-size: 14px;
}
#solutionPage .pageContent .liucheng .thisBox .cenBox .coutBox .parentBox .changeBox .box .coutNei .txtDes .miaoshu .geshi-shuru .ttt {
  background-color: #333;
  width: 200px;
  padding: 4px 20px;
  border-radius: 100px;
  font-size: 14px;
  color: #fff;
  margin-top: 4px;
}
#solutionPage .pageContent .liucheng .thisBox .cenBox .coutBox .parentBox .changeBox .box .coutNei .txtDes .miaoshu .geshi-shuru .ttt:first-child {
  margin-top: 0;
}
#solutionPage .pageContent .liucheng .thisBox .cenBox .coutBox .parentBox .changeBox .box .coutNei .txtDes .goLink {
  margin-top: 10px;
  width: 300px;
  height: 50px;
  border-radius: 8px;
  border: 1px solid #666;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
}
@media (max-width:1680px) {
  #solutionPage .pageContent .liucheng .thisBox .cenBox .coutBox .parentBox .changeBox .box .coutNei .txtDes .goLink {
    width: 260px;
    height: 40px;
    font-size: 16px;
  }
}
@media (max-width:1680px) and (max-width:1360px) {
  #solutionPage .pageContent .liucheng .thisBox .cenBox .coutBox .parentBox .changeBox .box .coutNei .txtDes .goLink {
    width: 200px;
    height: 32px;
  }
}
@media (max-width:1680px) and (max-width:1360px) and (max-width:1024px) {
  #solutionPage .pageContent .liucheng .thisBox .cenBox .coutBox .parentBox .changeBox .box .coutNei .txtDes .goLink {
    width: 60vw;
    height: 10vw;
  }
  #solutionPage .pageContent .liucheng .thisBox .cenBox .coutBox .parentBox .changeBox .box .coutNei .txtDes .goLink .txt {
    font-size: 4vw;
  }
}
#solutionPage .pageContent .liucheng .thisBox .cenBox .coutBox .parentBox .changeBox .box .coutNei .txtDes .goLink:hover {
  border-color: #fb7416;
  background-color: #fb7416;
}
#solutionPage .pageContent .liucheng .thisBox .cenBox .coutBox .parentBox .changeBox .box .coutNei .txtDes .goLink:hover .txt {
  color: #fff;
}
#solutionPage .pageContent .liucheng .thisBox .cenBox .coutBox .parentBox .changeBox .box .coutNei .txtDes .goLink:hover i {
  color: #fff;
}
#solutionPage .pageContent .liucheng .thisBox .cenBox .coutBox .parentBox .changeBox .box.dantu {
  padding: 0 80px;
}
@media (max-width:1024px) {
  #solutionPage .pageContent .liucheng .thisBox .cenBox .coutBox .parentBox .changeBox .box.dantu {
    padding-bottom: 4vw;
  }
}
#solutionPage .pageContent .liucheng .thisBox .cenBox .coutBox .parentBox .changeBox .box.dantu .coutNei {
  height: 600px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
}
@media (max-width:1680px) {
  #solutionPage .pageContent .liucheng .thisBox .cenBox .coutBox .parentBox .changeBox .box.dantu .coutNei {
    height: 474px;
  }
}
@media (max-width:1680px) and (max-width:1360px) {
  #solutionPage .pageContent .liucheng .thisBox .cenBox .coutBox .parentBox .changeBox .box.dantu .coutNei {
    height: 370px;
  }
}
@media (max-width:1680px) and (max-width:1360px) and (max-width:1024px) {
  #solutionPage .pageContent .liucheng .thisBox .cenBox .coutBox .parentBox .changeBox .box.dantu .coutNei {
    height: 90vw;
  }
}
#solutionPage .pageContent .liucheng .thisBox .cenBox .coutBox .parentBox .changeBox .box.dantu .coutNei .img {
  height: 100%;
}
#solutionPage .pageContent .liucheng .thisBox .cenBox .coutBox .parentBox .changeBox .box.dantu .coutNei .img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  max-height: 100%;
  max-width: 100%;
}
#solutionPage .pageContent .liucheng .thisBox .cenBox .coutBox .parentBox .changeBox .box.dantu .coutNei.hasNeirong .img {
  height: 70%;
}
@media (max-width:1024px) {
  #solutionPage .pageContent .liucheng .thisBox .cenBox .coutBox .parentBox .changeBox .box.dantu .coutNei.hasNeirong .img {
    height: 60%;
  }
}
#solutionPage .pageContent .liucheng .thisBox .cenBox .coutBox .parentBox .changeBox .box.dantu .coutNei.hasNeirong .txtDes {
  height: 30%;
}
@media (max-width:1024px) {
  #solutionPage .pageContent .liucheng .thisBox .cenBox .coutBox .parentBox .changeBox .box.dantu .coutNei.hasNeirong .txtDes {
    height: 40%;
  }
}
#solutionPage .pageContent .liucheng .thisBox .cenBox .coutBox .parentBox .changeBox .box.zhengtu .listMiaosu p {
  color: #fff;
}
#solutionPage .pageContent .liucheng .thisBox .cenBox .coutBox .parentBox .changeBox .box.zhengtu .coutNei {
  position: relative;
  width: 100%;
  height: 100%;
}
#solutionPage .pageContent .liucheng .thisBox .cenBox .coutBox .parentBox .changeBox .box.zhengtu .coutNei .img {
  width: 100%;
  height: 100%;
}
#solutionPage .pageContent .liucheng .thisBox .cenBox .coutBox .parentBox .changeBox .box.zhengtu .coutNei .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#solutionPage .pageContent .liucheng .thisBox .cenBox .coutBox .parentBox .changeBox .box.zhengtu .coutNei .txtDes {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
}
#solutionPage .pageContent .liucheng .thisBox .cenBox .coutBox .parentBox .changeBox .box.zhengtu .coutNei .txtDes .goLink {
  border-color: #fff;
}
#solutionPage .pageContent .liucheng .thisBox .cenBox .coutBox .parentBox .changeBox .box.zhengtu .coutNei .txtDes .goLink .txt {
  color: #fff;
}
#solutionPage .pageContent .liucheng .thisBox .cenBox .coutBox .parentBox .changeBox .box.zhengtu .coutNei .txtDes .goLink i {
  color: #fff;
}
#solutionPage .pageContent .liucheng .thisBox .cenBox .coutBox .parentBox .changeBox .box.zhengtu .coutNei.hasNeirong .txtDes {
  height: 30%;
}
#solutionPage .pageContent .liucheng .thisBox .cenBox .coutBox .parentBox .changeBox .box.duotu .coutNei {
  width: 100%;
  padding: 0 100px;
  padding-bottom: 40px;
}
@media (max-width:1360px) {
  #solutionPage .pageContent .liucheng .thisBox .cenBox .coutBox .parentBox .changeBox .box.duotu .coutNei {
    padding: 0 60px;
    padding-bottom: 30px;
  }
}
@media (max-width:1360px) and (max-width:1024px) {
  #solutionPage .pageContent .liucheng .thisBox .cenBox .coutBox .parentBox .changeBox .box.duotu .coutNei {
    padding: 0;
    height: 100vw;
    padding-top: 6vw;
    padding-bottom: 4vw;
  }
}
#solutionPage .pageContent .liucheng .thisBox .cenBox .coutBox .parentBox .changeBox .box.duotu .coutNei .tishi {
  text-align: center;
  margin-bottom: 4vw;
}
@media (min-width:1024px) {
  #solutionPage .pageContent .liucheng .thisBox .cenBox .coutBox .parentBox .changeBox .box.duotu .coutNei .tishi {
    display: none;
  }
}
#solutionPage .pageContent .liucheng .thisBox .cenBox .coutBox .parentBox .changeBox .box.duotu .coutNei .swiperBox {
  width: 100%;
}
#solutionPage .pageContent .liucheng .thisBox .cenBox .coutBox .parentBox .changeBox .box.duotu .coutNei .swiperBox .ul {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
}
@media (max-width:1024px) {
  #solutionPage .pageContent .liucheng .thisBox .cenBox .coutBox .parentBox .changeBox .box.duotu .coutNei .swiperBox .ul {
    display: flex;
    flex-direction: row;
    align-items: unset;
    justify-content: unset;
    flex-wrap: unset;
  }
}
#solutionPage .pageContent .liucheng .thisBox .cenBox .coutBox .parentBox .changeBox .box.duotu .coutNei .swiperBox .ul .li {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
}
@media (max-width:1024px) {
  #solutionPage .pageContent .liucheng .thisBox .cenBox .coutBox .parentBox .changeBox .box.duotu .coutNei .swiperBox .ul .li {
    flex: none;
    width: 40vw;
  }
}
#solutionPage .pageContent .liucheng .thisBox .cenBox .coutBox .parentBox .changeBox .box.duotu .coutNei .swiperBox .ul .li .aBox {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
  transition-duration: 0.5s;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.56, -0.01, 0.04, 1);
}
#solutionPage .pageContent .liucheng .thisBox .cenBox .coutBox .parentBox .changeBox .box.duotu .coutNei .swiperBox .ul .li .aBox .title {
  margin-bottom: 10px;
  font-size: 24px;
}
@media (max-width:1680px) {
  #solutionPage .pageContent .liucheng .thisBox .cenBox .coutBox .parentBox .changeBox .box.duotu .coutNei .swiperBox .ul .li .aBox .title {
    font-size: 20px;
  }
}
@media (max-width:1680px) and (max-width:1360px) {
  #solutionPage .pageContent .liucheng .thisBox .cenBox .coutBox .parentBox .changeBox .box.duotu .coutNei .swiperBox .ul .li .aBox .title {
    font-size: 14px;
  }
}
@media (max-width:1680px) {
  #solutionPage .pageContent .liucheng .thisBox .cenBox .coutBox .parentBox .changeBox .box.duotu .coutNei .swiperBox .ul .li .aBox .img img {
    height: 370px;
  }
}
@media (max-width:1680px) and (max-width:1360px) {
  #solutionPage .pageContent .liucheng .thisBox .cenBox .coutBox .parentBox .changeBox .box.duotu .coutNei .swiperBox .ul .li .aBox .img img {
    height: 270px;
  }
}
#solutionPage .pageContent .liucheng .thisBox .cenBox .coutBox .parentBox .changeBox .box.duotu .coutNei .swiperBox .ul .li .aBox.addHover:hover {
  transform: scale(1.05);
}
#solutionPage .pageContent .liucheng .thisBox .cenBox .coutBox .parentBox .changeBox.on {
  opacity: 1;
  transition-duration: 0.5s;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.56, -0.01, 0.04, 1);
  pointer-events: auto;
}
#solutionPage .pageContent .liucheng .thisBox .cenBox .coutBox .parentBox .changeBox.turnLeft {
  transform: translateX(-80px);
  opacity: 0;
  transition-duration: 0.5s;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.56, -0.01, 0.04, 1);
}
#solutionPage .pageContent .liucheng .thisBox .cenBox .coutBox .parentBox .changeBox.turnRight {
  transform: translateX(80px);
  opacity: 0;
  transition-duration: 0.5s;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.56, -0.01, 0.04, 1);
}
#solutionPage .pageContent .liucheng .thisBox .cenBox .coutBox .parentBox .changeBox.joinLeft {
  opacity: 0;
  transform: translateX(80px);
}
#solutionPage .pageContent .liucheng .thisBox .cenBox .coutBox .parentBox .changeBox.joinRight {
  opacity: 0;
  transform: translateX(-80px);
}
#solutionPage .pageContent .liucheng .thisBox .cenBox .coutBox .parentBox-m .changeBox .box.dantu {
  padding: 0 3vw;
}
#solutionPage .pageContent .guanli {
  width: 100%;
  height: 1000px;
  position: relative;
}
@media (max-width:1360px) {
  #solutionPage .pageContent .guanli {
    height: 756px;
  }
}
@media (max-width:1360px) and (max-width:1024px) {
  #solutionPage .pageContent .guanli {
    height: 120vw;
  }
}
#solutionPage .pageContent .guanli .thisBox {
  position: relative;
  z-index: 1;
  padding-top: 100px;
}
@media (max-width:1024px) {
  #solutionPage .pageContent .guanli .thisBox {
    padding-top: 8vw;
  }
}
#solutionPage .pageContent .guanli .thisBox .biaoti .name {
  color: #fff;
}
#solutionPage .pageContent .guanli .thisBox .biaoti .subname {
  color: #fff;
  text-align: center;
}
@media (max-width:1024px) {
  #solutionPage .pageContent .guanli .thisBox .biaoti .subname {
    width: 90%;
    margin: 0 auto;
  }
}
@media (max-width:1024px) and (max-width:1024px) {
  #solutionPage .pageContent .guanli .thisBox .biaoti .subname {
    font-size: 3.6vw;
  }
}
#solutionPage .pageContent .guanli .bgImg {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
}
#solutionPage .pageContent .guanli .bgImg img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
#solutionPage .pageContent .peitao {
  padding: 110px 0;
}
@media (max-width:1680px) {
  #solutionPage .pageContent .peitao {
    padding: 90px 0;
  }
}
@media (max-width:1360px) {
  #solutionPage .pageContent .peitao {
    padding: 70px 0;
  }
}
@media (max-width:1024px) {
  #solutionPage .pageContent .peitao {
    padding: 15vw 0;
  }
}
#solutionPage .pageContent .peitao .thisBox .cenBox {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
}
#solutionPage .pageContent .peitao .thisBox .cenBox .biaoti .name {
  font-size: 40px;
}
@media (max-width:1360px) {
  #solutionPage .pageContent .peitao .thisBox .cenBox .biaoti .name {
    font-size: 30px;
  }
}
@media (max-width:1360px) and (max-width:1024px) {
  #solutionPage .pageContent .peitao .thisBox .cenBox .biaoti .name {
    font-size: 5vw;
  }
}
@media (max-width:1024px) {
  #solutionPage .pageContent .peitao .thisBox .cenBox .biaoti .name {
    font-size: 5.6vw;
  }
}
#solutionPage .pageContent .peitao .thisBox .cenBox .sBiaoti {
  width: 70%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
  margin-bottom: 48px;
}
@media (max-width:1024px) {
  #solutionPage .pageContent .peitao .thisBox .cenBox .sBiaoti {
    width: 100%;
    margin-bottom: 6vw;
  }
}
#solutionPage .pageContent .peitao .thisBox .cenBox .sBiaoti .name {
  margin-bottom: 42px;
  font-size: 30px;
  font-weight: bold;
}
@media (max-width:1680px) {
  #solutionPage .pageContent .peitao .thisBox .cenBox .sBiaoti .name {
    font-size: 24px;
  }
}
@media (max-width:1680px) and (max-width:1024px) {
  #solutionPage .pageContent .peitao .thisBox .cenBox .sBiaoti .name {
    font-size: 3vw;
    margin-bottom: 4vw;
  }
}
#solutionPage .pageContent .peitao .thisBox .cenBox .sBiaoti .subname {
  font-size: 24px;
  text-align: center;
  line-height: 2em;
}
@media (max-width:1680px) {
  #solutionPage .pageContent .peitao .thisBox .cenBox .sBiaoti .subname {
    font-size: 18px;
  }
}
@media (max-width:1680px) and (max-width:1024px) {
  #solutionPage .pageContent .peitao .thisBox .cenBox .sBiaoti .subname {
    font-size: 3vw;
  }
}
@media (max-width:1024px) {
  #solutionPage .pageContent .peitao .thisBox .cenBox .realCout {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: unset;
    height: 120vw;
  }
}
@media (max-width:1024px) {
  #solutionPage .pageContent .peitao .thisBox .cenBox .realCout .topBox {
    width: 50%;
    height: 100%;
  }
}
#solutionPage .pageContent .peitao .thisBox .cenBox .realCout .topBox .coutBox {
  margin-bottom: 46px;
  border-radius: 14px;
  padding: 100px 0 50px;
  background-color: #EBEBED;
}
@media (max-width:1024px) {
  #solutionPage .pageContent .peitao .thisBox .cenBox .realCout .topBox .coutBox {
    padding: 4vw 0 8vw;
    margin-bottom: 0;
    height: 100%;
  }
}
#solutionPage .pageContent .peitao .thisBox .cenBox .realCout .topBox .coutBox .ul {
  gap: 50px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
}
@media (max-width:1680px) {
  #solutionPage .pageContent .peitao .thisBox .cenBox .realCout .topBox .coutBox .ul {
    width: 90%;
    margin: 0 auto;
  }
}
@media (max-width:1680px) and (max-width:1024px) {
  #solutionPage .pageContent .peitao .thisBox .cenBox .realCout .topBox .coutBox .ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    flex-wrap: unset;
    height: 100%;
    gap: unset;
  }
}
#solutionPage .pageContent .peitao .thisBox .cenBox .realCout .bottomBox {
  width: 100%;
}
@media (max-width:1024px) {
  #solutionPage .pageContent .peitao .thisBox .cenBox .realCout .bottomBox {
    width: 50%;
    height: 100%;
    padding-left: 2vw;
  }
}
#solutionPage .pageContent .peitao .thisBox .cenBox .realCout .bottomBox .ul {
  gap: 16px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  flex-wrap: unset;
}
@media (max-width:1024px) {
  #solutionPage .pageContent .peitao .thisBox .cenBox .realCout .bottomBox .ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-wrap: unset;
    height: 100%;
  }
}
#solutionPage .pageContent .peitao .thisBox .cenBox .realCout .bottomBox .ul .li {
  position: relative;
  flex: 1;
  height: 346px;
  overflow: hidden;
  border-radius: 14px;
}
@media (max-width:1680px) {
  #solutionPage .pageContent .peitao .thisBox .cenBox .realCout .bottomBox .ul .li {
    height: 270px;
  }
}
@media (max-width:1680px) and (max-width:1024px) {
  #solutionPage .pageContent .peitao .thisBox .cenBox .realCout .bottomBox .ul .li {
    border-radius: 2vw;
  }
}
#solutionPage .pageContent .peitao .thisBox .cenBox .realCout .bottomBox .ul .li .imgBox {
  width: 100%;
  height: 100%;
}
#solutionPage .pageContent .peitao .thisBox .cenBox .realCout .bottomBox .ul .li .textBox {
  padding: 30px;
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
}
@media (max-width:1024px) {
  #solutionPage .pageContent .peitao .thisBox .cenBox .realCout .bottomBox .ul .li .textBox {
    padding: 4vw;
  }
}
#solutionPage .pageContent .peitao .thisBox .cenBox .realCout .bottomBox .ul .li .textBox .title {
  color: #fff;
  font-size: 30px;
  font-weight: bold;
}
@media (max-width:1024px) {
  #solutionPage .pageContent .peitao .thisBox .cenBox .realCout .bottomBox .ul .li .textBox .title {
    font-size: 3vw;
  }
}
#solutionPage .pageContent .peitao .thisBox .cenBox .realCout .bottomBox .ul .li .textBox .content p {
  color: #fff;
  text-indent: 0;
}
@media (max-width:1024px) {
  #solutionPage .pageContent .peitao .thisBox .cenBox .realCout .bottomBox .ul .li .textBox .content p {
    font-size: 2.6vw;
  }
}
#solutionPage .pageContent .peitao .thisBox .cenBox .realCout .bottomBox .ul .li .textBox .rightB {
  font-size: 16px;
  color: #fff;
  position: absolute;
  right: 16px;
  bottom: 16px;
}
@media (max-width:1024px) {
  #solutionPage .pageContent .peitao .thisBox .cenBox .realCout .bottomBox .ul .li .textBox .rightB {
    font-size: 2.2vw;
  }
}
#newsDetailPage .pageContent {
  padding: 0;
}
#newsDetailPage .pageContent .newsDetail .newsDetail-1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
  padding: 110px 0;
  width: 1300px;
  margin: 0 auto;
}
@media (max-width:1680px) {
  #newsDetailPage .pageContent .newsDetail .newsDetail-1 {
    padding: 90px 0;
  }
}
@media (max-width:1360px) {
  #newsDetailPage .pageContent .newsDetail .newsDetail-1 {
    padding: 70px 0;
  }
}
@media (max-width:1024px) {
  #newsDetailPage .pageContent .newsDetail .newsDetail-1 {
    padding: 15vw 0;
  }
}
@media (max-width:1360px) {
  #newsDetailPage .pageContent .newsDetail .newsDetail-1 {
    width: 80%;
  }
}
#newsDetailPage .pageContent .newsDetail .newsDetail-1 .title {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 20px;
}
@media (max-width:1024px) {
  #newsDetailPage .pageContent .newsDetail .newsDetail-1 .title {
    font-size: 5vw;
  }
}
#newsDetailPage .pageContent .newsDetail .newsDetail-1 .info span {
  color: #666;
}
@media (max-width:1024px) {
  #newsDetailPage .pageContent .newsDetail .newsDetail-1 .info span {
    font-size: 3.4vw;
  }
}
#newsDetailPage .pageContent .newsDetail .newsDetail-1 .neirongBox {
  margin: 40px 0;
  border: 1px dotted #999;
  padding: 20px 0;
  border-right: 0;
  border-left: 0;
  width: 100%;
}
#newsDetailPage .pageContent .newsDetail .newsDetail-1 .moreLink {
  width: 100%;
}
#newsDetailPage .pageContent .newsDetail .newsDetail-1 .moreLink .link {
  margin-bottom: 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: unset;
  flex-wrap: unset;
}
@media (max-width:1024px) {
  #newsDetailPage .pageContent .newsDetail .newsDetail-1 .moreLink .link {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: unset;
  }
}
#newsDetailPage .pageContent .newsDetail .newsDetail-1 .moreLink .link div {
  font-weight: bold;
}
#newsDetailPage .pageContent .newsDetail .newsDetail-1 .moreLink .link a {
  font-weight: bold;
}
#newsDetailPage .pageContent .newsDetail .newsDetail-1 .moreLink .link a:hover {
  color: #fb7416;
}
#videoPage .pageContent .thridNav .thisBox {
  margin-bottom: 2vw;
}
@media (max-width:1024px) {
  #videoPage .pageContent .thridNav .thisBox {
    margin-bottom: 10vw;
  }
}
#videoPage .pageContent .thridNav .thisBox .ul {
  border-radius: 1vw;
  padding: 2vw;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-gap: 2vw;
  background-color: #fff;
}
@media (max-width:1024px) {
  #videoPage .pageContent .thridNav .thisBox .ul {
    grid-template-columns: repeat(2, 1fr);
    padding: 6vw;
    grid-gap: 6vw;
  }
}
#videoPage .pageContent .thridNav .thisBox .ul .li {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
}
#videoPage .pageContent .thridNav .thisBox .ul .li.on .txt {
  color: #fb7416;
}
#videoPage .pageContent .thridNav .thisBox .ul .li::after {
  content: '';
  position: absolute;
  display: block;
  height: 20px;
  border-right: 1px dotted #000;
  opacity: 0.5;
  right: -1vw;
}
@media (max-width:1024px) {
  #videoPage .pageContent .thridNav .thisBox .ul .li:nth-child(2n)::after {
    border-right: none;
  }
}
@media (min-width:1024px) {
  #videoPage .pageContent .thridNav .thisBox .ul .li:last-child::after {
    border-right: none;
  }
}
#videoPage .pageContent .videoList .thisBox .cenBox .ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 2vw;
}
@media (max-width:1024px) {
  #videoPage .pageContent .videoList .thisBox .cenBox .ul {
    grid-template-columns: 1fr;
    grid-gap: 6vw;
  }
}
#videoPage .pageContent .videoList .thisBox .cenBox .ul .li .videoA {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
}
#videoPage .pageContent .videoList .thisBox .cenBox .ul .li .videoA .imgBox {
  position: relative;
  border-radius: 1vw;
  overflow: hidden;
  aspect-ratio: 1.7;
  width: 100%;
}
@media (max-width:1024px) {
  #videoPage .pageContent .videoList .thisBox .cenBox .ul .li .videoA .imgBox {
    border-radius: 4vw;
  }
}
#videoPage .pageContent .videoList .thisBox .cenBox .ul .li .videoA .imgBox img {
  transition-duration: 0.5s;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.56, -0.01, 0.04, 1);
}
#videoPage .pageContent .videoList .thisBox .cenBox .ul .li .videoA .imgBox i {
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 3vw;
  opacity: 0.8;
  transition-duration: 0.2s;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.56, -0.01, 0.04, 1);
  transform: translate(-50%, -50%);
}
@media (max-width:1024px) {
  #videoPage .pageContent .videoList .thisBox .cenBox .ul .li .videoA .imgBox i {
    font-size: 14vw;
  }
}
#videoPage .pageContent .videoList .thisBox .cenBox .ul .li .videoA .title {
  margin-top: 1vw;
  transition-duration: 0.2s;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.56, -0.01, 0.04, 1);
}
@media (max-width:1680px) {
  #videoPage .pageContent .videoList .thisBox .cenBox .ul .li .videoA .title {
    font-size: 16px;
  }
}
@media (max-width:1680px) and (max-width:1360px) {
  #videoPage .pageContent .videoList .thisBox .cenBox .ul .li .videoA .title {
    font-size: 14px;
  }
}
@media (max-width:1680px) and (max-width:1360px) and (max-width:1024px) {
  #videoPage .pageContent .videoList .thisBox .cenBox .ul .li .videoA .title {
    font-size: 4vw;
  }
}
#videoPage .pageContent .videoList .thisBox .cenBox .ul .li .videoA:hover .imgBox img {
  transform: scale(1.1);
}
#videoPage .pageContent .videoList .thisBox .cenBox .ul .li .videoA:hover .imgBox i {
  color: #fb7416;
  opacity: 1;
}
#videoPage .pageContent .videoList .thisBox .cenBox .ul .li .videoA:hover .title {
  color: #fb7416;
}
#downloadPage .pageContent .downloadList .thisBox .cenBox .ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 1vw;
}
@media (max-width:1024px) {
  #downloadPage .pageContent .downloadList .thisBox .cenBox .ul {
    grid-template-columns: 1fr;
    grid-gap: 6vw;
  }
}
#downloadPage .pageContent .downloadList .thisBox .cenBox .ul .li .fenlei {
  background-color: #fff;
  border-radius: 1vw;
  padding: 2vw;
}
@media (max-width:1024px) {
  #downloadPage .pageContent .downloadList .thisBox .cenBox .ul .li .fenlei {
    padding: 5vw;
  }
}
#downloadPage .pageContent .downloadList .thisBox .cenBox .ul .li .fenlei .downNavBT {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
  margin-bottom: 1vw;
}
#downloadPage .pageContent .downloadList .thisBox .cenBox .ul .li .fenlei .downNavBT .ico {
  background-color: #f3f3f3;
  width: 4vw;
  height: 4vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
  border-radius: 50%;
}
@media (max-width:1024px) {
  #downloadPage .pageContent .downloadList .thisBox .cenBox .ul .li .fenlei .downNavBT .ico {
    width: 16vw;
    height: 16vw;
  }
}
#downloadPage .pageContent .downloadList .thisBox .cenBox .ul .li .fenlei .downNavBT .ico img {
  width: 2vw;
  height: 2vw;
  object-fit: contain;
}
@media (max-width:1024px) {
  #downloadPage .pageContent .downloadList .thisBox .cenBox .ul .li .fenlei .downNavBT .ico img {
    width: 10vw;
    height: 10vw;
  }
}
#downloadPage .pageContent .downloadList .thisBox .cenBox .ul .li .fenlei .downNavBT .navName {
  margin-left: 2vw;
  font-size: 1.7vw;
  font-weight: bold;
}
@media (max-width:1024px) {
  #downloadPage .pageContent .downloadList .thisBox .cenBox .ul .li .fenlei .downNavBT .navName {
    font-size: 6vw;
  }
}
#downloadPage .pageContent .downloadList .thisBox .cenBox .ul .li .fenlei .ul2 {
  padding-right: 1vw;
}
@media (max-width:1024px) {
  #downloadPage .pageContent .downloadList .thisBox .cenBox .ul .li .fenlei .ul2 {
    padding-right: 2vw;
  }
}
#downloadPage .pageContent .downloadList .thisBox .cenBox .ul .li .fenlei .ul2 .li2 {
  padding: 0.3vw 0;
}
@media (max-width:1024px) {
  #downloadPage .pageContent .downloadList .thisBox .cenBox .ul .li .fenlei .ul2 .li2 {
    padding: 2vw 0;
  }
}
#downloadPage .pageContent .downloadList .thisBox .cenBox .ul .li .fenlei .ul2 .li2 .aBox {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  flex-wrap: unset;
  padding: 0.4vw 1.2vw;
  border: 1px solid #eee;
  border-radius: 10px;
}
#downloadPage .pageContent .downloadList .thisBox .cenBox .ul .li .fenlei .ul2 .li2 .aBox .leftInfo {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
}
#downloadPage .pageContent .downloadList .thisBox .cenBox .ul .li .fenlei .ul2 .li2 .aBox .leftInfo .title {
  margin-right: 0.6vw;
}
@media (max-width:1024px) {
  #downloadPage .pageContent .downloadList .thisBox .cenBox .ul .li .fenlei .ul2 .li2 .aBox .leftInfo .title {
    font-size: 4.2vw;
  }
}
#downloadPage .pageContent .downloadList .thisBox .cenBox .ul .li .fenlei .ul2 .li2 .aBox .leftInfo .info {
  display: none;
}
#downloadPage .pageContent .downloadList .thisBox .cenBox .ul .li .fenlei .ul2 .li2 .aBox .leftInfo .info span {
  font-size: 14px;
  opacity: 0.7;
}
@media (max-width:1360px) {
  #downloadPage .pageContent .downloadList .thisBox .cenBox .ul .li .fenlei .ul2 .li2 .aBox .leftInfo .info span {
    font-size: 12px;
  }
}
#downloadPage .pageContent .downloadList .thisBox .cenBox .ul .li .fenlei .ul2 .li2 .aBox .rightBtn {
  display: flex;
}
#downloadPage .pageContent .downloadList .thisBox .cenBox .ul .li .fenlei .ul2 .li2 .aBox .rightBtn .abtn {
  width: 4vw;
  height: 2.6vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
  cursor: pointer;
  border-radius: 4px;
  margin-left: 0.4vw;
}
@media (max-width:1024px) {
  #downloadPage .pageContent .downloadList .thisBox .cenBox .ul .li .fenlei .ul2 .li2 .aBox .rightBtn .abtn {
    width: 12vw;
    height: 12vw;
  }
}
#downloadPage .pageContent .downloadList .thisBox .cenBox .ul .li .fenlei .ul2 .li2 .aBox .rightBtn .abtn i {
  font-size: 1vw;
  color: #fff;
}
@media (max-width:1024px) {
  #downloadPage .pageContent .downloadList .thisBox .cenBox .ul .li .fenlei .ul2 .li2 .aBox .rightBtn .abtn i {
    font-size: 5vw;
  }
}
#downloadPage .pageContent .downloadList .thisBox .cenBox .ul .li .fenlei .ul2 .li2 .aBox .rightBtn .abtn .txt {
  color: #fff;
  font-size: 12px;
}
@media (max-width:1024px) {
  #downloadPage .pageContent .downloadList .thisBox .cenBox .ul .li .fenlei .ul2 .li2 .aBox .rightBtn .abtn .txt {
    font-size: 3vw;
  }
}
#downloadPage .pageContent .downloadList .thisBox .cenBox .ul .li .fenlei .ul2 .li2 .aBox .rightBtn .abtn.online {
  display: none;
  background-color: #000;
}
@media (max-width:1024px) {
  #downloadPage .pageContent .downloadList .thisBox .cenBox .ul .li .fenlei .ul2 .li2 .aBox .rightBtn .abtn.online {
    display: none;
  }
}
#downloadPage .pageContent .downloadList .thisBox .cenBox .ul .li .fenlei .ul2 .li2 .aBox .rightBtn .abtn.download {
  background-color: #fb7416;
}
#downloadPage .pageContent .downloadList .thisBox .cenBox .ul .li .fenlei .ul2 .li2 .aBox:hover {
  background-color: #f8f8f8;
}
#downloadPage .pageContent .downloadList .thisBox .cenBox .ul .li .fenlei .ul2 .li2 .aBox:hover .leftInfo .title {
  color: #fb7416;
}
#downloadPage .formBiaodan {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 11;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
}
#downloadPage .formBiaodan > .thisBox {
  position: relative;
  z-index: 1;
  opacity: 0;
  width: 60vw;
  border-radius: 20px;
  background-color: #fff;
  transition-duration: 0.5s;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.56, -0.01, 0.04, 1);
  padding: 40px 80px;
  transform: translateY(-40px);
}
@media (max-width:1024px) {
  #downloadPage .formBiaodan > .thisBox {
    width: 90vw;
    padding: 8vw;
  }
}
#downloadPage .formBiaodan > .thisBox .cenBox {
  width: 100%;
}
#downloadPage .formBiaodan > .thisBox .cenBox .biaodan {
  width: 100%;
}
#downloadPage .formBiaodan > .thisBox .cenBox .biaodan form .topInput {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-row-gap: 20px;
  grid-column-gap: 40px;
}
@media (max-width:1024px) {
  #downloadPage .formBiaodan > .thisBox .cenBox .biaodan form .topInput {
    grid-template-columns: 1fr;
    grid-row-gap: 2vw;
    grid-column-gap: 4vw;
  }
}
#downloadPage .formBiaodan > .thisBox .cenBox .biaodan form .inputBox {
  margin-bottom: 0;
  width: 100%;
}
#downloadPage .formBiaodan > .thisBox .cenBox .biaodan form .inputBox .input {
  position: relative;
}
#downloadPage .formBiaodan > .thisBox .cenBox .biaodan form .inputBox .input i {
  position: absolute;
  transition-duration: 0.5s;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.56, -0.01, 0.04, 1);
  right: 16px;
  top: 14px;
  font-size: 20px;
}
@media (max-width:1024px) {
  #downloadPage .formBiaodan > .thisBox .cenBox .biaodan form .inputBox .input i {
    top: 10px;
  }
}
#downloadPage .formBiaodan > .thisBox .cenBox .biaodan form .inputBox .input input {
  background-color: #f8f8f8;
}
#downloadPage .formBiaodan > .thisBox .cenBox .biaodan form .inputBox.language .input input {
  cursor: pointer;
}
#downloadPage .formBiaodan > .thisBox .cenBox .biaodan form .inputBox.language .input input + .openBox {
  position: absolute;
  top: 110%;
  z-index: 1;
  width: 100%;
  left: 0;
  pointer-events: none;
}
#downloadPage .formBiaodan > .thisBox .cenBox .biaodan form .inputBox.language .input input + .openBox .neirBox {
  background-color: #fff;
  border-radius: 10px;
  border: 1px solid #f3f3f3;
  padding: 20px;
  transform: translateY(-20px);
  transition-duration: 0.5s;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.56, -0.01, 0.04, 1);
  opacity: 0;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}
#downloadPage .formBiaodan > .thisBox .cenBox .biaodan form .inputBox.language .input input + .openBox .neirBox .ul {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
  gap: 10px;
}
#downloadPage .formBiaodan > .thisBox .cenBox .biaodan form .inputBox.language .input input + .openBox .neirBox .ul .li {
  width: 100%;
  font-size: 16px;
  height: 52px;
  cursor: pointer;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
  background-color: #f8f8f8;
  border-radius: 10px;
}
@media (max-width:1680px) {
  #downloadPage .formBiaodan > .thisBox .cenBox .biaodan form .inputBox.language .input input + .openBox .neirBox .ul .li {
    height: 46px;
    font-size: 16px;
  }
}
@media (max-width:1680px) and (max-width:1024px) {
  #downloadPage .formBiaodan > .thisBox .cenBox .biaodan form .inputBox.language .input input + .openBox .neirBox .ul .li {
    height: 9vw;
    font-size: 3.4vw;
  }
}
#downloadPage .formBiaodan > .thisBox .cenBox .biaodan form .inputBox.language .input input + .openBox .neirBox .ul .li.on {
  color: #fb7416;
}
#downloadPage .formBiaodan > .thisBox .cenBox .biaodan form .inputBox.language .input input + .openBox .neirBox .ul .li:last-child {
  border-bottom: none;
}
#downloadPage .formBiaodan > .thisBox .cenBox .biaodan form .inputBox.language .input input + .openBox.open {
  pointer-events: auto;
}
#downloadPage .formBiaodan > .thisBox .cenBox .biaodan form .inputBox.language .input input + .openBox.open .neirBox {
  opacity: 1;
  transform: translateY(0);
}
#downloadPage .formBiaodan > .thisBox .cenBox .biaodan form .inputBox.agree {
  width: 100%;
  margin-top: 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: unset;
}
#downloadPage .formBiaodan > .thisBox .cenBox .biaodan form .inputBox.agree .input {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: unset;
}
#downloadPage .formBiaodan > .thisBox .cenBox .biaodan form .inputBox.agree .input input {
  width: 18px;
  height: 18px;
  cursor: pointer;
  filter: hue-rotate(160deg);
}
#downloadPage .formBiaodan > .thisBox .cenBox .biaodan form .inputBox.agree .input .txt {
  margin-left: 10px;
}
#downloadPage .formBiaodan > .thisBox .closeBtn {
  position: absolute;
  right: 0;
  top: 0;
  cursor: pointer;
  transform: translate(50%, -50%);
  width: 40px;
  height: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
  background-color: #000;
  border-radius: 50%;
}
#downloadPage .formBiaodan > .thisBox .closeBtn i {
  color: #fff;
  font-size: 16px;
}
#downloadPage .formBiaodan::after {
  opacity: 0;
  pointer-events: none;
  content: '';
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  transition-duration: 0.5s;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.56, -0.01, 0.04, 1);
  background-color: rgba(0, 0, 0, 0.4);
}
#downloadPage .formBiaodan.open {
  pointer-events: auto;
}
#downloadPage .formBiaodan.open > .thisBox {
  opacity: 1;
  transition-delay: 0.2s;
  transform: translateY(0);
}
#downloadPage .formBiaodan.open::after {
  opacity: 1;
  pointer-events: auto;
}
#downloadPage .downloadProgress {
  position: fixed;
  z-index: 1111;
  background-color: #fff;
  transition-duration: 0.5s;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.56, -0.01, 0.04, 1);
  pointer-events: none;
  opacity: 0;
  transform: translateY(-2vw);
  border-radius: 20px;
  left: calc(50% - 150px);
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
  top: calc(50% - 50px);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
  padding: 40px;
}
#downloadPage .downloadProgress .progress {
  width: 300px;
  height: 4px;
  border-radius: 2px;
  background-color: #ccc;
}
#downloadPage .downloadProgress .progress div {
  height: 100%;
  width: 0%;
  background-color: #000;
  transition-duration: 0.2s;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.56, -0.01, 0.04, 1);
}
#downloadPage .downloadProgress.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
