@charset "utf-8";
:root {
  --color: #005CE6;
  --vh: 100vh;
  --vh2: -100vh;
}
/*字体*/
/* @font-face {
	font-family: "Fontke";
	src: url("Fontke.woff2") format("woff2"),
		 url("Fontke.woff") format("woff"),
		 url("Fontke.ttf") format("truetype"),
		 url("Fontke.eot") format("embedded-opentype"),
		 url("Fontke.svg") format("svg"),
		 url("Fontke.otf") format("opentype");
} */
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Regular.ttf") format("truetype");
}
* {
  padding: 0;
  margin: 0;
  outline: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  scrollbar-width: thin;
}
* ::-webkit-scrollbar {
  /*滚动条整体样式*/
  width: 5px;
  /*高宽分别对应横竖滚动条的尺寸*/
  height: 5px;
}
* ::-webkit-scrollbar-thumb {
  /*滚动条-滑块*/
  border-radius: 3px;
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  background: var(--color);
}
* ::-webkit-scrollbar-track {
  /*滚动条-背景*/
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  border-radius: 3px;
  background: #ededed;
}
html {
  font-size: calc(100vw/19.2);
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media (min-width: 1901px) {
  html {
    font-size: 100px;
  }
}
@media (max-width: 1580px) {
  html {
    font-size: 66px;
  }
}
@media (max-width: 767px) {
  html {
    font-size: 50px;
  }
}
body {
  min-height: 100%;
  font-family: 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
  font-size: 16px;
  line-height: 1.5;
  color: #333;
  background: #fff;
}
@media (max-width: 1580px) {
  body {
    font-size: 14px;
  }
}
img {
  max-width: 100%;
  border: 0;
  vertical-align: top;
}
video,
video:focus {
  display: block;
  font-size: 0;
  border: 0;
  outline: none;
}
li {
  list-style: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: inherit;
  font-style: inherit;
  font-size: inherit;
  font-weight: normal;
}
a {
  color: inherit;
}
a,
a:hover,
a:focus {
  text-decoration: none;
}
input,
button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
}
button {
  cursor: pointer;
}
input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  appearance: button;
  cursor: pointer;
}
textarea {
  resize: none;
  overflow: auto;
}
input,
button,
textarea,
select {
  border: 0;
  font-family: inherit;
  font-style: inherit;
  font-size: inherit;
  font-weight: normal;
  color: inherit;
  background: transparent;
}
select {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  white-space: nowrap;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
select::-ms-expand {
  display: none;
}
table {
  border-collapse: collapse;
}
svg path,
svg circle {
  fill: currentColor !important;
  opacity: 1 !important;
}
picture,
section,
main {
  display: block;
}
.fl {
  float: left;
}
.fr {
  float: right;
}
.clear {
  zoom: 1;
}
.clear:after {
  content: '';
  display: block;
  clear: both;
}
.container {
  margin: 0 auto;
  width: 85%;
  max-width: 1600px;
}
@media (max-width: 1260px) {
  .container {
    width: 90%;
  }
}
.bg-color1 {
  background-color: #fff;
}
.ptb100 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
@media (max-width: 767px) {
  .ptb100 {
    padding-top: 1.2rem;
    padding-bottom: 1.2em;
  }
}
.pt100 {
  padding-top: 1rem;
}
@media (max-width: 767px) {
  .pt100 {
    padding-top: 1.2rem;
  }
}
.pb100 {
  padding-bottom: 1rem;
}
@media (max-width: 767px) {
  .pb100 {
    padding-bottom: 1.2rem;
  }
}
.font14 {
  font-size: 14px;
}
.font16 {
  font-size: 16px;
}
.font18 {
  font-size: 18px;
}
.font20 {
  font-size: 20px;
}
.font22 {
  font-size: 22px;
}
.font24 {
  font-size: 24px;
}
.font26 {
  font-size: 26px;
}
.font28 {
  font-size: 28px;
}
.font30 {
  font-size: 30px;
}
.font32 {
  font-size: 32px;
}
.font34 {
  font-size: 34px;
}
.font36 {
  font-size: 36px;
}
.font40 {
  font-size: 40px;
}
.font42 {
  font-size: 42px;
}
.font44 {
  font-size: 44px;
}
.font46 {
  font-size: 46px;
}
.font48 {
  font-size: 48px;
}
.font50 {
  font-size: 50px;
}
.font52 {
  font-size: 52px;
}
.font54 {
  font-size: 54px;
}
.font56 {
  font-size: 56px;
}
.font60 {
  font-size: 60px;
}
.font72 {
  font-size: 72px;
}
.font80 {
  font-size: 80px;
}
@media (max-width: 1580px) {
  .font16 {
    font-size: 14px;
  }
  .font18 {
    font-size: 16px;
  }
  .font20 {
    font-size: 18px;
  }
  .font22 {
    font-size: 20px;
  }
  .font24 {
    font-size: 22px;
  }
  .font26 {
    font-size: 24px;
  }
  .font28 {
    font-size: 26px;
  }
  .font30 {
    font-size: 28px;
  }
  .font32 {
    font-size: 30px;
  }
  .font34 {
    font-size: 32px;
  }
  .font36 {
    font-size: 34px;
  }
  .font40 {
    font-size: 38px;
  }
  .font42,
  .font44 {
    font-size: 40px;
  }
  .font46 {
    font-size: 42px;
  }
  .font48 {
    font-size: 44px;
  }
  .font50 {
    font-size: 46px;
  }
  .font52 {
    font-size: 48px;
  }
  .font54 {
    font-size: 48px;
  }
  .font56 {
    font-size: 48px;
  }
  .font60,
  .font72,
  .font80 {
    font-size: 48px;
  }
}
@media (max-width: 1260px) {
  .font16 {
    font-size: 14px;
  }
  .font18 {
    font-size: 16px;
  }
  .font20 {
    font-size: 18px;
  }
  .font22 {
    font-size: 20px;
  }
  .font24 {
    font-size: 22px;
  }
  .font26 {
    font-size: 24px;
  }
  .font28 {
    font-size: 24px;
  }
  .font30 {
    font-size: 26px;
  }
  .font32 {
    font-size: 28px;
  }
  .font34 {
    font-size: 28px;
  }
  .font36,
  .font40 {
    font-size: 30px;
  }
  .font42,
  .font44 {
    font-size: 32px;
  }
  .font46 {
    font-size: 36px;
  }
  .font48,
  .font50 {
    font-size: 38px;
  }
  .font52,
  .font54,
  .font56,
  .font60,
  .font72,
  .font80 {
    font-size: 44px;
  }
}
@media (max-width: 767px) {
  .font14,
  .font16 {
    font-size: 0.28rem;
  }
  .font18,
  .font20 {
    font-size: 0.3rem;
  }
  .font22,
  .font24,
  .font26,
  .font27 {
    font-size: 0.32rem;
  }
  .font28 {
    font-size: 0.36rem;
  }
  .font30,
  .font32,
  .font34 {
    font-size: 0.4rem;
  }
  .font36,
  .font40,
  .font42,
  .font44,
  .font46 {
    font-size: 0.46rem;
  }
  .font48,
  .font50,
  .font52,
  .font54,
  .font56,
  .font60,
  .font72,
  .font80 {
    font-size: 0.58rem;
  }
}
@media all and (-moz-min-device-pixel-ratio: 1.2) and (-moz-max-device-pixel-ratio: 1.5) and (max-width: 1260px), (-webkit-min-device-pixel-ratio: 1.2) and (-webkit-max-device-pixel-ratio: 1.5) and (max-width: 1260px), (min-resolution: 1.2dppx) and (max-resolution: 1.5dppx) and (max-width: 1260px) {
  body {
    font-size: 12px;
  }
  .font16,
  .font18 {
    font-size: 12px;
  }
  .font20,
  .font22,
  .font24,
  .font26 {
    font-size: 14px;
  }
  .font28 {
    font-size: 16px;
  }
  .font30 {
    font-size: 20px;
  }
  .font32 {
    font-size: 20px;
  }
  .font34 {
    font-size: 20px;
  }
  .font36,
  .font40 {
    font-size: 20px;
  }
  .font42,
  .font44 {
    font-size: 20px;
  }
  .font46 {
    font-size: 30px;
  }
  .font48,
  .font50 {
    font-size: 30px !important;
  }
  .font52,
  .font54,
  .font56,
  .font60,
  .font72,
  .font80 {
    font-size: 32px;
  }
}
.public-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.public-btn .a,
.public-btn a {
  min-width: 1.2rem;
  height: 0.42rem;
  padding: 0 0 0 0.54rem;
  position: relative;
  z-index: 1;
  transition: all 0.4s;
  display: flex;
  align-items: center;
}
@media (max-width: 991px) {
  .public-btn .a,
  .public-btn a {
    height: 0.6rem;
    padding: 0 0 0 0.7rem;
  }
}
.public-btn .a span,
.public-btn a span {
  color: #131319;
}
.public-btn .a i,
.public-btn a i {
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: linear-gradient(to right, #00cccc, #9bfa7a);
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 0;
  top: 0;
  transition: all 0.4s;
}
@media (max-width: 991px) {
  .public-btn .a i,
  .public-btn a i {
    width: 0.6rem;
    height: 0.6rem;
  }
}
.public-btn .a i svg,
.public-btn a i svg {
  width: 10px;
  height: 10px;
  color: #fff;
}
.public-btn .a:hover,
.public-btn a:hover {
  padding: 0 0.54rem 0 0;
}
@media (max-width: 991px) {
  .public-btn .a:hover,
  .public-btn a:hover {
    padding: 0 0.7rem 0 0;
  }
}
.public-btn .a:hover i,
.public-btn a:hover i {
  left: calc(100% - 0.42rem);
}
@media (max-width: 991px) {
  .public-btn .a:hover i,
  .public-btn a:hover i {
    left: calc(100% - 0.6rem);
  }
}
.public-img {
  display: block;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.public-img::before {
  content: "";
  display: block;
  position: relative;
  z-index: 0;
  padding-top: 100%;
}
.public-img > img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.8s;
}
.public-content {
  color: #666;
  line-height: 1.8;
}
.public-content a {
  color: #666;
}
.public-content table {
  max-width: 100%;
}
.public-content table td,
.public-content table th {
  padding: 10px 15px;
  border: 1px solid #dbf1ed;
}
.public-content li {
  margin-left: 15px;
  list-style: disc;
}
.public-content ol {
  margin-left: 15px;
  list-style: decimal;
}
.public-content img,
.public-content video {
  max-width: 100%;
  height: auto !important;
}
.public-content blockquote {
  padding-left: 0.2rem;
  border-left: 0.05rem solid #eee;
  line-height: 1;
}
/* 占位标签，设置导航样式 */
#c-placeholder {
  width: 100%;
  height: 100px;
  display: block;
}
@media (max-width: 991px) {
  #c-placeholder {
    height: 60px;
  }
}
/*头部*/
#c-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 900;
  width: 100%;
  padding: 0.1rem 0;
  text-align: center;
  color: #fff;
  transition: 0.4s;
}
#c-header .container {
  width: 1720px;
  max-width: 90%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
@media (max-width: 991px) {
  #c-header .container {
    position: initial;
  }
}
#c-header .c-right-box {
  display: flex;
  align-items: center;
}
#c-header.c-head-move {
  top: -100px;
}
@media (max-width: 991px) {
  #c-header.c-head-move {
    top: -calc(50.4px);
  }
}
#c-header .logo {
  display: flex;
  align-items: center;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9;
}
@media (max-width: 991px) {
  #c-header .logo {
    position: relative;
    top: initial;
    transform: translateY(0);
  }
}
#c-header .logo a {
  width: 146px;
  height: 40px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  transition: all 0.4s;
  position: relative;
  z-index: 1;
}
#c-header .logo a img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  transition: all 0.4s;
}
#c-header .logo a img:nth-child(2) {
  opacity: 0;
}
#c-header .c-switch {
  position: relative;
  display: none;
  width: 24px;
  height: 20px;
  cursor: pointer;
  z-index: 2;
}
@media (max-width: 991px) {
  #c-header .c-switch {
    display: block;
  }
}
#c-header .c-switch i {
  position: absolute;
  left: 0;
  height: 2px;
  width: 100%;
  background: #fff;
  transition: all 0.4s;
}
#c-header .c-switch i:nth-child(1) {
  top: 0;
}
#c-header .c-switch i:nth-child(3) {
  bottom: 0;
}
#c-header .c-switch i:nth-child(2) {
  top: 50%;
  margin-top: -1px;
}
#c-header .right-box {
  width: 100%;
  position: relative;
  z-index: 1;
}
@media (max-width: 991px) {
  #c-header .right-box {
    width: 101vw;
    height: var(--vh);
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    display: none;
    padding: calc(50px + 0.8rem) 5% 0.6rem;
  }
  #c-header .right-box::before {
    content: '';
    width: 100%;
    height: 60px;
    background: #000;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  #c-header .right-box::before {
    height: 50px;
  }
}
@media (max-width: 767px) {
  #c-header .right-box {
    padding: 80px 5% 0.6rem;
  }
}
#c-header .right-box .menu {
  width: 100%;
  display: flex;
  justify-content: center;
}
@media (max-width: 991px) {
  #c-header .right-box .menu {
    justify-content: flex-start;
  }
}
#c-header .right-box .menu ul {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  #c-header .right-box .menu ul {
    width: 100%;
  }
}
#c-header .right-box .menu ul li {
  margin-right: 0.7rem;
}
@media (max-width: 991px) {
  #c-header .right-box .menu ul li {
    width: 100%;
    margin-right: 0;
    border-bottom: 1px solid #eee;
  }
}
#c-header .right-box .menu ul li:last-child {
  margin-right: 0;
}
#c-header .right-box .menu ul li .link {
  display: flex;
  align-items: center;
}
@media (max-width: 991px) {
  #c-header .right-box .menu ul li .link {
    width: 100%;
    justify-content: space-between;
  }
}
#c-header .right-box .menu ul li .link a {
  color: #fff;
  transition: all 0.4s;
  line-height: 40px;
  font-weight: bold;
}
@media (max-width: 991px) {
  #c-header .right-box .menu ul li .link a {
    font-size: 18px;
    color: #000;
    height: 60px;
    line-height: 24px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }
}
#c-header .right-box .menu ul li .link i {
  width: 10px;
  height: 10px;
  display: flex;
  align-items: center;
  margin-left: 0.1rem;
}
@media (max-width: 991px) {
  #c-header .right-box .menu ul li .link i {
    width: 20px;
    font-size: 16px;
    height: 20px;
  }
}
#c-header .right-box .menu ul li .link i svg {
  width: 100%;
  height: 100%;
  transform: rotateZ(90deg);
  color: #fff;
}
#c-header .right-box .menu ul li .s-menu {
  width: 100vw;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #000;
  padding: 0.8rem 0 1.04rem;
  display: none;
}
@media (max-width: 991px) {
  #c-header .right-box .menu ul li .s-menu {
    position: relative;
    top: initial;
    left: initial;
    transform: translateX(0);
    padding: 0.1rem 0.2rem;
    background: none;
  }
}
#c-header .right-box .menu ul li .s-menu .s-box {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
#c-header .right-box .menu ul li .s-menu .s-box .item {
  width: 5.04rem;
  margin: 0 0.22rem;
}
@media (max-width: 991px) {
  #c-header .right-box .menu ul li .s-menu .s-box .item {
    width: 100%;
    margin: 0;
  }
}
#c-header .right-box .menu ul li .s-menu .s-box .item a {
  display: block;
  position: relative;
  z-index: 1;
}
#c-header .right-box .menu ul li .s-menu .s-box .item a .public-img {
  width: 100%;
  border-radius: 0.2rem;
}
@media (max-width: 991px) {
  #c-header .right-box .menu ul li .s-menu .s-box .item a .public-img {
    display: none;
  }
}
#c-header .right-box .menu ul li .s-menu .s-box .item a .public-img::before {
  padding-top: calc(246/504*100%);
}
#c-header .right-box .menu ul li .s-menu .s-box .item a .tbox {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  padding: 0.34rem 0.3rem 0.3rem;
  text-align: left;
}
@media (max-width: 991px) {
  #c-header .right-box .menu ul li .s-menu .s-box .item a .tbox {
    position: relative;
    height: initial;
    top: initial;
    left: initial;
    padding: 0.15rem 0;
  }
}
#c-header .right-box .menu ul li .s-menu .s-box .item a .tbox .t1 {
  line-height: calc(32/22);
  color: #fff;
}
@media (max-width: 991px) {
  #c-header .right-box .menu ul li .s-menu .s-box .item a .tbox .t1 {
    color: #000;
    font-size: 16px;
  }
}
#c-header .right-box .menu ul li .s-menu .s-box .item a .tbox .t2 {
  line-height: calc(28/18);
  margin-top: 6px;
  color: #fff;
  font-weight: 600;
}
@media (max-width: 991px) {
  #c-header .right-box .menu ul li .s-menu .s-box .item a .tbox .t2 {
    display: none;
  }
}
#c-header .right-box .menu ul li .s-menu .s-box .item a .tbox .icons {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  position: absolute;
  left: 0.3rem;
  bottom: 0.3rem;
  z-index: 1;
}
@media (max-width: 991px) {
  #c-header .right-box .menu ul li .s-menu .s-box .item a .tbox .icons {
    display: none;
  }
}
#c-header .right-box .menu ul li .s-menu .s-box .item a .tbox .icons::before {
  content: '';
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(to right, #00cbcb, #92f77f);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  opacity: 0;
  transition: all 0.4s;
}
#c-header .right-box .menu ul li .s-menu .s-box .item a .tbox .icons svg {
  width: 10px;
  height: 10px;
  color: #fff;
  position: relative;
  z-index: 2;
}
#c-header .right-box .menu ul li .s-menu .s-box .item a .tbox .icons:hover::before {
  opacity: 1;
}
#c-header .right-box .menu ul li .s-menu .s-box .item a:hover .public-img img {
  transform: scale(1.05);
}
#c-header .right-box .lang {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  cursor: pointer;
}
@media (max-width: 991px) {
  #c-header .right-box .lang {
    position: relative;
    top: initial;
    transform: translateY(0);
    margin-top: 0.5rem;
  }
}
#c-header .right-box .lang .txt {
  display: flex;
  align-items: center;
}
#c-header .right-box .lang .txt .icon {
  width: 18px;
  height: 18px;
}
#c-header .right-box .lang .txt .icon svg {
  width: 100%;
  height: 100%;
}
#c-header .right-box .lang .txt span {
  color: #fff;
  margin: 0 0.1rem;
  line-height: 30px;
}
#c-header .right-box .lang .txt i {
  width: 10px;
  height: 10px;
  display: flex;
  align-items: center;
}
#c-header .right-box .lang .txt i svg {
  width: 100%;
  height: 100%;
  transform: rotateZ(90deg);
}
#c-header .right-box .lang .lang-menu {
  display: none;
  width: 120px;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  box-shadow: 0 0 0.1rem 0 rgba(0, 0, 0, 0.1);
  background: #fff;
  border-radius: 5px;
  padding: 10px 5px;
}
@media (max-width: 991px) {
  #c-header .right-box .lang .lang-menu {
    left: 0;
    transform: translateX(0);
  }
}
#c-header .right-box .lang .lang-menu a {
  display: block;
  color: #131319;
  transition: all 0.4s;
  margin-bottom: 10px;
}
#c-header .right-box .lang .lang-menu a:last-child {
  margin-bottom: 0;
}
#c-header .right-box .lang .lang-menu a:hover {
  color: #00cbcb;
}
#c-header.c-style2 {
  color: #fff;
  background: #000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
@media (min-width: 992px) {
  #c-header.c-style2 {
    padding: 0.1rem 0;
  }
}
@media (min-width: 992px) {
  #c-header.c-style2 .logo a {
    height: 40px;
  }
}
@media (max-width: 991px) {
  #c-header.c-style2 .logo a img:nth-child(1) {
    opacity: 1;
  }
  #c-header.c-style2 .logo a img:nth-child(2) {
    opacity: 0;
  }
}
#c-header.c-style2 .right-box .menu ul li .link a {
  color: #fff;
}
@media (min-width: 992px) {
  #c-header.c-style2 .right-box .menu ul li .link a {
    line-height: 40px;
  }
}
@media (max-width: 991px) {
  #c-header.c-style2 .right-box .menu ul li .link a {
    color: #000;
  }
}
#c-header.c-style2 .right-box .menu ul li .link i svg {
  color: #fff;
}
@media (max-width: 991px) {
  #c-header.c-style2 .right-box .menu ul li .link i svg {
    color: #000;
  }
}
#c-header.c-style2 .right-box .lang .txt {
  color: #fff;
}
@media (max-width: 991px) {
  #c-header.c-style2 .right-box .lang .txt {
    color: #000;
  }
}
#c-header.c-style2 .right-box .lang .txt span {
  color: #fff;
}
@media (max-width: 991px) {
  #c-header.c-style2 .right-box .lang .txt span {
    color: #000;
  }
}
#c-header.black {
  color: #000;
  background: none;
  box-shadow: none;
}
#c-header.black .logo a img:nth-child(1) {
  opacity: 0;
}
#c-header.black .logo a img:nth-child(2) {
  opacity: 1;
}
#c-header.black .c-switch i {
  background: #000;
}
#c-header.black .right-box .menu ul li .link a {
  color: #000;
}
#c-header.black .right-box .menu ul li .link i svg {
  color: #000;
}
#c-header.black .right-box .lang .txt .icon,
#c-header.black .right-box .lang .txt i {
  color: #000;
}
#c-header.black .right-box .lang .txt span {
  color: #000;
}
.c-open #c-header .c-switch i:nth-child(2) {
  opacity: 0;
}
.c-open #c-header .c-switch i:nth-child(1) {
  top: 50%;
  margin-top: -1px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.c-open #c-header .c-switch i:nth-child(3) {
  bottom: 50%;
  margin-bottom: -1px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
@media (max-width: 991px) {
  .c-open #c-header .logo a img:nth-child(1) {
    opacity: 1;
  }
  .c-open #c-header .logo a img:nth-child(2) {
    opacity: 0;
  }
}
.c-open #c-header .c-switch i {
  background: #fff;
}
/* 底部 */
#c-footer {
  width: 100%;
  background: url(../images/footer-bg.jpg) center center no-repeat;
  background-size: cover;
  position: relative;
  z-index: 2;
}
#c-footer .top {
  width: 100%;
  padding: 0.8rem 0 0.6rem;
}
#c-footer .top .container {
  position: relative;
  z-index: 1;
}
@media (max-width: 991px) {
  #c-footer .top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }
}
#c-footer .top .container .logo {
  width: 146px;
  height: 50px;
  position: absolute;
  left: 0%;
  top: 0;
}
@media (max-width: 991px) {
  #c-footer .top .container .logo {
    position: relative;
    z-index: 1;
  }
}
#c-footer .top .container .logo a {
  width: 100%;
  height: 100%;
  display: block;
}
#c-footer .top .container .logo a a {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
#c-footer .top .container .menu {
  display: flex;
  justify-content: center;
}
@media (max-width: 991px) {
  #c-footer .top .container .menu {
    display: none;
  }
}
#c-footer .top .container .menu ul {
  display: flex;
}
#c-footer .top .container .menu ul li {
  margin-right: 0.7rem;
}
@media (max-width: 1260px) {
  #c-footer .top .container .menu ul li {
    margin-right: 0.3rem;
  }
}
#c-footer .top .container .menu ul li:last-child {
  margin-right: 0;
}
#c-footer .top .container .menu ul li .link {
  display: flex;
  align-items: center;
}
#c-footer .top .container .menu ul li .link a {
  color: #fff;
  transition: all 0.4s;
  line-height: 50px;
}
#c-footer .top .container .menu ul li .link i {
  width: 10px;
  height: 10px;
  display: flex;
  align-items: center;
  margin-left: 0.1rem;
}
#c-footer .top .container .menu ul li .link i svg {
  width: 100%;
  height: 100%;
  color: #fff;
}
#c-footer .top .container .focus {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  display: flex;
}
@media (max-width: 991px) {
  #c-footer .top .container .focus {
    position: relative;
    top: initial;
    transform: translateY(0);
  }
}
@media (max-width: 767px) {
  #c-footer .top .container .focus {
    margin-top: 0.5rem;
  }
}
#c-footer .top .container .focus a {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: url(../images/footer-focus-bg.png) center center no-repeat;
  background-size: contain;
  position: relative;
  z-index: 1;
  margin-right: 0.23rem;
}
#c-footer .top .container .focus a:last-child {
  margin-right: 0;
}
#c-footer .top .container .focus a img,
#c-footer .top .container .focus a svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  color: #fff;
}
#c-footer .top .container .focus a .ewm {
  width: 120px;
  height: 120px;
  background: #fff;
  border-radius: 3px;
  padding: 5px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: calc(100% + 10px);
  box-shadow: 0 0 0.1rem 0 rgba(0, 0, 0, 0.1);
  display: none;
}
#c-footer .top .container .focus a .ewm img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
#c-footer .top .container .focus a:hover .ewm {
  display: block;
}
#c-footer .down {
  width: 100%;
  padding: 0.27rem 0 0.38rem;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}
#c-footer .down .container .flink {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
#c-footer .down .container .flink span {
  color: #fff;
}
#c-footer .down .container .flink a {
  color: #c2c6cf;
  transition: all 0.4s;
  margin-left: 0.2rem;
}
#c-footer .down .container .flink a:hover {
  color: #fff;
}
#c-footer .down .container .tbox {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 0.27rem;
}
#c-footer .down .container .tbox .copy {
  color: rgba(194, 198, 207, 0.6);
}
@media (max-width: 991px) {
  #c-footer .down .container .tbox .copy {
    width: 100%;
    text-align: center;
  }
}
#c-footer .down .container .tbox .copy a {
  color: rgba(194, 198, 207, 0.6);
  margin-left: 0.1rem;
}
#c-footer .down .container .tbox .menu {
  display: flex;
}
@media (max-width: 991px) {
  #c-footer .down .container .tbox .menu {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 0.2rem;
  }
}
#c-footer .down .container .tbox .menu a {
  color: #fff;
  text-decoration: underline;
  margin-right: 0.2rem;
}
#c-footer .down .container .tbox .menu a:last-child {
  margin-right: 0;
}
#c-go-top {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  bottom: 10px;
  right: 10px;
  z-index: 999;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--color);
  cursor: pointer;
}
@media (max-width: 767px) {
  #c-go-top {
    display: none !important;
  }
}
#c-go-top img,
#c-go-top svg {
  width: 50%;
  height: 50%;
  color: #fff;
  transform: rotate(-90deg);
}
#c-code-pop {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 910;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}
#c-code-pop .c-img-box {
  position: absolute;
  top: 50%;
  left: 50%;
  padding: 20px;
  width: 200px;
  border-radius: 5px;
  background: #fff;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
#c-code-pop .c-img-box .c-close {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  bottom: -60px;
  left: 50%;
  margin-left: -20px;
  cursor: pointer;
  background-color: #fff;
  border-radius: 50%;
  transition: all 0.4s;
  color: #333;
}
#c-code-pop .c-img-box .c-close img,
#c-code-pop .c-img-box .c-close svg {
  margin: 4px;
  width: 18px;
  height: 18px;
}
#c-code-pop .c-img-box .c-close:hover {
  color: #fff;
  background-color: var(--color);
}
#c-code-pop .c-img-box > img {
  width: 100%;
}
#c-code-pop .c-img-box .c-text {
  padding-top: 10px;
  line-height: 1;
  text-align: center;
  color: #333;
}
.banner {
  width: 100%;
  height: var(--vh);
  position: relative;
  z-index: 1;
  display: block;
}
.banner .img {
  width: 100%;
  height: 100%;
}
.banner .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 991px) {
  .banner .img img.pc {
    display: none;
  }
}
.banner .img img.mb {
  display: none;
}
@media (max-width: 991px) {
  .banner .img img.mb {
    display: block;
  }
}
.banner .container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.banner .container .tbox {
  width: 50%;
}
@media (max-width: 991px) {
  .banner .container .tbox {
    width: 100%;
  }
}
.banner .container .tbox .title {
  line-height: calc(70 / 50);
  color: #fff;
  font-weight: bold;
}
@media (max-width: 1580px) {
  .banner .container .tbox .title {
    font-size: 0.5rem;
  }
}
.banner .container .tbox .play {
  margin-top: 1.5rem;
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  background: #fff;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}
.banner .container .tbox .play img,
.banner .container .tbox .play svg {
  width: 12px;
  height: 12px;
  color: #161d28;
}
.index-box1 {
  width: 100%;
  position: relative;
  z-index: 1;
  padding: 1.55rem 0 1.2rem;
  overflow: hidden;
}
.index-box1 .container .top .title {
  color: #131319;
  text-align: center;
  line-height: calc(58/48);
}
.index-box1 .container .top .txt {
  width: 960px;
  max-width: 100%;
  line-height: 2;
  margin: 0.3rem auto 0;
  color: #666;
  text-align: center;
}
.index-box1 .container .box {
  width: 100%;
  margin-top: 1.65rem;
}
.index-box1 .container .box .video {
  width: 100%;
}
.index-box1 .container .box .video video {
  width: 100%;
}
.index-box1 .container .box .imgs {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.index-box1 .container .box .imgs .public-img {
  width: 3.4rem;
}
.index-box1 .container .box .imgs .public-img::before {
  padding-top: calc(150/340*100%);
}
.index-box1 .container .box .imgs .icon {
  width: 16px;
  height: 16px;
  margin: 0.52rem 1.04rem 0;
}
.index-box1 .container .more {
  display: flex;
  justify-content: center;
  margin-top: 1.65rem;
}
.index-box2 {
  width: 100%;
  position: relative;
  z-index: 1;
}
.index-box2 .box {
  width: 100%;
  height: 100vh;
  position: sticky;
  position: -webkit-sticky;
  top: 0;
}
.index-box2 .box .img {
  width: 50%;
  height: 100vh;
  top: 0;
  margin-left: auto;
  position: relative;
  z-index: 1;
}
@media (max-width: 991px) {
  .index-box2 .box .img {
    width: 100%;
  }
  .index-box2 .box .img::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 4;
    background: rgba(0, 0, 0, 0.4);
  }
}
.index-box2 .box .img li {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  overflow: hidden;
}
.index-box2 .box .img li:nth-child(1) {
  z-index: 3;
}
.index-box2 .box .img li:nth-child(2) {
  z-index: 1;
}
.index-box2 .box .img li img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}
@media (max-width: 991px) {
  .index-box2 .box .img li .pc {
    display: none;
  }
}
.index-box2 .box .img li .mb {
  display: none;
}
@media (max-width: 991px) {
  .index-box2 .box .img li .mb {
    display: block;
  }
}
.index-box2 .box .menu {
  width: 3.12rem;
  height: 2.49rem;
  background: url(../images/index-box2-bg1.png) center center no-repeat;
  background-size: contain;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
@media (max-width: 991px) {
  .index-box2 .box .menu {
    left: 0;
    top: 0.5rem;
    transform: translate(0);
  }
}
.index-box2 .box .menu ul li {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  opacity: 0;
  transition: all 0.4s;
}
.index-box2 .box .menu ul li span {
  text-shadow: 0 0 0.24rem rgba(0, 255, 252, 0.43);
}
.index-box2 .box .menu ul li.on {
  opacity: 1;
}
.index-box2 .box .content {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background: url(../images/index-box2-bg2.jpg) left top no-repeat;
  background-size: 50% 100%;
}
@media (max-width: 991px) {
  .index-box2 .box .content {
    background: none;
  }
}
.index-box2 .box .content .container {
  height: 100%;
  padding-top: 2.5rem;
  position: relative;
  z-index: 1;
}
@media all and (-moz-min-device-pixel-ratio: 1.2) and (-moz-max-device-pixel-ratio: 1.5) and (max-width: 1260px), (-webkit-min-device-pixel-ratio: 1.2) and (-webkit-max-device-pixel-ratio: 1.5) and (max-width: 1260px), (min-resolution: 1.2dppx) and (max-resolution: 1.5dppx) and (max-width: 1260px) {
  .index-box2 .box .content .container {
    padding-top: 1rem;
  }
}
@media (max-width: 991px) {
  .index-box2 .box .content .container {
    padding-top: 2.8rem;
  }
}
.index-box2 .box .content .container .tbox {
  width: calc(610/1600*100%);
  position: relative;
  z-index: 1;
}
@media (max-width: 1580px) {
  .index-box2 .box .content .container .tbox {
    width: calc(700/1600*100%);
  }
}
@media (max-width: 991px) {
  .index-box2 .box .content .container .tbox {
    width: 100%;
  }
}
.index-box2 .box .content .container .tbox ul li {
  width: 100%;
  position: absolute;
  top: 0;
  z-index: 1;
  opacity: 0;
  transition: all 0.4s;
}
.index-box2 .box .content .container .tbox ul li .title {
  line-height: calc(60/48);
  color: #fff;
}
.index-box2 .box .content .container .tbox ul li .txt {
  line-height: calc(32/16);
  color: #fff;
  margin-top: 0.4rem;
}
.index-box2 .box .content .container .tbox ul li .more {
  display: flex;
  margin-top: 0.93rem;
}
.index-box2 .box .content .container .tbox ul li .more .public-btn a span {
  color: #00cccc;
}
.index-box2 .box .content .container .tbox ul li.on {
  z-index: 2;
  opacity: 1;
}
.index-box2 .box .content .container .point {
  position: absolute;
  left: 0;
  bottom: 0.82rem;
  z-index: 3;
}
.index-box2 .box .content .container .point ul li {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #686e6d;
  margin-bottom: 8px;
  cursor: pointer;
  transition: all 0.4s;
}
.index-box2 .box .content .container .point ul li:last-child {
  margin-bottom: 0;
}
.index-box2 .box .content .container .point ul li.on {
  background: #0cd0c5;
}
.index-box3 {
  width: 100%;
  position: relative;
  z-index: 1;
  background: url(../images/index-box3-bg.jpg) center center no-repeat;
  background-size: cover;
  padding: 0.63rem 0 1.15rem;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.index-box3 .ld {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
}
.index-box3 .container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.index-box3 .container .img {
  width: 50%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 1rem 0;
  position: relative;
  z-index: 1;
}
@media (max-width: 991px) {
  .index-box3 .container .img {
    width: 100%;
    margin: 0 auto;
  }
}
.index-box3 .container .img .bgs {
  width: 100%;
  display: flex;
  justify-content: center;
}
.index-box3 .container .img .bgs img {
  width: 4.66rem;
}
.index-box3 .container .img .list {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 1.05rem;
  z-index: 2;
}
.index-box3 .container .img .list .item {
  width: 100%;
  height: 1.4rem;
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.index-box3 .container .img .list .item:nth-child(1) {
  z-index: 4;
  transition: all 0.6s;
}
.index-box3 .container .img .list .item:nth-child(1) .bgs {
  transform: translate(-50%, -50%) rotateX(-66deg) rotateZ(44deg);
}
.index-box3 .container .img .list .item:nth-child(1) .border {
  height: 119%;
  top: 50%;
}
.index-box3 .container .img .list .item:nth-child(2) {
  height: 0;
  opacity: 0;
  z-index: 3;
  transition: all 0.6s 0.1s;
}
.index-box3 .container .img .list .item:nth-child(2)::before {
  content: '';
  width: 4.14rem;
  height: 4.65rem;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  pointer-events: none;
  background: url(../images/index-box3-bg1.png) center bottom no-repeat;
  background-size: 100%;
  display: none;
}
.index-box3 .container .img .list .item:nth-child(2) .border {
  height: 89%;
  top: 54%;
}
.index-box3 .container .img .list .item:nth-child(2) .bgs {
  width: 3rem;
  height: 3rem;
  top: 54%;
  transform: translate(-50%, -50%) rotateX(-65deg) rotateZ(45deg);
}
.index-box3 .container .img .list .item:nth-child(3) {
  height: 0;
  opacity: 0;
  z-index: 2;
  transition: all 0.6s 0.2s;
}
.index-box3 .container .img .list .item:nth-child(3)::before {
  content: '';
  width: 4.14rem;
  height: 2.25rem;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  pointer-events: none;
  background: url(../images/index-box3-bg2.png) center bottom no-repeat;
  background-size: 100%;
  display: none;
}
.index-box3 .container .img .list .item:nth-child(3) .border {
  height: 131%;
  top: 38%;
}
.index-box3 .container .img .list .item:nth-child(3) .bgs {
  width: 3.1rem;
  height: 3rem;
  top: 49%;
  transform: translate(-50%, -55%) rotateX(-65deg) rotateZ(45deg);
}
.index-box3 .container .img .list .item:nth-child(4) {
  height: 0;
  opacity: 0;
  transition: all 0.6s 0.3s;
}
.index-box3 .container .img .list .item:nth-child(4)::before {
  content: '';
  width: 4.14rem;
  height: 1.94rem;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  pointer-events: none;
  background: url(../images/index-box3-bg3.png) center bottom no-repeat;
  background-size: 100%;
  display: none;
}
.index-box3 .container .img .list .item:nth-child(4) .border {
  height: 177%;
  top: 18%;
}
.index-box3 .container .img .list .item:nth-child(4) .bgs {
  width: 3.33rem;
  height: 3.33rem;
  top: 18%;
  transform: translate(-50%, -50%) rotateX(-65deg) rotateZ(45deg);
}
.index-box3 .container .img .list .item .border {
  width: 100%;
  height: 90%;
  position: absolute;
  left: 50%;
  top: 54%;
  transform: translate(-50%, -50%);
  background: url(../images/index-box3-border.png) center center no-repeat;
  background-size: contain;
  pointer-events: none;
}
.index-box3 .container .img .list .item .bgs {
  width: 3.1rem;
  height: 3.1rem;
  border-radius: 0.2rem;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotateX(-65deg) rotateZ(45deg);
  box-sizing: border-box;
  z-index: 1;
  cursor: pointer;
  overflow: hidden;
}
.index-box3 .container .img .list .item .bgs::before {
  content: '';
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #00cbcb, #92f77f);
  border-radius: 0.2rem;
  position: absolute;
  left: 50%;
  bottom: 50%;
  transform: translate(-50%, 50%) scale(0);
  transform-origin: center center;
  z-index: 2;
  opacity: 0;
  transition: all 0.4s;
}
.index-box3 .container .img .list .item span {
  color: #131319;
  position: relative;
  z-index: 2;
  font-size: 24px;
  cursor: pointer;
  pointer-events: none;
}
@media (max-width: 1580px) {
  .index-box3 .container .img .list .item span {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .index-box3 .container .img .list .item span {
    font-size: 18px;
  }
}
.index-box3 .container .img .list .item.on .bgs::before {
  opacity: 1;
  transform: translate(-50%, 50%) scale(1);
}
.index-box3 .container .img .list .item.on span {
  color: #fff;
}
.index-box3 .container .img.on .list .item:nth-child(1) {
  padding-bottom: 0.2rem;
}
.index-box3 .container .img.on .list .item:nth-child(2) {
  height: 1.9rem;
  margin-top: 0;
  opacity: 1;
  padding-top: 0.18rem;
}
.index-box3 .container .img.on .list .item:nth-child(3) {
  height: 1.3rem;
  margin-top: 0;
  opacity: 1;
  padding-bottom: 0.2rem;
}
.index-box3 .container .img.on .list .item:nth-child(4) {
  height: 1.07rem;
  margin-top: 0;
  align-items: flex-start;
  padding-top: 0.13rem;
  opacity: 1;
}
.index-box3 .container .tbox {
  width: calc(625/1600*100%);
  padding-top: 0.6rem;
}
@media (max-width: 1580px) {
  .index-box3 .container .tbox {
    width: calc(780/1600*100%);
  }
}
@media (max-width: 991px) {
  .index-box3 .container .tbox {
    width: 100%;
    padding-top: 0;
  }
}
.index-box3 .container .tbox .item {
  width: 100%;
  display: none;
}
.index-box3 .container .tbox .item.on {
  display: block;
}
.index-box3 .container .tbox .item .title {
  color: #131319;
  line-height: calc(58/48);
}
.index-box3 .container .tbox .item .txt {
  margin-top: 0.28rem;
  color: #282832;
  line-height: calc(32/16);
}
.index-box3 .container .tbox .item .txt span {
  display: block;
  position: relative;
  z-index: 1;
  padding-left: 13px;
}
.index-box3 .container .tbox .item .txt span::before {
  content: '';
  width: 6px;
  height: 6px;
  background: rgba(19, 19, 25, 0.7);
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 15px;
}
@media (max-width: 1580px) {
  .index-box3 .container .tbox .item .txt span::before {
    top: 14px;
  }
}
@media (max-width: 991px) {
  .index-box3 .container .tbox .item .txt span::before {
    top: 13px;
  }
}
@media (max-width: 767px) {
  .index-box3 .container .tbox .item .txt span::before {
    top: 12px;
  }
}
.index-box3 .container .tbox .item .more {
  margin-top: 0.84rem;
  display: flex;
}
.index-box3.technology-box1 .container {
  align-items: center;
}
.index-box3.technology-box1 .container .tbox {
  width: calc(680/1600*100%);
  padding: 0.63rem 0 0.74rem;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}
@media (max-width: 1580px) {
  .index-box3.technology-box1 .container .tbox {
    width: calc(780/1600*100%);
  }
}
@media (max-width: 991px) {
  .index-box3.technology-box1 .container .tbox {
    width: 100%;
  }
}
.index-box4 {
  width: 100%;
  position: relative;
  z-index: 1;
}
.index-box4 .img {
  width: 100%;
  height: 100vh;
  position: relative;
  z-index: 1;
}
.index-box4 .img .img1 {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}
.index-box4 .img .img1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.index-box4 .img .img1 video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
}
.index-box4 .img .img2 {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
}
.index-box4 .img .img2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.index-box4 .img .img3 {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 3;
}
.index-box4 .img .img3 svg {
  width: 100%;
  height: 100%;
  color: #fff;
}
.index-box4 .img .img3 svg path {
  fill: none !important;
}
.index-box4 .img .img3 .car {
  transform-origin: center center;
}
.index-box4 .img .img3 #carGroup {
  transform-origin: center center;
}
.index-box4 .img .container {
  position: absolute;
  height: 100%;
  z-index: 2;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  padding-top: 1.55rem;
}
.index-box4 .img .container .title {
  color: #fff;
  text-align: center;
  line-height: calc(60/48);
}
.index-box4 .pb {
  width: 100%;
  display: none;
}
.index-box5 {
  width: 100%;
  position: relative;
  z-index: 1;
  padding: 1.55rem 0 1.6rem;
}
.index-box5 .container .title {
  color: #131319;
  text-align: center;
  line-height: calc(58/48);
}
.index-box5 .container .list {
  width: 100%;
  margin-top: 0.73rem;
}
.index-box5 .container .list .swiper-container {
  width: 100%;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-bottom: 0.81rem;
}
.index-box5 .container .list .swiper-container .swiper-slide a {
  display: block;
}
.index-box5 .container .list .swiper-container .swiper-slide a .public-img {
  width: 100%;
  border-radius: 0.15rem;
}
.index-box5 .container .list .swiper-container .swiper-slide a .public-img::before {
  padding-top: calc(500/480*100%);
}
.index-box5 .container .list .swiper-container .swiper-slide a .public-img::after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.index-box5 .container .list .swiper-container .swiper-slide a .tbox {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  padding: 0 0.4rem 0.35rem;
}
.index-box5 .container .list .swiper-container .swiper-slide a .tbox .time {
  color: #fff;
}
.index-box5 .container .list .swiper-container .swiper-slide a .tbox .txt {
  color: #fff;
  line-height: calc(30/22);
  margin-top: 0.18rem;
}
.index-box5 .container .list .swiper-container .swiper-pagination {
  width: 100%;
  display: block;
  bottom: 1px;
  top: initial;
  height: 1px;
  background: #eee;
}
.index-box5 .container .list .swiper-container .swiper-pagination .swiper-pagination-progressbar-fill {
  height: 3px;
  top: -1px;
  background: linear-gradient(to right, #00cbcb, #92f77f);
}
.index-box5 .container .more {
  display: flex;
  justify-content: center;
  margin-top: 0.8rem;
}
.Breadcrumb {
  width: 100%;
  padding: 17px 0;
}
.Breadcrumb .container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.Breadcrumb .container .home {
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
}
.Breadcrumb .container .home img,
.Breadcrumb .container .home svg {
  width: 100%;
  height: 100%;
  color: rgba(0, 0, 0, 0.3);
}
.Breadcrumb .container .home img path,
.Breadcrumb .container .home svg path {
  transition: all 0.4s;
}
.Breadcrumb .container .home:hover svg {
  color: #000;
}
.Breadcrumb .container a {
  color: rgba(0, 0, 0, 0.3);
  transition: all 0.4s;
  line-height: 24px;
}
.Breadcrumb .container a:hover {
  color: #000;
}
.Breadcrumb .container i {
  width: 12px;
  height: 12px;
  display: flex;
  align-items: center;
  margin: 0 10px;
}
.Breadcrumb .container i svg {
  width: 100%;
  height: 100%;
  color: rgba(0, 0, 0, 0.3);
}
.Breadcrumb .container span {
  color: rgba(0, 0, 0, 0.3);
  line-height: 24px;
}
.Breadcrumb.bw .container .home svg {
  color: rgba(255, 255, 255, 0.3);
}
.Breadcrumb.bw .container .home:hover svg {
  color: #fff;
}
.Breadcrumb.bw .container a {
  color: rgba(255, 255, 255, 0.3);
}
.Breadcrumb.bw .container a:hover {
  color: #fff;
}
.Breadcrumb.bw .container i svg {
  color: rgba(255, 255, 255, 0.3);
}
.Breadcrumb.bw .container span {
  color: rgba(255, 255, 255, 0.3);
}
.home-bg {
  background: url(../images/page-bg.png) center bottom no-repeat;
  background-size: 100%;
}
.privacyPolicy {
  width: 100%;
  padding: 0.8rem 0 1.1rem;
}
.privacyPolicy .container {
  width: 960px;
  max-width: 90%;
}
.privacyPolicy .container .top .title {
  text-align: center;
  color: #131319;
  line-height: calc(58/48);
}
.privacyPolicy .container .top .tips {
  width: 100%;
  border-radius: 0.12rem;
  background: #f6f8fb;
  text-align: center;
  margin-top: 0.55rem;
  line-height: calc(28/18);
  color: #bfbfbf;
  padding: 0.22rem 0;
}
@media (max-width: 767px) {
  .privacyPolicy .container .top .tips {
    font-size: 12px;
  }
}
.privacyPolicy .container .top .tips span {
  margin: 0 0.3rem;
  color: #131319;
}
.privacyPolicy .container .public-content {
  width: 100%;
  margin-top: 0.7rem;
  color: rgba(19, 19, 25, 0.7);
  line-height: calc(30/16);
}
.privacyPolicy .container .public-content ul {
  padding-left: 5px;
}
.notFound {
  width: 100%;
  padding: 1.68rem 0 0.58rem;
}
.notFound .container {
  position: relative;
  z-index: 1;
}
.notFound .container .img {
  display: flex;
  justify-content: center;
}
.notFound .container .txt {
  position: absolute;
  top: 60%;
  left: 0;
  width: 100%;
  text-align: center;
}
.sitemap {
  width: 100%;
  padding: 0.8rem 0 1.4rem;
  min-height: 80vh;
}
.sitemap .container .title {
  text-align: center;
  color: #131319;
  line-height: calc(58/48);
}
.sitemap .container .list {
  width: 100%;
  margin-top: 0.5rem;
}
.sitemap .container .list ul {
  display: flex;
  flex-wrap: wrap;
}
.sitemap .container .list ul li {
  width: calc(100% / 6);
  min-height: 3.8rem;
  border-right: 1px solid rgba(0, 0, 0, 0.07);
  padding-top: 0.13rem;
}
@media (max-width: 991px) {
  .sitemap .container .list ul li {
    width: calc(100% / 3);
    margin-bottom: 0.3rem;
  }
  .sitemap .container .list ul li:nth-child(3n) {
    border-right: none;
  }
}
@media (max-width: 767px) {
  .sitemap .container .list ul li {
    width: 100%;
    border-right: none;
    min-height: auto;
    margin-bottom: 0.5rem;
  }
}
.sitemap .container .list ul li:last-child {
  border-right: none;
}
.sitemap .container .list ul li .link {
  display: flex;
  justify-content: center;
}
@media (max-width: 767px) {
  .sitemap .container .list ul li .link {
    justify-content: flex-start;
  }
}
.sitemap .container .list ul li .link a {
  color: #131319;
  line-height: calc(30/20);
}
.sitemap .container .list ul li .s-menu {
  width: 100%;
  margin-top: 0.35rem;
}
@media (max-width: 767px) {
  .sitemap .container .list ul li .s-menu {
    padding-left: 0.3rem;
  }
}
.sitemap .container .list ul li .s-menu .s-link {
  display: flex;
  justify-content: center;
  margin-bottom: 0.1rem;
}
@media (max-width: 767px) {
  .sitemap .container .list ul li .s-menu .s-link {
    justify-content: flex-start;
  }
}
.sitemap .container .list ul li .s-menu .s-link a {
  color: rgba(19, 19, 25, 0.7);
  transition: all 0.4s;
  line-height: calc(28/18);
}
.sitemap .container .list ul li .s-menu .s-link a:hover {
  color: #131319;
}
.prodcut-banner {
  width: 100%;
  position: relative;
  z-index: 1;
}
.prodcut-banner .box {
  width: 100%;
  height: var(--vh);
  position: sticky;
  position: -webkit-sticky;
  top: 0;
}
.prodcut-banner .box .img {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.prodcut-banner .box .img::after {
  content: '';
  width: 50%;
  height: 3.3rem;
  background: url(../images/prodcut-banner-zz.png) left bottom no-repeat;
  background-size: contain;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
}
.prodcut-banner .box .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 991px) {
  .prodcut-banner .box .img img.pc {
    display: none;
  }
}
.prodcut-banner .box .img img.mb {
  display: none;
}
@media (max-width: 991px) {
  .prodcut-banner .box .img img.mb {
    display: block;
  }
}
.prodcut-banner .box .img .car {
  width: 1.31rem;
  height: 1.31rem;
  position: absolute;
  left: calc(1209/1920*100%);
  top: calc(369/970*100%);
  z-index: 2;
  display: flex;
  align-items: center;
}
@media (max-width: 1260px) {
  .prodcut-banner .box .img .car {
    left: calc(1250/1920*100%);
  }
}
@media (max-width: 1024px) {
  .prodcut-banner .box .img .car {
    left: calc(1320/1920*100%);
  }
}
@media (max-width: 991px) {
  .prodcut-banner .box .img .car {
    left: calc(1520/1920*100%);
    top: calc(349/970*100%);
  }
}
@media (max-width: 767px) {
  .prodcut-banner .box .img .car {
    left: calc(1620/1920*100%);
    top: calc(329/970*100%);
  }
}
.prodcut-banner .box .img .car img {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 2;
  object-fit: contain;
}
.prodcut-banner .box .img .car span {
  width: 0.95rem;
  height: 0.95rem;
  border-radius: 50%;
  position: absolute;
  left: 45%;
  top: 40%;
  transform: translate(-50%, -50%);
  z-index: 1;
  background: rgba(255, 255, 255, 0.3);
}
.prodcut-banner .box .img .car span::before {
  content: '';
  width: 100%;
  height: 100%;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  background: rgba(0, 255, 230, 0.3);
  animation: pointRun 2s forwards linear infinite;
}
.prodcut-banner .box .img .car span::after {
  content: '';
  width: 100%;
  height: 100%;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  background: rgba(0, 255, 230, 0.3);
  animation: pointRun 2.5s forwards linear infinite;
}
.prodcut-banner .box .container {
  height: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  align-items: center;
}
.prodcut-banner .box .container .tbox {
  width: 50%;
}
@media (max-width: 991px) {
  .prodcut-banner .box .container .tbox {
    width: 100%;
  }
}
.prodcut-banner .box .container .tbox .title {
  line-height: calc(70/50);
  color: #fff;
  font-weight: bold;
}
@media (max-width: 1580px) {
  .prodcut-banner .box .container .tbox .title {
    font-size: 0.5rem;
  }
}
.prodcut-banner .box .container .tbox .t2 {
  line-height: calc(40/30);
  color: #fff;
  font-weight: bold;
  margin-top: 0.88rem;
}
.prodcut-banner .box .container .tbox .txt {
  line-height: calc(36/20);
  color: #fff;
  margin-top: 0.24rem;
  height: 0;
  overflow: hidden;
}
.prodcut-banner .box .container .tbox .txt span {
  mask-image: linear-gradient(to bottom, #D9D9D9, #fff);
}
.prodcut-banner .pb {
  width: 100%;
  height: 50vh;
}
.prodcut-banner.luna .box .img .car {
  transform: rotateZ(-104deg);
  left: calc(1400 / 1920*100%);
  top: calc(110 / 970*100%);
}
@media (max-width: 1260px) {
  .prodcut-banner.luna .box .img .car {
    left: calc(1515/1920*100%);
  }
}
@media (max-width: 1024px) {
  .prodcut-banner.luna .box .img .car {
    left: calc(1640/1920*100%);
  }
}
@media (max-width: 991px) {
  .prodcut-banner.luna .box .img .car {
    display: none;
  }
}
@keyframes pointRun {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(2);
    opacity: 0;
  }
}
.bg-animate {
  width: 100%;
  height: var(--vh);
  position: sticky;
  position: -webkit-sticky;
  top: 0;
  z-index: 0;
  pointer-events: none;
  display: flex;
  align-items: flex-end;
}
@media (max-width: 991px) {
  .bg-animate {
    display: none;
  }
}
.bg-animate img {
  width: 100%;
}
.page-content {
  position: relative;
  z-index: 2;
  margin-top: var(--vh2);
}
@media (max-width: 991px) {
  .page-content {
    margin-top: 0;
  }
}
.product-box1 {
  width: 100%;
  position: relative;
  z-index: 1;
  padding: 0.9rem 0 1.2rem;
}
.product-box1 .container .title {
  line-height: calc(58/48);
  text-align: center;
  color: #131319;
}
.product-box1 .container .box {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-top: 0.54rem;
}
@media (max-width: 991px) {
  .product-box1 .container .box {
    flex-direction: column-reverse;
  }
}
.product-box1 .container .box .menu {
  width: calc(450/1600*100%);
  border-left: 1px solid rgba(0, 0, 0, 0.07);
  margin-top: 0.15rem;
}
@media (max-width: 991px) {
  .product-box1 .container .box .menu {
    width: 100%;
    margin-top: 0.5rem;
  }
}
.product-box1 .container .box .menu ul li {
  color: rgba(19, 19, 25, 0.5);
  font-size: 18px;
  line-height: calc(30/18);
  padding-left: 0.48rem;
  margin-bottom: 0.38rem;
  cursor: pointer;
  position: relative;
  z-index: 1;
  transition: all 0.4s;
}
.product-box1 .container .box .menu ul li:last-child {
  margin-bottom: 0;
}
.product-box1 .container .box .menu ul li::before {
  content: '';
  width: 3px;
  height: 100%;
  background: linear-gradient(to bottom, #00cccc, #9efe80);
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  opacity: 0;
  transition: all 0.4s;
}
.product-box1 .container .box .menu ul li.on {
  color: #131319;
  line-height: calc(36/24);
  font-size: 24px;
}
@media (max-width: 1260px) {
  .product-box1 .container .box .menu ul li.on {
    font-size: 20px;
  }
}
.product-box1 .container .box .menu ul li.on::before {
  opacity: 1;
}
.product-box1 .container .box .list {
  width: calc(1052/1600*100%);
}
@media (max-width: 991px) {
  .product-box1 .container .box .list {
    width: 100%;
  }
}
.product-box1 .container .box .list ul li {
  width: 100%;
  display: none;
}
.product-box1 .container .box .list ul li.on {
  display: block;
}
.product-box2 {
  width: 100%;
  position: relative;
  z-index: 1;
  padding: 1.14rem 0;
}
.product-box2 .bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.product-box2 .bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-box2 .container {
  position: relative;
  z-index: 2;
}
.product-box2 .container .title {
  text-align: center;
  color: #fff;
  line-height: calc(58/48);
}
.product-box2 .container .box {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-top: 0.54rem;
}
.product-box2 .container .box .menu {
  width: calc(530/1600*100%);
}
@media (max-width: 991px) {
  .product-box2 .container .box .menu {
    width: 100%;
  }
}
.product-box2 .container .box .menu ul {
  width: 100%;
}
.product-box2 .container .box .menu ul li {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
}
.product-box2 .container .box .menu ul li .bgs {
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(48, 209, 20, 0.07), rgba(48, 209, 20, 0));
  position: absolute;
  right: 0;
  top: 0;
  z-index: 2;
  opacity: 0;
  transition: all 0.4s;
}
.product-box2 .container .box .menu ul li .bgs::after {
  content: '';
  width: 3px;
  height: 100%;
  background: linear-gradient(to bottom, #00cccc, #9efe80);
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  opacity: 0;
  transition: all 0.4s;
}
.product-box2 .container .box .menu ul li .icon {
  width: 0.5rem;
  height: 0.5rem;
  flex-shrink: 0;
}
.product-box2 .container .box .menu ul li .icon img {
  width: 100%;
  height: 100%;
}
.product-box2 .container .box .menu ul li .txt {
  min-height: 1.26rem;
  line-height: calc(30/18);
  padding: 0.2rem 0;
  color: #fff;
  margin-left: 0.25rem;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
}
@media (max-width: 1580px) {
  .product-box2 .container .box .menu ul li .txt {
    font-size: 14px;
  }
}
.product-box2 .container .box .menu ul li .txt::before {
  content: '';
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
  position: absolute;
  bottom: 0;
  left: 0;
}
.product-box2 .container .box .menu ul li:last-child .txt::before {
  display: none;
}
.product-box2 .container .box .menu ul li:hover .bgs {
  opacity: 1;
}
.product-box2 .container .box .menu ul li:hover .bgs::after {
  opacity: 1;
}
.product-box2 .container .box .img {
  width: calc(477/1600*100%);
}
@media (max-width: 991px) {
  .product-box2 .container .box .img {
    width: 60%;
    margin: 0 auto;
  }
}
@media (max-width: 767px) {
  .product-box2 .container .box .img {
    width: 100%;
  }
}
.product-box2 .container .box .img img {
  width: 100%;
  margin-top: -0.5rem;
}
.product-box2 .container .box .table {
  width: calc(504/1600*100%);
  background: rgba(255, 255, 255, 0.07);
  border-radius: 0.2rem;
  padding: 0.24rem 0.2rem 0.2rem;
}
@media (max-width: 991px) {
  .product-box2 .container .box .table {
    width: 100%;
  }
}
.product-box2 .container .box .table .t1 {
  line-height: calc(34/24);
  text-align: center;
  color: #fff;
  margin-bottom: 0.17rem;
}
.product-box2 .container .box .table .t2 {
  width: 100%;
  display: flex;
  padding: 0.1rem 0;
  align-items: center;
  border-radius: 0.08rem;
  background: rgba(179, 211, 255, 0.05);
  margin-bottom: 4px;
  position: relative;
  z-index: 1;
}
.product-box2 .container .box .table .t2::before {
  content: '';
  width: 100%;
  height: 100%;
  border-radius: 0.08rem;
  background: linear-gradient(to right, #00cccc, #9efe80);
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  opacity: 0;
  transition: all 0.4s;
}
.product-box2 .container .box .table .t2 .s1 {
  width: calc(200/466*100%);
  color: #fff;
  font-size: 12px;
  padding-left: 0.18rem;
  line-height: 20px;
}
@media all and (-moz-min-device-pixel-ratio: 1.2) and (-moz-max-device-pixel-ratio: 1.5) and (max-width: 1260px), (-webkit-min-device-pixel-ratio: 1.2) and (-webkit-max-device-pixel-ratio: 1.5) and (max-width: 1260px), (min-resolution: 1.2dppx) and (max-resolution: 1.5dppx) and (max-width: 1260px) {
  .product-box2 .container .box .table .t2 .s1 {
    font-size: 12px;
    line-height: 18px;
  }
}
@media (max-width: 767px) {
  .product-box2 .container .box .table .t2 .s1 {
    font-size: 12px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}
.product-box2 .container .box .table .t2 .s2 {
  width: 32px;
  color: #fff;
  margin-right: auto;
  text-align: center;
}
.product-box2 .container .box .table .t2 .s3 {
  width: calc(175/466*100%);
  color: #fff;
  font-size: 12px;
  line-height: 20px;
}
@media all and (-moz-min-device-pixel-ratio: 1.2) and (-moz-max-device-pixel-ratio: 1.5) and (max-width: 1260px), (-webkit-min-device-pixel-ratio: 1.2) and (-webkit-max-device-pixel-ratio: 1.5) and (max-width: 1260px), (min-resolution: 1.2dppx) and (max-resolution: 1.5dppx) and (max-width: 1260px) {
  .product-box2 .container .box .table .t2 .s3 {
    font-size: 12px;
    line-height: 18px;
  }
}
@media (max-width: 767px) {
  .product-box2 .container .box .table .t2 .s3 {
    font-size: 12px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}
.product-box2 .container .box .table .t2:hover::before {
  opacity: 1;
}
.product-box3 {
  width: 100%;
  position: relative;
  z-index: 1;
  background: #f7f8fb;
  padding: 1.13rem 0 1.35rem;
  overflow: hidden;
}
.product-box3 .container .title {
  text-align: center;
  color: #131319;
  line-height: calc(58/48);
}
.product-box3 .container .menu {
  width: 100%;
  margin-top: 0.53rem;
}
.product-box3 .container .menu ul {
  display: flex;
  justify-content: center;
}
.product-box3 .container .menu ul li {
  margin: 0 5px;
  position: relative;
  z-index: 1;
}
.product-box3 .container .menu ul li::before {
  content: '';
  width: 100%;
  height: 100%;
  border-radius: 0.27rem;
  background: linear-gradient(to right, #00cccc, #9efe80);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  opacity: 0;
  transition: all 0.4s;
}
@media (max-width: 991px) {
  .product-box3 .container .menu ul li::before {
    border-radius: 0.39rem;
  }
}
.product-box3 .container .menu ul li a {
  height: 0.53rem;
  padding: 0 0.2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0.27rem;
  border: 2px solid #e3e4e7;
  color: #131319;
  transition: all 0.4s;
  position: relative;
  z-index: 2;
}
@media (max-width: 991px) {
  .product-box3 .container .menu ul li a {
    height: 0.78rem;
    border-radius: 0.39rem;
  }
}
.product-box3 .container .menu ul li:hover::before,
.product-box3 .container .menu ul li.on::before {
  opacity: 1;
}
.product-box3 .container .menu ul li:hover a,
.product-box3 .container .menu ul li.on a {
  border: 2px solid transparent;
  color: #fff;
}
.product-box3 .container .list {
  width: 100%;
  margin-top: 0.4rem;
}
.product-box3 .container .list ul {
  width: 100%;
  position: relative;
  z-index: 1;
}
.product-box3 .container .list ul li {
  width: 778px;
  max-width: 100%;
  margin: 0 auto;
  z-index: 1;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
}
.product-box3 .container .list ul li:nth-child(1) {
  position: relative;
  left: initial;
  transform: translateX(0);
}
.product-box3 .container .list ul li.on {
  opacity: 1;
  z-index: 3;
}
.product-box3 .container .list ul li .swiper-container {
  width: 100%;
  padding: 0 0 0.92rem;
}
@media (max-width: 991px) {
  .product-box3 .container .list ul li .swiper-container {
    padding: 0 0 2.4rem;
  }
}
.product-box3 .container .list ul li .swiper-container .swiper-slide {
  position: relative;
  z-index: 1;
}
.product-box3 .container .list ul li .swiper-container .swiper-slide .public-img {
  border-radius: 0.2rem;
}
.product-box3 .container .list ul li .swiper-container .swiper-slide .public-img::before {
  padding-top: calc(437/778*100%);
}
.product-box3 .container .list ul li .swiper-container .swiper-slide .play {
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
}
.product-box3 .container .list ul li .swiper-container .swiper-slide:hover .public-img img {
  transform: scale(1.05);
}
.product-box3 .container .list ul li .swiper-container .swiper-slide-active .play {
  opacity: 1;
}
.product-box3 .container .list ul li .swiper-container .swiper-pagination {
  font-size: 0;
  width: 100%;
  bottom: 0;
}
@media (max-width: 991px) {
  .product-box3 .container .list ul li .swiper-container .swiper-pagination {
    bottom: 1.5rem;
  }
}
.product-box3 .container .list ul li .swiper-container .swiper-pagination .swiper-pagination-bullet {
  width: 0.06rem;
  height: 0.14rem;
  border-radius: 3px;
  transition: all 0.4s;
  opacity: 1;
  background: rgba(110, 124, 124, 0.2);
  margin: 0 0.05rem;
}
.product-box3 .container .list ul li .swiper-container .swiper-pagination .swiper-pagination-bullet-active {
  background: #0ad8bf;
  height: 0.24rem;
}
.product-box3 .container .list ul li .ck-box {
  width: 100%;
  display: flex;
  justify-content: center;
}
@media (max-width: 991px) {
  .product-box3 .container .list ul li .ck-box {
    position: absolute;
    bottom: 0;
  }
}
.product-box3 .container .list ul li .ck-box .prev,
.product-box3 .container .list ul li .ck-box .next {
  width: 0.56rem;
  height: 0.56rem;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.4s;
  box-shadow: 0 0.2rem 0.7rem 0 rgba(101, 116, 124, 0.41);
}
@media (max-width: 991px) {
  .product-box3 .container .list ul li .ck-box .prev,
  .product-box3 .container .list ul li .ck-box .next {
    position: relative;
    z-index: 1;
    margin: 0 10px;
    width: 0.8rem;
    height: 0.8rem;
  }
}
.product-box3 .container .list ul li .ck-box .prev::before,
.product-box3 .container .list ul li .ck-box .next::before {
  content: '';
  width: 100%;
  height: 100%;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background: linear-gradient(to right, #00cccc, #9efe80);
  opacity: 0;
  transition: all 0.4s;
}
.product-box3 .container .list ul li .ck-box .prev svg,
.product-box3 .container .list ul li .ck-box .next svg {
  width: 12px;
  height: 12px;
  color: #333;
  position: relative;
  z-index: 2;
}
.product-box3 .container .list ul li .ck-box .prev svg path,
.product-box3 .container .list ul li .ck-box .next svg path {
  transition: all 0.4s;
}
.product-box3 .container .list ul li .ck-box .prev:hover,
.product-box3 .container .list ul li .ck-box .next:hover {
  box-shadow: 0 0.17rem 0.68rem 0 #00e5c9;
}
.product-box3 .container .list ul li .ck-box .prev:hover::before,
.product-box3 .container .list ul li .ck-box .next:hover::before {
  opacity: 1;
}
.product-box3 .container .list ul li .ck-box .prev:hover svg,
.product-box3 .container .list ul li .ck-box .next:hover svg {
  color: #fff;
}
.product-box3 .container .list ul li .ck-box .prev {
  top: 40%;
  transform: translateY(-50%);
  left: -1rem;
}
@media (max-width: 1580px) {
  .product-box3 .container .list ul li .ck-box .prev {
    top: 50%;
  }
}
@media (max-width: 991px) {
  .product-box3 .container .list ul li .ck-box .prev {
    top: initial;
    transform: translateY(0);
    left: initial;
  }
}
.product-box3 .container .list ul li .ck-box .prev svg {
  transform: rotateZ(180deg);
}
.product-box3 .container .list ul li .ck-box .next {
  top: 40%;
  transform: translateY(-50%);
  right: -1rem;
}
@media (max-width: 1580px) {
  .product-box3 .container .list ul li .ck-box .next {
    top: 50%;
  }
}
@media (max-width: 991px) {
  .product-box3 .container .list ul li .ck-box .next {
    top: initial;
    transform: translateY(0);
    right: initial;
  }
}
.product-box4 {
  width: 100%;
  position: relative;
  z-index: 1;
  padding: 1.14rem 0 1.1rem;
  overflow: hidden;
}
.product-box4 .container .title {
  text-align: center;
  color: #131319;
  line-height: calc(58/48);
}
.product-box4 .container .box {
  width: 100%;
  margin-top: 0.96rem;
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .product-box4 .container .box {
    flex-direction: column-reverse;
  }
}
.product-box4 .container .box .menu {
  width: calc(400/1600*100%);
  border-left: 1px solid rgba(0, 0, 0, 0.07);
}
@media (max-width: 991px) {
  .product-box4 .container .box .menu {
    width: 100%;
    border-left: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
    margin-top: 0.6rem;
  }
}
@media (max-width: 991px) {
  .product-box4 .container .box .menu ul {
    display: flex;
    justify-content: space-between;
    margin-bottom: -1px;
  }
}
.product-box4 .container .box .menu ul li {
  transition: all 0.4s;
  opacity: 0.5;
  padding-left: 0.36rem;
  position: relative;
  z-index: 1;
  margin-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .product-box4 .container .box .menu ul li {
    margin-bottom: 0;
    padding-left: 0;
    padding-bottom: 0.3rem;
  }
}
@media (max-width: 767px) {
  .product-box4 .container .box .menu ul li {
    padding-bottom: 0.1rem;
  }
}
.product-box4 .container .box .menu ul li:last-child {
  margin-bottom: 0;
}
.product-box4 .container .box .menu ul li::before {
  content: '';
  width: 3px;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  background: linear-gradient(to bottom, #00cccc, #9efe80);
  opacity: 0;
  transition: all 0.4s;
}
@media (max-width: 991px) {
  .product-box4 .container .box .menu ul li::before {
    width: 100%;
    height: 3px;
    top: inherit;
    bottom: 0;
  }
}
.product-box4 .container .box .menu ul li a {
  height: 40px;
  display: flex;
  align-items: center;
}
.product-box4 .container .box .menu ul li a i {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  margin-right: 0.2rem;
  transition: all 0.4s;
}
@media (max-width: 767px) {
  .product-box4 .container .box .menu ul li a i {
    width: 20px;
    height: 20px;
  }
}
.product-box4 .container .box .menu ul li a i img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.product-box4 .container .box .menu ul li a span {
  color: #131319;
  font-size: 20px;
  line-height: calc(30/20);
  transition: all 0.4s;
}
@media (max-width: 767px) {
  .product-box4 .container .box .menu ul li a span {
    font-size: 14px;
  }
}
.product-box4 .container .box .menu ul li:hover {
  opacity: 1;
}
.product-box4 .container .box .menu ul li.on {
  opacity: 1;
}
.product-box4 .container .box .menu ul li.on::before {
  opacity: 1;
}
.product-box4 .container .box .menu ul li.on i {
  width: 40px;
  height: 40px;
}
@media (max-width: 767px) {
  .product-box4 .container .box .menu ul li.on i {
    width: 20px;
    height: 20px;
  }
}
.product-box4 .container .box .menu ul li.on span {
  font-size: 24px;
}
@media (max-width: 767px) {
  .product-box4 .container .box .menu ul li.on span {
    font-size: 14px;
  }
}
.product-box4 .container .box .list {
  width: calc(750/1600*100%);
  margin-left: 0.25rem;
  margin-top: 0.16rem;
  position: relative;
  z-index: 1;
}
@media (max-width: 991px) {
  .product-box4 .container .box .list {
    width: 100%;
    margin-left: 0;
  }
}
.product-box4 .container .box .list ul li {
  width: 100%;
  z-index: 1;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
}
.product-box4 .container .box .list ul li:nth-child(1) {
  position: relative;
  left: initial;
  transform: translateX(0);
}
.product-box4 .container .box .list ul li.on {
  opacity: 1;
  z-index: 3;
}
.product-box4 .container .box .list ul li .swiper-container {
  width: 100%;
  clip-path: inset(0 -100vw -20vh 0);
}
.product-box4 .container .box .list ul li .swiper-container .swiper-slide .public-img {
  width: 100%;
  transform: scale(calc(185/260));
  transition: all 0.4s;
  opacity: 0.2;
}
.product-box4 .container .box .list ul li .swiper-container .swiper-slide .public-img::before {
  padding-top: calc(260/750*100%);
}
.product-box4 .container .box .list ul li .swiper-container .swiper-slide-active .public-img {
  transform: scale(1);
  opacity: 1;
}
.product-box4 .container .box .list ul li .swiper-container .ck-box {
  width: 100%;
  margin-top: 0.68rem;
  display: flex;
  justify-content: center;
}
.product-box4 .container .box .list ul li .swiper-container .ck-box .prev,
.product-box4 .container .box .list ul li .swiper-container .ck-box .next {
  width: 0.56rem;
  height: 0.56rem;
  border-radius: 50%;
  background: rgba(125, 142, 158, 0.07);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.4s;
  margin: 0 10px;
  position: relative;
  z-index: 1;
}
@media (max-width: 991px) {
  .product-box4 .container .box .list ul li .swiper-container .ck-box .prev,
  .product-box4 .container .box .list ul li .swiper-container .ck-box .next {
    width: 0.8rem;
    height: 0.8rem;
  }
}
.product-box4 .container .box .list ul li .swiper-container .ck-box .prev::before,
.product-box4 .container .box .list ul li .swiper-container .ck-box .next::before {
  content: '';
  width: 100%;
  height: 100%;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background: linear-gradient(to right, #00cccc, #9efe80);
  opacity: 0;
  transition: all 0.4s;
}
.product-box4 .container .box .list ul li .swiper-container .ck-box .prev svg,
.product-box4 .container .box .list ul li .swiper-container .ck-box .next svg {
  width: 12px;
  height: 12px;
  color: #333;
  position: relative;
  z-index: 2;
}
.product-box4 .container .box .list ul li .swiper-container .ck-box .prev svg path,
.product-box4 .container .box .list ul li .swiper-container .ck-box .next svg path {
  transition: all 0.4s;
}
.product-box4 .container .box .list ul li .swiper-container .ck-box .prev:hover,
.product-box4 .container .box .list ul li .swiper-container .ck-box .next:hover {
  box-shadow: 0 0.17rem 0.68rem 0 #00e5c9;
}
.product-box4 .container .box .list ul li .swiper-container .ck-box .prev:hover::before,
.product-box4 .container .box .list ul li .swiper-container .ck-box .next:hover::before {
  opacity: 1;
}
.product-box4 .container .box .list ul li .swiper-container .ck-box .prev:hover svg,
.product-box4 .container .box .list ul li .swiper-container .ck-box .next:hover svg {
  color: #fff;
}
.product-box4 .container .box .list ul li .swiper-container .ck-box .prev svg {
  transform: rotateZ(180deg);
}
.product-box5 {
  width: 100%;
  position: relative;
  z-index: 2;
  padding: 0.9rem 0 1rem;
}
.product-box5 .container .title {
  text-align: center;
  line-height: calc(58/48);
  color: #131319;
}
.product-box5 .container .title span {
  background-image: linear-gradient(to top, #05cdcd, #b7f294);
  -webkit-background-clip: text;
  color: transparent;
}
.product-box5 .container .content {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-top: 0.54rem;
}
.product-box5 .container .content .img {
  width: calc(520/1600*100%);
  margin-top: 0.25rem;
  margin-right: 1.52rem;
}
@media (max-width: 991px) {
  .product-box5 .container .content .img {
    width: 50%;
    margin: 0 auto;
  }
}
@media (max-width: 767px) {
  .product-box5 .container .content .img {
    width: 100%;
  }
}
.product-box5 .container .content .img img {
  width: 100%;
  object-fit: contain;
}
.product-box5 .container .content .tbox {
  width: calc(640/1600*100%);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}
@media (max-width: 991px) {
  .product-box5 .container .content .tbox {
    width: 100%;
    margin-top: 0.5rem;
  }
}
.product-box5 .container .content .tbox .item {
  width: 100%;
  padding: 0.43rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.product-box5 .container .content .tbox .item.on .t1 i svg {
  transform: rotateZ(-90deg);
}
.product-box5 .container .content .tbox .item .t1 {
  color: #131319;
  line-height: calc(34/24);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.product-box5 .container .content .tbox .item .t1 i {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
}
.product-box5 .container .content .tbox .item .t1 i svg {
  color: #000;
  width: 14px;
  height: 14px;
  transform: rotateZ(90deg);
  transition: all 0.4s;
}
.product-box5 .container .content .tbox .item .t2 {
  line-height: calc(26/18);
  color: #131319;
  margin-top: 0.1rem;
}
.product-box5 .container .content .tbox .item .ts {
  margin-top: 0.25rem;
}
.product-box5 .container .content .tbox .item .ts .td {
  display: block;
  color: rgba(19, 19, 25, 0.7);
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
  padding-left: 13px;
}
.product-box5 .container .content .tbox .item .ts .td::before {
  content: '';
  width: 6px;
  height: 6px;
  background: rgba(19, 19, 25, 0.7);
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 9px;
}
@media (max-width: 1580px) {
  .product-box5 .container .content .tbox .item .ts .td::before {
    top: 7px;
  }
}
.product-box5 .container .content .tbox .item .ts .td:last-child {
  margin-bottom: 0;
}
.product-box5 .container .content .tbox .item .ts .td span {
  display: inline-block;
}
.product-box5 .container .content .tbox .item .ts .td span img {
  margin-right: 0.1rem;
  width: 0.24rem;
}
.product-box6 {
  width: 100%;
  position: relative;
  z-index: 1;
  background: #021b1e;
  min-height: 7.5rem;
  padding: 1.33rem 0 1rem;
}
@media (max-width: 1580px) {
  .product-box6 {
    min-height: 9rem;
  }
}
@media (max-width: 991px) {
  .product-box6 {
    padding: 0 0 1rem;
  }
}
.product-box6 .img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
@media (max-width: 991px) {
  .product-box6 .img {
    position: relative;
    z-index: 1;
    height: 5rem;
    top: initial;
    left: initial;
  }
}
.product-box6 .img::after {
  content: '';
  width: calc(1260/1920*100%);
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 2;
  background: linear-gradient(to left, #021b1e 50%, rgba(2, 27, 30, 0));
}
@media (max-width: 991px) {
  .product-box6 .img::after {
    display: none;
  }
}
.product-box6 .img img {
  height: 100%;
}
@media (max-width: 991px) {
  .product-box6 .img img {
    width: 100%;
  }
}
.product-box6 .img video {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
@media (max-width: 991px) {
  .product-box6 .img .pc {
    display: none;
  }
}
.product-box6 .img .mb {
  display: none;
  object-fit: cover;
}
@media (max-width: 991px) {
  .product-box6 .img .mb {
    display: block;
  }
}
.product-box6 .img .item {
  width: 100%;
  height: 100%;
  display: none;
  position: relative;
  z-index: 1;
}
.product-box6 .img .item.on {
  display: block;
}
.product-box6 .container {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 991px) {
  .product-box6 .container {
    margin-top: 0.6rem;
  }
}
.product-box6 .container .tbox {
  width: calc(640/1600*100%);
}
@media (max-width: 991px) {
  .product-box6 .container .tbox {
    width: 100%;
  }
}
.product-box6 .container .tbox .title {
  line-height: calc(58/48);
  color: #fff;
}
.product-box6 .container .tbox .menu {
  margin-top: 0.52rem;
}
.product-box6 .container .tbox .menu ul {
  display: flex;
}
.product-box6 .container .tbox .menu ul li {
  margin-right: 6px;
}
.product-box6 .container .tbox .menu ul li:last-child {
  margin-right: 0;
}
.product-box6 .container .tbox .menu ul li a {
  border: 2px solid rgba(255, 255, 255, 0.1);
  min-width: 1.1rem;
  height: 0.53rem;
  border-radius: 0.27rem;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 0.1rem;
  color: #fff;
  font-weight: bold;
  position: relative;
  z-index: 1;
  transition: all 0.4s;
}
@media (max-width: 991px) {
  .product-box6 .container .tbox .menu ul li a {
    height: 0.78rem;
    padding: 0 0.2rem;
    border-radius: 0.34rem;
  }
}
.product-box6 .container .tbox .menu ul li a::before {
  content: '';
  width: 100%;
  height: 100%;
  border-radius: 0.27rem;
  background: linear-gradient(to right, #00cccc, #9df27f);
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  z-index: 1;
  transition: all 0.4s;
}
@media (max-width: 991px) {
  .product-box6 .container .tbox .menu ul li a::before {
    border-radius: 0.34rem;
  }
}
.product-box6 .container .tbox .menu ul li a span {
  position: relative;
  z-index: 2;
}
.product-box6 .container .tbox .menu ul li:hover a,
.product-box6 .container .tbox .menu ul li.on a {
  border: 2px solid transparent;
}
.product-box6 .container .tbox .menu ul li:hover a::before,
.product-box6 .container .tbox .menu ul li.on a::before {
  opacity: 1;
}
.product-box6 .container .tbox .list {
  width: 100%;
  margin-top: 0.35rem;
}
.product-box6 .container .tbox .list ul li {
  display: none;
  color: #fff;
  line-height: calc(24/16);
}
.product-box6 .container .tbox .list ul li span {
  display: block;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
  padding-left: 13px;
}
.product-box6 .container .tbox .list ul li span:last-child {
  margin-bottom: 0;
}
.product-box6 .container .tbox .list ul li span::before {
  content: '';
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 9px;
}
@media (max-width: 1580px) {
  .product-box6 .container .tbox .list ul li span::before {
    top: 7px;
  }
}
.product-box6 .container .tbox .list ul li.on {
  display: block;
}
.product-box7 {
  width: 100%;
  position: relative;
  z-index: 2;
  padding: 1.1rem 0 1.2rem;
}
.product-box7 .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.product-box7 .container .tbox {
  width: calc(720/1600*100%);
}
@media (max-width: 991px) {
  .product-box7 .container .tbox {
    width: 100%;
  }
}
.product-box7 .container .tbox .title {
  color: #131319;
  line-height: calc(58/48);
}
.product-box7 .container .tbox .txt {
  line-height: 2;
  color: rgba(19, 19, 25, 0.7);
  margin-top: 0.45rem;
}
.product-box7 .container .tbox .itbox {
  width: 5.2rem;
  display: flex;
  flex-wrap: wrap;
  margin-top: 0.45rem;
}
@media (max-width: 991px) {
  .product-box7 .container .tbox .itbox {
    width: 100%;
  }
}
.product-box7 .container .tbox .itbox .item {
  width: 2.6rem;
  padding: 0.5rem 0 0.4rem;
  border-bottom: 1px dashed #131319;
}
@media (max-width: 991px) {
  .product-box7 .container .tbox .itbox .item {
    border-bottom: none;
    width: 25%;
  }
}
@media (max-width: 767px) {
  .product-box7 .container .tbox .itbox .item {
    width: 50%;
  }
}
.product-box7 .container .tbox .itbox .item:last-child {
  border-bottom: none;
}
.product-box7 .container .tbox .itbox .item:nth-last-child(2) {
  border-bottom: none;
}
.product-box7 .container .tbox .itbox .item .t1 {
  display: inline-flex;
  align-items: baseline;
  position: relative;
  z-index: 1;
  background-image: linear-gradient(to right, #00cccc, #9df27f);
  -webkit-background-clip: text;
  color: transparent;
}
.product-box7 .container .tbox .itbox .item .t1 .num {
  font-size: 0.64rem;
  line-height: 1;
  font-family: "Poppins";
}
.product-box7 .container .tbox .itbox .item .t1 i {
  width: 0.38rem;
  height: 0.48rem;
  position: absolute;
  right: -0.28rem;
  top: -3px;
  display: flex;
  align-items: center;
}
.product-box7 .container .tbox .itbox .item .t1 i img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.product-box7 .container .tbox .itbox .item .t1 .down img {
  transform: rotateZ(180deg);
}
.product-box7 .container .tbox .itbox .item .t2 {
  color: #131319;
  line-height: calc(30/20);
  margin-top: 0.14rem;
}
.product-box7 .container .public-img {
  width: calc(720/1600*100%);
  border-radius: 0.2rem;
}
@media (max-width: 991px) {
  .product-box7 .container .public-img {
    width: 100%;
    margin-top: 0.5rem;
  }
}
.product-box7 .container .public-img::before {
  padding-top: calc(600/720*100%);
}
.product-box7 .container .public-img video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
}
.product-box8 {
  width: 100%;
  position: relative;
  z-index: 2;
  background: url(../images/product-box8-bg.jpg) center center no-repeat;
  background-size: cover;
  padding: 1.1rem 0 1.47rem;
  overflow: hidden;
}
.product-box8 .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.product-box8 .container .tbox {
  width: calc(560/1600*100%);
}
@media (max-width: 991px) {
  .product-box8 .container .tbox {
    width: 100%;
  }
}
.product-box8 .container .tbox .title {
  color: #fff;
  line-height: calc(62/48);
}
.product-box8 .container .tbox .menu {
  width: 100%;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 2.17rem;
}
@media (max-width: 991px) {
  .product-box8 .container .tbox .menu {
    margin-top: 1rem;
  }
}
.product-box8 .container .tbox .menu .item {
  position: relative;
  z-index: 1;
  padding-left: 0.3rem;
  margin-bottom: 0.6rem;
  cursor: pointer;
}
.product-box8 .container .tbox .menu .item:last-child {
  margin-bottom: 0;
}
.product-box8 .container .tbox .menu .item::before {
  content: '';
  width: 2px;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  background: linear-gradient(to bottom, #00cccc, #9df27f);
  transition: all 0.4s;
  opacity: 0;
}
.product-box8 .container .tbox .menu .item .t1 {
  color: rgba(255, 255, 255, 0.2);
  transition: all 0.4s;
  line-height: 1;
}
.product-box8 .container .tbox .menu .item .t2 {
  color: rgba(255, 255, 255, 0.2);
  transition: all 0.4s;
  line-height: 1;
  margin-top: 0.2rem;
}
.product-box8 .container .tbox .menu .item.on::before {
  opacity: 1;
}
.product-box8 .container .tbox .menu .item.on .t1 {
  color: #fff;
}
.product-box8 .container .tbox .menu .item.on .t2 {
  color: #fff;
}
.product-box8 .container .list {
  width: calc(960/1600*100%);
}
@media (max-width: 991px) {
  .product-box8 .container .list {
    width: 100%;
    margin-top: 1rem;
  }
}
.product-box8 .container .list ul li {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  border-top: 2px solid rgba(255, 255, 255, 0.2);
  border-left: 2px solid rgba(255, 255, 255, 0.2);
  border-right: 2px solid rgba(255, 255, 255, 0.2);
  display: none;
}
.product-box8 .container .list ul li.on {
  display: flex;
}
.product-box8 .container .list ul li .item {
  width: 25%;
  height: 2.12rem;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  padding: 4px 0.2rem 0;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .product-box8 .container .list ul li .item {
    width: 50%;
  }
  .product-box8 .container .list ul li .item:nth-child(2n) {
    border-right: none;
  }
}
.product-box8 .container .list ul li .item:nth-child(4n) {
  border-right: none;
}
.product-box8 .container .list ul li .item::before {
  content: '';
  width: 2.61rem;
  height: 2.33rem;
  background: url(../images/product-box8-item-bg1.png) center center no-repeat;
  background-size: contain;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  transition: all 0.4s;
  opacity: 0;
  pointer-events: none;
}
.product-box8 .container .list ul li .item::after {
  content: '';
  width: 5.67rem;
  height: 4.75rem;
  background: url(../images/product-box8-item-bg2.png) center center no-repeat;
  background-size: contain;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  transition: all 0.4s;
  opacity: 0;
  pointer-events: none;
}
.product-box8 .container .list ul li .item:hover {
  z-index: 2;
}
.product-box8 .container .list ul li .item:hover::before {
  opacity: 1;
}
.product-box8 .container .list ul li .item:hover::after {
  opacity: 1;
}
.product-box8 .container .list ul li .item .icon {
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 0.14rem;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.product-box8 .container .list ul li .item .txt {
  width: 100%;
  text-align: center;
  line-height: calc(28/18);
  color: #fff;
  margin-top: 0.2rem;
  position: relative;
  z-index: 2;
}
.info-banner {
  width: 100%;
  position: relative;
  z-index: 1;
}
.info-banner .img {
  width: 100%;
  height: var(--vh);
  position: relative;
  z-index: 1;
}
.info-banner .img::after {
  content: '';
  width: 50%;
  height: 3.3rem;
  background: url(../images/prodcut-banner-zz.png) left bottom no-repeat;
  background-size: contain;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
}
.info-banner .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 991px) {
  .info-banner .img img.pc {
    display: none;
  }
}
.info-banner .img img.mb {
  display: none;
}
@media (max-width: 991px) {
  .info-banner .img img.mb {
    display: block;
  }
}
.info-banner .container {
  height: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  align-items: center;
}
.info-banner .container .tbox {
  width: calc(600/1600*100%);
}
@media (max-width: 1580px) {
  .info-banner .container .tbox {
    width: 50%;
  }
}
@media (max-width: 991px) {
  .info-banner .container .tbox {
    width: 100%;
  }
}
.info-banner .container .tbox .title {
  line-height: calc(70/50);
  color: #fff;
  font-weight: bold;
}
@media (max-width: 1580px) {
  .info-banner .container .tbox .title {
    font-size: 0.5rem;
  }
}
.technology-box2 {
  width: 100%;
  position: relative;
  z-index: 1;
}
.technology-box2 .bg {
  width: 100%;
  height: 100vh;
  position: sticky;
  position: -webkit-sticky;
  top: 0;
}
.technology-box2 .bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 991px) {
  .technology-box2 .bg .pc {
    display: none;
  }
}
.technology-box2 .bg .mb {
  display: none;
}
@media (max-width: 991px) {
  .technology-box2 .bg .mb {
    display: block;
  }
}
.technology-box2 .container {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-top: -100vh;
}
.technology-box2 .container .menu {
  width: calc(250/1600*100%);
  height: 100vh;
  position: sticky;
  position: -webkit-sticky;
  top: 0;
  display: flex;
  align-items: center;
}
@media (max-width: 991px) {
  .technology-box2 .container .menu {
    display: none;
  }
}
.technology-box2 .container .menu ul {
  position: relative;
  z-index: 1;
}
.technology-box2 .container .menu ul::before {
  content: '';
  width: 1px;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0));
  z-index: 1;
}
.technology-box2 .container .menu ul li {
  display: flex;
  align-items: center;
  line-height: 1;
  margin-bottom: 0.65rem;
  padding-left: 0.48rem;
  position: relative;
  z-index: 1;
}
.technology-box2 .container .menu ul li::before {
  content: '';
  width: 3px;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  background: linear-gradient(to bottom, #00cccc, #9efe80);
  transition: all 0.4s;
  opacity: 0;
}
.technology-box2 .container .menu ul li:last-child {
  margin-bottom: 0;
}
.technology-box2 .container .menu ul li span {
  color: rgba(255, 255, 255, 0.2);
  transition: all 0.4s;
  transform: scale(calc(36/48));
  cursor: pointer;
}
.technology-box2 .container .menu ul li.on::before {
  opacity: 1;
}
.technology-box2 .container .menu ul li.on span {
  color: #fff;
  transform: scale(1);
}
.technology-box2 .container .list {
  width: calc(1300/1600*100%);
  padding: 2.15rem 0;
}
@media (max-width: 991px) {
  .technology-box2 .container .list {
    width: 100%;
  }
}
.technology-box2 .container .list ul li {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 2.15rem;
}
@media (max-width: 991px) {
  .technology-box2 .container .list ul li {
    margin-bottom: 1rem;
  }
}
.technology-box2 .container .list ul li:last-child {
  margin-bottom: 0;
}
.technology-box2 .container .list ul li .img-box {
  width: calc(815/1300*100%);
  position: relative;
  z-index: 1;
}
@media (max-width: 991px) {
  .technology-box2 .container .list ul li .img-box {
    width: 100%;
  }
}
.technology-box2 .container .list ul li .public-img {
  width: 100%;
  border-radius: 0.2rem;
  display: none;
}
@media (max-width: 991px) {
  .technology-box2 .container .list ul li .public-img {
    width: 100%;
  }
}
.technology-box2 .container .list ul li .public-img.on {
  display: block;
}
.technology-box2 .container .list ul li .public-img::before {
  padding-top: calc(510/815*100%);
}
.technology-box2 .container .list ul li .public-img:hover img {
  transform: scale(1.05);
}
.technology-box2 .container .list ul li .public-img video {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
.technology-box2 .container .list ul li .tbox {
  width: calc(400/1300*100%);
}
@media (max-width: 991px) {
  .technology-box2 .container .list ul li .tbox {
    width: 100%;
  }
}
.technology-box2 .container .list ul li .tbox .item {
  width: 100%;
  padding: 0.33rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.technology-box2 .container .list ul li .tbox .item:last-child {
  border-bottom: none;
}
.technology-box2 .container .list ul li .tbox .item .t1 {
  color: #fff;
  line-height: calc(34/24);
  transition: all 0.4s;
  cursor: pointer;
}
.technology-box2 .container .list ul li .tbox .item .t2 {
  color: rgba(255, 255, 255, 0.7);
  line-height: calc(32/18);
  margin-top: 0.15rem;
  display: none;
}
.technology-box2 .container .list ul li .tbox .item.on .t1 {
  background-image: linear-gradient(to right, #00cccc, #9efe80);
  -webkit-background-clip: text;
  color: transparent;
}
.about-banner {
  width: 100%;
  height: var(--vh);
  position: relative;
  z-index: 1;
}
.about-banner .img {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}
.about-banner .img::after {
  content: '';
  width: 50%;
  height: 3.3rem;
  background: url(../images/prodcut-banner-zz.png) left bottom no-repeat;
  background-size: contain;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
}
.about-banner .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 991px) {
  .about-banner .img img.pc {
    display: none;
  }
}
.about-banner .img img.mb {
  display: none;
}
@media (max-width: 991px) {
  .about-banner .img img.mb {
    display: block;
  }
}
.about-banner .container {
  height: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  align-items: center;
}
.about-banner .container .tbox {
  width: calc(800/1600*100%);
}
@media (max-width: 991px) {
  .about-banner .container .tbox {
    width: 100%;
  }
}
.about-banner .container .tbox .title {
  line-height: calc(70/50);
  color: #fff;
  font-weight: bold;
}
@media (max-width: 1580px) {
  .about-banner .container .tbox .title {
    font-size: 0.5rem;
  }
}
.about-banner .container .tbox .txt {
  line-height: calc(36/20);
  color: #fff;
  margin-top: 0.8rem;
}
.about {
  width: 100%;
  position: relative;
  z-index: 1;
}
.about .Breadcrumb {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
}
.about-box1 {
  width: 100%;
  height: 100vh;
  position: relative;
  z-index: 2;
  overflow: hidden;
  background: #131319;
}
@media (max-width: 991px) {
  .about-box1 {
    height: 80vh;
  }
}
.about-box1 .swiper-container {
  width: 100%;
  height: 100%;
}
.about-box1 .swiper-container .swiper-slide {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}
.about-box1 .swiper-container .swiper-slide .img {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.about-box1 .swiper-container .swiper-slide .img::after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  background: url(../images/about-box1-bg.png) center bottom no-repeat;
  background-size: 100%;
}
.about-box1 .swiper-container .swiper-slide .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 991px) {
  .about-box1 .swiper-container .swiper-slide .img img.pc {
    display: none;
  }
}
.about-box1 .swiper-container .swiper-slide .img img.mb {
  display: none;
}
@media (max-width: 991px) {
  .about-box1 .swiper-container .swiper-slide .img img.mb {
    display: block;
  }
}
.about-box1 .swiper-container .swiper-slide .tbox {
  width: 1600px;
  max-width: 90%;
  position: absolute;
  z-index: 2;
  top: calc(350/940*100%);
  left: 50%;
  transform: translateX(-50%);
}
.about-box1 .swiper-container .swiper-slide .tbox .t1 {
  width: 100%;
  text-align: center;
  line-height: calc(34/24);
  transform: translateY(60px);
  transition: all 0.6s;
  opacity: 0;
}
.about-box1 .swiper-container .swiper-slide .tbox .t1 span {
  background-image: linear-gradient(to right, #00cccc, #9df27f);
  -webkit-background-clip: text;
  color: transparent;
}
.about-box1 .swiper-container .swiper-slide .tbox .t2 {
  width: 100%;
  text-align: center;
  color: #fff;
  line-height: calc(58/48);
  margin-top: 0.4rem;
  transform: translateY(60px);
  transition: all 0.6s 0.2s;
  opacity: 0;
}
.about-box1 .swiper-container .swiper-slide.ani-slide .img {
  opacity: 1;
}
.about-box1 .swiper-container .swiper-slide.ani-slide .tbox .t1 {
  opacity: 1;
  transform: translateY(0);
}
.about-box1 .swiper-container .swiper-slide.ani-slide .tbox .t2 {
  opacity: 1;
  transform: translateY(0);
}
.about-box1 .swiper-container .swiper-pagination {
  font-size: 0;
  width: 100%;
  bottom: 0.9rem;
  z-index: 2;
}
.about-box1 .swiper-container .swiper-pagination .swiper-pagination-bullet {
  width: 0.06rem;
  height: 0.14rem;
  border-radius: 3px;
  transition: all 0.4s;
  opacity: 1;
  background: rgba(255, 255, 255, 0.2);
  margin: 0 0.05rem;
}
.about-box1 .swiper-container .swiper-pagination .swiper-pagination-bullet-active {
  background: #0ad8bf;
  height: 0.24rem;
}
@media (max-width: 991px) {
  .about-box1 .ck-box {
    display: none;
  }
}
.about-box1 .ck-box .prev,
.about-box1 .ck-box .next {
  width: 0.56rem;
  height: 0.56rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  position: absolute;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.4s;
}
@media (max-width: 991px) {
  .about-box1 .ck-box .prev,
  .about-box1 .ck-box .next {
    position: relative;
    z-index: 1;
    margin: 0 0.1rem;
    width: 0.8rem;
    height: 0.8rem;
  }
}
.about-box1 .ck-box .prev::before,
.about-box1 .ck-box .next::before {
  content: '';
  width: 100%;
  height: 100%;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background: linear-gradient(to right, #00cccc, #9efe80);
  opacity: 0;
  transition: all 0.4s;
}
.about-box1 .ck-box .prev svg,
.about-box1 .ck-box .next svg {
  width: 12px;
  height: 12px;
  color: #fff;
  position: relative;
  z-index: 2;
}
.about-box1 .ck-box .prev svg path,
.about-box1 .ck-box .next svg path {
  transition: all 0.4s;
}
.about-box1 .ck-box .prev:hover,
.about-box1 .ck-box .next:hover {
  box-shadow: 0 0.17rem 0.68rem 0 #00e5c9;
}
.about-box1 .ck-box .prev:hover::before,
.about-box1 .ck-box .next:hover::before {
  opacity: 1;
}
.about-box1 .ck-box .prev:hover svg,
.about-box1 .ck-box .next:hover svg {
  color: #fff;
}
.about-box1 .ck-box .prev {
  top: 50%;
  transform: translateY(-50%);
  left: calc(160/1920*100%);
}
@media (max-width: 1260px) {
  .about-box1 .ck-box .prev {
    left: 1.5%;
  }
}
@media (max-width: 991px) {
  .about-box1 .ck-box .prev {
    top: initial;
    transform: translateY(0);
    left: initial;
  }
}
.about-box1 .ck-box .prev svg {
  transform: rotateZ(180deg);
}
.about-box1 .ck-box .next {
  top: 50%;
  transform: translateY(-50%);
  right: calc(160/1920*100%);
}
@media (max-width: 1260px) {
  .about-box1 .ck-box .next {
    right: 1.5%;
  }
}
@media (max-width: 991px) {
  .about-box1 .ck-box .next {
    top: initial;
    transform: translateY(0);
    right: initial;
  }
}
.about-box2 {
  width: 100%;
  position: relative;
  z-index: 2;
  padding: 1.13rem 0 1rem;
}
.about-box2 .container .title {
  text-align: center;
  color: #131319;
  line-height: calc(62/48);
}
.about-box2 .container .title .ts {
  display: flex;
  justify-content: center;
}
.about-box2 .container .title .ts span {
  background-image: linear-gradient(to right, #00cccc, #9df27f);
  -webkit-background-clip: text;
  color: transparent;
}
.about-box2 .container .txt {
  width: 960px;
  max-width: 100%;
  margin: 0.27rem auto 0;
  color: #666;
  text-align: center;
  line-height: 2;
}
.about-box2 .container .map {
  width: 100%;
  position: relative;
  z-index: 1;
  margin-top: 0.5rem;
}
@media (max-width: 991px) {
  .about-box2 .container .map {
    width: 108%;
    margin: 0.5rem -4% 0;
  }
}
.about-box2 .container .map .img {
  width: 100%;
}
.about-box2 .container .map .img img {
  width: 100%;
}
.about-box2 .container .map .dian {
  position: absolute;
  z-index: 2;
  width: 0.16rem;
  height: 0.06rem;
  border-radius: 50%;
  background: linear-gradient(to right, #00cccc, #9df27f);
}
.about-box2 .container .map .dian::before {
  content: '';
  width: 6px;
  height: 2px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.about-box2 .container .map .dian::after {
  content: '';
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(0, 183, 183, 0.8);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotateX(-60deg);
  animation: dianRun 2s forwards linear infinite;
}
.about-box2 .container .map .dian .add {
  width: 0.3rem;
  height: 0.36rem;
  position: absolute;
  bottom: 50%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.about-box2 .container .map .dian .add img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  animation: addRun 2s forwards linear infinite;
}
.about-box2 .container .map .dian span {
  min-width: 1rem;
  height: 0.46rem;
  padding: 0 0.2rem;
  border-radius: 0.23rem;
  background: rgba(222, 255, 255, 0.88);
  border: 1px solid rgba(51, 214, 214, 0.15);
  white-space: nowrap;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #00cccc;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  bottom: 0.46rem;
}
@media (max-width: 767px) {
  .about-box2 .container .map .dian span {
    display: none;
  }
}
.about-box2 .container .map .dian.d1 {
  left: 30%;
  top: 60%;
}
.about-box2 .container .map .dian.d2 {
  left: 47.5%;
  top: 25%;
}
.about-box2 .container .map .dian.d3 {
  left: 64.2%;
  top: 41%;
}
.about-box2 .container .map .dian.d4 {
  left: 73%;
  top: 34.5%;
  z-index: 5;
}
.about-box2 .container .map .dian.d5 {
  left: 79.5%;
  top: 30.5%;
}
@keyframes dianRun {
  0% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1) rotateX(-60deg);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(4) rotateX(-60deg);
  }
}
@keyframes addRun {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
  100% {
    transform: translateY(0);
  }
}
.about-box3 {
  width: 100%;
  height: 100vh;
  position: relative;
  z-index: 1;
  background: url(../images/about-box3-bg.jpg) center center no-repeat;
  background-size: cover;
  padding: 1.55rem 0 1rem;
  overflow: hidden;
}
@media (max-width: 991px) {
  .about-box3 {
    height: auto;
    padding: 1.4rem 0;
  }
}
.about-box3 .container .title {
  text-align: center;
  color: #fff;
}
.about-box3 .container .list {
  width: 100%;
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  margin-top: 0.54rem;
}
@media (max-width: 1024px) {
  .about-box3 .container .list {
    margin-top: 2rem;
  }
}
@media (max-width: 991px) {
  .about-box3 .container .list {
    margin-top: 0.8rem;
  }
}
.about-box3 .container .list .swiper-menu {
  width: calc(320/1600*100%);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}
@media (max-width: 991px) {
  .about-box3 .container .list .swiper-menu {
    width: 100%;
    position: relative;
    left: initial;
    top: initial;
    transform: translateY(0);
    border-left: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    order: 2;
    margin-top: 0.6rem;
  }
}
.about-box3 .container .list .swiper-menu .swiper-container {
  width: 100%;
  height: 5.9rem;
}
@media (max-width: 991px) {
  .about-box3 .container .list .swiper-menu .swiper-container {
    height: auto;
  }
}
.about-box3 .container .list .swiper-menu .swiper-container .swiper-slide {
  height: 118px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
  cursor: pointer;
}
@media (max-width: 991px) {
  .about-box3 .container .list .swiper-menu .swiper-container .swiper-slide {
    height: auto;
    justify-content: center;
  }
}
.about-box3 .container .list .swiper-menu .swiper-container .swiper-slide .year {
  padding-left: 0.95rem;
  position: relative;
  z-index: 1;
}
@media (max-width: 991px) {
  .about-box3 .container .list .swiper-menu .swiper-container .swiper-slide .year {
    padding: 0.1rem 0;
  }
}
.about-box3 .container .list .swiper-menu .swiper-container .swiper-slide .year::before {
  content: '';
  width: 2px;
  height: 100%;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  background: linear-gradient(to bottom, #00cccc, #9df27f);
  opacity: 0;
  transition: all 0.4s;
}
@media (max-width: 991px) {
  .about-box3 .container .list .swiper-menu .swiper-container .swiper-slide .year::before {
    width: 100%;
    height: 2px;
    top: initial;
    bottom: 0;
    transform: translateY(0);
    background: linear-gradient(to right, #00cccc, #9df27f);
  }
}
.about-box3 .container .list .swiper-menu .swiper-container .swiper-slide span {
  color: rgba(255, 255, 255, 0.07);
  font-size: 0.52rem;
  line-height: 1;
  transition: all 0.4s;
}
.about-box3 .container .list .swiper-menu .swiper-container .swiper-slide-thumb-active .year::before {
  opacity: 1;
}
.about-box3 .container .list .swiper-menu .swiper-container .swiper-slide-thumb-active span {
  font-size: 0.7rem;
  background-image: linear-gradient(to right, #00cccc, #9df27f);
  -webkit-background-clip: text;
  color: transparent;
}
.about-box3 .container .list .swiper-list {
  width: calc(1120/1600*100%);
}
@media (max-width: 991px) {
  .about-box3 .container .list .swiper-list {
    width: 100%;
  }
}
.about-box3 .container .list .swiper-list .swiper-container {
  width: 100%;
}
.about-box3 .container .list .swiper-list .swiper-container .swiper-slide {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  opacity: 0;
}
.about-box3 .container .list .swiper-list .swiper-container .swiper-slide .img {
  width: calc(640/1120*100%);
  position: relative;
  z-index: 1;
}
@media (max-width: 991px) {
  .about-box3 .container .list .swiper-list .swiper-container .swiper-slide .img {
    width: 100%;
  }
}
.about-box3 .container .list .swiper-list .swiper-container .swiper-slide .img::before {
  content: '';
  width: calc(1022/640*100%);
  height: calc(764/400*100%);
  background: url(../images/about-box3-bg2.png) center center no-repeat;
  background-size: contain;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  pointer-events: none;
}
.about-box3 .container .list .swiper-list .swiper-container .swiper-slide .img .public-img {
  width: 100%;
  border-radius: 0.2rem;
}
.about-box3 .container .list .swiper-list .swiper-container .swiper-slide .img .public-img::before {
  padding-top: calc(400/640*100%);
}
.about-box3 .container .list .swiper-list .swiper-container .swiper-slide .yaer {
  color: #fff;
  line-height: calc(34/24);
}
.about-box3 .container .list .swiper-list .swiper-container .swiper-slide .tbox {
  width: calc(395/1120*100%);
  height: 4rem;
  padding: 5px 0.1rem 5px 0;
  overflow-y: auto;
  scrollbar-width: initial;
}
@media (max-width: 991px) {
  .about-box3 .container .list .swiper-list .swiper-container .swiper-slide .tbox {
    width: 100%;
    margin-top: 0.3rem;
  }
}
.about-box3 .container .list .swiper-list .swiper-container .swiper-slide .tbox::-webkit-scrollbar {
  /*滚动条整体样式*/
  width: 3px;
  /*高宽分别对应横竖滚动条的尺寸*/
  height: 5px;
}
.about-box3 .container .list .swiper-list .swiper-container .swiper-slide .tbox::-webkit-scrollbar-thumb {
  /*滚动条-滑块*/
  width: 3px;
  border-radius: 3px;
  background: linear-gradient(to bottom, #00cccc, #9df27f);
}
.about-box3 .container .list .swiper-list .swiper-container .swiper-slide .tbox::-webkit-scrollbar-track {
  /*滚动条-背景*/
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  border-radius: 3px;
  background: #ededed;
}
.about-box3 .container .list .swiper-list .swiper-container .swiper-slide .tbox .item {
  width: 100%;
  margin-bottom: 0.3rem;
}
.about-box3 .container .list .swiper-list .swiper-container .swiper-slide .tbox .item:last-child {
  margin-bottom: 0;
}
.about-box3 .container .list .swiper-list .swiper-container .swiper-slide .tbox .item .t1 {
  line-height: calc(34/24);
}
.about-box3 .container .list .swiper-list .swiper-container .swiper-slide .tbox .item .t1 span {
  background-image: linear-gradient(to right, #00cccc, #9df27f);
  -webkit-background-clip: text;
  color: transparent;
}
.about-box3 .container .list .swiper-list .swiper-container .swiper-slide .tbox .item .t2 {
  line-height: 2;
  color: #fff;
  margin-top: 3px;
}
.about-box3 .container .list .swiper-list .swiper-container .swiper-slide-active {
  opacity: 1;
}
.about-box4 {
  width: 100%;
  position: relative;
  z-index: 1;
  background: url(../images/about-box4-bg.jpg) center center no-repeat;
  background-size: cover;
  padding: 1.55rem 0 1.25rem;
}
.about-box4 .container .top .title {
  line-height: calc(58/48);
  text-align: center;
  color: #131319;
}
.about-box4 .container .top .txt {
  width: 960px;
  max-width: 100%;
  line-height: 2;
  margin: 0.3rem auto 0;
  color: #666;
  text-align: center;
}
.about-box4 .container .list {
  width: 100%;
  margin-top: 0.8rem;
}
.about-box4 .container .list ul {
  display: flex;
  flex-wrap: wrap;
}
.about-box4 .container .list ul li {
  width: 25%;
  padding-left: 0.9rem;
  position: relative;
  z-index: 1;
  margin-bottom: 0.5rem;
}
@media (max-width: 1260px) {
  .about-box4 .container .list ul li {
    padding-left: 0.5rem;
  }
}
@media (max-width: 1024px) {
  .about-box4 .container .list ul li {
    padding-left: 0.3rem;
  }
}
@media (max-width: 991px) {
  .about-box4 .container .list ul li {
    width: 50%;
  }
}
.about-box4 .container .list ul li::after {
  content: '';
  width: 1px;
  height: 1rem;
  background: rgba(0, 0, 0, 0.07);
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 991px) {
  .about-box4 .container .list ul li::after {
    display: none;
  }
}
.about-box4 .container .list ul li:last-child::after {
  display: none;
}
.about-box4 .container .list ul li .t1 {
  font-size: 0.4rem;
  line-height: 1;
  display: flex;
}
.about-box4 .container .list ul li .t1 .ts {
  background-image: linear-gradient(to right, #00cccc, #9df27f);
  -webkit-background-clip: text;
  color: transparent;
  display: flex;
  align-items: flex-start;
}
.about-box4 .container .list ul li .t1 span {
  font-size: 0.8rem;
  line-height: 1;
}
.about-box4 .container .list ul li .t2 {
  color: #131319;
  line-height: calc(28/18);
  margin-top: 0.1rem;
}
.about-box5 {
  width: 100%;
  position: relative;
  z-index: 1;
  background: url(../images/about-box5-bg.jpg) center center no-repeat;
  background-size: cover;
  padding: 1.13rem 0 1.2rem;
}
.about-box5 .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.about-box5 .container .tbox {
  width: 50%;
}
@media (max-width: 991px) {
  .about-box5 .container .tbox {
    width: 100%;
  }
}
.about-box5 .container .tbox .title {
  color: #131319;
  line-height: calc(58/48);
}
.about-box5 .container .tbox .txt {
  color: #131319;
  line-height: calc(34/24);
  margin-top: 0.2rem;
}
.about-box5 .container .tbox .msg {
  display: flex;
  margin-top: 0.73rem;
}
.about-box5 .container .tbox .item .t1 {
  display: flex;
}
.about-box5 .container .tbox .ways {
  width: 100%;
  margin-top: 1.4rem;
}
.about-box5 .container .tbox .ways .item {
  width: 100%;
  margin-bottom: 0.5rem;
}
.about-box5 .container .tbox .ways .item:last-child {
  margin-bottom: 0;
}
.about-box5 .container .tbox .ways .item .t1 {
  display: flex;
  align-items: center;
}
.about-box5 .container .tbox .ways .item .t1 img {
  width: 20px;
  object-fit: contain;
  margin-right: 0.1rem;
}
.about-box5 .container .tbox .ways .item .t1 span {
  line-height: calc(28/18);
  color: #131319;
}
.about-box5 .container .tbox .ways .item .t2 {
  margin-top: 0.1rem;
}
.about-box5 .container .tbox .ways .item .t2 a {
  color: #131319;
  transition: all 0.4s;
  line-height: calc(34/24);
}
.about-box5 .container .tbox .ways .item .t2 a:hover {
  color: #15daba;
}
.about-box5 .container .address-box {
  width: calc(605/1600*100%);
  height: 5.6rem;
  background: #fff;
  border-radius: 0.2rem;
  box-shadow: 0 0.27rem 1rem 0 rgba(90, 146, 158, 0.1);
  padding: 0.6rem 0.43rem 0.6rem 0.5rem;
}
@media (max-width: 1580px) {
  .about-box5 .container .address-box {
    width: calc(700/1600*100%);
    height: 6.5rem;
  }
}
@media (max-width: 991px) {
  .about-box5 .container .address-box {
    width: 100%;
    margin-top: 0.5rem;
  }
}
@media (max-width: 767px) {
  .about-box5 .container .address-box {
    padding: 0.5rem 0.3rem;
  }
}
.about-box5 .container .address-box ul {
  width: 100%;
  height: 100%;
  padding-right: 0.3rem;
  overflow-y: auto;
  scrollbar-width: initial;
}
.about-box5 .container .address-box ul::-webkit-scrollbar {
  /*滚动条整体样式*/
  width: 3px;
  /*高宽分别对应横竖滚动条的尺寸*/
  height: 5px;
}
.about-box5 .container .address-box ul::-webkit-scrollbar-thumb {
  /*滚动条-滑块*/
  width: 3px;
  border-radius: 3px;
  background: linear-gradient(to bottom, #00cccc, #9df27f);
}
.about-box5 .container .address-box ul::-webkit-scrollbar-track {
  /*滚动条-背景*/
  width: 1px;
  border-radius: 3px;
  background: rgba(0, 0, 0, 0.07);
}
.about-box5 .container .address-box ul li {
  width: 100%;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 0.4rem;
  margin-bottom: 0.4rem;
}
.about-box5 .container .address-box ul li:last-child {
  margin-bottom: 0;
  border-bottom: none;
  padding-bottom: 0;
}
.about-box5 .container .address-box ul li .tleft {
  width: calc(370/480*100%);
}
.about-box5 .container .address-box ul li .tleft .city {
  display: flex;
  align-items: center;
}
.about-box5 .container .address-box ul li .tleft .city img {
  width: 0.3rem;
  margin-right: 0.1rem;
}
.about-box5 .container .address-box ul li .tleft .city span {
  line-height: calc(42/32);
  color: #131319;
  transition: all 0.4s;
}
.about-box5 .container .address-box ul li .tleft .address {
  color: #131319;
  line-height: calc(28/18);
  margin-top: 0.2rem;
}
.about-box5 .container .address-box ul li .link {
  min-width: 0.8rem;
  height: 0.52rem;
  padding: 0 0.15rem;
  border-radius: 0.27rem;
  position: relative;
  z-index: 1;
  transition: all 0.4s;
  display: flex;
  justify-content: center;
  align-items: center;
}
.about-box5 .container .address-box ul li .link::before {
  content: '';
  width: 100%;
  height: 100%;
  border-radius: 0.27rem;
  border: 2px solid rgba(6, 205, 205, 0.2);
  box-sizing: border-box;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  transition: all 0.4s;
}
.about-box5 .container .address-box ul li .link::after {
  content: '';
  width: 100%;
  height: 100%;
  border-radius: 0.27rem;
  background: linear-gradient(to right, #00cccc, #9efe80);
  box-sizing: border-box;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  transition: all 0.4s;
  opacity: 0;
}
.about-box5 .container .address-box ul li .link span {
  color: #06cdcd;
  position: relative;
  z-index: 2;
  transition: all 0.4s;
}
.about-box5 .container .address-box ul li .link:hover {
  box-shadow: 0 0.17rem 0.32rem 0 rgba(0, 229, 201, 0.44);
}
.about-box5 .container .address-box ul li .link:hover::before {
  opacity: 0;
}
.about-box5 .container .address-box ul li .link:hover::after {
  opacity: 1;
}
.about-box5 .container .address-box ul li .link:hover span {
  color: #fff;
}
.about-box5 .container .address-box ul li:hover .tleft .city span {
  color: #15daba;
}
.form-pop {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  background: rgba(5, 26, 47, 0.5);
  display: none;
}
.form-pop .box {
  width: 960px;
  max-width: 90%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.form-pop .box .top {
  width: 100%;
  height: 1rem;
  border-radius: 0.2rem;
  background: #f6f8fb;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 0.44rem 0 0.6rem;
}
@media (max-width: 767px) {
  .form-pop .box .top {
    padding: 0 0.3rem;
  }
}
.form-pop .box .top .title {
  line-height: calc(50/40);
  color: #131319;
}
.form-pop .box .top .close {
  width: 12px;
  height: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
}
.form-pop .box .top .close svg {
  width: 100%;
  height: 100%;
  color: #c9cace;
  transition: all 0.4s;
}
.form-pop .box .top .close:hover svg {
  color: #000;
}
.form-pop .box form {
  width: 100%;
  background: #fff;
  border-radius: 0.2rem;
  padding: 0.45rem 0.5rem 0.58rem;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .form-pop .box form {
    padding: 0.3rem;
  }
}
.form-pop .box form .item {
  width: calc(33.33% - 0.2rem);
  margin: 0 0.1rem 0.25rem;
}
@media (max-width: 767px) {
  .form-pop .box form .item {
    width: 100%;
    margin: 0 0 0.25rem;
  }
}
.form-pop .box form .item.w100 {
  width: 100%;
}
.form-pop .box form .item .name {
  display: flex;
  align-items: center;
  line-height: calc(32/18);
  padding-left: 0.15rem;
  min-height: calc(32/18*1em);
}
.form-pop .box form .item .name span {
  color: #131319;
}
.form-pop .box form .item .name i {
  color: #00d1b8;
}
.form-pop .box form .item .layui-form-select {
  margin-top: 0.13rem;
}
.form-pop .box form .item .layui-form-select dl dd.layui-this {
  background: rgba(104, 140, 190, 0.06);
  display: none;
}
.form-pop .box form .item .layui-form-select .layui-select-tips {
  display: none;
}
.form-pop .box form .item .layui-form-select .layui-input {
  height: 0.53rem;
  border: none;
  color: #131319;
  padding: 0 0.24rem;
  background: rgba(104, 140, 190, 0.06);
  border-radius: 0.27rem;
}
.form-pop .box form .item .layui-form-select .layui-input::placeholder {
  color: rgba(0, 0, 0, 0.3);
}
@media (max-width: 991px) {
  .form-pop .box form .item .layui-form-select .layui-input {
    height: 0.78rem;
    border-radius: 0.39rem;
  }
}
.form-pop .box form .item .txt {
  width: 100%;
  height: 0.6rem;
  margin-top: 0.13rem;
  background: rgba(104, 140, 190, 0.06);
  border-radius: 0.3rem;
  padding: 0 0.2rem 0 0.4rem;
}
.form-pop .box form .item .txt::placeholder {
  color: rgba(0, 0, 0, 0.3);
}
@media (max-width: 991px) {
  .form-pop .box form .item .txt {
    height: 0.78rem;
    border-radius: 0.39rem;
  }
}
.form-pop .box form .item .text {
  width: 100%;
  height: 1.1rem;
  margin-top: 0.13rem;
  background: rgba(104, 140, 190, 0.06);
  border-radius: 0.3rem;
  padding: 0.2rem 0.2rem 0.2rem 0.4rem;
}
.form-pop .box form .item .text::placeholder {
  color: rgba(0, 0, 0, 0.3);
}
.form-pop .box form .item .sub {
  height: 0.6rem;
  display: flex;
  align-items: center;
  margin-top: 0.13rem;
}
@media (max-width: 991px) {
  .form-pop .box form .item .sub {
    height: 0.78rem;
  }
}
@media (max-width: 767px) {
  .form-pop .box form .item .sub {
    margin-top: 0.3rem;
    height: auto;
    justify-content: center;
  }
}
.form-pop .box form .item2 {
  width: calc(100% - 0.2rem);
  margin: 0 0.1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .form-pop .box form .item2 {
    width: 100%;
    margin: 0;
  }
}
.form-pop .box form .item2 .tips {
  width: calc(560/840*100%);
  color: #999;
  font-size: 14px;
  line-height: 24px;
}
@media (max-width: 767px) {
  .form-pop .box form .item2 .tips {
    width: 100%;
  }
}
.form-pop .box form .item2 .tips a {
  color: #00d1b8;
}
.form-pop .box form .item2 .tips a:hover {
  text-decoration: underline;
}
@media (max-width: 767px) {
  .form-pop .box form .item2 .sub {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 0.3rem;
  }
}
.news-top {
  width: 100%;
  position: relative;
  z-index: 1;
  background: url(../images/news-top-bg.jpg) center center no-repeat;
  background-size: cover;
  padding: 0.87rem 0 1.1rem;
}
.news-top .container .title {
  text-align: center;
  line-height: calc(60/50);
  color: #131319;
}
.news-top .container .list {
  width: 100%;
  margin-top: 0.54rem;
}
.news-top .container .list .swiper-container {
  width: 100%;
  overflow: hidden;
}
@media (max-width: 991px) {
  .news-top .container .list .swiper-container {
    padding-bottom: 0.6rem;
  }
}
.news-top .container .list .swiper-container .swiper-slide {
  width: 100%;
}
.news-top .container .list .swiper-container .swiper-slide a {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.news-top .container .list .swiper-container .swiper-slide a .public-img {
  width: calc(960/1600*100%);
  border-radius: 0.2rem;
}
@media (max-width: 991px) {
  .news-top .container .list .swiper-container .swiper-slide a .public-img {
    width: 100%;
  }
}
.news-top .container .list .swiper-container .swiper-slide a .public-img::before {
  padding-top: calc(540/960*100%);
}
.news-top .container .list .swiper-container .swiper-slide a .tbox {
  width: calc(640/1600*100%);
  background: #fff;
  border-radius: 0.2rem;
  padding: 0.72rem 0.8rem;
  position: relative;
  z-index: 1;
}
@media (max-width: 991px) {
  .news-top .container .list .swiper-container .swiper-slide a .tbox {
    width: 100%;
    padding: 0.4rem 0.3rem;
  }
}
.news-top .container .list .swiper-container .swiper-slide a .tbox .t1 {
  color: #0abda7;
  line-height: calc(28/18);
}
.news-top .container .list .swiper-container .swiper-slide a .tbox .t2 {
  color: #131319;
  line-height: calc(56/36);
  margin-top: 0.3rem;
}
@media (max-width: 1024px) {
  .news-top .container .list .swiper-container .swiper-slide a .tbox .t2 {
    font-size: 0.36rem;
  }
}
.news-top .container .list .swiper-container .swiper-slide a .tbox .more {
  position: absolute;
  left: 0.8rem;
  bottom: 0.7rem;
}
@media (max-width: 991px) {
  .news-top .container .list .swiper-container .swiper-slide a .tbox .more {
    position: relative;
    left: initial;
    bottom: initial;
    margin-top: 0.2rem;
  }
}
.news-top .container .list .swiper-container .swiper-slide a:hover .public-img img {
  transform: scale(1.05);
}
.news-top .container .list .swiper-container .swiper-pagination {
  width: auto;
  font-size: 0;
  left: initial;
  right: 0.75rem;
  bottom: 0.78rem;
  z-index: 5;
}
@media (max-width: 991px) {
  .news-top .container .list .swiper-container .swiper-pagination {
    width: 100%;
    right: 0;
    bottom: 0;
  }
}
.news-top .container .list .swiper-container .swiper-pagination .swiper-pagination-bullet {
  width: 0.06rem;
  height: 0.14rem;
  border-radius: 3px;
  transition: all 0.4s;
  opacity: 1;
  background: rgba(110, 124, 124, 0.2);
  margin: 0 0.05rem;
}
.news-top .container .list .swiper-container .swiper-pagination .swiper-pagination-bullet-active {
  background: #0ad8bf;
  height: 0.24rem;
}
.news-box1 {
  width: 100%;
  position: relative;
  z-index: 1;
  padding: 0.93rem 0 1.2rem;
}
.news-box1 .container {
  position: relative;
  z-index: 1;
}
.news-box1 .container .title {
  line-height: calc(58/48);
  color: #131319;
}
.news-box1 .container .content {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 0.54rem;
}
.news-box1 .container .content .big {
  width: calc(720/1600*100%);
}
@media (max-width: 991px) {
  .news-box1 .container .content .big {
    width: 100%;
  }
}
.news-box1 .container .content .big a {
  width: 100%;
  display: block;
}
.news-box1 .container .content .big a .public-img {
  width: 100%;
  border-radius: 0.2rem;
}
.news-box1 .container .content .big a .public-img::before {
  padding-top: calc(404/720*100%);
}
.news-box1 .container .content .big a .tbox {
  width: 100%;
  padding: 0.37rem 0.3rem 0.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 1;
}
@media (max-width: 991px) {
  .news-box1 .container .content .big a .tbox {
    padding: 0.4rem 0;
  }
}
.news-box1 .container .content .big a .tbox::before {
  content: '';
  width: 0;
  height: 3px;
  position: absolute;
  left: 0;
  bottom: -1px;
  z-index: 2;
  transition: all 0.4s;
  background: linear-gradient(to right, #00cccc, #9df27f);
}
.news-box1 .container .content .big a .tbox .t1 {
  color: #131319;
  line-height: calc(28/18);
}
.news-box1 .container .content .big a .tbox .t2 {
  color: #131319;
  line-height: calc(36/24);
  margin-top: 0.17rem;
}
.news-box1 .container .content .big a:hover .public-img img {
  transform: scale(1.05);
}
.news-box1 .container .content .big a:hover .tbox::before {
  width: 100%;
}
.news-box1 .container .content .list {
  width: 50%;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}
@media (max-width: 991px) {
  .news-box1 .container .content .list {
    width: 100%;
  }
}
.news-box1 .container .content .list ul li {
  width: 100%;
}
.news-box1 .container .content .list ul li a {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: row-reverse;
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 1;
  padding: 0.3rem 0;
}
.news-box1 .container .content .list ul li a::before {
  content: '';
  width: 0;
  height: 3px;
  position: absolute;
  left: 0;
  bottom: -1px;
  z-index: 2;
  transition: all 0.4s;
  background: linear-gradient(to right, #00cccc, #9df27f);
}
.news-box1 .container .content .list ul li a .public-img {
  width: calc(257/800*100%);
  border-radius: 0.2rem;
}
@media (max-width: 991px) {
  .news-box1 .container .content .list ul li a .public-img {
    width: 100%;
  }
}
.news-box1 .container .content .list ul li a .public-img::before {
  padding-top: calc(144/257*100%);
}
.news-box1 .container .content .list ul li a .tbox {
  width: calc(470/800*100%);
  padding-top: 0.16rem;
}
@media (max-width: 1024px) {
  .news-box1 .container .content .list ul li a .tbox {
    padding-top: 0.14rem;
  }
}
@media (max-width: 991px) {
  .news-box1 .container .content .list ul li a .tbox {
    width: 100%;
    margin-top: 0.2rem;
  }
}
.news-box1 .container .content .list ul li a .tbox .t1 {
  color: #131319;
  line-height: calc(28/18);
}
.news-box1 .container .content .list ul li a .tbox .t2 {
  color: #131319;
  line-height: calc(34/20);
  margin-top: 0.12rem;
}
@media (max-width: 1024px) {
  .news-box1 .container .content .list ul li a .tbox .t2 {
    line-height: calc(30/20);
    font-size: 0.24rem;
  }
}
@media (max-width: 767px) {
  .news-box1 .container .content .list ul li a .tbox .t2 {
    font-size: 0.32rem;
  }
}
.news-box1 .container .content .list ul li a:hover .public-img img {
  transform: scale(1.05);
}
.news-box1 .container .content .list ul li a:hover::before {
  width: 100%;
}
.news-box1 .container .more {
  position: absolute;
  right: 0;
  top: 0.1rem;
  z-index: 2;
}
@media (max-width: 991px) {
  .news-box1 .container .more {
    position: relative;
    right: initial;
    top: initial;
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 0.5rem;
  }
}
.news-box2 {
  width: 100%;
  position: relative;
  z-index: 1;
  padding: 1.14rem 0 1.2rem;
  overflow: hidden;
  background: #f5f7fa;
}
.news-box2 .container {
  position: relative;
  z-index: 1;
}
.news-box2 .container .title {
  line-height: calc(58/48);
  color: #131319;
}
.news-box2 .container .list {
  width: calc(900/1600*100%);
  margin: 0.54rem auto 0;
}
@media (max-width: 991px) {
  .news-box2 .container .list {
    width: 100%;
    position: relative;
  }
}
.news-box2 .container .list .swiper-container {
  width: 100%;
}
.news-box2 .container .list .swiper-container .swiper-slide {
  width: 100%;
  transform: scale(calc(720/900));
  transform-origin: top center;
}
.news-box2 .container .list .swiper-container .swiper-slide a {
  width: 100%;
  display: block;
  position: relative;
  z-index: 1;
}
.news-box2 .container .list .swiper-container .swiper-slide a .public-img {
  width: 100%;
  border-radius: 0.2rem;
}
.news-box2 .container .list .swiper-container .swiper-slide a .public-img::before {
  padding-top: calc(503/900*100%);
}
.news-box2 .container .list .swiper-container .swiper-slide a .public-img::after {
  content: '';
  width: 100%;
  height: 50%;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  background: linear-gradient(to top, rgba(71, 88, 141, 0.1), rgba(71, 88, 141, 0));
}
.news-box2 .container .list .swiper-container .swiper-slide a .tbox {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  padding: 0 0.6rem 0.55rem;
}
.news-box2 .container .list .swiper-container .swiper-slide a .tbox .t1 {
  line-height: calc(28/18);
  color: #fff;
}
.news-box2 .container .list .swiper-container .swiper-slide a .tbox .t2 {
  line-height: calc(34/24);
  color: #fff;
  margin-top: 0.15rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.news-box2 .container .list .swiper-container .swiper-slide a:hover .public-img img {
  transform: scale(1.05);
}
.news-box2 .container .list .swiper-container .swiper-slide-active {
  transform: scale(1);
}
.news-box2 .container .list .swiper-pagination {
  width: auto;
  font-size: 0;
  left: 0;
  bottom: 0.1rem;
  z-index: 5;
}
@media (max-width: 991px) {
  .news-box2 .container .list .swiper-pagination {
    width: 100%;
    bottom: 1.2rem;
  }
}
.news-box2 .container .list .swiper-pagination .swiper-pagination-bullet {
  width: 0.06rem;
  height: 0.14rem;
  border-radius: 3px;
  transition: all 0.4s;
  opacity: 1;
  background: rgba(110, 124, 124, 0.2);
  margin: 0 0.05rem;
}
.news-box2 .container .list .swiper-pagination .swiper-pagination-bullet-active {
  background: #0ad8bf;
  height: 0.24rem;
}
.news-box2 .container .list .ck-box {
  display: flex;
  justify-content: center;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 2;
}
@media (max-width: 991px) {
  .news-box2 .container .list .ck-box {
    width: 100%;
    position: relative;
    bottom: initial;
    right: initial;
    margin-top: 1rem;
  }
}
.news-box2 .container .list .ck-box .prev,
.news-box2 .container .list .ck-box .next {
  width: 0.56rem;
  height: 0.56rem;
  border-radius: 50%;
  background: rgba(125, 142, 158, 0.07);
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.4s;
}
@media (max-width: 991px) {
  .news-box2 .container .list .ck-box .prev,
  .news-box2 .container .list .ck-box .next {
    width: 0.8rem;
    height: 0.8rem;
  }
}
.news-box2 .container .list .ck-box .prev::before,
.news-box2 .container .list .ck-box .next::before {
  content: '';
  width: 100%;
  height: 100%;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background: linear-gradient(to right, #00cccc, #9efe80);
  opacity: 0;
  transition: all 0.4s;
}
.news-box2 .container .list .ck-box .prev svg,
.news-box2 .container .list .ck-box .next svg {
  width: 12px;
  height: 12px;
  color: #333;
  position: relative;
  z-index: 2;
}
.news-box2 .container .list .ck-box .prev svg path,
.news-box2 .container .list .ck-box .next svg path {
  transition: all 0.4s;
}
.news-box2 .container .list .ck-box .prev:hover,
.news-box2 .container .list .ck-box .next:hover {
  box-shadow: 0 0.17rem 0.68rem 0 #00e5c9;
}
.news-box2 .container .list .ck-box .prev:hover::before,
.news-box2 .container .list .ck-box .next:hover::before {
  opacity: 1;
}
.news-box2 .container .list .ck-box .prev:hover svg,
.news-box2 .container .list .ck-box .next:hover svg {
  color: #fff;
}
.news-box2 .container .list .ck-box .prev {
  margin-right: 0.1rem;
}
.news-box2 .container .list .ck-box .prev svg {
  transform: rotateZ(180deg);
}
.news-box2 .container .more {
  position: absolute;
  right: 0;
  top: 0.1rem;
  z-index: 2;
}
@media (max-width: 991px) {
  .news-box2 .container .more {
    position: relative;
    right: initial;
    top: initial;
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 0.6rem;
  }
}
.news-box3 {
  width: 100%;
  position: relative;
  z-index: 1;
  padding: 1.14rem 0 1.2rem;
  overflow: hidden;
}
.news-box3 .container {
  position: relative;
  z-index: 1;
}
.news-box3 .container .title {
  line-height: calc(58/48);
  color: #131319;
  min-height: calc(58/48*1em);
}
.news-box3 .container .list {
  width: 100%;
  margin-top: 0.54rem;
}
.news-box3 .container .list ul {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.news-box3 .container .list ul li {
  width: 33.33%;
  position: relative;
  z-index: 1;
}
@media (max-width: 991px) {
  .news-box3 .container .list ul li {
    width: 100%;
  }
}
.news-box3 .container .list ul li:nth-child(1)::before {
  content: '';
  width: 1px;
  height: calc(100% - 1.24rem);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  background: rgba(34, 34, 34, 0.05);
}
@media (max-width: 991px) {
  .news-box3 .container .list ul li:nth-child(1)::before {
    display: none;
  }
}
.news-box3 .container .list ul li::after {
  content: '';
  width: 1px;
  height: calc(100% - 1.24rem);
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  background: rgba(34, 34, 34, 0.05);
}
@media (max-width: 991px) {
  .news-box3 .container .list ul li::after {
    display: none;
  }
}
.news-box3 .container .list ul li a {
  width: 100%;
  display: block;
  position: relative;
  z-index: 1;
}
.news-box3 .container .list ul li a .tbox1 {
  width: 100%;
  position: relative;
  z-index: 1;
  padding: 0.62rem 0.42rem;
}
@media (max-width: 991px) {
  .news-box3 .container .list ul li a .tbox1 {
    padding: 0.3rem 0;
  }
}
.news-box3 .container .list ul li a .tbox1 .time {
  color: rgba(19, 19, 25, 0.4);
  line-height: calc(28/18);
}
.news-box3 .container .list ul li a .tbox1 .public-img {
  width: 100%;
  border-radius: 0.2rem;
  margin-top: 0.3rem;
}
.news-box3 .container .list ul li a .tbox1 .public-img::before {
  padding-top: calc(250/448*100%);
}
.news-box3 .container .list ul li a .tbox1 .txt {
  width: 100%;
  line-height: calc(32/20);
  height: calc(32/20*2em);
  color: #131319;
  margin-top: 0.4rem;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
@media (max-width: 991px) {
  .news-box3 .container .list ul li a .tbox1 .txt {
    font-size: 0.32rem;
  }
}
.news-box3 .container .list ul li a .tbox1 .ts {
  display: flex;
  align-items: center;
  color: #0ad8bf;
  line-height: calc(28/18);
  margin-top: 0.38rem;
}
@media (max-width: 991px) {
  .news-box3 .container .list ul li a .tbox1 .ts {
    margin-top: 0.2rem;
  }
}
.news-box3 .container .list ul li a .tbox1 .ts svg {
  width: 14px;
  height: 14px;
  color: #0ad8bf;
  margin-right: 5px;
}
.news-box3 .container .list ul li a .tbox2 {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  background: url(../images/news-box3-bg.jpg) center center no-repeat;
  background-size: cover;
  border-radius: 0.2rem;
  padding: 0.62rem 0.6rem;
  opacity: 0;
  transition: all 0.4s;
}
@media (max-width: 991px) {
  .news-box3 .container .list ul li a .tbox2 {
    display: none;
  }
}
.news-box3 .container .list ul li a .tbox2 .time {
  color: #fff;
  line-height: calc(28/18);
}
.news-box3 .container .list ul li a .tbox2 .txt {
  color: #fff;
  line-height: calc(44/30);
  margin-top: 0.4rem;
}
.news-box3 .container .list ul li a .tbox2 .ts {
  display: flex;
  align-items: center;
  color: #fff;
  line-height: calc(28/18);
  margin-top: 0.38rem;
  position: absolute;
  left: 0.6rem;
  bottom: 0.62rem;
  z-index: 2;
}
.news-box3 .container .list ul li a .tbox2 .ts svg {
  width: 14px;
  height: 14px;
  color: #fff;
  margin-right: 5px;
}
.news-box3 .container .list ul li a:hover .tbox2 {
  opacity: 1;
}
.news-box3 .container .more {
  position: absolute;
  right: 0;
  top: 0.1rem;
  z-index: 2;
}
@media (max-width: 991px) {
  .news-box3 .container .more {
    position: relative;
    right: initial;
    top: initial;
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 0.5rem;
  }
}
.news-list {
  width: 100%;
  position: relative;
  z-index: 1;
  padding: 1rem 0 1.2rem;
}
.news-list .container .menu-box {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.news-list .container .menu-box ul {
  display: flex;
}
@media (max-width: 991px) {
  .news-list .container .menu-box ul {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 5px;
  }
}
.news-list .container .menu-box ul li {
  margin-right: 6px;
}
.news-list .container .menu-box ul li a {
  min-width: 1.1rem;
  height: 0.53rem;
  padding: 0 0.15rem;
  border-radius: 0.27rem;
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 991px) {
  .news-list .container .menu-box ul li a {
    height: 0.78rem;
    padding: 0 0.2rem;
    border-radius: 0.39rem;
  }
}
.news-list .container .menu-box ul li a::before {
  content: '';
  width: 100%;
  height: 100%;
  border-radius: 0.27rem;
  position: absolute;
  box-sizing: border-box;
  left: 0;
  top: 0;
  z-index: 1;
  border: 2px solid rgba(51, 51, 51, 0.1);
  transition: all 0.4s;
}
@media (max-width: 991px) {
  .news-list .container .menu-box ul li a::before {
    border-radius: 0.39rem;
  }
}
.news-list .container .menu-box ul li a::after {
  content: '';
  width: 100%;
  height: 100%;
  border-radius: 0.27rem;
  position: absolute;
  box-sizing: border-box;
  left: 0;
  top: 0;
  z-index: 1;
  background: linear-gradient(to right, #00cccc, #9df27f);
  transition: all 0.4s;
  opacity: 0;
}
@media (max-width: 991px) {
  .news-list .container .menu-box ul li a::after {
    border-radius: 0.39rem;
  }
}
.news-list .container .menu-box ul li a span {
  color: #131319;
  position: relative;
  z-index: 2;
  transition: all 0.4s;
  white-space: nowrap;
}
.news-list .container .menu-box ul li:hover a::before,
.news-list .container .menu-box ul li.on a::before {
  opacity: 0;
}
.news-list .container .menu-box ul li:hover a::after,
.news-list .container .menu-box ul li.on a::after {
  opacity: 1;
}
.news-list .container .menu-box ul li:hover a span,
.news-list .container .menu-box ul li.on a span {
  color: #fff;
}
.news-list .container .menu-box .search-box {
  width: 360px;
}
@media (max-width: 991px) {
  .news-list .container .menu-box .search-box {
    width: 100%;
    margin-top: 0.5rem;
  }
}
.news-list .container .menu-box .search-box form {
  width: 100%;
  height: 0.53rem;
  border-radius: 0.27rem;
  background: #f6f8fb;
  display: flex;
}
@media (max-width: 991px) {
  .news-list .container .menu-box .search-box form {
    height: 0.78rem;
    border-radius: 0.39rem;
  }
}
.news-list .container .menu-box .search-box form .txt {
  width: calc(100% - 73px);
  height: 100%;
  padding-left: 0.3rem;
  color: #131319;
}
.news-list .container .menu-box .search-box form .txt::placeholder {
  color: rgba(10, 19, 25, 0.3);
}
.news-list .container .menu-box .search-box form .btn {
  width: 73px;
  height: 100%;
  border-radius: 0.27rem;
  background: linear-gradient(to right, #00cccc, #9df27f);
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 991px) {
  .news-list .container .menu-box .search-box form .btn {
    border-radius: 0.39rem;
  }
}
.news-list .container .menu-box .search-box form .btn svg {
  width: 18px;
  color: #fff;
}
.news-list .container .list {
  width: 100%;
  margin-top: 0.8rem;
}
.news-list .container .list ul {
  width: calc(100% + 0.8rem);
  margin: 0 -0.4rem;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .news-list .container .list ul {
    width: 100%;
    margin: 0;
  }
}
.news-list .container .list ul li {
  width: calc(33.33% - 0.8rem);
  margin: 0 0.4rem 0.6rem;
}
@media (max-width: 991px) {
  .news-list .container .list ul li {
    width: 100%;
    margin: 0 0 0.6rem;
  }
}
.news-list .container .list ul li a {
  width: 100%;
  display: block;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 1;
}
.news-list .container .list ul li a::before {
  content: '';
  width: 0;
  height: 3px;
  background: linear-gradient(to right, #00cccc, #9df27f);
  transition: all 0.4s;
  position: absolute;
  left: 0;
  bottom: -1px;
}
.news-list .container .list ul li a .public-img {
  width: 100%;
  border-radius: 0.2rem;
}
.news-list .container .list ul li a .public-img::before {
  padding-top: calc(270/480*100%);
}
.news-list .container .list ul li a .tbox {
  width: 100%;
  padding: 0.33rem 0 0.42rem;
}
.news-list .container .list ul li a .tbox .t1 {
  color: rgba(19, 19, 25, 0.4);
  line-height: calc(28/18);
}
.news-list .container .list ul li a .tbox .t2 {
  color: #131319;
  line-height: calc(34/20);
  margin-top: 0.14rem;
  height: calc(34/20*2em);
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.news-list .container .list ul li a:hover::before {
  width: 100%;
}
.news-list .container .list ul li a:hover .public-img img {
  transform: scale(1.05);
}
.page-list {
  width: 100%;
  display: flex;
  justify-content: center;
}
.page-list a {
  width: 0.56rem;
  height: 0.56rem;
  border-radius: 50%;
  background: rgba(125, 142, 158, 0.07);
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 4px;
  transition: all 0.4s;
  color: #131319;
  flex-shrink: 0;
}
.page-list a::before {
  content: '';
  width: 100%;
  height: 100%;
  border-radius: 50%;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
  background: linear-gradient(to right, #00cccc, #9df27f);
  opacity: 0;
  transition: all 0.4s;
}
.page-list a svg {
  width: 14px;
  height: 14px;
  color: #131319;
  transition: all 0.4s;
}
.page-list a.on,
.page-list a:hover {
  box-shadow: 0 0.17rem 0.32rem 0 rgba(0, 229, 201, 0.44);
  color: #fff;
}
.page-list a.on::before,
.page-list a:hover::before {
  opacity: 1;
}
.page-list a.on svg,
.page-list a:hover svg {
  color: #fff;
}
.page-list .prev {
  margin: 0 0.3rem;
}
@media (max-width: 991px) {
  .page-list .prev {
    margin: 0 4px;
  }
}
.page-list .prev svg {
  transform: rotateZ(180deg);
}
.page-list .next {
  margin: 0 0.3rem;
}
@media (max-width: 991px) {
  .page-list .next {
    margin: 0 4px;
  }
}
.news-info {
  width: 100%;
  position: relative;
  z-index: 1;
  padding: 0.44rem 0 1.1rem;
}
.news-info .container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
.news-info .container .left {
  width: calc(1026/1600*100%);
}
@media (max-width: 991px) {
  .news-info .container .left {
    width: 100%;
  }
}
.news-info .container .left .title {
  color: #131319;
  line-height: calc(60/44);
}
.news-info .container .left .tips {
  width: 100%;
  margin-top: 0.4rem;
  color: rgba(19, 19, 25, 0.7);
  padding: 0.25rem 0;
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.news-info .container .left .tips .ts {
  margin-right: 0.5rem;
}
@media (max-width: 767px) {
  .news-info .container .left .tips .ts {
    width: 50%;
    margin-right: 0;
    margin-bottom: 0.1rem;
  }
}
.news-info .container .left .tips .ts2 {
  margin-left: auto;
}
@media (max-width: 767px) {
  .news-info .container .left .tips .ts2 {
    width: 100%;
    margin-left: 0;
  }
}
.news-info .container .left .public-content {
  width: 100%;
  line-height: 2;
  color: #666;
  margin-top: 0.6rem;
}
.news-info .container .right {
  width: calc(450/1600*100%);
  position: sticky;
  position: -webkit-sticky;
  top: 1rem;
}
@media (max-width: 991px) {
  .news-info .container .right {
    width: 100%;
    position: relative;
    top: initial;
    display: flex;
    flex-wrap: wrap;
    margin-top: 0.5rem;
  }
}
.news-info .container .right .title {
  width: 100%;
  line-height: calc(50/30);
  color: #131319;
}
.news-info .container .right .list {
  width: 100%;
}
.news-info .container .right .list ul li {
  width: 100%;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 1;
}
.news-info .container .right .list ul li::before {
  content: '';
  width: 0;
  height: 3px;
  position: absolute;
  left: 0;
  bottom: -1px;
  z-index: 1;
  background: linear-gradient(to right, #00cccc, #9df27f);
  transition: all 0.4s;
}
.news-info .container .right .list ul li a {
  display: flex;
  justify-content: space-between;
  padding: 0.4rem 0;
}
.news-info .container .right .list ul li a .public-img {
  width: calc(132/450*100%);
  border-radius: 0.1rem;
}
.news-info .container .right .list ul li a .public-img::before {
  padding-top: calc(74/132*100%);
}
.news-info .container .right .list ul li a .tbox {
  width: calc(295/450*100%);
}
.news-info .container .right .list ul li a .tbox .t1 {
  line-height: calc(24/18);
  transition: all 0.4s;
  color: #131319;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  height: calc(24/18*2em);
  font-weight: 600;
}
.news-info .container .right .list ul li a .tbox .t2 {
  color: rgba(19, 19, 25, 0.4);
  line-height: 20px;
  margin-top: 0.08rem;
  font-family: "Poppins";
}
.news-info .container .right .list ul li:hover::before {
  width: 100%;
}
.news-info .container .right .list ul li:hover a .public-img img {
  transform: scale(1.05);
}
.news-info .container .right .list ul li:hover a .tbox .t1 {
  color: #0ad8bf;
}
.news-info .container .right .ck-box {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.46rem;
}
@media (max-width: 991px) {
  .news-info .container .right .ck-box {
    margin-top: 0;
    order: -1;
    margin-bottom: 1rem;
  }
}
.news-info .container .right .ck-box .prev,
.news-info .container .right .ck-box .next {
  display: flex;
  align-items: center;
}
.news-info .container .right .ck-box .prev svg,
.news-info .container .right .ck-box .next svg {
  width: 14px;
  height: 14px;
  color: #131319;
  transition: all 0.4s;
}
.news-info .container .right .ck-box .prev span,
.news-info .container .right .ck-box .next span {
  color: #131319;
  line-height: calc(24/18);
  transition: all 0.4s;
}
.news-info .container .right .ck-box .prev:hover svg,
.news-info .container .right .ck-box .next:hover svg {
  color: #00cbcb;
}
.news-info .container .right .ck-box .prev:hover span,
.news-info .container .right .ck-box .next:hover span {
  color: #00cbcb;
}
.news-info .container .right .ck-box .prev.none,
.news-info .container .right .ck-box .next.none {
  cursor: default;
}
.news-info .container .right .ck-box .prev.none svg,
.news-info .container .right .ck-box .next.none svg {
  color: #eee;
}
.news-info .container .right .ck-box .prev.none span,
.news-info .container .right .ck-box .next.none span {
  color: #eee;
}
.news-info .container .right .ck-box .prev svg {
  transform: rotateZ(180deg);
  margin-right: 0.1rem;
}
.news-info .container .right .ck-box .next svg {
  margin-left: 0.1rem;
}
.news-info .container .right .ck-box .back {
  width: 0.4rem;
  display: flex;
  flex-wrap: wrap;
}
.news-info .container .right .ck-box .back span {
  width: 100%;
  height: 1px;
  background: #131319;
  display: block;
  transition: all 0.4s;
  margin: 3px 0;
}
.news-info .container .right .ck-box .back:hover span {
  background: #00cbcb;
}
.join-banner {
  width: 100%;
  height: var(--vh);
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.join-banner .img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 1;
}
.join-banner .img::after {
  content: '';
  width: 50%;
  height: 3.3rem;
  background: url(../images/prodcut-banner-zz.png) left bottom no-repeat;
  background-size: contain;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
}
.join-banner .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 991px) {
  .join-banner .img.pc {
    display: none;
  }
}
.join-banner .img.mb {
  display: none;
}
@media (max-width: 991px) {
  .join-banner .img.mb {
    display: block;
  }
}
.join-banner .line {
  width: 100vw;
  height: 2px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  pointer-events: none;
}
@media (max-width: 991px) {
  .join-banner .line {
    width: 100vh;
  }
}
.join-banner .line span {
  display: block;
  width: 460px;
  height: 2px;
  background: linear-gradient(to right, #00cccc, #9df27f 50%, rgba(157, 242, 127, 0));
  position: absolute;
  left: 100%;
  top: 0;
}
.join-banner .line1 {
  display: none;
  transform: translate(-52%, -50%) rotateZ(40deg);
}
.join-banner .line1 span {
  animation: lineRun 4s linear forwards infinite;
}
.join-banner .line2 {
  transform: translate(-50%, -50%) rotateZ(-135deg);
}
.join-banner .line2 span {
  animation: lineRun 5s linear forwards infinite;
}
@media (max-width: 991px) {
  .join-banner .line2 span {
    animation: lineRun 2s linear forwards infinite;
  }
}
.join-banner .line3 {
  transform: translate(-50%, -50%) rotateZ(-45deg);
}
.join-banner .line3 span {
  animation: lineRun 6s 1s linear forwards infinite;
}
@media (max-width: 991px) {
  .join-banner .line3 span {
    animation: lineRun 3s 1s linear forwards infinite;
  }
}
.join-banner .line4 {
  display: none;
  transform: translate(-55%, -50%) rotateZ(150deg);
}
.join-banner .line4 span {
  animation: lineRun 7s linear forwards infinite;
}
.join-banner .container {
  height: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}
.join-banner .container .tbox {
  width: 100%;
}
.join-banner .container .tbox .title {
  color: #fff;
  line-height: calc(60/50);
  font-weight: bold;
  text-align: center;
  letter-spacing: 50px;
  transition: all 3s;
  opacity: 0;
}
@media (max-width: 767px) {
  .join-banner .container .tbox .title {
    letter-spacing: 6px;
  }
}
.join-banner .container .tbox .txt {
  line-height: calc(28/18);
  color: #fff;
  text-align: center;
  margin-top: 0.22rem;
  letter-spacing: 30px;
  transition: all 3s;
  opacity: 0;
}
@media (max-width: 767px) {
  .join-banner .container .tbox .txt {
    letter-spacing: 4px;
  }
}
.join-banner .container .tbox.on .title {
  letter-spacing: 10px;
  opacity: 1;
}
@media (max-width: 767px) {
  .join-banner .container .tbox.on .title {
    letter-spacing: 6px;
  }
}
.join-banner .container .tbox.on .txt {
  letter-spacing: 4px;
  opacity: 1;
}
@keyframes lineRun {
  0% {
    left: 100%;
  }
  100% {
    left: -100%;
  }
}
.join-box1 {
  width: 100%;
  position: relative;
  z-index: 1;
  padding: 1.15rem 0 1.2rem;
}
.join-box1 .container .title {
  color: #131319;
  text-align: center;
  line-height: calc(58/48);
}
.join-box1 .container .list {
  width: 100%;
  margin-top: 0.53rem;
}
.join-box1 .container .list ul {
  width: calc(100% + 0.44rem);
  margin: 0 -0.22rem;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .join-box1 .container .list ul {
    width: 100%;
    margin: 0;
    flex-wrap: wrap;
  }
}
.join-box1 .container .list ul li {
  width: calc(230/1600*100%);
  transition: all 0.6s;
  flex: 1 1 auto;
  position: relative;
  z-index: 1;
  margin: 0 0.22rem;
}
@media (max-width: 767px) {
  .join-box1 .container .list ul li {
    width: 100%;
    margin-bottom: 0.3rem;
  }
  .join-box1 .container .list ul li:last-child {
    margin-bottom: 0;
  }
}
.join-box1 .container .list ul li .img {
  width: 100%;
  height: 5.95rem;
  position: relative;
  z-index: 1;
  border-radius: 0.2rem;
  overflow: hidden;
}
.join-box1 .container .list ul li .img::before {
  content: '';
  width: 100%;
  height: 100%;
  background: url(../images/join-box1-bg.png) left bottom no-repeat;
  background-size: cover;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
}
.join-box1 .container .list ul li .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.join-box1 .container .list ul li .tbox {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  padding: 0 0.3rem 0.34rem;
  transition: all 0.4s;
}
@media (max-width: 767px) {
  .join-box1 .container .list ul li .tbox {
    padding: 0 0.3rem 0.3rem;
  }
}
.join-box1 .container .list ul li .tbox .t1 {
  font-size: 24px;
  line-height: calc(34/24);
  color: #fff;
  transition: all 0.4s;
  text-align: center;
}
@media (max-width: 767px) {
  .join-box1 .container .list ul li .tbox .t1 {
    text-align: left;
    font-size: 22px;
  }
}
.join-box1 .container .list ul li .tbox .t2 {
  width: 100%;
  height: 0;
  line-height: calc(32/18);
  color: #fff;
  overflow: hidden;
  transition: all 0.4s;
}
@media (max-width: 767px) {
  .join-box1 .container .list ul li .tbox .t2 {
    height: auto;
  }
}
.join-box1 .container .list ul li .tbox .t2 span {
  display: block;
}
.join-box1 .container .list ul li.on {
  width: calc(778/1600*100%);
}
.join-box1 .container .list ul li.on .tbox {
  padding: 0 0.6rem 0.42rem;
}
@media (max-width: 991px) {
  .join-box1 .container .list ul li.on .tbox {
    padding: 0 0.3rem 0.3rem;
  }
}
.join-box1 .container .list ul li.on .tbox .t1 {
  font-size: 30px;
  text-align: left;
}
@media (max-width: 767px) {
  .join-box1 .container .list ul li.on .tbox .t1 {
    font-size: 22px;
  }
}
.join-box1 .container .list ul li.on .tbox .t2 {
  margin-top: 0.14rem;
  height: auto;
}
.join-box2 {
  width: 100%;
  position: relative;
  z-index: 1;
  background: url(../images/join-box2-bg.jpg) center center no-repeat;
  background-size: cover;
  padding: 1.14rem 0 1.2rem;
  overflow: hidden;
}
.join-box2 .container .title {
  color: #fff;
  line-height: calc(58/48);
  text-align: center;
}
.join-box2 .container .list {
  width: 100%;
  margin-top: 0.54rem;
}
.join-box2 .container .list ul {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.join-box2 .container .list ul li {
  width: calc(100% / 3);
  height: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
  border: 1px solid rgba(102, 122, 144, 0.3);
}
@media (max-width: 1024px) {
  .join-box2 .container .list ul li {
    height: 2.7rem;
  }
}
@media (max-width: 991px) {
  .join-box2 .container .list ul li {
    width: 50%;
  }
}
.join-box2 .container .list ul li .bg {
  width: 110%;
  height: 110%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  opacity: 0;
  transition: all 0.4s;
}
.join-box2 .container .list ul li .bg .line {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}
.join-box2 .container .list ul li .bg .line .l1 {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
}
.join-box2 .container .list ul li .bg .line .l1::before {
  content: '';
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  background: linear-gradient(to right, #0fd9bd, rgba(15, 217, 189, 0.1));
}
.join-box2 .container .list ul li .bg .line .l1::after {
  content: '';
  width: 1px;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  background: linear-gradient(to bottom, #0fd9bd, rgba(15, 217, 189, 0.1));
}
.join-box2 .container .list ul li .bg .line .l2 {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
}
.join-box2 .container .list ul li .bg .line .l2::before {
  content: '';
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  background: linear-gradient(to left, #98f289, rgba(152, 242, 137, 0.1));
}
.join-box2 .container .list ul li .bg .line .l2::after {
  content: '';
  width: 1px;
  height: 100%;
  position: absolute;
  left: 100%;
  top: 0;
  z-index: 1;
  background: linear-gradient(to top, #98f289, rgba(152, 242, 137, 0.1));
}
.join-box2 .container .list ul li .bg .line img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.join-box2 .container .list ul li .bg::before {
  content: '';
  width: calc(1022/544*100%);
  height: calc(764/316*100%);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  pointer-events: none;
  background: url(../images/about-box3-bg2.png) center center no-repeat;
  background-size: contain;
}
.join-box2 .container .list ul li .tbox {
  z-index: 2;
}
.join-box2 .container .list ul li .tbox .icon {
  width: 0.88rem;
  height: 0.88rem;
  border-radius: 50%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid rgba(10, 216, 191, 0.1);
  background: rgba(42, 68, 89, 0.5);
  position: relative;
  z-index: 1;
  transition: all 0.4s;
}
.join-box2 .container .list ul li .tbox .icon::before {
  content: '';
  width: 100%;
  height: 100%;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  background: linear-gradient(to right bottom, #5fa3a0, rgba(95, 163, 160, 0));
  transition: all 0.4s;
  opacity: 0;
}
.join-box2 .container .list ul li .tbox .icon::after {
  content: '';
  width: 1.04rem;
  height: 1.04rem;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  border: 2px dashed rgba(10, 216, 191, 0.1);
}
.join-box2 .container .list ul li .tbox .icon img {
  width: 0.4rem;
  object-fit: contain;
  position: relative;
  z-index: 2;
}
.join-box2 .container .list ul li .tbox .txt {
  width: 100%;
  color: #fff;
  text-align: center;
  line-height: calc(34/24);
  margin-top: 0.35rem;
}
.join-box2 .container .list ul li .tbox .line {
  width: 0.27rem;
  height: 0.04rem;
  background: #9cf27f;
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.join-box2 .container .list ul li:hover {
  z-index: 3;
}
.join-box2 .container .list ul li:hover .bg {
  opacity: 1;
}
.join-box2 .container .list ul li:hover .tbox .icon {
  border: 2px solid rgba(133, 255, 238, 0.5);
}
.join-box2 .container .list ul li:hover .tbox .icon::before {
  opacity: 1;
}
.join-box3 {
  width: 100%;
  position: relative;
  z-index: 1;
  padding: 1.1rem 0 1rem;
  overflow: hidden;
}
.join-box3 .container {
  position: relative;
  z-index: 1;
}
.join-box3 .container .title {
  color: #131319;
  line-height: calc(62/48);
}
.join-box3 .container .list {
  width: 100%;
  margin-top: 0.6rem;
}
.join-box3 .container .list .swiper-container {
  width: 100%;
  position: relative;
  z-index: 1;
  padding-bottom: 0.82rem;
}
.join-box3 .container .list .swiper-container .swiper-slide {
  height: auto;
  min-height: 4.4rem;
  border: 1px solid rgba(0, 0, 0, 0.07);
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: grayscale(10px);
  border-radius: 0.2rem;
  padding: 0.5rem 0.5rem 0.45rem;
  display: flex;
  flex-wrap: wrap;
  align-content: space-between;
}
.join-box3 .container .list .swiper-container .swiper-slide .txt {
  line-height: calc(32/18);
  color: rgba(0, 0, 0, 0.7);
}
.join-box3 .container .list .swiper-container .swiper-slide .author {
  display: flex;
  align-items: center;
  margin-top: 0.3rem;
}
.join-box3 .container .list .swiper-container .swiper-slide .author .icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  overflow: hidden;
}
.join-box3 .container .list .swiper-container .swiper-slide .author .icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.join-box3 .container .list .swiper-container .swiper-slide .author .name {
  margin-left: 0.1rem;
  color: #000;
}
@media (max-width: 1580px) {
  .join-box3 .container .list .swiper-container .swiper-slide .author .name {
    font-size: 14px;
  }
}
.join-box3 .container .list .swiper-container .swiper-pagination {
  width: 100%;
  height: 1px;
  background: rgba(0, 0, 0, 0.07);
  position: absolute;
  bottom: 0;
  left: 0;
  top: initial;
}
.join-box3 .container .list .swiper-container .swiper-pagination .swiper-pagination-progressbar-fill {
  height: 3px;
  top: -1px;
  background: linear-gradient(to right, #00cccc, #9efe80);
}
.join-box3 .container .list .ck-box {
  display: flex;
  justify-content: center;
  position: absolute;
  right: 0;
  top: 0.6rem;
  z-index: 2;
}
@media (max-width: 991px) {
  .join-box3 .container .list .ck-box {
    width: 100%;
    position: relative;
    bottom: initial;
    right: initial;
    margin-top: 0.6rem;
  }
}
.join-box3 .container .list .ck-box .prev,
.join-box3 .container .list .ck-box .next {
  width: 0.56rem;
  height: 0.56rem;
  border-radius: 50%;
  background: rgba(125, 142, 158, 0.07);
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.4s;
}
@media (max-width: 991px) {
  .join-box3 .container .list .ck-box .prev,
  .join-box3 .container .list .ck-box .next {
    width: 0.8rem;
    height: 0.8rem;
  }
}
.join-box3 .container .list .ck-box .prev::before,
.join-box3 .container .list .ck-box .next::before {
  content: '';
  width: 100%;
  height: 100%;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background: linear-gradient(to right, #00cccc, #9efe80);
  opacity: 0;
  transition: all 0.4s;
}
.join-box3 .container .list .ck-box .prev svg,
.join-box3 .container .list .ck-box .next svg {
  width: 12px;
  height: 12px;
  color: #333;
  position: relative;
  z-index: 2;
}
.join-box3 .container .list .ck-box .prev svg path,
.join-box3 .container .list .ck-box .next svg path {
  transition: all 0.4s;
}
.join-box3 .container .list .ck-box .prev:hover,
.join-box3 .container .list .ck-box .next:hover {
  box-shadow: 0 0.17rem 0.32rem 0 rgba(0, 229, 201, 0.4);
}
.join-box3 .container .list .ck-box .prev:hover::before,
.join-box3 .container .list .ck-box .next:hover::before {
  opacity: 1;
}
.join-box3 .container .list .ck-box .prev:hover svg,
.join-box3 .container .list .ck-box .next:hover svg {
  color: #fff;
}
.join-box3 .container .list .ck-box .prev {
  margin-right: 0.2rem;
}
.join-box3 .container .list .ck-box .prev svg {
  transform: rotateZ(180deg);
}
.join-box4 {
  width: 100%;
  position: relative;
  z-index: 1;
  padding: 0.54rem 0 1.2rem;
}
.join-box4 .container .title {
  text-align: center;
  color: #131319;
}
.join-box4 .container .title span {
  background: linear-gradient(to right, #00cccc, #9efe80);
  -webkit-background-clip: text;
  color: transparent;
}
.join-box4 .container .txt {
  text-align: center;
  line-height: calc(32/22);
  color: #131319;
  margin-top: 0.27rem;
}
.join-box4 .container .list {
  width: calc(100% + 20px);
  display: flex;
  margin: 0.54rem -10px 0;
}
@media (max-width: 767px) {
  .join-box4 .container .list {
    width: 100%;
    margin: 0.54rem 0 0;
    flex-wrap: wrap;
  }
}
.join-box4 .container .list .item {
  width: calc(50% - 20px);
  margin: 0 10px;
  position: relative;
  z-index: 1;
  transition: all 0.4s;
}
@media (max-width: 767px) {
  .join-box4 .container .list .item {
    width: 100%;
    margin: 0 0 0.3rem;
  }
  .join-box4 .container .list .item:last-child {
    margin-bottom: 0;
  }
}
.join-box4 .container .list .item .img {
  width: 100%;
  height: 4.2rem;
  border-radius: 0.2rem;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.join-box4 .container .list .item .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.join-box4 .container .list .item .img::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  transition: all 0.4s;
  background: linear-gradient(to top, rgba(1, 14, 25, 0.2), rgba(1, 14, 25, 0));
}
.join-box4 .container .list .item .img::after {
  content: '';
  width: 100%;
  height: 2.8rem;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  transition: all 0.4s;
  background: url(../images/join-box4-bg.png) center bottom no-repeat;
  background-size: cover;
  opacity: 0;
}
.join-box4 .container .list .item .tbox {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  padding: 0 0.3rem 0.25rem;
  transition: all 0.4s;
}
.join-box4 .container .list .item .tbox .icons {
  width: 50px;
  height: 50px;
}
@media (max-width: 767px) {
  .join-box4 .container .list .item .tbox .icons {
    width: 36px;
    height: 36px;
  }
}
.join-box4 .container .list .item .tbox .icons img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.join-box4 .container .list .item .tbox .ts {
  font-size: 24px;
  transition: all 0.4s;
  color: #fff;
  line-height: calc(34/24);
  margin-top: 0.17rem;
}
@media (max-width: 1580px) {
  .join-box4 .container .list .item .tbox .ts {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .join-box4 .container .list .item .tbox .ts {
    font-size: 16px;
  }
}
.join-box4 .container .list .item .tbox .public-btn {
  position: absolute;
  right: 0.58rem;
  bottom: 0.56rem;
  z-index: 2;
  transition: all 0.4s;
  opacity: 0;
}
.join-box4 .container .list .item .tbox .public-btn span {
  color: #fff;
}
@media (min-width: 992px) {
  .join-box4 .container .list .item:hover {
    width: calc(1060/1600*100% - 20px);
    flex-shrink: 0;
  }
  .join-box4 .container .list .item:hover .img::before {
    opacity: 0;
  }
  .join-box4 .container .list .item:hover .img::after {
    opacity: 1;
  }
  .join-box4 .container .list .item:hover .tbox .ts {
    font-size: 0.4rem;
  }
  .join-box4 .container .list .item:hover .tbox .public-btn {
    opacity: 1;
  }
}
.join-box4 .container .list.one .item {
  width: calc(100% - 20px);
}
@media (max-width: 767px) {
  .join-box4 .container .list.one .item {
    width: 100%;
  }
}
@media (min-width: 992px) {
  .join-box4 .container .list.one .item:hover {
    width: calc(100% - 20px);
  }
}
.join-box5 {
  width: 100%;
  background: #f7f8fb;
  position: relative;
  z-index: 1;
  padding: 1.2rem 0 2.04rem;
  overflow: hidden;
}
@media (max-width: 991px) {
  .join-box5 {
    padding: 1.2rem 0;
  }
}
.join-box5 .container .list {
  width: calc(780/1600*100%);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
@media (max-width: 991px) {
  .join-box5 .container .list {
    width: 100%;
  }
}
.join-box5 .container .list .swiper-container {
  width: 100%;
  position: relative;
  z-index: 1;
}
.join-box5 .container .list .swiper-container .swiper-slide {
  border-radius: 0.2rem;
  overflow: hidden;
}
.join-box5 .container .list .swiper-container .swiper-slide .public-img {
  width: 100%;
  border-radius: 0.2rem;
}
.join-box5 .container .list .swiper-container .swiper-slide .public-img::before {
  padding-top: calc(480/780*100%);
}
.join-box5 .container .list .swiper-container .swiper-pagination {
  width: 100%;
  font-size: 0;
  bottom: -0.84rem;
  z-index: 5;
}
.join-box5 .container .list .swiper-container .swiper-pagination .swiper-pagination-bullet {
  width: 0.06rem;
  height: 0.14rem;
  border-radius: 3px;
  transition: all 0.4s;
  opacity: 1;
  background: rgba(110, 124, 124, 0.2);
  margin: 0 0.05rem;
}
.join-box5 .container .list .swiper-container .swiper-pagination .swiper-pagination-bullet-active {
  background: #0ad8bf;
  height: 0.24rem;
}
.join-box5 .container .list .ck-box {
  width: 100%;
}
@media (max-width: 991px) {
  .join-box5 .container .list .ck-box {
    position: relative;
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
  }
}
.join-box5 .container .list .ck-box .prev,
.join-box5 .container .list .ck-box .next {
  width: 0.56rem;
  height: 0.56rem;
  border-radius: 50%;
  background: rgba(71, 88, 141, 0.07);
  position: absolute;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.4s;
}
@media (max-width: 991px) {
  .join-box5 .container .list .ck-box .prev,
  .join-box5 .container .list .ck-box .next {
    width: 0.8rem;
    height: 0.8rem;
    position: relative;
  }
}
.join-box5 .container .list .ck-box .prev::before,
.join-box5 .container .list .ck-box .next::before {
  content: '';
  width: 100%;
  height: 100%;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background: linear-gradient(to right, #00cccc, #9efe80);
  opacity: 0;
  transition: all 0.4s;
}
.join-box5 .container .list .ck-box .prev svg,
.join-box5 .container .list .ck-box .next svg {
  width: 14px;
  height: 14px;
  color: #333;
  position: relative;
  z-index: 2;
}
.join-box5 .container .list .ck-box .prev svg path,
.join-box5 .container .list .ck-box .next svg path {
  transition: all 0.4s;
}
.join-box5 .container .list .ck-box .prev:hover,
.join-box5 .container .list .ck-box .next:hover {
  box-shadow: 0 0.17rem 0.32rem 0 rgba(0, 229, 201, 0.4);
}
.join-box5 .container .list .ck-box .prev:hover::before,
.join-box5 .container .list .ck-box .next:hover::before {
  opacity: 1;
}
.join-box5 .container .list .ck-box .prev:hover svg,
.join-box5 .container .list .ck-box .next:hover svg {
  color: #fff;
}
.join-box5 .container .list .ck-box .prev {
  right: calc(100% + 0.6rem);
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 991px) {
  .join-box5 .container .list .ck-box .prev {
    right: initial;
    top: initial;
    transform: translateY(0);
    margin-right: 0.2rem;
  }
}
.join-box5 .container .list .ck-box .prev svg {
  transform: rotateZ(180deg);
}
.join-box5 .container .list .ck-box .next {
  left: calc(100% + 0.6rem);
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 991px) {
  .join-box5 .container .list .ck-box .next {
    left: initial;
    top: initial;
    transform: translateY(0);
  }
}
.job {
  width: 100%;
  position: relative;
  z-index: 1;
  padding: 1rem 0 1.2rem;
}
.job .container .select-box {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.job .container .select-box .layui-form-select {
  margin-right: 0.2rem;
}
@media (max-width: 767px) {
  .job .container .select-box .layui-form-select {
    width: 100%;
    margin-right: 0;
    margin-bottom: 0.2rem;
  }
}
.job .container .select-box .search-box {
  width: 360px;
  margin-left: auto;
}
@media (max-width: 991px) {
  .job .container .select-box .search-box {
    width: 100%;
    margin-top: 0.5rem;
  }
}
.job .container .select-box .search-box form {
  width: 100%;
  height: 0.53rem;
  border-radius: 0.27rem;
  background: #f6f8fb;
  display: flex;
}
@media (max-width: 991px) {
  .job .container .select-box .search-box form {
    height: 0.78rem;
    border-radius: 0.39rem;
  }
}
.job .container .select-box .search-box form .txt {
  width: calc(100% - 73px);
  height: 100%;
  padding-left: 0.3rem;
  color: #131319;
}
.job .container .select-box .search-box form .txt::placeholder {
  color: rgba(10, 19, 25, 0.3);
}
.job .container .select-box .search-box form .btn {
  width: 73px;
  height: 100%;
  border-radius: 0.27rem;
  background: linear-gradient(to right, #00cccc, #9df27f);
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 991px) {
  .job .container .select-box .search-box form .btn {
    border-radius: 0.39rem;
  }
}
.job .container .select-box .search-box form .btn svg {
  width: 18px;
  color: #fff;
}
.job .container .list {
  width: 100%;
  margin-top: 0.6rem;
}
.job .container .list ul li {
  width: 100%;
  transition: all 0.4s;
}
.job .container .list ul li .top {
  width: 100%;
  height: 1.3rem;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  cursor: pointer;
  font-weight: 600;
}
.job .container .list ul li .top.title {
  height: 0.7rem;
  border-radius: 0.2rem;
  background: rgba(107, 140, 190, 0.05);
  color: rgba(19, 19, 25, 0.5);
  border-bottom: none;
  cursor: initial;
}
.job .container .list ul li .top.title .t1 {
  width: calc(242/1600*100%);
  padding-left: calc(0.6rem + 20px);
}
@media (max-width: 1024px) {
  .job .container .list ul li .top.title .t1 {
    padding-left: calc(0.2rem + 20px);
  }
}
@media (max-width: 991px) {
  .job .container .list ul li .top.title .t1 {
    width: 100%;
  }
}
.job .container .list ul li .top .t1s {
  width: calc(242/1600*100%);
  padding-left: 0.4rem;
  font-size: 22px;
  color: #131319;
  display: flex;
  align-items: center;
}
@media (max-width: 991px) {
  .job .container .list ul li .top .t1s {
    width: 100%;
  }
}
@media (max-width: 1260px) {
  .job .container .list ul li .top .t1s {
    font-size: 18px;
  }
}
@media (max-width: 1024px) {
  .job .container .list ul li .top .t1s {
    font-size: 16px;
    padding-left: 0.2rem;
  }
}
@media (max-width: 767px) {
  .job .container .list ul li .top .t1s {
    font-size: 14px;
  }
}
.job .container .list ul li .top .t1s img {
  width: 20px;
  margin-right: 0.2rem;
}
@media (max-width: 767px) {
  .job .container .list ul li .top .t1s img {
    width: 14px;
  }
}
.job .container .list ul li .top .t2 {
  width: calc(255/1600*100%);
  text-align: center;
}
@media (max-width: 991px) {
  .job .container .list ul li .top .t2 {
    display: none;
  }
}
.job .container .list ul li .top .t3 {
  width: calc(255/1600*100%);
  text-align: center;
}
@media (max-width: 991px) {
  .job .container .list ul li .top .t3 {
    display: none;
  }
}
.job .container .list ul li .top .t4 {
  width: calc(250/1600*100%);
  text-align: center;
}
@media (max-width: 991px) {
  .job .container .list ul li .top .t4 {
    display: none;
  }
}
.job .container .list ul li .top .t5 {
  width: calc(255/1600*100%);
  text-align: center;
}
@media (max-width: 991px) {
  .job .container .list ul li .top .t5 {
    display: none;
  }
}
.job .container .list ul li .top .t6 {
  width: calc(250/1600*100%);
  text-align: center;
}
@media (max-width: 991px) {
  .job .container .list ul li .top .t6 {
    display: none;
  }
}
.job .container .list ul li .top .t7 {
  padding-left: 0.15rem;
  flex-shrink: 0;
}
@media (max-width: 991px) {
  .job .container .list ul li .top .t7 {
    padding: 0 0.15rem;
  }
}
.job .container .list ul li .top .t7 .icon {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  border: 2px solid rgba(0, 0, 0, 0.05);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
  font-family: emoji;
  font-size: 18px;
  transition: all 0.4s;
}
.job .container .list ul li .top .t7 .icon::before {
  content: '';
  width: 100%;
  height: 100%;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  background: linear-gradient(to right, #00cccc, #9df27f);
  transition: all 0.4s;
  opacity: 0;
}
.job .container .list ul li .top .t7 .icon span {
  position: relative;
  z-index: 2;
  transition: all 0.4s;
  color: #7f7f7f;
}
.job .container .list ul li .top .t7 .icon .s2 {
  display: none;
}
.job .container .list ul li .down {
  width: 100%;
  padding: 0 0.25rem 0.7rem 0.8rem;
  position: relative;
  z-index: 1;
  display: none;
}
.job .container .list ul li .down .txt {
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  line-height: calc(36/16);
  padding: 0.4rem 0 0;
}
.job .container .list ul li .down .public-btn {
  position: absolute;
  right: 0.8rem;
  bottom: 0.8rem;
  z-index: 2;
}
@media (max-width: 991px) {
  .job .container .list ul li .down .public-btn {
    position: relative;
    right: initial;
    bottom: initial;
    margin-top: 0.5rem;
  }
}
.job .container .list ul li.on {
  border-radius: 0.2rem;
  background: #fff;
  box-shadow: 0 0.27rem 1.52rem 0 rgba(105, 139, 166, 0.1);
}
.job .container .list ul li.on .top .t7 .icon {
  border: 2px solid transparent;
}
.job .container .list ul li.on .top .t7 .icon::before {
  opacity: 1;
}
.job .container .list ul li.on .top .t7 .icon span {
  color: #fff;
}
.job .container .list ul li.on .top .t7 .icon .s1 {
  display: none;
}
.job .container .list ul li.on .top .t7 .icon .s2 {
  display: block;
}
.job .container .page-list {
  margin-top: 0.6rem;
}
.layui-form-select dl dd.layui-this {
  background: var(--color);
  display: none;
}
.layui-form-select .layui-select-tips {
  display: none;
}
.layui-form-select .layui-input {
  height: 0.53rem;
  border: 2px solid rgba(19, 19, 25, 0.07);
  color: #131319;
  padding: 0 0.24rem;
  border-radius: 0.27rem;
}
.layui-form-select .layui-input::placeholder {
  color: #131319;
}
@media (max-width: 991px) {
  .layui-form-select .layui-input {
    height: 0.78rem;
    border-radius: 0.39rem;
  }
}
.layui-form-select .layui-edge {
  right: 0.24rem;
  background: url(../images/b.svg) no-repeat;
  background-size: contain;
  width: 12px;
  height: 7px;
  border: none;
  margin: 0;
  margin-top: -4px;
}
.job2 {
  width: 100%;
  position: relative;
  z-index: 1;
  padding: 0.58rem 0 1.2rem;
}
.job2 .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.job2 .container .top {
  width: calc(480/1600*100%);
}
@media (max-width: 991px) {
  .job2 .container .top {
    width: 100%;
  }
}
.job2 .container .top .title {
  color: #131319;
  line-height: calc(58/48);
}
.job2 .container .top .txt {
  color: #131319;
  line-height: calc(34/24);
  display: flex;
  align-items: center;
  margin-top: 0.2rem;
  font-weight: 600;
}
.job2 .container .top .txt img {
  width: 0.2rem;
  margin-right: 0.1rem;
}
.job2 .container .form {
  width: calc(960/1600*100%);
}
@media (max-width: 991px) {
  .job2 .container .form {
    width: 100%;
    margin-top: 0.6rem;
  }
}
.job2 .container .form form {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.job2 .container .form form .item {
  width: calc(50% - 0.32rem);
  margin-bottom: 0.25rem;
}
@media (max-width: 767px) {
  .job2 .container .form form .item {
    width: 100%;
    margin: 0 0 0.25rem;
  }
}
.job2 .container .form form .item.w100 {
  width: 100%;
}
.job2 .container .form form .item .name {
  display: flex;
  align-items: center;
  line-height: calc(32/18);
  padding-left: 0.15rem;
  min-height: calc(32/18*1em);
}
.job2 .container .form form .item .name span {
  color: #131319;
}
.job2 .container .form form .item .name i {
  color: #00d1b8;
}
.job2 .container .form form .item .txt {
  width: 100%;
  height: 0.6rem;
  margin-top: 0.13rem;
  background: rgba(104, 140, 190, 0.06);
  border-radius: 0.3rem;
  padding: 0 0.2rem 0 0.4rem;
}
.job2 .container .form form .item .txt::placeholder {
  color: rgba(0, 0, 0, 0.3);
}
@media (max-width: 991px) {
  .job2 .container .form form .item .txt {
    height: 0.78rem;
    border-radius: 0.39rem;
  }
}
.job2 .container .form form .item .upbox {
  width: 100%;
  margin-top: 0.13rem;
  position: relative;
  z-index: 1;
}
.job2 .container .form form .item .upbox .txt3 {
  width: 100%;
  height: 0.6rem;
  background: rgba(104, 140, 190, 0.06);
  border-radius: 0.3rem;
  padding: 0 0.2rem 0 0.4rem;
  color: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
}
@media (max-width: 991px) {
  .job2 .container .form form .item .upbox .txt3 {
    height: 0.78rem;
    border-radius: 0.39rem;
  }
}
.job2 .container .form form .item .upbox .upload {
  width: 70px;
  height: 0.5rem;
  border-radius: 0.25rem;
  background: linear-gradient(to right, #00cccc, #9efe80);
  position: absolute;
  z-index: 2;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  cursor: pointer;
}
@media (max-width: 991px) {
  .job2 .container .form form .item .upbox .upload {
    height: 0.68rem;
    border-radius: 0.34rem;
  }
}
.job2 .container .form form .item .upbox .upload .file {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.job2 .container .form form .item .get-code {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-top: 0.13rem;
}
.job2 .container .form form .item .get-code .txt2 {
  width: calc(230/475*100%);
  height: 0.6rem;
  background: rgba(104, 140, 190, 0.06);
  border-radius: 0.3rem;
  padding: 0 0.2rem 0 0.4rem;
}
.job2 .container .form form .item .get-code .txt2::placeholder {
  color: rgba(0, 0, 0, 0.3);
}
@media (max-width: 991px) {
  .job2 .container .form form .item .get-code .txt2 {
    height: 0.78rem;
    border-radius: 0.39rem;
  }
}
.job2 .container .form form .item .get-code .img {
  cursor: pointer;
  width: calc(230/475*100%);
  height: 0.6rem;
  border-radius: 0.3rem;
  overflow: hidden;
}
@media (max-width: 991px) {
  .job2 .container .form form .item .get-code .img {
    height: 0.78rem;
    border-radius: 0.39rem;
  }
}
.job2 .container .form form .item .get-code .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.job2 .container .form form .item .text {
  width: 100%;
  height: 1.5rem;
  margin-top: 0.13rem;
  background: rgba(104, 140, 190, 0.06);
  border-radius: 0.3rem;
  padding: 0.2rem 0.2rem 0.2rem 0.4rem;
}
.job2 .container .form form .item .text::placeholder {
  color: rgba(0, 0, 0, 0.3);
}
.job2 .container .form form .item .sub {
  height: 0.6rem;
  display: flex;
  align-items: center;
  margin-top: 0.13rem;
}
@media (max-width: 991px) {
  .job2 .container .form form .item .sub {
    height: 0.78rem;
  }
}
@media (max-width: 767px) {
  .job2 .container .form form .item .sub {
    margin-top: 0.3rem;
    height: auto;
    justify-content: center;
  }
}
