@charset "utf-8";
:root {
  --color: #016bff;
  --vh: 100vh;
}
/*字体*/
/* @font-face {
	font-family: "Fontke";
	src: url("Fontke.woff2") format("woff2"),
		 url("Fontke.woff") format("woff"),
		 url("Fontke.ttf") format("truetype"),
		 url("Fontke.eot") format("embedded-opentype"),
		 url("Fontke.svg") format("svg"),
		 url("Fontke.otf") format("opentype");
} */
@font-face {
  font-family: "Poppins-Regular";
  src: url("../fonts/Poppins-Regular.ttf") format("truetype");
}
@font-face {
  font-family: "Poppins-Medium";
  src: url("../fonts/Poppins-Medium.ttf") format("truetype");
}
@font-face {
  font-family: "Poppins-Bold";
  src: url("../fonts/Poppins-Bold.ttf") format("truetype");
}
@font-face {
  font-family: "Poppins-SemiBold";
  src: url("../fonts/Poppins-SemiBold.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;
}
* ::-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: 'Poppins-Regular', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
  font-size: 16px;
  line-height: 1.5;
  color: #111;
  background: #fff;
}
@media (max-width: 1580px) {
  body {
    font-size: 16px;
    line-height: 1.4;
  }
}
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;
}
sup {
  font-size: 0.7em;
}
main {
  position: relative;
  z-index: 5;
}
.fl {
  float: left;
}
.fr {
  float: right;
}
.clear {
  zoom: 1;
}
.clear:after {
  content: '';
  display: block;
  clear: both;
}
.mg0 {
  margin: 0 !important;
}
.mt100 {
  margin-top: 1rem;
}
.mt200 {
  margin-top: 2rem;
}
@media (max-width: 767px) {
  .mt200 {
    margin-top: 1rem;
  }
}
.pt140 {
  padding-top: 1.4rem;
}
@media (max-width: 767px) {
  .pt140 {
    padding-top: 1rem;
  }
}
.container {
  margin: 0 auto;
  width: 85%;
  max-width: 1600px;
}
@media (max-width: 1260px) {
  .container {
    width: 90%;
  }
}
@keyframes width100 {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@keyframes width0 {
  0% {
    width: 100%;
  }
  100% {
    width: 0%;
  }
}
@keyframes arrow {
  0% {
    transform: translate(0%, 0%);
  }
  50% {
    transform: translate(200%, -200%);
  }
  51% {
    transform: translate(-200%, 200%);
  }
  100% {
    transform: translate(0%, 0%);
  }
}
@keyframes arrow2 {
  0% {
    transform: translate(0%, 0%);
  }
  50% {
    transform: translate(300%, 0%);
  }
  51% {
    transform: translate(-300%, 0%);
  }
  100% {
    transform: translate(0%, 0%);
  }
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}
@keyframes pinfo10in {
  0% {
    opacity: 0;
    transform: translateY(100px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes pinfo10out {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-100px);
  }
}
@keyframes pinfo10out2 {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  20% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-100px);
  }
}
.font14 {
  font-size: 14px;
  line-height: 1.71428571;
}
.font16 {
  font-size: 16px;
}
.font18 {
  font-size: 18px;
  line-height: 1.55555556;
}
.font20 {
  font-size: 20px;
  line-height: 1.5;
}
.font22 {
  font-size: 22px;
  line-height: 1.45454545;
}
.font24 {
  font-size: 24px;
  line-height: 1.41666667;
}
.font26 {
  font-size: 26px;
  line-height: 1.38461538;
}
.font28 {
  font-size: 28px;
  line-height: 1.35714286;
}
.font30 {
  font-size: 30px;
  line-height: 1.33333333;
}
.font32 {
  font-size: 32px;
  line-height: 1.3125;
}
.font36 {
  font-size: 36px;
  line-height: 1.27777778;
}
.font40 {
  font-size: 40px;
  line-height: 1.25;
}
.font40 sup {
  font-size: 0.5em;
}
.font42 {
  font-size: 42px;
  line-height: 1.23809524;
}
.font42 sup {
  font-size: 0.5em;
}
.font46 {
  font-size: 46px;
  line-height: 1.2173913;
}
.font46 sup {
  font-size: 0.5em;
}
.font48 {
  font-size: 48px;
  line-height: 1.20833333;
}
.font48 sup {
  font-size: 0.5em;
}
.font56 {
  font-size: 56px;
  line-height: 1.1;
}
.font56 sup {
  font-size: 0.5em;
}
.font72 {
  font-size: 72px;
  line-height: 1.13888889;
}
.font72 sup {
  font-size: 0.5em;
}
.font80 {
  font-size: 80px;
  line-height: 1.125;
}
.font80 sup {
  font-size: 0.5em;
}
.font100 {
  line-height: 1.1;
  font-size: 1rem;
}
@media (max-width: 991px) {
  .font100 {
    font-size: 60px;
  }
}
@media (max-width: 767px) {
  .font100 {
    font-size: 30px;
  }
}
.font100 sup {
  font-size: 0.4em;
}
.font120 {
  font-size: 120px;
  line-height: 1;
}
@media (max-width: 1580px) {
  .font16 {
    font-size: 14px;
  }
  .font18 {
    font-size: 16px;
  }
  .font20,
  .font22,
  .font24 {
    font-size: 18px;
  }
  .font26,
  .font28 {
    font-size: 18px;
  }
  .font30,
  .font32,
  .font36 {
    font-size: 24px;
  }
  .font40,
  .font42 {
    font-size: 24px;
  }
  .font46,
  .font48,
  .font56 {
    font-size: 40px;
  }
  .font80,
  .font72 {
    font-size: 50px;
  }
  .font120 {
    font-size: 60px;
  }
}
@media (max-width: 991px) {
  .font16 {
    font-size: 16px;
    line-height: 1.2;
  }
  .font20,
  .font22,
  .font24 {
    font-size: 18px;
    line-height: 1.2;
  }
  .font46,
  .font48,
  .font56,
  .font72,
  .font80 {
    font-size: 30px;
    line-height: 1.1;
  }
  .font120 {
    font-size: 48px;
  }
}
.public-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 5px 5px 5px 30px;
  min-width: 1rem;
  border-radius: 28px;
  background: var(--color);
  color: #fff;
  cursor: pointer;
  transition: all 0.4s;
  white-space: nowrap;
}
@media (max-width: 1580px) {
  .public-btn {
    padding: 5px 5px 5px 15px;
  }
}
@media (max-width: 767px) {
  .public-btn {
    font-size: 14px;
  }
}
.public-btn .c-ico {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 0.15rem;
  width: 46px;
  height: 46px;
  background: #fff;
  color: var(--color);
  border-radius: 50%;
  transition: all 0.4s;
  overflow: hidden;
}
@media (max-width: 1580px) {
  .public-btn .c-ico {
    width: 30px;
    height: 30px;
  }
}
.public-btn .c-ico .c-svg {
  width: 10px;
  height: 10px;
  object-fit: contain;
}
@media (max-width: 767px) {
  .public-btn .c-ico .c-svg {
    width: 9px;
    height: 9px;
  }
}
.public-btn:hover {
  background: #fff;
  color: var(--color);
}
.public-btn:hover .c-ico {
  background: var(--color);
  color: #fff;
}
.public-btn:hover .c-ico .c-svg {
  animation: arrow 0.8s;
}
.public-btn2 {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 5px 5px 5px 30px;
  min-width: 1rem;
  border-radius: 28px;
  color: #fff;
  border: 1px solid #fff;
  cursor: pointer;
  transition: all 0.4s;
  white-space: nowrap;
}
@media (max-width: 1580px) {
  .public-btn2 {
    padding: 5px 5px 5px 15px;
  }
}
@media (max-width: 767px) {
  .public-btn2 {
    font-size: 14px;
  }
}
.public-btn2 .c-ico {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 0.15rem;
  width: 46px;
  height: 46px;
  background: #fff;
  color: var(--color);
  border-radius: 50%;
  transition: all 0.4s;
  overflow: hidden;
}
@media (max-width: 1580px) {
  .public-btn2 .c-ico {
    width: 30px;
    height: 30px;
  }
}
.public-btn2 .c-ico .c-svg {
  width: 10px;
  height: 10px;
  object-fit: contain;
}
@media (max-width: 767px) {
  .public-btn2 .c-ico .c-svg {
    width: 9px;
    height: 9px;
  }
}
.public-btn2:hover {
  background: #fff;
  color: var(--color);
}
.public-btn2:hover .c-ico {
  background: var(--color);
  color: #fff;
}
.public-btn2:hover .c-ico .c-svg {
  animation: arrow 0.8s;
}
.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.2;
}
.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-title {
  text-align: center;
  margin-bottom: 0.5rem;
}
.public-title .c-title {
  font-family: 'Poppins-Medium', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
}
.public-title .c-text {
  margin-top: 0.2rem;
  color: #666;
}
.public-title2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 0.25rem;
  margin-bottom: 0.4rem;
  border-bottom: 1px solid #ddd;
}
.public-title2 .c-box {
  display: flex;
  align-items: flex-start;
}
.public-title2 .c-box .c-title {
  font-family: 'Poppins-Bold', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
}
.public-title2 .c-box .c-text {
  margin-left: 0.1rem;
  color: var(--color);
  transform: translateY(5px);
}
@media (max-width: 1580px) {
  .public-title2 .c-box .c-text {
    transform: translateY(0);
  }
}
.public-title2 .c-more {
  display: flex;
  align-items: center;
  transition: all 0.4s;
}
.public-title2 .c-more span {
  text-decoration: underline;
}
.public-title2 .c-more .c-ico {
  margin-left: 0.1rem;
  width: 10px;
  height: 10px;
  overflow: hidden;
}
.public-title2 .c-more .c-ico .c-svg {
  width: 100%;
  height: 100%;
}
.public-title2 .c-more:hover {
  color: var(--color);
}
.public-title2 .c-more:hover .c-ico .c-svg {
  animation: arrow 0.8s;
}
.public-banner {
  position: relative;
  overflow: hidden;
}
.public-banner.c-style2 .c-img {
  height: 460px;
}
@media (max-width: 767px) {
  .public-banner.c-style2 .c-img {
    height: 80vw;
  }
}
.public-banner.c-style2 .c-wrap {
  top: 50%;
  transform: translateY(-50%);
}
.public-banner.c-style3 .container {
  max-width: 1400px;
}
.public-banner.c-style3 .c-img {
  height: 430px;
}
@media (max-width: 767px) {
  .public-banner.c-style3 .c-img {
    height: 80vw;
  }
}
.public-banner.c-style3 .public-crumbs {
  position: absolute;
  top: 90px;
  left: 0;
  z-index: 5;
  width: 100%;
  color: #fff;
}
@media (max-width: 1580px) {
  .public-banner.c-style3 .public-crumbs {
    top: 70px;
  }
}
@media (max-width: 991px) {
  .public-banner.c-style3 .public-crumbs {
    top: 60px;
  }
}
.public-banner.c-style3 .public-crumbs a {
  color: #fff;
}
.public-banner.c-style3 .c-wrap {
  color: #fff;
  top: 50%;
  transform: translateY(0%);
  text-align: center;
}
.public-banner.c-style3 .c-wrap form {
  display: flex;
  align-items: flex-start;
  background: #fff;
  max-width: 960px;
  border-radius: 35px;
  margin: 0 auto 0.4rem;
  overflow: hidden;
  color: #000;
}
.public-banner.c-style3 .c-wrap form input {
  padding: 0 20px 0 70px;
  width: 100%;
  height: 70px;
  line-height: 70px;
  background: url(../images/ico-search.svg) no-repeat left 20px center / 20px;
}
@media (max-width: 1580px) {
  .public-banner.c-style3 .c-wrap form input {
    height: 60px;
    line-height: 60px;
    border-radius: 30px;
  }
}
@media (max-width: 991px) {
  .public-banner.c-style3 .c-wrap form input {
    height: 50px;
    line-height: 50px;
    border-radius: 25px;
  }
}
.public-banner.c-style3 .c-wrap form button {
  width: 200px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--color);
  border-radius: 35px;
}
@media (max-width: 1580px) {
  .public-banner.c-style3 .c-wrap form button {
    height: 60px;
    border-radius: 30px;
  }
}
@media (max-width: 991px) {
  .public-banner.c-style3 .c-wrap form button {
    height: 50px;
    border-radius: 25px;
  }
}
.public-banner.c-style4 .c-wrap {
  text-align: center;
  color: #fff;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 767px) {
  .public-banner.c-style4 .c-img {
    height: 80vw;
  }
}
.public-banner .c-img {
  height: calc(720/1920*100vw);
}
@media (max-width: 991px) {
  .public-banner .c-img {
    height: 80vw;
  }
}
@media (max-width: 767px) {
  .public-banner .c-img {
    height: 146vw;
  }
}
.public-banner .c-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.public-banner .c-wrap {
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 5;
  width: 100%;
  transform: translateY(-50%);
  color: var(--color);
}
@media (max-width: 767px) {
  .public-banner .c-wrap {
    top: 20%;
    transform: translateY(0);
    text-align: center;
  }
}
.public-banner .c-wrap .c-title {
  font-family: 'Poppins-Bold', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
}
.public-banner .c-wrap .c-text {
  margin-top: 0.15rem;
}
.public-banner.c-style2 .c-wrap {
  text-align: center;
  color: #fff;
}
/* 占位标签，设置导航样式 */
#c-placeholder {
  height: 90px;
}
@media (max-width: 1580px) {
  #c-placeholder {
    height: 70px;
  }
}
@media (max-width: 991px) {
  #c-placeholder {
    height: 60px;
  }
}
/*头部*/
#c-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 900;
  width: 100%;
  line-height: 90px;
  text-align: center;
  color: #fff;
  transition: 0.4s;
}
@media (max-width: 1580px) {
  #c-header {
    line-height: 70px;
  }
}
@media (max-width: 991px) {
  #c-header {
    line-height: 60px;
  }
}
#c-header a {
  color: #fff;
  transition: 0.4s;
}
#c-header > .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 991px) {
  #c-header > .container {
    height: 60px;
  }
}
#c-header .c-right-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 80%;
}
@media (max-width: 1260px) {
  #c-header .c-right-box {
    width: 85%;
  }
}
@media (max-width: 991px) {
  #c-header .c-right-box {
    width: auto;
  }
}
@media (max-width: 991px) {
  #c-header .c-right-box {
    min-width: auto;
  }
}
#c-header.c-head-move {
  top: -100px;
}
@media (max-width: 991px) {
  #c-header.c-head-move {
    top: -60px;
  }
}
#c-header.c-style2 {
  color: #333;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
#c-header.c-style2 a {
  color: #333;
}
#c-header .c-logo {
  display: flex;
  align-items: center;
}
#c-header .c-logo .c-img-box {
  display: flex;
  align-items: center;
}
#c-header .c-logo .c-img-box img {
  height: 40px;
}
@media (max-width: 1260px) {
  #c-header .c-logo .c-img-box img {
    height: 30px;
  }
}
@media (max-width: 991px) {
  #c-header .c-logo .c-img-box img {
    height: 30px;
  }
}
#c-header .c-logo .c-img-box img:nth-child(2) {
  display: none;
}
#c-header .c-logo span {
  display: inline-block;
  margin-left: 0.2rem;
  padding-left: 0.2rem;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}
@media (max-width: 767px) {
  #c-header .c-logo span {
    display: none;
  }
}
#c-header.c-style2 .c-logo .c-img-box img:nth-child(1) {
  display: none;
}
#c-header.c-style2 .c-logo .c-img-box img:nth-child(2) {
  display: inline-block;
}
#c-header .c-switch {
  position: relative;
  display: none;
  width: 24px;
  height: 20px;
  cursor: pointer;
}
@media (max-width: 991px) {
  #c-header .c-switch {
    display: block;
  }
}
#c-header .c-switch i {
  position: absolute;
  left: 0;
  height: 2px;
  border-radius: 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.c-style2 .c-switch i {
  background: #333;
}
#c-header .c-gn {
  display: flex;
  align-items: center;
}
@media (max-width: 991px) {
  #c-header .c-gn {
    margin-right: 20px;
  }
}
#c-header .c-gn .c-search-btn {
  margin-right: 0.3rem;
  cursor: pointer;
}
#c-header .c-gn .c-search-btn .c-svg {
  width: 20px;
  height: 20px;
  transition: 0.4s;
  vertical-align: middle;
}
@media (max-width: 991px) {
  #c-header .c-gn .c-search-btn .c-svg {
    width: 0.2rem;
    height: 0.2rem;
  }
}
#c-header .c-gn .c-search-btn:hover {
  color: var(--color);
}
#c-header .c-gn form {
  margin-right: 0.3rem;
}
@media (max-width: 1260px) {
  #c-header .c-gn form {
    display: none;
  }
}
#c-header .c-gn form > img,
#c-header .c-gn form > svg {
  width: 20px;
  height: 20px;
  transition: 0.4s;
  vertical-align: middle;
  cursor: pointer;
}
@media (max-width: 991px) {
  #c-header .c-gn form > img,
  #c-header .c-gn form > svg {
    width: 0.2rem;
    height: 0.2rem;
  }
}
#c-header .c-gn form:hover > svg {
  color: var(--color);
}
#c-header .c-gn form .c-box {
  position: absolute;
  top: 100%;
  left: 0;
  display: none;
  width: 100%;
  color: #666;
  background: #fff;
  border-top: 1px solid #f5f5f5;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
}
#c-header .c-gn form .c-box .c-wrap {
  padding: 0.55rem 0;
  max-width: 960px;
  margin: 0 auto;
  text-align: left;
}
@media (max-width: 1580px) {
  #c-header .c-gn form .c-box .c-wrap {
    max-width: 650px;
  }
}
#c-header .c-gn form .c-box .c-wrap .c-input-box {
  display: flex;
  align-items: center;
  height: 70px;
  line-height: 70px;
  border-radius: 35px;
  background: #f2f8fe;
}
@media (max-width: 1580px) {
  #c-header .c-gn form .c-box .c-wrap .c-input-box {
    height: 50px;
    border-radius: 25px;
    line-height: 50px;
  }
}
#c-header .c-gn form .c-box .c-wrap .c-input-box input {
  padding: 0 0.15rem;
  width: 100%;
  height: 70px;
  padding: 0 20px 0 70px;
  background: url(../images/ico-search.svg) no-repeat left 20px center / 20px 20px;
}
#c-header .c-gn form .c-box .c-wrap .c-input-box button {
  flex-shrink: 0;
  width: 200px;
  height: 70px;
  border-radius: 35px;
  color: #fff;
  background: var(--color);
  cursor: pointer;
  transition: all 0.4s;
}
@media (max-width: 1580px) {
  #c-header .c-gn form .c-box .c-wrap .c-input-box button {
    width: 150px;
    height: 50px;
    border-radius: 25px;
  }
}
#c-header .c-gn form .c-box .c-wrap .c-input-box button:hover {
  background: rgba(1, 107, 255, 0.9);
}
#c-header .c-gn form .c-box .c-wrap .c-box2 {
  display: flex;
  align-items: flex-start;
  line-height: 30px;
  margin-top: 0.3rem;
}
#c-header .c-gn form .c-box .c-wrap .c-box2 .c-text {
  margin-right: 0.5rem;
  flex-shrink: 0;
  color: #999;
}
#c-header .c-gn form .c-box .c-wrap .c-box2 .c-list {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  margin: 0 0 -0.1rem;
}
#c-header .c-gn form .c-box .c-wrap .c-box2 .c-list li {
  padding: 0 0.3rem 0.1rem 0;
}
#c-header .c-gn form .c-box .c-wrap .c-box2 .c-list li a {
  display: block;
  color: #333;
  transition: all 0.4s;
}
#c-header .c-gn form .c-box .c-wrap .c-box2 .c-list li a:hover {
  color: var(--color);
}
#c-header .c-gn .c-language {
  margin: 0 0.3rem;
  position: relative;
  cursor: pointer;
}
#c-header .c-gn .c-language .c-ico-text {
  display: flex;
  align-items: center;
}
#c-header .c-gn .c-language .c-ico-text span {
  margin: 0 0.05rem;
  transition: all 0.4s;
}
#c-header .c-gn .c-language .c-ico-text img,
#c-header .c-gn .c-language .c-ico-text svg {
  width: 20px;
  height: 20px;
  transition: 0.4s;
  vertical-align: middle;
}
#c-header .c-gn .c-language .c-ico-text img:nth-child(3),
#c-header .c-gn .c-language .c-ico-text svg:nth-child(3) {
  width: 14px;
  height: 14px;
  transform: rotate(90deg);
}
#c-header .c-gn .c-language .c-box {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  white-space: nowrap;
  line-height: 50px;
}
#c-header .c-gn .c-language .c-box a {
  position: relative;
  display: block;
  padding: 0 20px;
  transition: all 0.4s;
}
#c-header .c-gn .c-language .c-box a::before {
  content: "";
  position: absolute;
  bottom: 0;
  width: calc(100% - 40px) !important;
  left: 20px !important;
  height: 1px;
  background: rgba(0, 0, 0, 0.1);
}
#c-header .c-gn .c-language .c-box a:hover {
  color: var(--color);
}
#c-header .c-gn .c-language:hover .c-ico-text {
  color: var(--color);
}
#c-header .c-gn .c-language:hover .c-ico-text svg {
  color: var(--color);
}
#c-header .c-gn .c-phone {
  display: flex;
  align-items: center;
}
#c-header .c-gn .c-phone img,
#c-header .c-gn .c-phone svg {
  margin: 0 0.1rem 0 0;
  width: 20px;
  height: 20px;
}
#c-header .c-gn .c-phone span {
  font-weight: bold;
}
#c-header .c-gn .c-shop {
  display: inline-flex;
  align-items: center;
  transition: all 0.4s;
  padding: 0 0.4rem;
  height: 44px;
  border-radius: 22px;
  background: var(--color);
  color: #fff;
  line-height: 1;
}
@media (max-width: 1260px) {
  #c-header .c-gn .c-shop {
    padding: 0 12px;
    height: 36px;
    border-radius: 18px;
  }
}
@media (max-width: 991px) {
  #c-header .c-gn .c-shop {
    padding: 0 10px;
    height: 26px;
    border-radius: 13px;
  }
}
#c-header .c-gn .c-shop .c-svg {
  width: 20px;
  height: 20px;
  object-fit: contain;
  margin-right: 0.1rem;
}
@media (max-width: 1260px) {
  #c-header .c-gn .c-shop .c-svg {
    width: 18px;
    height: 18px;
  }
}
@media (max-width: 991px) {
  #c-header .c-gn .c-shop .c-svg {
    width: 14px;
    height: 14px;
  }
}
#c-header .c-nav {
  display: flex;
  align-items: center;
  font-family: 'Poppins-Medium', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
}
@media (max-width: 991px) {
  #c-header .c-nav {
    display: none;
  }
}
#c-header .c-nav > li {
  margin-right: 0.65rem;
}
@media (max-width: 1580px) {
  #c-header .c-nav > li {
    margin-right: 0.3rem;
  }
}
@media (max-width: 1260px) {
  #c-header .c-nav > li {
    margin-right: 0.2rem;
  }
}
#c-header .c-nav > li:nth-child(1) .c-list-box .container .c-left .c-list li,
#c-header .c-nav > li:nth-child(1) .c-list-box .container .c-right .c-list > li {
  display: none;
}
#c-header .c-nav > li:nth-child(1) .c-list-box .container .c-left .c-list li:nth-child(1),
#c-header .c-nav > li:nth-child(1) .c-list-box .container .c-right .c-list > li:nth-child(1),
#c-header .c-nav > li:nth-child(1) .c-list-box .container .c-left .c-list li:nth-child(2),
#c-header .c-nav > li:nth-child(1) .c-list-box .container .c-right .c-list > li:nth-child(2),
#c-header .c-nav > li:nth-child(1) .c-list-box .container .c-left .c-list li:nth-child(3),
#c-header .c-nav > li:nth-child(1) .c-list-box .container .c-right .c-list > li:nth-child(3),
#c-header .c-nav > li:nth-child(1) .c-list-box .container .c-left .c-list li:nth-child(4),
#c-header .c-nav > li:nth-child(1) .c-list-box .container .c-right .c-list > li:nth-child(4) {
  display: block;
}
#c-header .c-nav > li:last-child {
  margin-right: 0;
}
#c-header .c-nav > li > .c-title-box {
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
}
#c-header .c-nav > li > .c-title-box img,
#c-header .c-nav > li > .c-title-box svg {
  margin-left: 0.05rem;
  width: 14px;
  height: 14px;
  transform: rotate(90deg);
  transition: all 0.4s;
}
#c-header .c-nav > li > .c-title-box a:before {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--color);
  transition: 0.4s;
}
#c-header .c-nav > li:nth-child(1) .c-list-box .container .c-right .c-list > li .c-wrap .public-img img {
  display: none;
}
#c-header .c-nav > li:nth-child(2) .c-list-box .container .c-right .c-list > li .c-wrap .public-img::before,
#c-header .c-nav > li:nth-child(3) .c-list-box .container .c-right .c-list > li .c-wrap .public-img::before {
  padding-top: 85%;
}
#c-header .c-nav > li .c-list-box {
  opacity: 0;
  pointer-events: none;
  transition: 0.4s;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
}
#c-header .c-nav > li:hover .c-list-box {
  opacity: 1;
  pointer-events: auto;
}
#c-header.c-style2 {
  color: #333;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
#c-header.c-style2 a {
  color: #333;
}
#c-header.c-style2 .c-logo .c-img-box img:nth-child(1) {
  display: none;
}
#c-header.c-style2 .c-logo .c-img-box img:nth-child(2) {
  display: inline-block;
}
#c-header.c-style2 .c-nav > li.on > .c-title-box > a,
#c-header .c-nav > li:hover > .c-title-box > a,
#c-header .c-nav > li.on > a,
#c-header .c-nav > li:hover > a {
  color: var(--color);
}
#c-header.c-style2 .c-nav > li.on > .c-title-box > a:before,
#c-header .c-nav > li:hover > .c-title-box > a:before,
#c-header .c-nav > li.on > a:before,
#c-header .c-nav > li:hover > a:before {
  left: 0;
  width: 100%;
}
#c-header.c-style2 .c-nav > li.on > .c-title-box svg,
#c-header .c-nav > li:hover > .c-title-box svg {
  color: var(--color);
}
#c-header .c-nav2 {
  position: absolute;
  top: 60px;
  left: 0;
  width: 100%;
  height: 0;
  line-height: 50px;
  color: #333;
  background: #fff;
  overflow-y: auto;
  transition: 0.4s;
  text-align: left;
}
#c-header .c-nav2 > li:last-child {
  border-bottom: 1px solid #f1f1f1;
}
#c-header .c-nav2 li {
  padding: 0 5vw;
  border-top: 1px solid #f1f1f1;
}
#c-header .c-nav2 li .c-title-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#c-header .c-nav2 li .c-title-box img,
#c-header .c-nav2 li .c-title-box svg {
  width: 14px;
  height: 14px;
  transition: all 0.4s;
}
#c-header .c-nav2 li .c-title-box.on img,
#c-header .c-nav2 li .c-title-box.on svg {
  transform: rotate(90deg);
}
#c-header .c-nav2 li a {
  color: #333;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
#c-header .c-nav2 li a:hover,
#c-header .c-nav2 li.on > a {
  color: var(--color);
}
#c-header .c-nav2 li ul {
  display: none;
}
#c-header .c-list-box {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #fff;
  border-top: 1px solid #f5f5f5;
  color: #999;
}
#c-header .c-list-box a {
  color: #999;
}
#c-header .c-list-box .container {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  max-width: 1400px;
  padding: 0.55rem 0;
}
#c-header .c-list-box .container .c-left {
  width: 280px;
  flex-shrink: 0;
}
@media (max-width: 1580px) {
  #c-header .c-list-box .container .c-left {
    width: 230px;
  }
}
#c-header .c-list-box .container .c-left .c-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 5px;
  padding: 10px 30px;
  cursor: pointer;
  border-radius: 28px;
  transition: all 0.4s;
}
@media (max-width: 1580px) {
  #c-header .c-list-box .container .c-left .c-list li {
    padding: 10px 20px;
  }
}
#c-header .c-list-box .container .c-left .c-list li:last-child {
  margin: 0;
}
#c-header .c-list-box .container .c-left .c-list li .c-svg {
  flex-shrink: 0;
  margin-left: 10px;
  width: 12px;
  height: 12px;
  object-fit: contain;
}
#c-header .c-list-box .container .c-left .c-list li.on {
  color: var(--color);
  background: #f2f8fe;
}
#c-header .c-list-box .container .c-right {
  padding-left: 1.6rem;
  width: calc(100% - 280px);
}
@media (max-width: 1580px) {
  #c-header .c-list-box .container .c-right {
    padding-left: 1rem;
  }
}
@media (max-width: 1260px) {
  #c-header .c-list-box .container .c-right {
    padding-left: 40px;
  }
}
#c-header .c-list-box .container .c-right .c-list {
  position: relative;
}
#c-header .c-list-box .container .c-right .c-list > li {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1;
  opacity: 0;
}
#c-header .c-list-box .container .c-right .c-list > li .no-swiper .swiper-button-next,
#c-header .c-list-box .container .c-right .c-list > li .no-swiper .swiper-button-prev,
#c-header .c-list-box .container .c-right .c-list > li .no-swiper .public-btn {
  display: none;
}
#c-header .c-list-box .container .c-right .c-list > li.on {
  position: relative;
  z-index: 2;
  opacity: 1;
}
#c-header .c-list-box .container .c-right .c-list > li .swiper-slide {
  display: flex;
  height: auto;
}
#c-header .c-list-box .container .c-right .c-list > li .swiper-slide .c-wrap {
  width: 100%;
}
#c-header .c-list-box .container .c-right .c-list > li .swiper-button-next,
#c-header .c-list-box .container .c-right .c-list > li .swiper-button-prev {
  width: 46px;
  height: 46px;
  border: 1px solid #eeeeee;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  top: auto;
  bottom: 6px;
  margin-top: 0;
  color: #999;
  transition: all 0.4s;
  overflow: hidden;
}
@media (max-width: 1580px) {
  #c-header .c-list-box .container .c-right .c-list > li .swiper-button-next,
  #c-header .c-list-box .container .c-right .c-list > li .swiper-button-prev {
    width: 42px;
    height: 42px;
    bottom: 0;
  }
}
#c-header .c-list-box .container .c-right .c-list > li .swiper-button-next img,
#c-header .c-list-box .container .c-right .c-list > li .swiper-button-prev img,
#c-header .c-list-box .container .c-right .c-list > li .swiper-button-next svg,
#c-header .c-list-box .container .c-right .c-list > li .swiper-button-prev svg {
  width: 12px;
  height: 12px;
  object-fit: contain;
}
#c-header .c-list-box .container .c-right .c-list > li .swiper-button-next::after,
#c-header .c-list-box .container .c-right .c-list > li .swiper-button-prev::after {
  display: none;
}
#c-header .c-list-box .container .c-right .c-list > li .swiper-button-next:hover,
#c-header .c-list-box .container .c-right .c-list > li .swiper-button-prev:hover {
  background: var(--color);
  border-color: var(--color);
  color: #fff;
}
#c-header .c-list-box .container .c-right .c-list > li .swiper-button-next:hover img,
#c-header .c-list-box .container .c-right .c-list > li .swiper-button-prev:hover img,
#c-header .c-list-box .container .c-right .c-list > li .swiper-button-next:hover svg,
#c-header .c-list-box .container .c-right .c-list > li .swiper-button-prev:hover svg {
  animation: arrow2 0.8s;
}
#c-header .c-list-box .container .c-right .c-list > li .swiper-button-prev {
  left: 0;
  transform: rotate(180deg);
}
#c-header .c-list-box .container .c-right .c-list > li .swiper-button-next {
  right: 0;
}
#c-header .c-list-box .container .c-right .c-list > li .public-btn {
  vertical-align: top;
  margin-top: 0.4rem;
  color: #fff;
  border: 1px solid var(--color);
}
#c-header .c-list-box .container .c-right .c-list > li .public-btn:hover {
  color: var(--color);
}
#c-header .c-list-box .container .c-right .c-list > li .c-wrap {
  position: relative;
  width: 100%;
  display: block;
  border-radius: 0.2rem;
  padding: 0.25rem 0.1rem;
  text-align: center;
  transition: all 0.4s;
  background: #f2f8fe;
  color: #000;
}
@media (max-width: 767px) {
  #c-header .c-list-box .container .c-right .c-list > li .c-wrap {
    border-radius: 10px;
    padding: 15px 15px 30px;
    background: #f0f8ff;
  }
}
#c-header .c-list-box .container .c-right .c-list > li .c-wrap .c-tag {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 14px;
  line-height: 24px;
  padding: 0 12px;
  border-radius: 12px 0 12px 0;
  background: #ff5a00;
  color: #fff;
}
#c-header .c-list-box .container .c-right .c-list > li .c-wrap .c-tag.new {
  background: var(--color);
}
@media (max-width: 767px) {
  #c-header .c-list-box .container .c-right .c-list > li .c-wrap .c-tag {
    border-radius: 10px 0 10px 0;
    font-size: 12px;
  }
}
#c-header .c-list-box .container .c-right .c-list > li .c-wrap .public-img {
  background-position-y: 0px;
  background-size: 100%;
}
@media (max-width: 991px) {
  #c-header .c-list-box .container .c-right .c-list > li .c-wrap .public-img {
    background-image: none !important;
  }
}
#c-header .c-list-box .container .c-right .c-list > li .c-wrap .public-img img {
  object-fit: contain;
}
@media (max-width: 991px) {
  #c-header .c-list-box .container .c-right .c-list > li .c-wrap .public-img img {
    display: block;
  }
}
#c-header .c-list-box .container .c-right .c-list > li .c-wrap .public-img video {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media (max-width: 991px) {
  #c-header .c-list-box .container .c-right .c-list > li .c-wrap .public-img video {
    display: none;
  }
}
#c-header .c-list-box .container .c-right .c-list > li .c-wrap .c-title {
  margin-top: 5px;
  font-family: 'Poppins-Medium', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
  line-height: 1.5;
  transition: all 0.4s;
}
@media (max-width: 767px) {
  #c-header .c-list-box .container .c-right .c-list > li .c-wrap .c-title {
    font-size: 16px;
  }
}
#c-header .c-list-box .container .c-right .c-list > li .c-wrap .c-text {
  color: #999;
  line-height: 1.5;
  margin-top: 5px;
  font-family: 'Poppins-Regular', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
}
@media (max-width: 767px) {
  #c-header .c-list-box .container .c-right .c-list > li .c-wrap .c-text {
    font-size: 12px;
  }
}
#c-header .c-list-box .container .c-right .c-list > li .c-wrap .c-more {
  margin-top: 0.15rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  line-height: 1;
}
@media (max-width: 767px) {
  #c-header .c-list-box .container .c-right .c-list > li .c-wrap .c-more {
    margin-top: 20px;
    font-size: 14px;
    color: #666;
  }
}
#c-header .c-list-box .container .c-right .c-list > li .c-wrap .c-more span {
  margin-right: 0.15rem;
  text-decoration: underline;
}
@media (max-width: 767px) {
  #c-header .c-list-box .container .c-right .c-list > li .c-wrap .c-more span {
    margin-right: 0;
  }
}
#c-header .c-list-box .container .c-right .c-list > li .c-wrap .c-more img,
#c-header .c-list-box .container .c-right .c-list > li .c-wrap .c-more svg {
  width: 10px;
  height: 10px;
  color: var(--color);
}
@media (max-width: 767px) {
  #c-header .c-list-box .container .c-right .c-list > li .c-wrap .c-more img,
  #c-header .c-list-box .container .c-right .c-list > li .c-wrap .c-more svg {
    display: none;
    width: 8px;
    height: 8px;
  }
}
#c-header .c-list-box .container .c-right .c-list > li .c-wrap:hover .c-title {
  color: var(--color);
}
#c-header .c-list-box .container .c-right .c-list > li .c-list2 {
  display: flex;
  margin: 0 -15px;
}
@media (max-width: 1580px) {
  #c-header .c-list-box .container .c-right .c-list > li .c-list2 {
    margin: 0 -10px;
  }
}
#c-header .c-list-box .container .c-right .c-list > li .c-list2 li {
  display: flex;
  padding: 0 15px;
  width: 22.22%;
}
@media (max-width: 1580px) {
  #c-header .c-list-box .container .c-right .c-list > li .c-list2 li {
    width: 28.57%;
  }
}
#c-header .c-list-box .container .c-right .c-list > li .c-list2 a {
  width: 100%;
  display: block;
  background: #f2f8fe;
  border-radius: 0.14rem;
}
#c-header .c-list-box .container .c-right .c-list > li .c-list2 a .public-img img {
  object-fit: contain;
}
#c-header .c-list-box .container .c-right .c-list > li .c-list2 a .c-title {
  font-family: 'Poppins-Medium', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
  padding: 0 5px;
  color: #000;
  transition: all 0.4s;
}
#c-header .c-list-box .container .c-right .c-list > li .c-list2 a .c-text {
  padding: 0 5px 0.3rem;
  line-height: 1.5;
}
#c-header .c-list-box .container .c-right .c-list > li .c-list2 a:hover .c-title {
  color: var(--color);
}
#c-header .c-list-box .container .c-list3 {
  display: flex;
  align-items: center;
  justify-content: center;
}
#c-header .c-list-box .container .c-list3 li {
  padding: 0 0.25rem;
}
#c-header .c-list-box .container .c-list3 li a {
  color: #000;
}
#c-header .c-list-box .container .c-list3 li a:hover {
  color: var(--color);
}
.c-open #c-header .c-nav2 {
  height: calc(100vh - 1.2rem);
  height: calc(100svh - 1.2rem);
  height: calc(100dvh - 1.2rem);
}
.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);
}
/* 底部 */
#c-footer {
  position: relative;
  z-index: 2;
  color: #fff;
  background: #262626;
}
#c-footer a {
  color: rgba(255, 255, 255, 0.2);
  transition: 0.4s;
}
#c-footer a:hover {
  color: #fff !important;
}
#c-footer .c-logo-box {
  padding-top: 0.6rem;
}
@media (max-width: 767px) {
  #c-footer .c-logo-box {
    padding-top: 1.2rem;
  }
}
#c-footer .c-logo-box a {
  display: inline-flex;
}
#c-footer .c-logo-box a img {
  height: 42px;
}
#c-footer .c-top-box {
  padding: 0.2rem 0 0.6rem;
}
@media (max-width: 767px) {
  #c-footer .c-top-box {
    padding: 0.4rem 0 1rem;
  }
}
#c-footer .c-top-box .container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
}
#c-footer .c-top-box .container .c-title-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 0.2rem;
}
@media (max-width: 767px) {
  #c-footer .c-top-box .container .c-title-box {
    padding: 0.3rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
}
#c-footer .c-top-box .container .c-title-box .c-title {
  color: #fff;
}
#c-footer .c-top-box .container .c-title-box a {
  color: #fff;
}
#c-footer .c-top-box .container .c-title-box img,
#c-footer .c-top-box .container .c-title-box svg {
  display: none;
  transition: 0.4s;
  width: 14px;
  height: 14px;
}
@media (max-width: 767px) {
  #c-footer .c-top-box .container .c-title-box img,
  #c-footer .c-top-box .container .c-title-box svg {
    display: inline-block;
  }
}
#c-footer .c-top-box .container .c-list-box:nth-child(1) .c-list li {
  display: none;
}
#c-footer .c-top-box .container .c-list-box:nth-child(1) .c-list li:nth-child(1),
#c-footer .c-top-box .container .c-list-box:nth-child(1) .c-list li:nth-child(2),
#c-footer .c-top-box .container .c-list-box:nth-child(1) .c-list li:nth-child(3),
#c-footer .c-top-box .container .c-list-box:nth-child(1) .c-list li:nth-child(4) {
  display: block;
}
#c-footer .c-top-box .container .c-list-box:nth-child(1) .c-list li:nth-child(4) {
  padding-bottom: 0;
}
@media (max-width: 767px) {
  #c-footer .c-top-box .container .c-list-box:nth-child(1) .c-list li:nth-child(4) {
    padding-bottom: 0.2rem;
  }
}
@media (max-width: 767px) {
  #c-footer .c-top-box .container .c-list-box {
    width: 100%;
  }
}
@media (max-width: 767px) {
  #c-footer .c-top-box .container .c-list-box .c-list {
    padding-top: 0.3rem;
    display: none;
  }
}
#c-footer .c-top-box .container .c-list-box .c-list li {
  padding-bottom: 0.1rem;
}
#c-footer .c-top-box .container .c-list-box .c-list li:last-child {
  padding-bottom: 0;
}
@media (max-width: 767px) {
  #c-footer .c-top-box .container .c-list-box .c-list li:last-child {
    padding-bottom: 0.2rem;
  }
}
@media (max-width: 767px) {
  #c-footer .c-top-box .container .c-list-box .c-list li {
    padding-bottom: 0.2rem;
  }
}
#c-footer .c-top-box .container .c-list-box.on .c-title-box img,
#c-footer .c-top-box .container .c-list-box.on .c-title-box svg {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
@media (max-width: 767px) {
  #c-footer .c-top-box .container .c-list-box.on .c-title-box img,
  #c-footer .c-top-box .container .c-list-box.on .c-title-box svg {
    display: inline-block;
  }
}
@media (max-width: 767px) {
  #c-footer .c-top-box .container .c-text-box {
    padding-top: 0.2rem;
  }
}
#c-footer .c-top-box .container .c-text-box p {
  padding-bottom: 0.1rem;
}
@media (max-width: 767px) {
  #c-footer .c-top-box .container .c-text-box p {
    padding-bottom: 0.2rem;
  }
}
#c-footer .c-top-box .container .c-ico {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  #c-footer .c-top-box .container .c-ico {
    width: 100%;
  }
}
#c-footer .c-top-box .container .c-ico a {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.2rem;
  width: 22px;
  height: 22px;
  color: #fff;
  transition: 0.4s;
  opacity: 0.2;
}
@media (max-width: 991px) {
  #c-footer .c-top-box .container .c-ico a {
    margin: 0 5px 5px 0 !important;
  }
}
@media (max-width: 767px) {
  #c-footer .c-top-box .container .c-ico a {
    margin: 20px 25px 0 0 !important;
  }
}
#c-footer .c-top-box .container .c-ico a:last-child {
  margin: 0;
}
#c-footer .c-top-box .container .c-ico a img,
#c-footer .c-top-box .container .c-ico a svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
#c-footer .c-top-box .container .c-ico a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  #c-footer .c-top-box .container .c-text-wrap {
    width: 100%;
    padding-top: 0.4rem;
  }
}
#c-footer .c-top-box .container .c-text-wrap .c-text {
  color: rgba(255, 255, 255, 0.2);
}
@media (max-width: 767px) {
  #c-footer .c-top-box .container .c-text-wrap .c-text {
    margin-top: 0.4rem;
  }
}
#c-footer .c-top-box .container .c-text-wrap form {
  display: flex;
  align-items: flex-start;
  margin: 0.2rem 0 0.3rem;
}
#c-footer .c-top-box .container .c-text-wrap form input {
  padding: 0 10px;
  width: 200px;
  height: 40px;
  line-height: 40px;
  border: 1px solid #6c7073;
  border-right: 0;
  border-radius: 4px 0 0 4px;
}
@media (max-width: 767px) {
  #c-footer .c-top-box .container .c-text-wrap form input {
    width: 100%;
    height: 50px;
    line-height: 50px;
  }
}
#c-footer .c-top-box .container .c-text-wrap form button {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #6c7073;
  height: 40px;
  width: 50px;
  min-width: auto;
  padding: 0;
  transition: all 0.4s;
  border-radius: 0 4px 4px 0;
}
@media (max-width: 767px) {
  #c-footer .c-top-box .container .c-text-wrap form button {
    width: 80px;
    flex-shrink: 0;
    height: 50px;
  }
}
#c-footer .c-top-box .container .c-text-wrap form button .c-svg {
  width: 22px;
  height: 22px;
  object-fit: contain;
}
@media (max-width: 767px) {
  #c-footer .c-top-box .container .c-text-wrap form button .c-svg {
    width: 26px;
    height: 26px;
  }
}
#c-footer .c-top-box .container .c-text-wrap form button:hover {
  color: #fff;
  background: var(--color);
}
#c-footer .c-bottom-box {
  padding: 0 0 0.4rem;
  color: rgba(255, 255, 255, 0.3);
}
@media (max-width: 767px) {
  #c-footer .c-bottom-box {
    font-size: 14px;
    padding-bottom: 30px;
  }
}
#c-footer .c-bottom-box a {
  color: rgba(255, 255, 255, 0.3);
}
#c-footer .c-bottom-box .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}
#c-footer .c-bottom-box .container .c-copyright {
  word-wrap: break-word;
  word-break: break-all;
}
@media (max-width: 767px) {
  #c-footer .c-bottom-box .container .c-copyright {
    margin-bottom: 20px;
  }
}
#c-footer .c-bottom-box .container .c-support a {
  margin-right: 0.35rem;
}
#c-footer .c-bottom-box .container .c-support a:last-child {
  margin: 0;
}
#c-footer .c-bottom-box .container .c-text {
  margin-top: 0.15rem;
  padding-top: 0.15rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
@media (max-width: 767px) {
  #c-footer .c-bottom-box .container .c-text {
    margin-top: 20px;
    padding-top: 20px;
  }
}
#c-go-top {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  bottom: 10px;
  right: 10px;
  z-index: 999;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #fff;
  cursor: pointer;
}
#c-go-top::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid #ddd;
  border-radius: 50%;
  box-sizing: border-box;
}
@media (max-width: 1580px) {
  #c-go-top {
    width: 40px;
    height: 40px;
  }
}
@media (max-width: 991px) {
  #c-go-top {
    display: none !important;
  }
}
#c-go-top img,
#c-go-top svg {
  width: 16px;
  height: 16px;
}
#c-go-top img:nth-child(2),
#c-go-top svg:nth-child(2) {
  position: absolute;
  top: -5px;
  left: -5px;
  z-index: 5;
  width: 60px;
  height: 60px;
}
@media (max-width: 1580px) {
  #c-go-top img:nth-child(2),
  #c-go-top svg:nth-child(2) {
    top: -5px;
    left: -5px;
    width: 50px;
    height: 50px;
  }
}
#c-go-top img:nth-child(2) circle,
#c-go-top svg:nth-child(2) circle {
  stroke-width: 1;
  fill: transparent !important;
  stroke-dasharray: 62.83;
  stroke-dashoffset: 62.83;
  stroke: #111;
}
#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;
}
/*首页内容1*/
.c-home1 .swiper-slide {
  overflow: hidden;
}
.c-home1 .swiper-slide .c-img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: var(--vh);
}
.c-home1 .swiper-slide .c-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.c-home1 .swiper-slide .c-video {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.c-home1 .swiper-slide .c-box {
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 10;
  width: 100%;
  transform: translateY(-50%);
  color: #fff;
}
@media (max-width: 991px) {
  .c-home1 .swiper-slide .c-box {
    top: 25%;
  }
}
.c-home1 .swiper-slide .c-box .c-wrap {
  width: 70%;
}
@media (max-width: 991px) {
  .c-home1 .swiper-slide .c-box .c-wrap {
    width: 100%;
    text-align: center;
  }
}
.c-home1 .swiper-slide .c-box .c-wrap .c-title {
  font-family: 'Poppins-Bold', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
}
.c-home1 .swiper-slide .c-box .c-wrap .c-text {
  margin: 0.05rem 0 0.25rem;
}
@media (max-width: 767px) {
  .c-home1 .swiper-slide .c-box .c-wrap .c-text {
    margin: 0.1rem 0 0.4rem;
  }
}
.c-home1 .center .c-box {
  top: 140px;
  transform: translateY(0);
  text-align: center;
}
@media (max-width: 991px) {
  .c-home1 .center .c-box {
    top: 25%;
    transform: translateY(-50%);
  }
}
.c-home1 .center .c-box .c-wrap {
  display: inline-block;
}
.c-home1 .white .c-box {
  color: var(--color);
}
.c-home1 .white .public-btn {
  color: var(--color);
  background: #fff;
}
.c-home1 .white .public-btn .c-ico {
  background: var(--color);
  color: #fff;
}
.c-home1 .white .public-btn:hover {
  color: #fff;
  background: var(--color);
}
.c-home1 .white .public-btn:hover .c-ico {
  background: #fff;
  color: var(--color);
}
.c-home1 .c-pagination {
  position: absolute;
  bottom: 0.5rem;
  left: 50%;
  z-index: 10;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.c-home1 .swiper-button-next,
.c-home1 .swiper-button-prev {
  position: relative;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0;
  width: 30px;
  height: 30px;
  opacity: 1;
  transition: 0.4s;
  background: transparent;
  color: rgba(255, 255, 255, 0.3);
  transition: all 0.4s;
}
.c-home1 .swiper-button-next::before,
.c-home1 .swiper-button-prev::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transition: all 0.4s;
  box-sizing: border-box;
}
@media (max-width: 991px) {
  .c-home1 .swiper-button-next,
  .c-home1 .swiper-button-prev {
    display: none;
  }
}
.c-home1 .swiper-button-next::after,
.c-home1 .swiper-button-prev::after {
  display: none;
}
.c-home1 .swiper-button-next img,
.c-home1 .swiper-button-prev img,
.c-home1 .swiper-button-next svg,
.c-home1 .swiper-button-prev svg {
  width: 10px;
  height: 10px;
}
.c-home1 .swiper-button-next img:nth-child(2),
.c-home1 .swiper-button-prev img:nth-child(2),
.c-home1 .swiper-button-next svg:nth-child(2),
.c-home1 .swiper-button-prev svg:nth-child(2) {
  position: absolute;
  top: -2px;
  left: -2px;
  width: 34px;
  height: 34px;
}
.c-home1 .swiper-button-next img:nth-child(2) circle,
.c-home1 .swiper-button-prev img:nth-child(2) circle,
.c-home1 .swiper-button-next svg:nth-child(2) circle,
.c-home1 .swiper-button-prev svg:nth-child(2) circle {
  stroke-width: 1;
  fill: transparent !important;
  stroke-dasharray: 62.83;
  stroke-dashoffset: 62.83;
  transition: stroke-dashoffset 0s linear;
}
.c-home1 .swiper-button-next img:nth-child(2) circle.on,
.c-home1 .swiper-button-prev img:nth-child(2) circle.on,
.c-home1 .swiper-button-next svg:nth-child(2) circle.on,
.c-home1 .swiper-button-prev svg:nth-child(2) circle.on {
  stroke-dashoffset: 0;
  stroke: #fff;
}
.c-home1 .swiper-button-prev {
  transform: rotate(180deg);
}
.c-home1 .swiper-button-next {
  color: #fff;
}
.c-home1 .swiper-button-next:hover,
.c-home1 .swiper-button-prev:hover {
  color: #fff;
}
.c-home1 .swiper-button-next:hover::before,
.c-home1 .swiper-button-prev:hover::before {
  border-color: #fff;
}
.c-home1 .swiper-pagination {
  margin: 0 0.3rem;
  position: static;
  display: flex;
  align-items: center;
  justify-content: center;
}
.c-home1 .swiper-pagination .swiper-pagination-bullet {
  opacity: 1;
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.4s;
}
@media (max-width: 767px) {
  .c-home1 .swiper-pagination .swiper-pagination-bullet {
    margin: 0 0.1rem;
  }
}
.c-home1 .swiper-pagination .swiper-pagination-bullet-active {
  background: var(--color);
}
/*首页内容2*/
.c-home2 {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 4;
  display: flex;
  align-items: center;
}
@media (max-width: 991px) {
  .c-home2 {
    padding: 1.6rem 0 0;
    position: static;
  }
}
@media (max-width: 767px) {
  .c-home2 {
    overflow: hidden;
  }
}
.c-home2 .c-main {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  transform: scale(0.5);
}
@media (max-width: 991px) {
  .c-home2 .c-main {
    transform: scale(1);
  }
}
@media (max-width: 767px) {
  .c-home2 .c-main {
    border-radius: 0;
    overflow: visible;
  }
}
@media (max-width: 767px) {
  .c-home2 .c-main .c-swiper1 {
    padding-bottom: 50px;
    overflow: visible;
  }
}
.c-home2 .c-main .c-swiper1 .swiper-pagination {
  display: none;
  bottom: 0;
}
@media (max-width: 767px) {
  .c-home2 .c-main .c-swiper1 .swiper-pagination {
    display: block;
  }
}
.c-home2 .c-main .c-swiper1 .c-button-box {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: all 0.8s 0s;
  pointer-events: none;
}
.c-home2 .c-main .c-swiper1 .swiper-button-next,
.c-home2 .c-main .c-swiper1 .swiper-button-prev {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  opacity: 1;
  transition: 0.4s;
  background: transparent;
  color: rgba(0, 0, 0, 0.3);
  transition: all 0.4s;
  pointer-events: auto;
  transform: translateY(-50%);
}
.c-home2 .c-main .c-swiper1 .swiper-button-next::before,
.c-home2 .c-main .c-swiper1 .swiper-button-prev::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  transition: all 0.4s;
  box-sizing: border-box;
}
@media (max-width: 991px) {
  .c-home2 .c-main .c-swiper1 .swiper-button-next,
  .c-home2 .c-main .c-swiper1 .swiper-button-prev {
    display: none;
  }
}
.c-home2 .c-main .c-swiper1 .swiper-button-next::after,
.c-home2 .c-main .c-swiper1 .swiper-button-prev::after {
  display: none;
}
.c-home2 .c-main .c-swiper1 .swiper-button-next img,
.c-home2 .c-main .c-swiper1 .swiper-button-prev img,
.c-home2 .c-main .c-swiper1 .swiper-button-next svg,
.c-home2 .c-main .c-swiper1 .swiper-button-prev svg {
  width: 12px;
  height: 12px;
}
.c-home2 .c-main .c-swiper1 .swiper-button-next img:nth-child(2),
.c-home2 .c-main .c-swiper1 .swiper-button-prev img:nth-child(2),
.c-home2 .c-main .c-swiper1 .swiper-button-next svg:nth-child(2),
.c-home2 .c-main .c-swiper1 .swiper-button-prev svg:nth-child(2) {
  position: absolute;
  top: -3px;
  left: -3px;
  width: 52px;
  height: 52px;
}
.c-home2 .c-main .c-swiper1 .swiper-button-next img:nth-child(2) circle,
.c-home2 .c-main .c-swiper1 .swiper-button-prev img:nth-child(2) circle,
.c-home2 .c-main .c-swiper1 .swiper-button-next svg:nth-child(2) circle,
.c-home2 .c-main .c-swiper1 .swiper-button-prev svg:nth-child(2) circle {
  stroke-width: 1;
  fill: transparent !important;
  stroke-dasharray: 62.83;
  stroke-dashoffset: 62.83;
  transition: stroke-dashoffset 0s linear;
}
.c-home2 .c-main .c-swiper1 .swiper-button-next img:nth-child(2) circle.on,
.c-home2 .c-main .c-swiper1 .swiper-button-prev img:nth-child(2) circle.on,
.c-home2 .c-main .c-swiper1 .swiper-button-next svg:nth-child(2) circle.on,
.c-home2 .c-main .c-swiper1 .swiper-button-prev svg:nth-child(2) circle.on {
  stroke-dashoffset: 0;
  stroke: var(--color);
}
.c-home2 .c-main .c-swiper1 .swiper-button-prev {
  left: 20px;
  transform: translateY(-50%) rotate(180deg);
}
.c-home2 .c-main .c-swiper1 .swiper-button-next {
  right: 20px;
  color: var(--color);
}
.c-home2 .c-main .c-swiper1 .swiper-button-next:hover,
.c-home2 .c-main .c-swiper1 .swiper-button-prev:hover {
  color: #fff;
  background: var(--color);
}
.c-home2 .c-main .c-swiper1 .swiper-button-next:hover::before,
.c-home2 .c-main .c-swiper1 .swiper-button-prev:hover::before {
  border-color: var(--color);
}
.c-home2 .c-main .c-swiper1 .swiper-slide {
  position: relative;
}
.c-home2 .c-main .c-swiper1 .swiper-slide .c-img {
  height: 7.6rem;
}
@media (max-width: 991px) {
  .c-home2 .c-main .c-swiper1 .swiper-slide .c-img {
    height: 50vw;
  }
}
@media (max-width: 767px) {
  .c-home2 .c-main .c-swiper1 .swiper-slide .c-img {
    height: 130vw;
    border-radius: 10px;
    overflow: hidden;
  }
}
.c-home2 .c-main .c-swiper1 .swiper-slide .c-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .c-home2 .c-main .c-swiper1 .swiper-slide .c-img img {
    height: 110%;
  }
}
.c-home2 .c-main .c-swiper1 .swiper-slide .c-box {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  width: 100%;
  text-align: center;
  padding: 0.5rem;
  opacity: 0;
  transition: all 0.8s;
  color: var(--color);
}
@media (max-width: 991px) {
  .c-home2 .c-main .c-swiper1 .swiper-slide .c-box {
    opacity: 1;
  }
}
@media (max-width: 767px) {
  .c-home2 .c-main .c-swiper1 .swiper-slide .c-box {
    padding: 40px 20px;
  }
}
.c-home2 .c-main .c-swiper1 .swiper-slide .c-box .c-title {
  opacity: 0;
  font-family: 'Poppins-Medium', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
  transition: all 0.4s;
}
@media (max-width: 767px) {
  .c-home2 .c-main .c-swiper1 .swiper-slide .c-box .c-title {
    opacity: 1;
  }
}
.c-home2 .c-main .c-swiper1 .swiper-slide .c-box .c-text {
  opacity: 0;
  margin: 0.1rem 0 0.2rem;
  transition: all 0.4s 0s;
}
@media (max-width: 767px) {
  .c-home2 .c-main .c-swiper1 .swiper-slide .c-box .c-text {
    margin: 0.1rem 0 0.2rem;
    opacity: 1;
  }
}
.c-home2 .c-main .c-swiper1 .swiper-slide .c-box .public-btn {
  opacity: 0;
}
@media (max-width: 767px) {
  .c-home2 .c-main .c-swiper1 .swiper-slide .c-box .public-btn {
    opacity: 1;
  }
}
.c-home2 .c-main .c-swiper1 .swiper-slide.swiper-slide-active .c-box .c-title,
.c-home2 .c-main .c-swiper1 .swiper-slide.swiper-slide-active .c-box .c-text,
.c-home2 .c-main .c-swiper1 .swiper-slide.swiper-slide-active .c-box .public-btn {
  opacity: 1;
  transition: all 0.8s 0.2s;
}
.c-home2 .c-main .c-swiper1 .c-style2 .c-box {
  top: 50%;
  right: 6%;
  width: 36%;
  transform: translateY(-50%);
  text-align: center;
}
@media (max-width: 767px) {
  .c-home2 .c-main .c-swiper1 .c-style2 .c-box {
    top: 0;
    right: 0;
    width: 100%;
    transform: translateY(0%);
    text-align: center;
  }
}
.c-home2 .c-main .c-swiper2 {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  opacity: 0;
  transition: all 0.8s 0s;
}
@media (max-width: 991px) {
  .c-home2 .c-main .c-swiper2 {
    opacity: 1;
  }
}
@media (max-width: 767px) {
  .c-home2 .c-main .c-swiper2 {
    display: none;
    position: relative;
    -webkit-backdrop-filter: blur(0px);
    backdrop-filter: blur(0px);
    border: 0;
  }
  .c-home2 .c-main .c-swiper2::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
  }
}
.c-home2 .c-main .c-swiper2 .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 0.8rem;
  color: #fff;
  transition: all 0.4s;
  cursor: pointer;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
}
@media (max-width: 991px) {
  .c-home2 .c-main .c-swiper2 .swiper-slide {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .c-home2 .c-main .c-swiper2 .swiper-slide {
    border: 0;
    color: #111;
    border-bottom: 1px solid transparent;
    background: transparent !important;
  }
}
.c-home2 .c-main .c-swiper2 .swiper-slide-thumb-active {
  background: var(--color);
}
@media (max-width: 767px) {
  .c-home2 .c-main .c-swiper2 .swiper-slide-thumb-active {
    border-color: var(--color);
  }
}
.c-home2.on .c-main .c-swiper1 .swiper-slide .c-box {
  opacity: 1;
}
.c-home2.on .c-main .c-swiper1 .c-button-box {
  opacity: 1;
  transition: all 0.8s 0.1s;
}
.c-home2.on .c-main .c-swiper2 {
  opacity: 1;
  transition: all 0.8s 0.2s;
}
.c-home-sticky {
  margin-bottom: 1rem;
  height: 1400vh;
  background: url(../images/gradient.webp) no-repeat left 0 top 150vh / 100% 330vh;
}
@media (max-width: 991px) {
  .c-home-sticky {
    height: auto;
    margin-bottom: 0;
    background: url(../images/gradient.webp) no-repeat left 0 top 55vw / 100% 125vw;
  }
}
@media (max-width: 767px) {
  .c-home-sticky {
    height: auto;
    margin-bottom: 0;
    background: url(../images/gradient.webp) no-repeat left 0 top 180vw / 100% 260vw;
  }
}
.c-home-sticky .c-sticky {
  position: sticky;
  position: -webkit-sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
@media (max-width: 991px) {
  .c-home-sticky .c-sticky {
    position: static;
    height: auto;
    overflow: visible;
  }
}
.c-home3 {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
@media (max-width: 991px) {
  .c-home3 {
    padding: 1.2rem 0 0.2rem;
    position: static;
    height: auto;
  }
}
@media (max-width: 767px) {
  .c-home3 {
    padding: 3rem 0 0.2rem;
  }
}
.c-home3 .c-title {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  z-index: 3;
  font-family: 'Poppins-Medium', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
  text-align: center;
  color: #fff;
  opacity: 0;
  transform: translateY(-50%);
}
@media (max-width: 991px) {
  .c-home3 .c-title {
    position: static;
    transform: translateY(0%);
    opacity: 1;
  }
}
.c-home3 .c-svg {
  opacity: 0;
  position: absolute;
  top: 10%;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  color: #fff;
  transform: scale(0.2);
  vertical-align: top;
}
@media (max-width: 991px) {
  .c-home3 .c-svg {
    display: block;
    opacity: 1;
    position: static;
    color: #111;
    transform: scale(1);
    width: 150px;
    margin: 0.15rem auto 0;
  }
}
.c-home4 {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  opacity: 0;
}
@media (max-width: 991px) {
  .c-home4 {
    position: static;
    height: auto;
    opacity: 1;
    padding: 0 0 1.2rem;
  }
}
.c-home4 .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  color: #fff;
}
@media (max-width: 991px) {
  .c-home4 .container {
    color: #111;
  }
}
@media (max-width: 767px) {
  .c-home4 .container {
    flex-wrap: wrap;
  }
}
.c-home4 .container .c-left {
  width: calc(550/1600*100%);
}
@media (max-width: 1900px) {
  .c-home4 .container .c-left {
    width: 40%;
  }
}
@media (max-width: 1580px) {
  .c-home4 .container .c-left {
    width: 400px;
  }
}
@media (max-width: 767px) {
  .c-home4 .container .c-left {
    width: 100%;
  }
}
.c-home4 .container .c-left .c-title-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .c-home4 .container .c-left .c-title-box {
    display: none;
  }
}
.c-home4 .container .c-left .c-title-box .c-title {
  font-family: 'Poppins-Medium', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
}
.c-home4 .container .c-left .c-title-box .c-text .c-svg {
  height: 60px;
}
@media (max-width: 1580px) {
  .c-home4 .container .c-left .c-title-box .c-text .c-svg {
    height: 40px;
  }
}
.c-home4 .container .c-left .swiper {
  margin: 0.5rem 0 0 78px;
}
@media (max-width: 1900px) {
  .c-home4 .container .c-left .swiper {
    margin: 0.5rem 0 0 60px;
  }
}
@media (max-width: 991px) {
  .c-home4 .container .c-left .swiper {
    margin: 0;
    transform: translateX(0);
  }
}
@media (max-width: 767px) {
  .c-home4 .container .c-left .swiper {
    margin-top: 30px;
    height: auto;
    overflow: visible;
  }
  .c-home4 .container .c-left .swiper .swiper-wrapper {
    flex-wrap: wrap;
    justify-content: space-between;
    transform: translate3d(0, 0, 0) !important;
  }
}
.c-home4 .container .c-left .swiper .c-line-box {
  position: absolute;
  top: 0;
  left: 1px;
  width: 2px;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
}
@media (max-width: 767px) {
  .c-home4 .container .c-left .swiper .c-line-box {
    display: none;
  }
}
.c-home4 .container .c-left .swiper .swiper-slide {
  display: flex;
  align-items: center;
  height: 84px !important;
  cursor: pointer;
  border-left: 4px solid transparent;
  transition: all 0.4s;
}
@media (max-width: 1900px) {
  .c-home4 .container .c-left .swiper .swiper-slide {
    height: 70px !important;
  }
}
@media (max-width: 767px) {
  .c-home4 .container .c-left .swiper .swiper-slide {
    height: auto !important;
    display: block;
    border: 0;
    margin: 0 0 15px 0 !important;
    width: calc(50% - 5px) !important;
  }
  .c-home4 .container .c-left .swiper .swiper-slide:nth-child(2n) {
    margin-right: 0 !important;
  }
}
.c-home4 .container .c-left .swiper .swiper-slide-thumb-active {
  border-color: #fff;
}
.c-home4 .container .c-left .swiper .swiper-slide-thumb-active .c-box {
  opacity: 1;
  text-shadow: 0 0 10px #ffffff;
}
@media (max-width: 767px) {
  .c-home4 .container .c-left .swiper .swiper-slide-thumb-active .c-box {
    color: var(--color);
    border-color: #fff;
    background: #fff;
  }
}
.c-home4 .container .c-left .swiper .swiper-slide-thumb-active .c-box .c-title2 {
  transform: scale(1);
}
.c-home4 .container .c-left .swiper .c-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0 0 0.4rem;
  color: #fff;
  border: 1px solid transparent;
  border-radius: 14px;
  font-family: 'Poppins-Medium', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
  transition: all 0.4s;
  opacity: 0.4;
}
@media (max-width: 1900px) {
  .c-home4 .container .c-left .swiper .c-box {
    padding: 0.1rem 0.3rem;
  }
}
@media (max-width: 767px) {
  .c-home4 .container .c-left .swiper .c-box {
    opacity: 0.6;
    padding: 10px;
    border-color: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    border-radius: 20px;
    opacity: 1;
  }
  .c-home4 .container .c-left .swiper .c-box .c-title2 {
    font-size: 16px;
  }
}
.c-home4 .container .c-left .swiper .c-box .c-arrow {
  opacity: 0;
  flex-shrink: 0;
  margin-left: 20px;
  transition: all 0.4s;
}
.c-home4 .container .c-left .swiper .c-box .c-arrow .c-svg {
  width: 18px;
  height: 18px;
  object-fit: contain;
}
@media (max-width: 991px) {
  .c-home4 .container .c-left .swiper .c-box .c-arrow .c-svg {
    width: 14px;
    height: 14px;
  }
}
@media (max-width: 767px) {
  .c-home4 .container .c-left .swiper .c-box .c-arrow .c-svg {
    width: 10px;
    height: 10px;
  }
}
.c-home4 .container .c-left .swiper .c-box .c-title2 {
  transform-origin: left center;
  transform: scale(0.6);
  transition: all 0.4s;
}
@media (max-width: 767px) {
  .c-home4 .container .c-left .swiper .c-box .c-title2 {
    transform: scale(1);
  }
}
.c-home4 .container .c-right {
  width: calc(780/1600*100%);
}
@media (max-width: 991px) {
  .c-home4 .container .c-right {
    width: calc(850/1600*100%);
  }
}
@media (max-width: 767px) {
  .c-home4 .container .c-right {
    width: 100%;
  }
}
.c-home4 .container .c-right .swiper {
  overflow: visible;
}
.c-home4 .container .c-right .swiper .swiper-button-next,
.c-home4 .container .c-right .swiper .swiper-button-prev {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  opacity: 1;
  transition: 0.4s;
  background: transparent;
  color: rgba(255, 255, 255, 0.5);
  transition: all 0.4s;
  pointer-events: auto;
  transform: translateY(-50%);
}
.c-home4 .container .c-right .swiper .swiper-button-next::before,
.c-home4 .container .c-right .swiper .swiper-button-prev::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  transition: all 0.4s;
  box-sizing: border-box;
}
@media (max-width: 991px) {
  .c-home4 .container .c-right .swiper .swiper-button-next,
  .c-home4 .container .c-right .swiper .swiper-button-prev {
    display: none;
  }
}
.c-home4 .container .c-right .swiper .swiper-button-next::after,
.c-home4 .container .c-right .swiper .swiper-button-prev::after {
  display: none;
}
.c-home4 .container .c-right .swiper .swiper-button-next img,
.c-home4 .container .c-right .swiper .swiper-button-prev img,
.c-home4 .container .c-right .swiper .swiper-button-next svg,
.c-home4 .container .c-right .swiper .swiper-button-prev svg {
  width: 12px;
  height: 12px;
}
.c-home4 .container .c-right .swiper .swiper-button-next img:nth-child(2),
.c-home4 .container .c-right .swiper .swiper-button-prev img:nth-child(2),
.c-home4 .container .c-right .swiper .swiper-button-next svg:nth-child(2),
.c-home4 .container .c-right .swiper .swiper-button-prev svg:nth-child(2) {
  position: absolute;
  top: -3px;
  left: -3px;
  width: 52px;
  height: 52px;
}
.c-home4 .container .c-right .swiper .swiper-button-next img:nth-child(2) circle,
.c-home4 .container .c-right .swiper .swiper-button-prev img:nth-child(2) circle,
.c-home4 .container .c-right .swiper .swiper-button-next svg:nth-child(2) circle,
.c-home4 .container .c-right .swiper .swiper-button-prev svg:nth-child(2) circle {
  stroke-width: 1;
  fill: transparent !important;
  stroke-dasharray: 62.83;
  stroke-dashoffset: 62.83;
  transition: stroke-dashoffset 0s linear;
}
.c-home4 .container .c-right .swiper .swiper-button-next img:nth-child(2) circle.on,
.c-home4 .container .c-right .swiper .swiper-button-prev img:nth-child(2) circle.on,
.c-home4 .container .c-right .swiper .swiper-button-next svg:nth-child(2) circle.on,
.c-home4 .container .c-right .swiper .swiper-button-prev svg:nth-child(2) circle.on {
  stroke-dashoffset: 0;
  stroke: var(--color);
}
.c-home4 .container .c-right .swiper .swiper-button-prev {
  left: 0;
  transform: translateY(-50%) rotate(180deg);
}
.c-home4 .container .c-right .swiper .swiper-button-next {
  right: 0;
}
.c-home4 .container .c-right .swiper .swiper-button-next:hover,
.c-home4 .container .c-right .swiper .swiper-button-prev:hover {
  color: #fff;
  background: var(--color);
}
.c-home4 .container .c-right .swiper .swiper-button-next:hover::before,
.c-home4 .container .c-right .swiper .swiper-button-prev:hover::before {
  border-color: var(--color);
}
.c-home4 .container .c-right .c-bg {
  position: absolute;
  top: 50%;
  right: 0;
  z-index: -1;
  font-size: 1.5rem;
  writing-mode: vertical-rl;
  transform: translateY(-50%);
  opacity: 0.15;
  color: #fff;
}
@media (max-width: 767px) {
  .c-home4 .container .c-right .c-bg {
    display: none;
  }
}
.c-home4 .container .c-right .c-img {
  position: relative;
  z-index: 5;
  width: 100%;
  height: 5rem;
}
.c-home4 .container .c-right .c-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.c-home4 .container .c-right .c-box {
  position: relative;
  z-index: 5;
  text-align: center;
  margin-top: -0.8rem;
}
.c-home4 .container .c-right .c-box .c-title {
  margin: 0.4rem 0 0.15rem;
  font-family: 'Poppins-Medium', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
  color: #fff;
}
@media (max-width: 767px) {
  .c-home4 .container .c-right .c-box .c-title {
    margin-bottom: 0.1rem;
  }
}
.c-home4 .container .c-right .c-box .c-text {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 560px;
  margin: 0 auto 0.2rem;
  color: rgba(255, 255, 255, 0.8);
}
@media (max-width: 767px) {
  .c-home4 .container .c-right .c-box .c-text {
    margin-bottom: 0.4rem;
    font-size: 16px;
  }
}
.c-home4 .container .c-right .c-box .c-text p {
  display: flex;
  align-items: center;
  margin: 0 15px;
}
@media (max-width: 767px) {
  .c-home4 .container .c-right .c-box .c-text p {
    margin: 2px 8px;
  }
}
.c-home4 .container .c-right .c-box .c-text p img {
  margin-right: 5px;
  width: 16px;
  height: 16px;
}
.c-home4 .container .c-right .c-box .public-btn2 {
  background: #fff;
  color: var(--color);
}
.c-home4 .container .c-right .c-box .public-btn2 .c-ico {
  background: var(--color);
  color: #fff;
}
.c-home4 .container .c-right .c-box .public-btn2:hover {
  background: var(--color);
  color: #fff;
  border-color: var(--color);
}
.c-home4 .container .c-right .c-box .public-btn2:hover .c-ico {
  background: #fff;
  color: var(--color);
}
.c-home5 {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 5;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
@media (max-width: 991px) {
  .c-home5 {
    padding-top: 1.2rem;
    position: static;
    height: auto;
    flex-wrap: wrap;
  }
}
.c-home5 .c-title {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  font-family: 'Poppins-Medium', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
  transform: translateY(-130%);
  opacity: 0;
  pointer-events: none;
}
@media (max-width: 991px) {
  .c-home5 .c-title {
    opacity: 1;
    position: static;
    transform: translateY(0%);
  }
}
.c-home5 .c-text {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  font-family: 'Poppins-SemiBold', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
  font-size: 2.2rem;
  color: var(--color);
  line-height: 1;
  transform: scale(0);
  pointer-events: none;
}
@media (max-width: 991px) {
  .c-home5 .c-text {
    position: static;
    transform: scale(1);
    width: 100%;
    font-size: 50px;
    margin-top: 0.1rem;
  }
}
.c-home6 {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 4;
  padding-top: 100px;
  width: 100%;
  height: 100%;
  background: #fff;
  overflow: hidden;
}
@media (max-width: 991px) {
  .c-home6 {
    padding-top: 15px;
    position: static;
    height: auto;
  }
}
.c-home6 .c-top {
  position: relative;
  height: 46px;
}
@media (max-width: 991px) {
  .c-home6 .c-top {
    margin: 15px 0  0;
    height: auto;
    position: sticky;
    position: -webkit-sticky;
    top: 0;
    z-index: 5;
    background: #fff;
  }
}
@media (max-width: 767px) {
  .c-home6 .c-top {
    margin: 15px 0 0;
  }
}
.c-home6 .c-top .swiper {
  position: absolute;
  right: 50%;
  top: 0;
  transform: translateX(50%);
  width: calc(860/1600*100%);
}
@media (max-width: 1260px) {
  .c-home6 .c-top .swiper {
    width: calc(1000/1600*100%);
  }
}
@media (max-width: 991px) {
  .c-home6 .c-top .swiper {
    width: 100%;
    margin: 0 auto;
    position: static;
    transform: translateX(0%);
    justify-content: center;
  }
}
.c-home6 .c-top .c-list {
  display: flex;
  align-items: flex-start;
}
@media (max-width: 767px) {
  .c-home6 .c-top .c-list {
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
.c-home6 .c-top .c-list li {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  border-radius: 23px;
  padding: 0 15px;
  color: #111;
  cursor: pointer;
  font-family: 'Poppins-Medium', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
  transition: all 0.4s;
  background: #f5f5f5;
}
@media (max-width: 767px) {
  .c-home6 .c-top .c-list li {
    margin: 0 10px 10px 0 !important;
    width: calc(50% - 5px) !important;
    height: 40px;
    border-radius: 20px;
    font-size: 16px;
    padding: 0 5px;
    min-width: auto;
    line-height: 1;
    text-align: center;
  }
  .c-home6 .c-top .c-list li:nth-child(2n) {
    margin-right: 0 !important;
  }
}
.c-home6 .c-top .c-list li.swiper-slide-thumb-active {
  color: #fff;
  background: var(--color);
}
.c-home6 .c-bottom .swiper {
  padding-top: 0.4rem;
  overflow: visible;
}
.c-home6 .c-bottom .swiper .swiper-button-next,
.c-home6 .c-bottom .swiper .swiper-button-prev {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  opacity: 1;
  transition: 0.4s;
  background: transparent;
  color: rgba(0, 0, 0, 0.3);
  transition: all 0.4s;
  pointer-events: auto;
  transform: translateY(-50%);
}
.c-home6 .c-bottom .swiper .swiper-button-next::before,
.c-home6 .c-bottom .swiper .swiper-button-prev::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  transition: all 0.4s;
  box-sizing: border-box;
}
@media (max-width: 1260px) {
  .c-home6 .c-bottom .swiper .swiper-button-next,
  .c-home6 .c-bottom .swiper .swiper-button-prev {
    display: none;
  }
}
.c-home6 .c-bottom .swiper .swiper-button-next::after,
.c-home6 .c-bottom .swiper .swiper-button-prev::after {
  display: none;
}
.c-home6 .c-bottom .swiper .swiper-button-next img,
.c-home6 .c-bottom .swiper .swiper-button-prev img,
.c-home6 .c-bottom .swiper .swiper-button-next svg,
.c-home6 .c-bottom .swiper .swiper-button-prev svg {
  width: 12px;
  height: 12px;
}
.c-home6 .c-bottom .swiper .swiper-button-next img:nth-child(2),
.c-home6 .c-bottom .swiper .swiper-button-prev img:nth-child(2),
.c-home6 .c-bottom .swiper .swiper-button-next svg:nth-child(2),
.c-home6 .c-bottom .swiper .swiper-button-prev svg:nth-child(2) {
  position: absolute;
  top: -3px;
  left: -3px;
  width: 52px;
  height: 52px;
}
.c-home6 .c-bottom .swiper .swiper-button-next img:nth-child(2) circle,
.c-home6 .c-bottom .swiper .swiper-button-prev img:nth-child(2) circle,
.c-home6 .c-bottom .swiper .swiper-button-next svg:nth-child(2) circle,
.c-home6 .c-bottom .swiper .swiper-button-prev svg:nth-child(2) circle {
  stroke-width: 1;
  fill: transparent !important;
  stroke-dasharray: 62.83;
  stroke-dashoffset: 62.83;
  transition: stroke-dashoffset 0s linear;
}
.c-home6 .c-bottom .swiper .swiper-button-next img:nth-child(2) circle.on,
.c-home6 .c-bottom .swiper .swiper-button-prev img:nth-child(2) circle.on,
.c-home6 .c-bottom .swiper .swiper-button-next svg:nth-child(2) circle.on,
.c-home6 .c-bottom .swiper .swiper-button-prev svg:nth-child(2) circle.on {
  stroke-dashoffset: 0;
  stroke: var(--color);
}
.c-home6 .c-bottom .swiper .swiper-button-prev {
  left: -70px;
  transform: translateY(-50%) rotate(180deg);
}
.c-home6 .c-bottom .swiper .swiper-button-next {
  right: -70px;
  color: var(--color);
}
.c-home6 .c-bottom .swiper .swiper-button-next:hover,
.c-home6 .c-bottom .swiper .swiper-button-prev:hover {
  color: #fff;
  background: var(--color);
}
.c-home6 .c-bottom .swiper .swiper-button-next:hover::before,
.c-home6 .c-bottom .swiper .swiper-button-prev:hover::before {
  border-color: var(--color);
}
.c-home6 .c-bottom .c-list {
  position: relative;
}
.c-home6 .c-bottom .c-list li .c-wrap {
  background: var(--color);
}
.c-home6 .c-bottom .c-list li .c-wrap {
  display: flex;
  align-items: center;
  padding: 0.4rem;
  border-radius: 14px;
}
@media (max-width: 767px) {
  .c-home6 .c-bottom .c-list li .c-wrap {
    flex-wrap: wrap;
    border-radius: 10px;
    padding: 20px 20px 40px;
  }
}
.c-home6 .c-bottom .c-list li .c-wrap .public-img {
  flex-shrink: 0;
  width: calc(780/1520*100%);
  border-radius: 14px;
}
@media (max-width: 767px) {
  .c-home6 .c-bottom .c-list li .c-wrap .public-img {
    width: 100%;
    border-radius: 10px;
  }
}
.c-home6 .c-bottom .c-list li .c-wrap .public-img::before {
  padding-top: calc(560/780*100%);
}
.c-home6 .c-bottom .c-list li .c-wrap .c-box {
  width: 100%;
  padding: 0 0.3rem 0 0.7rem;
}
@media (max-width: 991px) {
  .c-home6 .c-bottom .c-list li .c-wrap .c-box {
    padding: 0 0 0 0.4rem;
  }
}
@media (max-width: 767px) {
  .c-home6 .c-bottom .c-list li .c-wrap .c-box {
    padding: 20px 0 0;
    width: 100%;
  }
}
.c-home6 .c-bottom .c-list li .c-wrap .c-box .c-title {
  margin-bottom: 0.2rem;
  font-family: 'Poppins-Medium', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
  max-width: 500px;
  line-height: 1.1;
  color: #fff;
}
.c-home6 .c-bottom .c-list li .c-wrap .c-box .c-text {
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.7);
}
@media (max-width: 767px) {
  .c-home6 .c-bottom .c-list li .c-wrap .c-box .c-text {
    font-size: 16px;
    line-height: 1.2;
  }
}
.c-home7 {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 7;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #fff;
}
@media (max-width: 991px) {
  .c-home7 {
    padding: 2rem 0;
    position: static;
    height: auto;
    overflow: hidden;
  }
}
.c-home7 .c-title {
  font-family: 'Poppins-Medium', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
  opacity: 0;
}
@media (max-width: 991px) {
  .c-home7 .c-title {
    opacity: 1;
  }
}
.c-home7 .c-text {
  font-size: 90px;
  line-height: 1;
  font-family: 'Poppins-SemiBold', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
  margin: 0.2rem 0 0.6rem;
  color: var(--color);
  opacity: 0;
}
@media (max-width: 1580px) {
  .c-home7 .c-text {
    font-size: 60px;
  }
}
@media (max-width: 991px) {
  .c-home7 .c-text {
    font-size: 50px;
    margin: 0.3rem 0 0.8rem;
    opacity: 1;
  }
}
@media (max-width: 767px) {
  .c-home7 .c-text {
    margin-bottom: 50px;
  }
}
.c-home7 .c-main {
  position: relative;
}
.c-home7 .swiper1 {
  display: flex;
  opacity: 0;
  overflow: visible;
}
@media (max-width: 991px) {
  .c-home7 .swiper1 {
    flex-wrap: wrap;
    opacity: 1;
  }
}
.c-home7 .swiper1 .swiper-wrapper {
  width: calc(100% + 0.4rem);
  height: auto;
  margin: 0 -0.2rem;
}
@media (max-width: 1900px) {
  .c-home7 .swiper1 .swiper-wrapper {
    margin: 0 -10px -20px;
    flex-wrap: wrap;
  }
}
.c-home7 .swiper1 .swiper-slide {
  display: flex;
  padding: 0 0.2rem;
  height: auto;
}
@media (max-width: 1900px) {
  .c-home7 .swiper1 .swiper-slide {
    padding: 0 10px;
  }
}
@media (min-width: 992px) {
  .c-home7 .swiper1 .swiper-slide {
    flex: 1;
  }
}
@media (max-width: 991px) {
  .c-home7 .swiper1 .swiper-slide {
    padding: 0 10px 20px;
    width: 50%;
  }
}
.c-home7 .swiper1 .swiper-slide .c-wrap {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  padding: 0.4rem;
  border-radius: 0.2rem;
  background-image: linear-gradient(0deg, rgba(172, 203, 238, 0.2) 0%, rgba(231, 240, 253, 0.2) 100%);
  text-align: left;
}
@media (max-width: 1900px) {
  .c-home7 .swiper1 .swiper-slide .c-wrap {
    padding: 20px;
  }
}
@media (max-width: 767px) {
  .c-home7 .swiper1 .swiper-slide .c-wrap {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    padding: 25px 15px;
  }
}
.c-home7 .swiper1 .swiper-slide .c-wrap .c-num {
  position: absolute;
  top: 0.2rem;
  right: 0.2rem;
  z-index: 0;
  color: rgba(1, 107, 255, 0.06);
  font-size: 1rem;
  font-family: 'Poppins-SemiBold', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
  font-style: initial;
  line-height: 1;
  opacity: 0.8;
}
@media (max-width: 767px) {
  .c-home7 .swiper1 .swiper-slide .c-wrap .c-num {
    top: 0;
    right: 50%;
    transform: translateX(50%);
    font-size: 80px;
  }
}
.c-home7 .swiper1 .swiper-slide .c-wrap img {
  position: relative;
  z-index: 2;
  margin-right: 0.3rem;
  height: 0.7rem;
  object-fit: contain;
}
@media (max-width: 1900px) {
  .c-home7 .swiper1 .swiper-slide .c-wrap img {
    height: 40px;
  }
}
@media (max-width: 767px) {
  .c-home7 .swiper1 .swiper-slide .c-wrap img {
    height: 50px;
    margin: 0 0 0.2rem;
  }
}
.c-home7 .swiper1 .swiper-slide .c-wrap .c-box {
  position: relative;
  z-index: 2;
}
.c-home7 .swiper1 .swiper-slide .c-wrap .c-title {
  font-family: 'Poppins-SemiBold', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
}
.c-home7 .swiper1 .swiper-slide .c-wrap .c-text2 {
  color: #323232;
}
@media (max-width: 767px) {
  .c-home7 .swiper1 .swiper-slide .c-wrap .c-text2 {
    font-size: 12px;
  }
}
.c-home7 .hi-steady-carousel {
  display: none;
  margin-top: 0;
  margin-bottom: 0.2rem;
  overflow: visible;
  opacity: 0;
}
@media (max-width: 991px) {
  .c-home7 .hi-steady-carousel {
    margin-bottom: 20px;
    opacity: 1;
  }
}
@media (max-width: 991px) {
  .c-home7 .hi-steady-carousel {
    margin-bottom: 30px;
    opacity: 1;
  }
}
.c-home7 .hi-steady-carousel:nth-child(3) {
  margin: 0;
}
.c-home7 .hi-steady-carousel .c-box .c-item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
}
@media (max-width: 767px) {
  .c-home7 .hi-steady-carousel .c-box .c-item {
    width: 150px;
    height: 34px;
  }
}
.c-home7 .hi-steady-carousel .c-box .c-item img {
  max-height: 100%;
  transition: all 0.4s 0s;
}
.c-home7 .swiper2 {
  opacity: 0;
  margin: 0.6rem auto 0;
  width: 100%;
  max-width: 700px;
  padding-bottom: 0.4rem;
  z-index: 10;
}
@media (max-width: 1580px) {
  .c-home7 .swiper2 {
    width: 550px;
  }
}
@media (max-width: 991px) {
  .c-home7 .swiper2 {
    margin-bottom: 0.6rem;
    opacity: 1;
  }
}
@media (max-width: 767px) {
  .c-home7 .swiper2 {
    padding-bottom: 40px;
    max-width: 85%;
    margin: 60px auto 0;
    position: static;
  }
}
.c-home7 .swiper2 .swiper-slide {
  overflow: hidden;
  border-radius: 14px;
}
@media (max-width: 767px) {
  .c-home7 .swiper2 .swiper-slide {
    border-radius: 10px;
  }
}
.c-home7 .swiper2 .swiper-slide .swiper-slide-shadow {
  opacity: 0 !important;
}
.c-home7 .swiper2 .swiper-slide:nth-child(3n-2) .c-wrap {
  background-image: linear-gradient(-30deg, #016bff 0%, #1c91e2 50%, #22dcfd 100%), linear-gradient(#016bff, #016bff);
  color: #fff;
  border: solid 1px #fff;
}
.c-home7 .swiper2 .swiper-slide:nth-child(3n-2) .c-wrap .c-box .c-name-box .c-text3 {
  color: rgba(255, 255, 255, 0.8);
}
.c-home7 .swiper2 .swiper-slide:nth-child(3n) .c-wrap {
  background: #f1f6fc;
  border: solid 1px #cecece;
}
.c-home7 .swiper2 .swiper-slide .c-wrap {
  position: relative;
  border-radius: 14px;
  text-align: left;
  padding: 0.4rem;
  transition: opacity 0.4s 0s;
  background-color: #ffffff;
  border: solid 1px #cecece;
  background-image: none;
  color: #111;
  overflow: hidden;
}
.c-home7 .swiper2 .swiper-slide .c-box > img {
  width: 30px;
}
.c-home7 .swiper2 .swiper-slide .c-box .c-text2 {
  margin: 0.2rem 0 0.3rem;
}
@media (max-width: 767px) {
  .c-home7 .swiper2 .swiper-slide .c-box .c-text2 {
    font-size: 18px;
    line-height: 1.2;
  }
}
.c-home7 .swiper2 .swiper-slide .c-box .c-name-box {
  display: flex;
  align-items: center;
}
.c-home7 .swiper2 .swiper-slide .c-box .c-name-box img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 50%;
  margin-right: 0.2rem;
}
.c-home7 .swiper2 .swiper-slide .c-box .c-name-box .c-title {
  font-family: 'Poppins-Medium', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
}
@media (max-width: 767px) {
  .c-home7 .swiper2 .swiper-slide .c-box .c-name-box .c-name {
    font-size: 16px;
    line-height: 1.2;
  }
}
.c-home7 .swiper2 .swiper-slide .c-box .c-name-box .c-text3 {
  color: #666;
}
@media (max-width: 767px) {
  .c-home7 .swiper2 .swiper-slide .c-box .c-name-box .c-text3 {
    font-size: 14px;
    line-height: 1.2;
  }
}
@media (max-width: 767px) {
  .c-home7 .swiper2 .c-button {
    display: none;
  }
}
.c-home7 .swiper2 .swiper-button-prev,
.c-home7 .swiper2 .swiper-button-next {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin: 0;
  background: var(--color);
  border-radius: 50%;
  transition: all 0.4s;
  transform: translateY(-50%);
  color: #fff;
}
@media (max-width: 991px) {
  .c-home7 .swiper2 .swiper-button-prev,
  .c-home7 .swiper2 .swiper-button-next {
    display: none;
  }
}
.c-home7 .swiper2 .swiper-button-prev::after,
.c-home7 .swiper2 .swiper-button-next::after {
  display: none;
  font-size: 20px;
}
.c-home7 .swiper2 .swiper-button-prev img,
.c-home7 .swiper2 .swiper-button-next img,
.c-home7 .swiper2 .swiper-button-prev svg,
.c-home7 .swiper2 .swiper-button-next svg {
  width: 12px;
  height: 12px;
}
.c-home7 .swiper2 .swiper-button-prev {
  left: -150px;
  transform: translateY(-50%) rotate(180deg);
}
.c-home7 .swiper2 .swiper-button-next {
  right: -150px;
}
.c-home7 .swiper2 .swiper-pagination {
  opacity: 1;
  bottom: 0;
}
.c-home7 .swiper2 .swiper-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.c-home7 .swiper-cards .swiper-slide {
  transform-origin: center center;
}
.public-contact {
  position: relative;
  z-index: 3;
  overflow: visible;
}
.public-contact.on .c-main {
  transform: translateY(2px);
}
.public-contact.on::before {
  opacity: 1;
}
.public-contact.c-style2 .c-main {
  padding: 0.6rem 1rem;
}
@media (max-width: 991px) {
  .public-contact.c-style2 .c-main {
    padding: 0.4rem;
  }
}
@media (max-width: 767px) {
  .public-contact.c-style2 .c-main {
    padding: 0.5rem;
  }
}
.public-contact::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/contact-bg.webp) no-repeat top center / 100% auto;
  pointer-events: none;
  opacity: 0;
  transition: all 0.8s 0.4s;
}
.public-contact .container {
  overflow: hidden;
}
.public-contact .c-main {
  text-align: center;
  padding: 0.5rem;
  background: var(--color);
  color: #fff;
  border-radius: 0.6rem 0.6rem 0 0;
  transform: translateY(100%);
  transition: all 0.8s;
}
@media (max-width: 767px) {
  .public-contact .c-main {
    border-radius: 10px 10px 0 0;
  }
}
.public-contact .c-main .c-title {
  display: inline-block;
  max-width: 550px;
  margin-bottom: 0.3rem;
  font-family: 'Poppins-Medium', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
}
.public-contact .c-main form {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  text-align: left;
}
.public-contact .c-main form .c-left {
  width: 50%;
}
@media (max-width: 767px) {
  .public-contact .c-main form .c-left {
    width: 100%;
  }
}
.public-contact .c-main form .c-left .c-title {
  margin-bottom: 0.2rem;
}
@media (max-width: 767px) {
  .public-contact .c-main form .c-left .c-title {
    margin-bottom: 0.1rem;
  }
}
.public-contact .c-main form .c-right {
  width: 50%;
}
@media (max-width: 767px) {
  .public-contact .c-main form .c-right {
    width: 100%;
  }
}
.public-contact .c-main form .c-right .c-input-box {
  display: flex;
  align-items: flex-start;
  border: 1px solid #7bb0fa;
  border-radius: 10px;
}
@media (max-width: 767px) {
  .public-contact .c-main form .c-right .c-input-box {
    margin-top: 0.4rem;
  }
}
.public-contact .c-main form .c-right .c-input-box input {
  padding: 0 0.2rem;
  width: 100%;
  height: 66px;
  line-height: 66px;
}
@media (max-width: 1580px) {
  .public-contact .c-main form .c-right .c-input-box input {
    height: 50px;
    line-height: 50;
  }
}
.public-contact .c-main form .c-right .c-input-box input::placeholder,
.public-contact .c-main form .c-right .c-input-box textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.public-contact .c-main form .c-right .c-input-box input::-webkit-input-placeholder,
.public-contact .c-main form .c-right .c-input-box textarea::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.public-contact .c-main form .c-right .c-input-box input:-moz-placeholder,
.public-contact .c-main form .c-right .c-input-box textarea:-moz-placeholder {
  color: rgba(255, 255, 255, 0.5);
  opacity: 1;
}
.public-contact .c-main form .c-right .c-input-box input::-moz-placeholder,
.public-contact .c-main form .c-right .c-input-box textarea::-moz-placeholder {
  color: rgba(255, 255, 255, 0.5);
  opacity: 1;
}
.public-contact .c-main form .c-right .c-input-box input:-ms-input-placeholder,
.public-contact .c-main form .c-right .c-input-box textarea:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.public-contact .c-main form .c-right .c-input-box input::-ms-input-placeholder,
.public-contact .c-main form .c-right .c-input-box textarea::-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.public-contact .c-main form .c-right .c-input-box button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 180px;
  height: 66px;
  border-radius: 10px;
  background: #fff;
  color: var(--color);
  flex-shrink: 0;
}
@media (max-width: 1580px) {
  .public-contact .c-main form .c-right .c-input-box button {
    width: 100px;
    height: 50px;
  }
}
.public-contact .c-main form .c-right .c-box {
  display: flex;
  align-items: flex-start;
  line-height: 20px;
  margin-top: 0.2rem;
  color: rgba(255, 255, 255, 0.5);
}
.public-contact .c-main form .c-right .c-box input {
  margin-right: 0.1rem;
  width: 20px;
  height: 20px;
  border-radius: 5px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  flex-shrink: 0;
  cursor: pointer;
}
.public-contact .c-main form .c-right .c-box input:checked {
  background: #fff url(../images/ico-checked2.svg) no-repeat center center / 14px 14px;
}
.c-product {
  padding: 20px 0 0;
  background: url(../images/product-list-bg.webp) no-repeat left top 100vh / contain;
}
.c-product.showMenu2 .c-menu2 .c-list {
  display: block;
}
.c-product.on .c-menu-box {
  position: sticky;
  position: -webkit-sticky;
  top: -260px;
  pointer-events: none;
}
@media (max-width: 991px) {
  .c-product.on .c-menu-box {
    top: -280px;
  }
}
@media (max-width: 767px) {
  .c-product.on .c-menu-box {
    top: -160px;
  }
}
.c-product.on .c-menu-box .c-menu1 {
  pointer-events: auto;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.c-product.on .c-menu-box .c-menu1 .container::before {
  display: none;
}
.c-product.on .c-menu-box .c-menu1 .c-wrap {
  bottom: 0;
  transform: translateY(0);
}
@media (max-width: 991px) {
  .c-product.on .c-menu-box .c-menu1 .c-wrap {
    padding: 10px 0;
  }
}
.c-product.on .c-menu-box .c-menu1 .c-wrap .c-box {
  display: flex;
}
.c-product.on .c-menu-box .c-menu1 .c-wrap .c-box .c-list li {
  border: 1px solid #cdddff;
}
@media (max-width: 991px) {
  .c-product.on .c-menu-box .c-menu1 .c-wrap .c-box .c-list li {
    border-color: transparent;
  }
}
@media (max-width: 991px) {
  .c-product.on .c-menu-box .c-menu1 .c-wrap .c-box {
    justify-content: space-between;
  }
  .c-product.on .c-menu-box .c-menu1 .c-wrap .c-box .c-check {
    display: inline-flex;
  }
  .c-product.on .c-menu-box .c-menu1 .c-wrap .c-box .c-list {
    position: absolute;
    top: 100%;
    left: -5vw;
    width: calc(100% + 10vw);
    margin-top: 10px;
    display: none;
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 0 0 10px 10px;
    overflow: hidden;
  }
  .c-product.on .c-menu-box .c-menu1 .c-wrap .c-box .c-list.on {
    display: block;
  }
  .c-product.on .c-menu-box .c-menu1 .c-wrap .c-box .c-list li {
    margin: 0;
    border-radius: 0;
    justify-content: flex-start;
    height: 60px;
    padding: 0 5vw;
    width: auto;
    border-bottom: 1px solid #ddd;
  }
  .c-product.on .c-menu-box .c-menu1 .c-wrap .c-box .c-list li:last-child {
    border: 0;
  }
}
.c-product.on .c-menu-box .c-menu1 .c-wrap .c-box .c-filter {
  display: flex;
}
.c-product.on .c-menu-box .c-menu2 {
  border-top: 1px solid #ebeef5;
  visibility: hidden !important;
  pointer-events: none;
}
@media (max-width: 991px) {
  .c-product.on .c-menu-box .c-menu2 .c-list > li {
    justify-content: flex-start;
  }
}
.c-product.on.showMenu2 .c-menu-box {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 0 0 10px 10px;
  overflow: hidden;
}
.c-product.on.showMenu2 .c-menu1 {
  box-shadow: 0 0 0 rgba(0, 0, 0, 0.1);
}
.c-product.on.showMenu2 .c-menu2 {
  visibility: visible !important;
  pointer-events: auto;
}
.c-product.on.showMenu2 .c-menu2 .c-filter {
  display: none;
}
.c-product > .container .c-main {
  position: relative;
  z-index: 1;
  padding-top: 0.6rem;
  border-top: 1px solid #ddd;
}
@media (max-width: 767px) {
  .c-product > .container .c-main {
    padding-top: 0.8rem;
  }
}
.c-product .c-menu-box {
  position: relative;
  z-index: 10;
  transition: all 0.4s;
}
.c-product .container {
  max-width: 1400px;
}
.c-product .c-menu1 {
  position: relative;
  z-index: 2;
  background: #fff;
}
.c-product .c-menu1 .container {
  position: relative;
  z-index: 0;
  height: 340px;
}
@media (max-width: 767px) {
  .c-product .c-menu1 .container {
    height: 220px;
  }
}
.c-product .c-menu1 .container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: url(../images/product-bg.webp) no-repeat center / cover;
  border-radius: 0.2rem;
}
@media (max-width: 767px) {
  .c-product .c-menu1 .container::before {
    display: none;
  }
}
.c-product .c-menu1 .c-wrap {
  position: absolute;
  bottom: 50%;
  width: 100%;
  z-index: 1;
  transform: translateY(50%);
  text-align: center;
  padding: 20px;
}
@media (max-width: 767px) {
  .c-product .c-menu1 .c-wrap {
    line-height: 1.1;
    padding: 0;
    bottom: 0;
    transform: translateY(0);
  }
}
.c-product .c-menu1 .c-wrap .c-title {
  color: #fff;
  font-family: 'Poppins-Bold', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
  margin-bottom: 0.3rem;
}
@media (max-width: 767px) {
  .c-product .c-menu1 .c-wrap .c-title {
    color: #111;
  }
}
.c-product .c-menu1 .c-wrap .c-box {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.c-product .c-menu1 .c-wrap .c-box .c-check {
  display: none;
  height: 40px;
  align-items: center;
  cursor: pointer;
  font-family: 'Poppins-SemiBold', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
}
.c-product .c-menu1 .c-wrap .c-box .c-check::after {
  margin-left: 10px;
  content: "";
  display: block;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #111;
}
.c-product .c-menu1 .c-wrap .c-box .c-filter {
  position: absolute;
  top: 50%;
  right: 0;
  display: none;
  align-items: center;
  cursor: pointer;
  transform: translateY(-50%);
}
.c-product .c-menu1 .c-wrap .c-box .c-filter img {
  width: 14px;
  height: 14px;
  margin-left: 10px;
}
.c-product .c-menu1 .c-wrap .c-list {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  font-family: 'Poppins-Medium', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
}
@media (max-width: 767px) {
  .c-product .c-menu1 .c-wrap .c-list {
    justify-content: space-between;
  }
}
@media (max-width: 767px) and (max-width: 767px) {
  .c-product .c-menu1 .c-wrap .c-list {
    margin-bottom: -0.2rem;
  }
}
.c-product .c-menu1 .c-wrap .c-list li {
  margin-right: 0.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 2rem;
  padding: 0 0.15rem;
  height: 42px;
  border-radius: 21px;
  background: #fff;
  transition: all 0.4s;
  display: none;
}
.c-product .c-menu1 .c-wrap .c-list li:nth-child(1),
.c-product .c-menu1 .c-wrap .c-list li:nth-child(2),
.c-product .c-menu1 .c-wrap .c-list li:nth-child(3),
.c-product .c-menu1 .c-wrap .c-list li:nth-child(4) {
  display: flex;
}
@media (max-width: 767px) {
  .c-product .c-menu1 .c-wrap .c-list li {
    margin: 0 0 15px;
    width: calc(50% - 5px);
    border: 1px solid #cdddff;
  }
}
.c-product .c-menu1 .c-wrap .c-list li:nth-child(4) {
  margin: 0;
}
.c-product .c-menu1 .c-wrap .c-list li.on,
.c-product .c-menu1 .c-wrap .c-list li:hover {
  color: #fff;
  background: var(--color);
  border-color: var(--color) !important;
}
.c-product .c-menu2 {
  padding: 20px 0;
  background: #fff;
}
@media (max-width: 767px) {
  .c-product .c-menu2 {
    padding: 15px 0;
  }
}
.c-product .c-menu2 .c-filter {
  display: none;
  align-items: center;
  cursor: pointer;
  width: 64px;
  margin-left: calc(100% - 65px);
}
@media (max-width: 767px) {
  .c-product .c-menu2 .c-filter {
    display: flex;
  }
}
.c-product .c-menu2 .c-filter img {
  width: 14px;
  height: 14px;
  margin-left: 10px;
}
@media (max-width: 767px) {
  .c-product .c-menu2 .c-list {
    display: none;
  }
}
.c-product .c-menu2 .c-list > li {
  display: flex;
  align-items: flex-start;
  padding: 5px 0;
}
@media (max-width: 767px) {
  .c-product .c-menu2 .c-list > li {
    flex-wrap: wrap;
    padding: 10px 0;
  }
}
.c-product .c-menu2 .c-list > li .c-title {
  flex-shrink: 0;
  font-family: 'Poppins-SemiBold', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
  width: 170px;
  padding: 0 0.3rem 0 0;
}
@media (max-width: 1580px) {
  .c-product .c-menu2 .c-list > li .c-title {
    width: 150px;
  }
}
@media (max-width: 991px) {
  .c-product .c-menu2 .c-list > li .c-title {
    padding-left: 0;
  }
}
@media (max-width: 767px) {
  .c-product .c-menu2 .c-list > li .c-title {
    padding: 0 0 0.2rem;
    width: 100%;
  }
}
.c-product .c-menu2 .c-list > li .c-list2 {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  margin: 0 0 -0.2rem;
}
.c-product .c-menu2 .c-list > li .c-list2 li {
  margin: 0 0.3rem 0.2rem 0;
  min-width: 110px;
}
@media (max-width: 767px) {
  .c-product .c-menu2 .c-list > li .c-list2 li {
    margin: 0 10px 10px 0;
    min-width: 100px;
  }
}
.c-product .c-menu2 .c-list > li .c-list2 li label {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.c-product .c-menu2 .c-list > li .c-list2 li label input {
  margin-right: 0.1rem;
  width: 20px;
  height: 20px;
  border-radius: 4px;
  border: solid 1px #cfcfcf;
  pointer-events: none;
}
.c-product .c-menu2 .c-list > li .c-list2 li label input:checked {
  border-color: var(--color);
  background: var(--color) url(../images/ico-checked.svg) no-repeat center center / 14px 14px;
}
.c-product .c-menu2 .c-num {
  text-align: right;
}
.public-list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -0.13rem -0.26rem;
}
@media (max-width: 767px) {
  .public-list {
    margin: 0 -8px -16px;
  }
}
.public-list li {
  display: flex;
  width: 25%;
  padding: 0 0.13rem 0.26rem;
}
@media (max-width: 991px) {
  .public-list li {
    width: 33.33%;
  }
}
@media (max-width: 767px) {
  .public-list li {
    padding: 0 8px 16px;
    width: 50%;
  }
}
.public-list li .c-wrap {
  position: relative;
  width: 100%;
  display: block;
  border-radius: 0.2rem;
  padding: 0.25rem;
  text-align: center;
  transition: all 0.4s;
}
@media (max-width: 767px) {
  .public-list li .c-wrap {
    border-radius: 10px;
    padding: 15px 15px 30px;
    background: #f0f8ff;
  }
}
.public-list li .c-wrap .c-tag {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 14px;
  line-height: 24px;
  padding: 0 12px;
  border-radius: 12px 0 12px 0;
  background: #ff5a00;
  color: #fff;
}
.public-list li .c-wrap .c-tag.new {
  background: var(--color);
}
@media (max-width: 767px) {
  .public-list li .c-wrap .c-tag {
    border-radius: 10px 0 10px 0;
    font-size: 12px;
  }
}
.public-list li .c-wrap .public-img {
  background-position-y: 0px;
  background-size: 100%;
}
@media (max-width: 991px) {
  .public-list li .c-wrap .public-img {
    background-image: none !important;
  }
}
.public-list li .c-wrap .public-img img {
  object-fit: contain;
  display: none;
}
@media (max-width: 991px) {
  .public-list li .c-wrap .public-img img {
    display: block;
  }
}
.public-list li .c-wrap .public-img video {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media (max-width: 991px) {
  .public-list li .c-wrap .public-img video {
    display: none;
  }
}
.public-list li .c-wrap .c-title {
  margin-top: 5px;
  font-family: 'Poppins-Medium', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
}
@media (max-width: 767px) {
  .public-list li .c-wrap .c-title {
    font-size: 16px;
  }
}
.public-list li .c-wrap .c-text {
  color: #999;
}
@media (max-width: 767px) {
  .public-list li .c-wrap .c-text {
    margin-top: 5px;
    font-size: 12px;
  }
}
.public-list li .c-wrap .c-more {
  margin-top: 0.15rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  line-height: 1;
}
@media (max-width: 767px) {
  .public-list li .c-wrap .c-more {
    margin-top: 20px;
    font-size: 14px;
    color: #666;
  }
}
.public-list li .c-wrap .c-more span {
  margin-right: 0.15rem;
  text-decoration: underline;
}
@media (max-width: 767px) {
  .public-list li .c-wrap .c-more span {
    margin-right: 0;
  }
}
.public-list li .c-wrap .c-more img,
.public-list li .c-wrap .c-more svg {
  width: 10px;
  height: 10px;
  color: var(--color);
}
@media (max-width: 767px) {
  .public-list li .c-wrap .c-more img,
  .public-list li .c-wrap .c-more svg {
    display: none;
    width: 8px;
    height: 8px;
  }
}
.public-list li .c-wrap:hover {
  background: #f2f9ff;
}
.public-list li .c-wrap:hover .c-more img,
.public-list li .c-wrap:hover .c-more svg {
  animation: arrow 0.8s;
}
.public-list2 {
  display: flex;
  margin: 0 -0.15rem -0.3rem;
}
.public-list2 li {
  display: flex;
  padding: 0 0.15rem 0.3rem;
  width: 50%;
}
.public-list2 li .c-wrap {
  display: flex;
  align-items: center;
  background-color: #f2f8fe;
  width: 100%;
  padding: 0.4rem 0.3rem;
  border-radius: 0.14rem;
}
@media (max-width: 991px) {
  .public-list2 li .c-wrap {
    flex-wrap: wrap;
    align-content: flex-start;
  }
}
@media (max-width: 767px) {
  .public-list2 li .c-wrap {
    padding: 0.4rem;
  }
}
@media (max-width: 767px) {
  .public-list2 li .c-wrap {
    border-radius: 10px;
  }
}
.public-list2 li .c-wrap .public-img {
  width: 43%;
}
@media (max-width: 991px) {
  .public-list2 li .c-wrap .public-img {
    width: 100%;
  }
}
.public-list2 li .c-wrap .public-img::before {
  padding-top: calc(530/720*100%);
}
.public-list2 li .c-wrap .c-box {
  padding-left: 0.4rem;
  width: 57%;
}
@media (max-width: 991px) {
  .public-list2 li .c-wrap .c-box {
    padding: 0 0.4rem;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .public-list2 li .c-wrap .c-box {
    padding: 0;
  }
}
.public-list2 li .c-wrap .c-box .c-title {
  font-family: 'Poppins-Medium', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
}
@media (max-width: 767px) {
  .public-list2 li .c-wrap .c-box .c-title {
    font-size: 16px;
  }
}
.public-list2 li .c-wrap .c-box .c-text {
  margin-top: 0.1rem;
  color: #999;
}
@media (max-width: 767px) {
  .public-list2 li .c-wrap .c-box .c-text {
    font-size: 12px;
    line-height: 1.2;
  }
}
.public-list3 {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
}
.public-list3 li {
  padding: 0 0.3rem 0.3rem 0;
  width: 33.33%;
}
.public-list3 li:nth-last-child(1),
.public-list3 li:nth-last-child(2),
.public-list3 li:nth-last-child(3) {
  padding-bottom: 0;
}
@media (max-width: 991px) {
  .public-list3 li {
    width: 50%;
  }
  .public-list3 li:nth-last-child(3) {
    padding-bottom: 0.3rem;
  }
}
@media (max-width: 767px) {
  .public-list3 li {
    width: 100%;
  }
  .public-list3 li:nth-last-child(2) {
    padding-bottom: 0.3rem;
  }
}
.public-list3 li .c-wrap {
  display: flex;
  align-items: center;
  color: #333;
  transition: all 0.4s;
}
.public-list3 li .c-wrap .public-img {
  flex-shrink: 0;
  margin-right: 0.2rem;
  width: 96px;
  border-radius: 5px;
}
.public-list3 li .c-wrap .public-img::before {
  padding-top: calc(60/96*100%);
}
.public-list3 li .c-wrap .c-title {
  height: 3em;
  line-height: 1.5;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  font-family: 'Poppins-Medium', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
}
.public-list3 li .c-wrap:hover {
  color: var(--color);
}
.public-list3 li .c-wrap:hover .public-img img {
  transform: scale(1.1);
}
.c-product2 {
  position: relative;
  z-index: 1;
  padding-top: 1rem;
}
@media (max-width: 767px) {
  .c-product2 {
    padding-top: 1.6rem;
  }
}
.c-product2 .container {
  max-width: 1400px;
}
.c-product2 .c-wrap {
  position: relative;
  border-radius: 0.2rem;
  overflow: hidden;
  border-radius: 10px;
}
.c-product2 .c-wrap .public-img::before {
  padding-top: calc(600/1400*100%);
}
@media (max-width: 767px) {
  .c-product2 .c-wrap .public-img::before {
    padding-top: 120vw;
  }
}
.c-product2 .c-wrap .public-img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 8;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
}
.c-product2 .c-wrap .public-img video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.c-product2 .c-wrap .c-box {
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 10;
  width: 100%;
  transform: translateY(-50%);
  color: #fff;
  text-align: center;
  padding: 20px;
}
.c-product2 .c-wrap .c-box .c-title {
  font-family: 'Poppins-Medium', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
}
.c-product2 .c-wrap .c-box .c-text {
  margin: 0.1rem auto 0;
  max-width: 650px;
}
@media (max-width: 767px) {
  .c-product2 .c-wrap .c-box .c-text {
    margin-top: 0.2rem;
    line-height: 1.4;
  }
}
.c-product2 .c-play-box {
  position: relative;
  z-index: 5;
  text-align: center;
  margin-top: -50px;
}
.c-product2 .c-play-box .c-box {
  width: 188px;
  padding: 20px 0 0;
  display: inline-block;
  cursor: pointer;
  background: url(../images/ico-play-bg.svg) no-repeat left top / 100% auto;
}
.c-product2 .c-play-box .c-box .c-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.15rem;
  width: 50px;
  height: 50px;
  background: var(--color);
  border-radius: 50%;
}
.c-product2 .c-play-box .c-box .c-ico img,
.c-product2 .c-play-box .c-box .c-ico svg {
  width: 14px;
  height: 14px;
}
.c-product3 {
  position: relative;
  z-index: 1;
  padding: 1.7rem 0 1.5rem;
}
@media (max-width: 767px) {
  .c-product3 {
    padding: 1.2rem 0;
  }
}
.c-product3 .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
}
@media (max-width: 767px) {
  .c-product3 .container {
    flex-wrap: wrap;
    flex-direction: column-reverse;
  }
}
.c-product3 .container .c-swiper1 {
  margin: 0;
  width: calc(630/1400*100%);
  height: 520px;
}
@media (max-width: 1580px) {
  .c-product3 .container .c-swiper1 {
    height: 460px;
  }
}
@media (max-width: 767px) {
  .c-product3 .container .c-swiper1 {
    width: 100%;
    height: auto;
    padding-bottom: 20px;
  }
}
.c-product3 .container .c-swiper1 .swiper-slide {
  height: auto;
  padding: 0.1rem 0 0 0.6rem;
  opacity: 0.5;
  transition: all 0.4s;
  cursor: pointer;
}
@media (max-width: 767px) {
  .c-product3 .container .c-swiper1 .swiper-slide {
    padding: 0;
    opacity: 1;
  }
}
.c-product3 .container .c-swiper1 .swiper-slide-thumb-active {
  opacity: 1;
}
.c-product3 .container .c-swiper1 .c-title {
  margin-bottom: 0.1rem;
  font-family: 'Poppins-Medium', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
  line-height: 1;
}
@media (max-width: 1260px) {
  .c-product3 .container .c-swiper1 .c-title {
    font-size: 28px;
  }
}
.c-product3 .container .c-swiper1 .c-pagination {
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 100%;
  background: #e7e7e7;
}
@media (max-width: 767px) {
  .c-product3 .container .c-swiper1 .c-pagination {
    width: 100px;
    height: 2px;
    top: auto;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
  }
}
.c-product3 .container .c-swiper1 .c-pagination .c-line {
  height: 0;
  background: var(--color);
  transition: all 0.4s;
}
@media (max-width: 767px) {
  .c-product3 .container .c-swiper1 .c-pagination .c-line {
    height: 100%;
    width: 0;
  }
}
.c-product3 .container .c-swiper2 {
  margin: 0;
  width: calc(700/1400*100%);
}
@media (max-width: 767px) {
  .c-product3 .container .c-swiper2 {
    margin-bottom: 20px;
    width: 100%;
  }
}
.c-product3 .container .c-swiper2 .public-img {
  border-radius: 0.14rem;
}
@media (max-width: 767px) {
  .c-product3 .container .c-swiper2 .public-img {
    border-radius: 10px;
  }
}
.c-product3 .container .c-swiper2 .public-img::before {
  padding-top: calc(600/700*100%);
}
.c-product4 {
  position: relative;
  z-index: 1;
}
.c-product4 .container {
  max-width: 1400px;
}
.c-product4 .public-img {
  border-radius: 0.14rem;
}
@media (max-width: 767px) {
  .c-product4 .public-img {
    border-radius: 10px;
  }
}
.c-product4 .public-img::before {
  padding-top: calc(656/1400*100%);
}
@media (max-width: 767px) {
  .c-product4 .public-img::before {
    padding-top: calc(656/700*100%);
  }
}
.c-product5 {
  position: relative;
  z-index: 1;
  padding: 1.3rem 0;
}
@media (max-width: 767px) {
  .c-product5 {
    padding: 1.6rem 0;
    overflow: hidden;
  }
}
.c-product5 .container {
  max-width: 1400px;
}
.c-product5 .swiper {
  padding-bottom: 40px;
}
@media (max-width: 767px) {
  .c-product5 .swiper {
    overflow: visible;
  }
}
.c-product5 .swiper-pagination {
  bottom: 0;
}
.c-product5 .c-list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -0.15rem -0.3rem;
  width: auto;
}
@media (max-width: 767px) {
  .c-product5 .c-list {
    flex-wrap: nowrap;
    width: 100%;
    margin: 0;
  }
}
.c-product5 .c-list li {
  display: flex;
  padding: 0 0.15rem 0.3rem;
  width: 33.333%;
}
@media (max-width: 767px) {
  .c-product5 .c-list li {
    padding: 0;
    width: 100%;
  }
}
.c-product5 .c-list li .c-wrap {
  display: block;
  width: 100%;
  text-align: center;
}
.c-product5 .c-list li .c-wrap .public-img {
  border-radius: 0.14rem;
}
@media (max-width: 767px) {
  .c-product5 .c-list li .c-wrap .public-img {
    border-radius: 10px;
  }
}
.c-product5 .c-list li .c-wrap .public-img::before {
  padding-top: calc(328/446*100%);
}
@media (max-width: 767px) {
  .c-product5 .c-list li .c-wrap .public-img::before {
    padding-top: calc(656/700*100%);
  }
}
.c-product5 .c-list li .c-wrap .c-title {
  margin: 0.25rem 0 0.05rem;
  font-family: 'Poppins-Medium', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
  transition: all 0.4s;
}
@media (max-width: 767px) {
  .c-product5 .c-list li .c-wrap .c-title {
    font-size: 24px;
  }
}
.c-product5 .c-list li .c-wrap .c-text {
  color: #999;
}
@media (max-width: 767px) {
  .c-product5 .c-list li .c-wrap .c-text {
    font-size: 16px;
    line-height: 1.2;
  }
}
.c-product5 .c-list li .c-wrap:hover .c-title {
  color: var(--color);
}
.c-product5 .c-list li .c-wrap:hover .public-img img {
  transform: scale(1.1);
}
.c-product6 {
  position: relative;
  z-index: 1;
  padding-top: 1.2rem;
  padding-bottom: 1.5rem;
  background: #fff;
}
@media (max-width: 767px) {
  .c-product6 {
    padding-bottom: 1.6rem;
  }
}
.c-product6.about {
  margin-top: 100vh;
  background: transparent;
}
.c-product6.about .c-bg {
  display: none;
}
.c-product6 .c-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  overflow: hidden;
  border-radius: 0.8rem 0.8rem 0 0;
}
.c-product6 .c-bg img {
  width: 100%;
  height: 100%;
}
.c-product6 .c-main {
  position: relative;
  z-index: 5;
}
.c-product6 .c-main .container {
  max-width: 1200px;
}
.c-product6 .c-main .container > .public-title {
  color: #fff;
}
.c-product6 .c-main form {
  padding: 0.7rem 0.6rem;
  border-radius: 0.14rem;
  background: #fff;
  box-shadow: 0px 10px 59px 0px rgba(17, 17, 17, 0.05);
}
@media (max-width: 767px) {
  .c-product6 .c-main form {
    padding: 30px 20px;
  }
}
@media (max-width: 767px) {
  .c-product6 .c-main form .public-title .c-title br {
    display: none;
  }
}
.c-product6 .c-main form .public-title .c-text {
  margin: 0.1rem auto 0;
  max-width: 650px;
}
@media (max-width: 767px) {
  .c-product6 .c-main form .public-title .c-text {
    font-size: 16px;
    line-height: 1.4;
  }
}
.c-product6 .c-main form .c-list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -0.15rem -0.2rem;
}
.c-product6 .c-main form .c-list li {
  position: relative;
  width: 50%;
  padding: 0 0.15rem 0.2rem;
}
@media (max-width: 767px) {
  .c-product6 .c-main form .c-list li {
    width: 100% !important;
  }
}
.c-product6 .c-main form .c-list li:nth-child(7),
.c-product6 .c-main form .c-list li:nth-child(8),
.c-product6 .c-main form .c-list li:nth-child(9) {
  width: 100%;
}
.c-product6 .c-main form .c-list li:last-child {
  padding-top: 0.4rem;
  text-align: center;
}
.c-product6 .c-main form .c-list li:nth-child(4) .layui-form-select {
  position: absolute;
  left: 0.15rem;
  bottom: 0.2rem;
  width: 100px;
  background: transparent;
}
.c-product6 .c-main form .c-list li:nth-child(4) .layui-form-select input,
.c-product6 .c-main form .c-list li:nth-child(4) .layui-form-select input:focus {
  border: 0;
  background: transparent;
}
.c-product6 .c-main form .c-list li:nth-child(4) > .layui-input {
  padding-left: 120px;
}
.c-product6 .c-main form .c-list li .c-title {
  margin-bottom: 0.15rem;
}
.c-product6 .c-main form .c-list li .c-title span {
  color: #f93f2c;
}
.c-product6 .c-main form .c-list li .layui-input,
.c-product6 .c-main form .c-list li .layui-select,
.c-product6 .c-main form .c-list li .layui-textarea {
  height: 55px;
}
@media (max-width: 767px) {
  .c-product6 .c-main form .c-list li .layui-input,
  .c-product6 .c-main form .c-list li .layui-select,
  .c-product6 .c-main form .c-list li .layui-textarea {
    font-size: 12px;
  }
}
.c-product6 .c-main form .c-list li .layui-input,
.c-product6 .c-main form .c-list li .layui-textarea {
  background: #f7f7f7;
  border-radius: 6px;
}
.c-product6 .c-main form .c-list li .layui-form-select dl {
  top: 55px;
}
@media (max-width: 767px) {
  .c-product6 .c-main form .c-list li .layui-form-select dl {
    font-size: 12px;
  }
}
.c-product6 .c-main form .c-list li .public-btn {
  border: 1px solid var(--color);
}
.c-product7 {
  position: relative;
  z-index: 1;
  padding: 0 0 1.4rem;
}
@media (max-width: 767px) {
  .c-product7 {
    padding: 0 0 1.2rem;
  }
}
.c-product7 .container {
  max-width: 1086px;
}
.c-product7 .container .public-content {
  margin-bottom: 0.25rem;
  text-align: justify;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .c-product7 .container .public-content {
    margin-bottom: 0.6rem;
    line-height: 1.2;
  }
}
.c-product7 .container .c-list {
  position: relative;
  height: 0.8rem;
  overflow: hidden;
}
.c-product7 .container .c-list::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
  background: -webkit-linear-gradient(bottom, #ffffff 0%, rgba(255, 255, 255, 0.6) 100%);
  background: linear-gradient(to top, #ffffff 0%, rgba(255, 255, 255, 0.6) 100%);
}
.c-product7 .container .c-list li {
  padding-bottom: 0.3rem;
}
@media (max-width: 767px) {
  .c-product7 .container .c-list li {
    padding-bottom: 0.6rem;
  }
}
.c-product7 .container .c-list li:last-child {
  padding-bottom: 0;
}
.c-product7 .container .c-list li .c-title {
  font-family: 'Poppins-Bold', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
}
@media (max-width: 767px) {
  .c-product7 .container .c-list li .c-title {
    margin-bottom: 0.1rem;
  }
}
.c-product7 .container .c-list li .c-text {
  color: #666;
}
.c-product7 .container .c-btn-box {
  margin-top: 0.5rem;
  text-align: center;
}
.c-product7 .container .c-btn-box .public-btn {
  border: 1px solid var(--color);
}
.c-product7.on .container .c-list {
  height: auto;
}
.c-product7.on .container .c-list::before {
  display: none;
}
.c-product7.on .c-btn-box {
  display: none;
}
.c-product-info1 {
  padding: 1.2rem 0 1.4rem;
  background: #f1f3fb;
}
@media (max-width: 767px) {
  .c-product-info1 {
    padding: 1.6rem 0;
  }
}
.c-product-info1 .container {
  max-width: 1400px;
}
@media (max-width: 767px) {
  .c-product-info1 .public-title {
    text-align: left;
  }
}
.c-product-info1 .public-title .c-text {
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
}
.c-product-info1 .c-list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -0.1rem -0.2rem;
}
@media (max-width: 767px) {
  .c-product-info1 .c-list {
    display: block;
    overflow: hidden;
  }
}
.c-product-info1 .c-list li {
  padding: 0 0.1rem 0.2rem;
  width: calc(770/1420 * 100%);
}
@media (max-width: 767px) {
  .c-product-info1 .c-list li {
    float: left;
    width: 100%;
  }
}
.c-product-info1 .c-list li:nth-child(4n),
.c-product-info1 .c-list li:nth-child(4n-2) {
  width: calc(580/1420 * 100%);
}
.c-product-info1 .c-list li:nth-child(4n) .public-img::before,
.c-product-info1 .c-list li:nth-child(4n-2) .public-img::before {
  padding-top: calc(320/560 * 100%);
}
@media (max-width: 767px) {
  .c-product-info1 .c-list li:nth-child(4n) .public-img::before,
  .c-product-info1 .c-list li:nth-child(4n-2) .public-img::before {
    padding-top: calc(380/560 * 100%);
  }
}
.c-product-info1 .c-list li:nth-child(4n-1) .public-img::before,
.c-product-info1 .c-list li:nth-child(4n-3) .public-img::before {
  padding-top: calc(320/750 * 100%);
}
@media (max-width: 767px) {
  .c-product-info1 .c-list li:nth-child(4n) {
    width: 50%;
  }
  .c-product-info1 .c-list li:nth-child(4n) .public-img::before {
    padding-top: 100%;
  }
}
.c-product-info1 .c-list li:nth-child(4n-1) .c-box {
  top: auto;
  bottom: 0;
  transform: translateY(0);
  text-align: left;
}
@media (max-width: 767px) {
  .c-product-info1 .c-list li:nth-child(4n-1) {
    float: right;
    width: 50%;
  }
  .c-product-info1 .c-list li:nth-child(4n-1) .public-img::before {
    padding-top: calc(200% + 0.2rem);
  }
}
@media (max-width: 767px) {
  .c-product-info1 .c-list li:nth-child(4n-2) {
    width: 50%;
  }
  .c-product-info1 .c-list li:nth-child(4n-2) .public-img::before {
    padding-top: 100%;
  }
}
.c-product-info1 .c-list li:nth-child(4n-2) .c-box {
  top: 0;
  transform: translateY(0);
  text-align: left;
}
@media (max-width: 767px) {
  .c-product-info1 .c-list li:nth-child(4n-3) .public-img::before {
    padding-top: 48%;
  }
}
.c-product-info1 .c-list li .c-wrap {
  position: relative;
  border-radius: 0.14rem;
  overflow: hidden;
}
@media (max-width: 767px) {
  .c-product-info1 .c-list li .c-wrap {
    border-radius: 10px;
  }
}
.c-product-info1 .c-list li .c-box {
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 5;
  padding: 0.4rem;
  width: 100%;
  transform: translateY(-50%);
  text-align: center;
}
@media (max-width: 767px) {
  .c-product-info1 .c-list li .c-box {
    padding: 0.3rem;
  }
}
.c-product-info1 .c-list li .c-box .c-title {
  font-family: 'Poppins-Bold', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
}
@media (max-width: 767px) {
  .c-product-info1 .c-list li .c-box .c-title {
    font-size: 16px;
    line-height: 1.2;
  }
}
.c-product-info1 .c-list li .c-box .c-title.color-white {
  color: #fff;
}
.c-product-info1 .c-list li .c-box .c-tag {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: 0 0 -0.1rem;
}
@media (max-width: 767px) {
  .c-product-info1 .c-list li .c-box .c-tag {
    margin: 0.1rem 0;
  }
}
.c-product-info1 .c-list li .c-box .c-tag p {
  margin: 0 0.1rem 0.1rem 0;
  height: 26px;
  line-height: 26px;
  border-radius: 13px;
  padding: 0 15px;
  background: #554ccd;
  color: #fff;
}
@media (max-width: 767px) {
  .c-product-info1 .c-list li .c-box .c-tag p {
    font-size: 12px;
    height: 20px;
    line-height: 20px;
    padding: 0 10px;
    border-radius: 10px;
  }
}
.c-product-info1 .c-list li .c-box .c-tag p:last-child {
  background: #f2661d;
}
.c-product-info2 {
  background: #f1f3fb;
  padding: 0 0 1.4rem;
}
@media (max-width: 767px) {
  .c-product-info2 {
    padding: 0 0 1.6rem;
  }
}
.c-product-info2 .container {
  max-width: 1400px;
}
@media (max-width: 767px) {
  .c-product-info2 .public-title {
    text-align: left;
  }
}
.c-product-info2 .public-title .c-text {
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
}
.c-product-info2 .public-img {
  border-radius: 0.14rem;
}
@media (max-width: 767px) {
  .c-product-info2 .public-img {
    border-radius: 10px;
  }
}
.c-product-info2 .public-img::before {
  padding-top: calc(700/1400 * 100%);
}
@media (max-width: 767px) {
  .c-product-info2 .public-img::before {
    padding-top: calc(1000/660 * 100%);
  }
}
.c-product-info3 {
  height: 250vh;
}
@media (max-width: 991px) {
  .c-product-info3 {
    height: auto;
    padding: 0.6rem 0;
  }
}
@media (max-width: 767px) {
  .c-product-info3 {
    padding: 1.6rem 0 1rem;
  }
}
.c-product-info3 .container {
  max-width: 1400px;
}
.c-product-info3 .c-main {
  position: sticky;
  position: -webkit-sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
@media (max-width: 991px) {
  .c-product-info3 .c-main {
    position: static;
    height: auto;
  }
}
.c-product-info3 .c-main .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .c-product-info3 .c-main .container {
    flex-wrap: wrap;
    flex-direction: column-reverse;
  }
}
.c-product-info3 .c-main .container .public-img {
  opacity: 0.13;
  width: 47%;
  transform: translateX(50%);
}
@media (max-width: 991px) {
  .c-product-info3 .c-main .container .public-img {
    opacity: 1;
    transform: translateX(0);
  }
}
@media (max-width: 767px) {
  .c-product-info3 .c-main .container .public-img {
    width: 100%;
  }
}
.c-product-info3 .c-main .container .public-img::before {
  padding-top: calc(830/660*100%);
}
.c-product-info3 .c-main .container .public-img img {
  object-fit: contain;
  transform: scale(0.8);
  transition: all 0s;
}
.c-product-info3 .c-main .container .c-box {
  position: relative;
  z-index: 10;
  width: 37%;
}
@media (max-width: 1260px) {
  .c-product-info3 .c-main .container .c-box {
    width: 40%;
  }
}
@media (max-width: 767px) {
  .c-product-info3 .c-main .container .c-box {
    margin-bottom: -0.4rem;
    width: 100%;
  }
}
.c-product-info3 .c-main .container .c-box .c-title1,
.c-product-info3 .c-main .container .c-box .c-title2 {
  font-family: 'Poppins-Medium', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
  line-height: 1;
}
.c-product-info3 .c-main .container .c-box .c-title1 {
  transform: translate(-59%, 100%);
}
@media (max-width: 991px) {
  .c-product-info3 .c-main .container .c-box .c-title1 {
    transform: translate(0, 0);
  }
}
.c-product-info3 .c-main .container .c-box .c-title2 {
  transform: translate(-77%, 100%);
}
@media (max-width: 991px) {
  .c-product-info3 .c-main .container .c-box .c-title2 {
    transform: translate(0, 0);
  }
}
.c-product-info3 .c-main .container .c-box .c-text {
  opacity: 0;
  margin-top: 0.2rem;
  color: #666;
}
@media (max-width: 991px) {
  .c-product-info3 .c-main .container .c-box .c-text {
    opacity: 1;
  }
}
.c-product-info4 {
  position: relative;
  height: 150vh;
}
@media (max-width: 991px) {
  .c-product-info4 {
    height: auto;
  }
}
@media (max-width: 767px) {
  .c-product-info4 {
    padding: 1.6rem 0 0;
    background: #f3f4fb;
  }
}
.c-product-info4 .c-main {
  position: sticky;
  position: -webkit-sticky;
  top: 0;
  transform: scale(0.5);
}
@media (max-width: 991px) {
  .c-product-info4 .c-main {
    position: static;
    transform: scale(1);
  }
}
.c-product-info4 .c-img {
  height: 100vh;
}
@media (max-width: 991px) {
  .c-product-info4 .c-img {
    height: 100vw;
  }
}
@media (max-width: 767px) {
  .c-product-info4 .c-img {
    height: 133vw;
  }
}
.c-product-info4 .c-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.c-product-info4 .public-title {
  position: absolute;
  top: 1.2rem;
  left: 0;
  width: 100%;
  opacity: 0;
}
@media (max-width: 991px) {
  .c-product-info4 .public-title {
    opacity: 1;
  }
}
@media (max-width: 767px) {
  .c-product-info4 .public-title {
    position: static;
    color: #111;
    text-align: left;
  }
}
.c-product-info4 .public-title .c-text {
  max-width: 950px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 767px) {
  .c-product-info4 .public-title .c-text {
    position: static;
    color: #666;
  }
}
.c-product-info5 {
  padding: 1.3rem 0 1.7rem;
}
@media (max-width: 767px) {
  .c-product-info5 {
    padding: 1.6rem 0;
  }
}
.c-product-info5.c-dt {
  height: 300vh;
}
@media (max-width: 991px) {
  .c-product-info5.c-dt {
    padding: 0;
  }
}
@media (max-width: 767px) {
  .c-product-info5.c-dt {
    padding: 1.6rem 0;
    height: auto;
  }
}
.c-product-info5.c-dt .container {
  position: sticky;
  position: -webkit-sticky;
  top: 0;
  display: flex;
  align-items: center;
  height: 100vh;
}
@media (max-width: 767px) {
  .c-product-info5.c-dt .container {
    height: auto;
  }
}
.c-product-info5.c-dt .container > div {
  width: 100%;
}
.c-product-info5.c-dt .container .public-title {
  margin-bottom: 0.3rem;
}
@media (max-width: 767px) {
  .c-product-info5.c-dt .container .public-title {
    margin-bottom: 0.4rem;
  }
}
.c-product-info5.c-dt .swiper {
  padding-bottom: 0;
  width: 100%;
}
.c-product-info5 + .c-product-info5 {
  padding-top: 0;
}
.c-product-info5 .container {
  max-width: 1400px;
}
.c-product-info5 .public-title {
  text-align: left;
}
.c-product-info5 .public-title .c-text {
  max-width: 850px;
}
.c-product-info5 .public-img {
  border-radius: 14px;
}
@media (max-width: 767px) {
  .c-product-info5 .public-img {
    border-radius: 10px;
  }
}
.c-product-info5 .public-img::before {
  padding-top: calc(650/1400 * 100%);
}
@media (max-width: 767px) {
  .c-product-info5 .public-img::before {
    padding-top: calc(1000/660 * 100%);
  }
}
.c-product-info5 .public-img:nth-child(2),
.c-product-info5 .public-img:nth-child(3) {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
}
.c-product-info5 .swiper {
  padding-bottom: 40px;
}
@media (max-width: 767px) {
  .c-product-info5 .swiper {
    padding: 0;
  }
}
.c-product-info5 .swiper-pagination {
  bottom: 0;
}
.c-product-info6 {
  position: relative;
  overflow: hidden;
  padding: 0 0 1.2rem;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}
@media (max-width: 767px) {
  .c-product-info6 {
    padding: 0 0 1.6rem;
  }
}
.c-product-info6 .container {
  max-width: 1200px;
}
@media (max-width: 1580px) {
  .c-product-info6 .container {
    max-width: 800px;
  }
}
.c-product-info6 .c-img {
  position: absolute;
  bottom: 1.2rem;
  left: 0;
  z-index: 1;
  width: 100%;
}
@media (max-width: 1900px) {
  .c-product-info6 .c-img {
    left: 50%;
    width: 110%;
    max-width: none;
    transform: translateX(-50%);
  }
}
@media (max-width: 1260px) {
  .c-product-info6 .c-img {
    width: 130%;
  }
}
@media (max-width: 991px) {
  .c-product-info6 .c-img {
    bottom: auto;
    top: 100px;
    width: 150%;
  }
}
.c-product-info6 .public-title {
  position: relative;
  z-index: 5;
  margin: 0;
}
@media (max-width: 767px) {
  .c-product-info6 .public-title {
    margin: 0 0 0.5rem;
    text-align: left;
  }
}
.c-product-info6 .public-title .c-text {
  margin: 0 0 0.1rem;
}
.c-product-info6 .c-main {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  padding: 1rem 0;
  min-height: 7.2rem;
}
@media (max-width: 767px) {
  .c-product-info6 .c-main {
    padding: 0;
    min-height: auto;
    flex-wrap: wrap;
  }
}
.c-product-info6 .c-main .c-list-box {
  position: relative;
}
@media (max-width: 767px) {
  .c-product-info6 .c-main .c-list-box {
    margin: 2.4rem -3px 0;
  }
}
.c-product-info6 .c-main .c-list-box .c-list {
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  flex-wrap: wrap;
  opacity: 0;
  transition: all 0.4s;
}
.c-product-info6 .c-main .c-list-box .c-list.on {
  opacity: 1;
}
.c-product-info6 .c-main .c-list-box .c-list:nth-child(2) {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
}
@media (max-width: 767px) {
  .c-product-info6 .c-main .c-list-box .c-list:nth-child(2) {
    top: 0;
    transform: translateY(0%);
  }
}
.c-product-info6 .c-main .c-list-box .c-list li {
  padding: 7px 0;
  width: 55%;
}
@media (max-width: 767px) {
  .c-product-info6 .c-main .c-list-box .c-list li {
    padding: 0 3px 15px;
  }
}
.c-product-info6 .c-main .c-list-box .c-list li:nth-child(2n) {
  width: 300px;
}
@media (max-width: 1580px) {
  .c-product-info6 .c-main .c-list-box .c-list li:nth-child(2n) {
    width: 250px;
  }
}
@media (max-width: 767px) {
  .c-product-info6 .c-main .c-list-box .c-list li:nth-child(2n) {
    width: 40%;
  }
}
.c-product-info6 .c-main .c-list-box .c-list li .c-title {
  color: #666;
}
@media (max-width: 767px) {
  .c-product-info6 .c-main .c-list-box .c-list li .c-title {
    font-size: 12px;
  }
}
.c-product-info6 .c-main .c-list-box .c-list li .c-text {
  font-family: 'Poppins-Bold', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
  max-width: 300px;
}
@media (max-width: 767px) {
  .c-product-info6 .c-main .c-list-box .c-list li .c-text {
    font-size: 14px;
  }
}
.c-product-info6 .c-main .c-btn-box {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  color: #111;
  text-align: center;
}
@media (max-width: 1580px) {
  .c-product-info6 .c-main .c-btn-box {
    bottom: -0.4rem;
  }
}
@media (max-width: 767px) {
  .c-product-info6 .c-main .c-btn-box {
    bottom: auto;
    top: 280px;
    width: 100%;
  }
}
.c-product-info6 .c-main .c-btn-box .c-list {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  background: #e3e3e7;
  border-radius: 30px;
  margin-top: 10px;
}
.c-product-info6 .c-main .c-btn-box .c-list li {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
}
.c-product-info6 .c-main .c-btn-box .c-list li:nth-child(2) {
  margin-left: 10PX;
}
.c-product-info6 .c-main .c-btn-box .c-list li.on {
  color: #fff;
  background: var(--color);
}
.c-product-info6 .c-main .c-modle-list {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 10;
  width: 5.2rem;
  height: 5.2rem;
  transform: translate(-50%, -50%);
}
@media (max-width: 767px) {
  .c-product-info6 .c-main .c-modle-list {
    top: 0;
    left: 0;
    margin: 0 auto 0.2rem;
    position: relative;
    transform: translate(0, 0);
  }
}
.c-product-info6 .c-main .c-modle-list li,
.c-product-info6 .c-main .c-modle-list img {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
}
.c-product-info6 .c-main .c-modle-list li.on,
.c-product-info6 .c-main .c-modle-list img.on {
  opacity: 1;
}
.c-product-info6 .c-main model-viewer {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 10;
  width: 5.2rem;
  height: 5.2rem;
  transform: translate(-50%, -50%);
  background: transparent;
}
@media (max-width: 767px) {
  .c-product-info6 .c-main model-viewer {
    margin: 0 auto 0.2rem;
    position: static;
    transform: translate(0, 0);
  }
}
.c-product-info7 {
  position: relative;
  padding: 1.3rem 0 1.5rem;
}
@media (max-width: 767px) {
  .c-product-info7 {
    padding: 1.6rem 0;
  }
}
.c-product-info7 .c-bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.c-product-info7 .container {
  max-width: 1200px;
}
.c-product-info7 .public-title {
  color: #fff;
}
.c-product-info7 .public-title .c-text {
  color: #fff;
}
.c-product-info7 .c-main {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .c-product-info7 .c-main {
    flex-wrap: wrap;
  }
}
.c-product-info7 .c-main .c-left {
  display: flex;
  flex-wrap: wrap;
  align-content: space-between;
  border-radius: 0.2rem;
  width: calc(590/1200*100%);
  background: rgba(255, 255, 255, 0.7);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  overflow: hidden;
}
@media (max-width: 767px) {
  .c-product-info7 .c-main .c-left {
    width: 100%;
    border-radius: 0 0 10px 10px;
  }
}
.c-product-info7 .c-main .c-left .c-top {
  width: 100%;
  padding: 0.4rem 0.5rem;
}
@media (max-width: 767px) {
  .c-product-info7 .c-main .c-left .c-top {
    padding: 0.4rem 0.5rem 0.8rem;
  }
}
.c-product-info7 .c-main .c-left .c-top .c-title {
  font-family: 'Poppins-Bold', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
}
.c-product-info7 .c-main .c-left .c-top .c-item {
  margin-top: 0.2rem;
  color: #fff;
}
@media (max-width: 767px) {
  .c-product-info7 .c-main .c-left .c-top .c-item {
    margin-top: 0.4rem;
  }
}
.c-product-info7 .c-main .c-left .c-top .c-item .c-title2 {
  margin-bottom: -15px;
  font-family: 'Poppins-Medium', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
}
.c-product-info7 .c-main .c-left .c-top .c-item .c-list {
  display: flex;
  flex-wrap: wrap;
}
.c-product-info7 .c-main .c-left .c-top .c-item .c-list li {
  position: relative;
  margin: 20px 0.4rem 0 0;
  width: 46px;
  cursor: pointer;
}
@media (max-width: 1580px) {
  .c-product-info7 .c-main .c-left .c-top .c-item .c-list li {
    margin-right: 20px;
  }
}
@media (max-width: 767px) {
  .c-product-info7 .c-main .c-left .c-top .c-item .c-list li {
    width: 30px;
  }
}
.c-product-info7 .c-main .c-left .c-top .c-item .c-list li .public-img::before {
  padding-top: calc(60/46*100%);
}
.c-product-info7 .c-main .c-left .c-top .c-item .c-list li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  border: 2px solid transparent;
}
.c-product-info7 .c-main .c-left .c-top .c-item .c-list li::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  width: 0;
  height: 0;
  z-index: 5;
  margin: -2px 0 0 -5px;
  box-sizing: border-box;
  border: 5px solid transparent;
}
.c-product-info7 .c-main .c-left .c-top .c-item .c-list li.on::before {
  border-color: var(--color);
}
.c-product-info7 .c-main .c-left .c-top .c-item .c-list li.on::after {
  border-bottom: 5px solid var(--color);
}
.c-product-info7 .c-main .c-left .c-bottom {
  width: 100%;
  padding: 0.2rem 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.45);
}
@media (max-width: 767px) {
  .c-product-info7 .c-main .c-left .c-bottom {
    padding: 0.5rem;
  }
}
.c-product-info7 .c-main .c-left .c-bottom .c-text {
  font-family: 'Poppins-Medium', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
}
@media (max-width: 767px) {
  .c-product-info7 .c-main .c-left .c-bottom .c-text {
    font-size: 18px;
  }
}
.c-product-info7 .c-main .c-left .c-bottom .c-tag {
  display: flex;
  flex-wrap: wrap;
}
.c-product-info7 .c-main .c-left .c-bottom .c-tag p {
  margin: 0.1rem 0.1rem 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 24px;
  border: 1px solid #999;
  border-radius: 12px;
  padding: 0 0.15rem;
}
@media (max-width: 767px) {
  .c-product-info7 .c-main .c-left .c-bottom .c-tag p {
    margin: 0.2rem 0.2rem 0 0;
    height: 30px;
    border-radius: 15px;
    padding: 0 10px;
    font-size: 14px;
  }
}
.c-product-info7 .c-main .c-left .c-bottom .c-more {
  margin-top: 0.2rem;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  transition: all 0.4s;
}
@media (max-width: 767px) {
  .c-product-info7 .c-main .c-left .c-bottom .c-more {
    margin-top: 0.4rem;
  }
}
.c-product-info7 .c-main .c-left .c-bottom .c-more span {
  text-decoration: underline;
}
.c-product-info7 .c-main .c-left .c-bottom .c-more img,
.c-product-info7 .c-main .c-left .c-bottom .c-more svg {
  margin-left: 0.1rem;
  width: 10px;
  height: 10px;
  color: var(--color);
}
.c-product-info7 .c-main .c-left .c-bottom .c-more:hover {
  color: var(--color);
}
.c-product-info7 .c-main .c-right {
  position: relative;
  width: calc(590/1200*100%);
  display: flex;
  border-radius: 0.2rem;
  background: rgba(255, 255, 255, 0.7);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  overflow: hidden;
}
@media (max-width: 767px) {
  .c-product-info7 .c-main .c-right {
    width: 100%;
    height: 70vw;
    border-radius: 10px 10px 0 0;
  }
}
.c-product-info7 .c-main .c-right .c-list {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
}
.c-product-info7 .c-main .c-right .c-list:nth-child(2) {
  z-index: 5;
}
.c-product-info7 .c-main .c-right .c-list li {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 0.5rem;
}
.c-product-info7 .c-main .c-right .c-list li.on {
  display: block;
}
.c-product-info7 .c-main .c-right .c-list li img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.c-product-info7 .c-main .c-right .c-download {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: 0.3rem;
  right: 0.3rem;
  z-index: 10;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color);
  color: #fff;
  cursor: pointer;
}
@media (max-width: 767px) {
  .c-product-info7 .c-main .c-right .c-download {
    width: 40px;
    height: 40px;
  }
}
.c-product-info7 .c-main .c-right .c-download img,
.c-product-info7 .c-main .c-right .c-download svg {
  width: 20px;
  height: 20px;
  object-fit: contain;
}
.c-product-info8 {
  position: relative;
  padding: 1.2rem 0 0;
  background: #f7f8f9;
}
@media (max-width: 767px) {
  .c-product-info8 {
    padding: 1.6rem 0;
  }
}
.c-product-info8 .container {
  max-width: 1400px;
}
@media (max-width: 767px) {
  .c-product-info8 .public-title {
    text-align: left;
  }
}
.c-product-info8 .c-list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -0.15rem -0.3rem;
}
.c-product-info8 .c-list li {
  display: flex;
  padding: 0 0.15rem 0.3rem;
  width: 50%;
}
@media (max-width: 767px) {
  .c-product-info8 .c-list li {
    width: 100%;
  }
}
.c-product-info8 .c-list li .c-wrap {
  width: 100%;
  border-radius: 0.14rem;
  background: #fff;
  padding: 0.2rem;
}
@media (max-width: 767px) {
  .c-product-info8 .c-list li .c-wrap {
    padding: 20px;
  }
}
@media (max-width: 767px) {
  .c-product-info8 .c-list li .c-wrap {
    border-radius: 10px;
  }
}
.c-product-info8 .c-list li .c-wrap .public-img {
  border-radius: 0.14rem;
}
@media (max-width: 767px) {
  .c-product-info8 .c-list li .c-wrap .public-img {
    border-radius: 10px;
  }
}
.c-product-info8 .c-list li .c-wrap .public-img::before {
  padding-top: calc(386/645*100%);
}
.c-product-info8 .c-list li .c-wrap .c-title {
  margin: 0.25rem 0 0.1rem;
  font-family: 'Poppins-Medium', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
}
@media (max-width: 767px) {
  .c-product-info8 .c-list li .c-wrap .c-title {
    margin: 0.4rem 0 0.1rem;
    line-height: 1.1;
  }
}
.c-product-info8 .c-list li .c-wrap .c-text {
  padding-bottom: 0.2rem;
  color: #999;
}
@media (max-width: 767px) {
  .c-product-info8 .c-list li .c-wrap .c-text {
    line-height: 1.2;
  }
}
.c-product-info9 {
  position: relative;
  padding: 1.5rem 0 1.2rem;
  background: -webkit-linear-gradient(top, #f7f8f9 0%, #fff 70%, #fff 100%);
  background: linear-gradient(to bottom, #f7f8f9 0%, #fff 70%, #fff 100%);
}
@media (max-width: 767px) {
  .c-product-info9 {
    padding: 0 0 1.6rem;
  }
  .c-product-info9.c-style2 {
    padding: 1.6rem 0;
  }
}
.c-product-info9 .container {
  max-width: 1400px;
}
.c-product-info10 {
  height: 450vh;
  background: #000;
}
.c-product-info10 .c-main {
  position: sticky;
  position: -webkit-sticky;
  top: 0;
  height: 100vh;
}
.c-product-info10 .c-main .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1400px;
  color: #fff;
}
@media (max-width: 767px) {
  .c-product-info10 .c-main .container {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.c-product-info10 .c-main .container .c-dot {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: 0.8rem;
  left: 50%;
  z-index: 20;
  transform: translateX(-50%);
}
@media (max-width: 767px) {
  .c-product-info10 .c-main .container .c-dot {
    bottom: 0.4rem;
  }
}
.c-product-info10 .c-main .container .c-dot div {
  margin: 0 5px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transition: all 0.4s;
  cursor: pointer;
}
.c-product-info10 .c-main .container .c-dot div.on {
  background: var(--color);
}
.c-product-info10 .c-main .container .c-left {
  width: 50%;
  height: 100vh;
}
@media (max-width: 767px) {
  .c-product-info10 .c-main .container .c-left {
    width: 100%;
  }
}
.c-product-info10 .c-main .container .c-left .c-list {
  position: relative;
  color: #666;
  height: 100%;
}
.c-product-info10 .c-main .container .c-left .c-list li {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transition: all 0.4s;
  transform: translateY(-50%);
}
@media (max-width: 767px) {
  .c-product-info10 .c-main .container .c-left .c-list li {
    top: 25%;
  }
}
.c-product-info10 .c-main .container .c-left .c-list li .c-title {
  opacity: 0;
  margin-bottom: 0.1rem;
  color: #fff;
  animation: pinfo10out 1s 0s forwards;
}
@media (max-width: 767px) {
  .c-product-info10 .c-main .container .c-left .c-list li .c-title {
    margin-bottom: 0.2rem;
  }
}
.c-product-info10 .c-main .container .c-left .c-list li .c-text {
  animation: pinfo10out 1s 0s forwards;
  opacity: 0;
}
.c-product-info10 .c-main .container .c-left .c-list li.on .c-text,
.c-product-info10 .c-main .container .c-left .c-list li.on .c-title {
  animation: pinfo10in 1s 1s forwards;
}
.c-product-info10 .c-main .container .c-right {
  width: 40%;
}
@media (max-width: 767px) {
  .c-product-info10 .c-main .container .c-right {
    position: absolute;
    bottom: 15vw;
    width: 80%;
  }
}
.c-product-info10 .c-main .container .c-right .c-list {
  position: relative;
}
.c-product-info10 .c-main .container .c-right .c-list li {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.c-product-info10 .c-main .container .c-right .c-list li:nth-child(1) {
  position: relative;
}
.c-product-info10 .c-main .container .c-right .c-list li .public-img {
  opacity: 0;
  animation: pinfo10out2 1s 0s forwards;
}
.c-product-info10 .c-main .container .c-right .c-list li .public-img img {
  object-fit: contain;
}
.c-product-info10 .c-main .container .c-right .c-list li .public-img video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.c-product-info10 .c-main .container .c-right .c-list li.on .public-img {
  animation: pinfo10in 1s 1.2s forwards;
}
.c-product-info11 {
  padding: 0 0 1.2rem;
}
@media (max-width: 767px) {
  .c-product-info11 {
    padding: 0 0 1.6rem;
  }
}
@media (max-width: 767px) {
  .c-product-info11 .public-title {
    text-align: left;
  }
}
.c-product-info11 .public-img {
  margin: 0 auto;
  max-width: 1200px;
}
.c-product-info11 .public-img::before {
  padding-top: calc(430/1193*100%);
}
@media (max-width: 767px) {
  .c-product-info11 .public-img::before {
    padding-top: 50%;
  }
}
.c-product-info11 .public-img img {
  object-fit: contain;
}
.c-about1 {
  position: relative;
  z-index: 1;
  height: 450vh;
  background: url(../images/about1-bg.webp) no-repeat center / 100% 100%;
}
@media (max-width: 767px) {
  .c-about1 {
    background: url(../images/about1-bg2.webp) no-repeat center / 100% 100%;
  }
}
.c-about1 .container {
  max-width: 1600px;
}
.c-about1 .c-sticky {
  position: sticky;
  position: -webkit-sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}
.c-about1 .c-sticky .c-main-box {
  position: relative;
  height: 100%;
  -webkit-mask: linear-gradient(to bottom, rgba(0, 0, 0, 0), #000 30%, #000 70%, rgba(0, 0, 0, 0) 100%);
  mask: linear-gradient(to bottom, rgba(0, 0, 0, 0), #000 30%, #000 70%, rgba(0, 0, 0, 0) 100%);
}
.c-about1 .c-sticky .c-main1 {
  height: 100%;
  color: #fff;
}
.c-about1 .c-sticky .c-main1 .container {
  position: relative;
  height: 100%;
}
.c-about1 .c-sticky .c-main1 .c-list li {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 1s;
  opacity: 0;
  font-size: 18px;
}
.c-about1 .c-sticky .c-main1 .c-list li p {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 30px;
  height: 58px;
  min-width: 1.4rem;
  border-radius: 29px;
  background: rgba(255, 255, 255, 0.5);
  white-space: nowrap;
}
@media (max-width: 767px) {
  .c-about1 .c-sticky .c-main1 .c-list li p {
    height: 30px;
    padding: 0 15px;
    font-size: 12px;
  }
}
.c-about1 .c-sticky .c-main1 .c-list li:nth-child(1) p {
  background: #f0ce56;
}
.c-about1 .c-sticky .c-main1 .c-list li:nth-child(2) p {
  background: #1ed8c6;
}
.c-about1 .c-sticky .c-main1 .c-list li:nth-child(3) p {
  background: #f9983a;
}
.c-about1 .c-sticky .c-main1 .c-list li:nth-child(4) p {
  background: #cd87fa;
}
.c-about1 .c-sticky .c-main1 .c-title {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  text-align: center;
  transform: translateY(-50%);
  font-size: 1rem;
  font-family: 'Poppins-Bold', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
  opacity: 0;
  transition: all 0.8s;
}
@media (max-width: 991px) {
  .c-about1 .c-sticky .c-main1 .c-title {
    font-size: 60px;
  }
}
@media (max-width: 767px) {
  .c-about1 .c-sticky .c-main1 .c-title {
    font-size: 30px;
  }
}
.c-about1 .c-sticky .c-main1 .c-title1 {
  margin-top: -50px;
}
.c-about1 .c-sticky .c-main1 .c-title2 {
  opacity: 1;
}
.c-about1 .c-sticky .c-main1 .c-title2 span {
  opacity: 0;
}
.c-about1 .c-sticky .c-main1.on2 .c-title {
  transition: all 0.4s;
}
.c-about1 .c-sticky .c-main1.on .c-title1 {
  margin-top: 0;
  opacity: 1;
}
.c-about1 .c-sticky .c-main1.on .c-list li {
  transition: all 1s 0.5s;
}
.c-about1 .c-sticky .c-main1.on .c-list li:nth-child(5n) p {
  animation: float 3s ease-in-out infinite;
}
.c-about1 .c-sticky .c-main1.on .c-list li:nth-child(5n-1) p {
  animation: float 3s 0.3s ease-in-out infinite;
}
.c-about1 .c-sticky .c-main1.on .c-list li:nth-child(5n-2) p {
  animation: float 3s 0.7s ease-in-out infinite;
}
.c-about1 .c-sticky .c-main1.on .c-list li:nth-child(5n-3) p {
  animation: float 3s 0.1s ease-in-out infinite;
}
.c-about1 .c-sticky .c-main1.on .c-list li:nth-child(5n-4) p {
  animation: float 3s 0.9s ease-in-out infinite;
}
.c-about1 .c-sticky .c-main1.on .c-list li:nth-child(1) {
  opacity: 1;
  top: calc(230/980*100%);
  left: calc(370/1600*100%);
}
@media (max-width: 1580px) {
  .c-about1 .c-sticky .c-main1.on .c-list li:nth-child(1) {
    transform: translate(-50%, -50%) scale(0.9);
  }
}
@media (max-width: 767px) {
  .c-about1 .c-sticky .c-main1.on .c-list li:nth-child(1) {
    top: calc(420/980*100%);
  }
}
.c-about1 .c-sticky .c-main1.on .c-list li:nth-child(2) {
  opacity: 1;
  top: calc(240/980*100%);
  left: calc(1120/1600*100%);
  transform: translate(-50%, -50%) scale(1.1);
}
@media (max-width: 1580px) {
  .c-about1 .c-sticky .c-main1.on .c-list li:nth-child(2) {
    transform: translate(-50%, -50%) scale(1);
  }
}
@media (max-width: 767px) {
  .c-about1 .c-sticky .c-main1.on .c-list li:nth-child(2) {
    top: calc(400/980*100%);
    left: calc(1200/1600*100%);
  }
}
.c-about1 .c-sticky .c-main1.on .c-list li:nth-child(3) {
  opacity: 1;
  top: calc(690/980*100%);
  left: calc(400/1600*100%);
  transform: translate(-50%, -50%) scale(1.2);
}
@media (max-width: 1580px) {
  .c-about1 .c-sticky .c-main1.on .c-list li:nth-child(3) {
    transform: translate(-50%, -50%) scale(1);
  }
}
@media (max-width: 767px) {
  .c-about1 .c-sticky .c-main1.on .c-list li:nth-child(3) {
    top: calc(600/980*100%);
    left: calc(400/1600*100%);
  }
}
.c-about1 .c-sticky .c-main1.on .c-list li:nth-child(4) {
  opacity: 1;
  top: calc(720/980*100%);
  left: calc(1140/1600*100%);
  transform: translate(-50%, -50%) scale(1.4);
}
@media (max-width: 1580px) {
  .c-about1 .c-sticky .c-main1.on .c-list li:nth-child(4) {
    transform: translate(-50%, -50%) scale(1.1);
  }
}
@media (max-width: 767px) {
  .c-about1 .c-sticky .c-main1.on .c-list li:nth-child(4) {
    top: calc(650/980*100%);
    left: calc(1240/1600*100%);
  }
}
.c-about1 .c-sticky .c-main1.on .c-list li:nth-child(5) {
  opacity: 1;
  top: calc(330/980*100%);
  left: calc(500/1600*100%);
  transform: translate(-50%, -50%) scale(0.6);
  font-size: 24px;
}
.c-about1 .c-sticky .c-main1.on .c-list li:nth-child(5) p {
  color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.2);
}
.c-about1 .c-sticky .c-main1.on .c-list li:nth-child(6) {
  opacity: 1;
  top: calc(360/980*100%);
  left: calc(970/1600*100%);
  transform: translate(-50%, -50%) scale(0.65);
  font-size: 24px;
}
.c-about1 .c-sticky .c-main1.on .c-list li:nth-child(6) p {
  color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.2);
}
@media (max-width: 767px) {
  .c-about1 .c-sticky .c-main1.on .c-list li:nth-child(6) {
    top: calc(300/980*100%);
  }
}
.c-about1 .c-sticky .c-main1.on .c-list li:nth-child(7) {
  opacity: 1;
  top: calc(590/980*100%);
  left: calc(550/1600*100%);
  transform: translate(-50%, -50%) scale(0.7);
  font-size: 24px;
}
.c-about1 .c-sticky .c-main1.on .c-list li:nth-child(7) p {
  color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.3);
}
@media (max-width: 767px) {
  .c-about1 .c-sticky .c-main1.on .c-list li:nth-child(7) {
    top: calc(700/980*100%);
  }
}
.c-about1 .c-sticky .c-main1.on .c-list li:nth-child(8) {
  opacity: 1;
  top: calc(610/980*100%);
  left: calc(900/1600*100%);
  transform: translate(-50%, -50%) scale(0.7);
  font-size: 24px;
}
.c-about1 .c-sticky .c-main1.on .c-list li:nth-child(8) p {
  color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.3);
}
@media (max-width: 767px) {
  .c-about1 .c-sticky .c-main1.on .c-list li:nth-child(8) {
    top: calc(750/980*100%);
  }
}
.c-about1 .c-sticky .c-main1.on .c-list li:nth-child(9) {
  opacity: 1;
  top: calc(600/980*100%);
  left: calc(1230/1600*100%);
  transform: translate(-50%, -50%) scale(0.62);
  font-size: 24px;
}
.c-about1 .c-sticky .c-main1.on .c-list li:nth-child(9) p {
  color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.3);
}
@media (max-width: 767px) {
  .c-about1 .c-sticky .c-main1.on .c-list li:nth-child(9) {
    top: calc(570/980*100%);
  }
}
.c-about1 .c-sticky .c-main1.on .c-list li:nth-child(10) {
  opacity: 0.6;
  top: calc(270/980*100%);
  left: calc(690/1600*100%);
  transform: translate(-50%, -50%) scale(0.45);
}
.c-about1 .c-sticky .c-main1.on .c-list li:nth-child(11) {
  opacity: 0.4;
  top: calc(370/980*100%);
  left: calc(1450/1600*100%);
  transform: translate(-50%, -50%) scale(0.7);
}
@media (max-width: 767px) {
  .c-about1 .c-sticky .c-main1.on .c-list li:nth-child(11) {
    top: calc(240/980*100%);
    left: calc(200/1600*100%);
  }
}
.c-about1 .c-sticky .c-main1.on .c-list li:nth-child(12) {
  opacity: 0.4;
  top: calc(580/980*100%);
  left: calc(150/1600*100%);
  transform: translate(-50%, -50%) scale(0.7);
}
@media (max-width: 767px) {
  .c-about1 .c-sticky .c-main1.on .c-list li:nth-child(12) {
    top: calc(750/980*100%);
  }
}
.c-about1 .c-sticky .c-main1.on .c-list li:nth-child(13) {
  opacity: 0.4;
  top: calc(660/980*100%);
  left: calc(740/1600*100%);
  transform: translate(-50%, -50%) scale(0.55);
}
.c-about1 .c-sticky .c-main1.on .c-list li:nth-child(14) {
  opacity: 0.4;
  top: calc(635/980*100%);
  left: calc(1480/1600*100%);
  transform: translate(-50%, -50%) scale(0.7);
}
@media (max-width: 767px) {
  .c-about1 .c-sticky .c-main1.on .c-list li:nth-child(14) {
    top: calc(750/980*100%);
  }
}
.c-about1 .c-sticky .c-main1.on .c-list li:nth-child(15) {
  opacity: 0.4;
  top: calc(770/980*100%);
  left: calc(225/1600*100%);
  transform: translate(-50%, -50%) scale(0.65);
}
@media (max-width: 767px) {
  .c-about1 .c-sticky .c-main1.on .c-list li:nth-child(15) {
    top: calc(850/980*100%);
  }
}
.c-about1 .c-sticky .c-main1.on .c-list li:nth-child(16) {
  opacity: 0.2;
  top: calc(810/980*100%);
  left: calc(620/1600*100%);
  transform: translate(-50%, -50%) scale(0.65);
}
.c-about1 .c-sticky .c-main1.on .c-list li:nth-child(17) {
  opacity: 0.2;
  top: calc(825/980*100%);
  left: calc(1280/1600*100%);
  transform: translate(-50%, -50%) scale(0.45);
}
.c-about1 .c-sticky .c-main2 {
  position: absolute;
  top: 80%;
  left: 0;
  width: 100%;
  height: 100%;
}
.c-about1 .c-sticky .c-main2 .container {
  position: relative;
  height: 100%;
}
.c-about1 .c-sticky .c-main2 .c-box {
  position: absolute;
  bottom: 52%;
  left: 50%;
  width: 1000px;
  max-width: 100%;
  color: #fff;
  transform: translate(-50%, 0);
  text-align: center;
}
.c-about1 .c-sticky .c-main2 .c-box .c-title {
  font-family: 'Poppins-SemiBold', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
  line-height: 1.1;
}
.c-about1 .c-sticky .c-main2 .c-box .c-text {
  padding-top: 0.1rem;
  line-height: 1.1;
}
@media (max-width: 767px) {
  .c-about1 .c-sticky .c-main2 .c-box .c-text {
    font-size: 18px;
    line-height: 1.2;
  }
}
.c-about1 .c-sticky .c-main2 .c-box:nth-child(2) {
  bottom: auto;
  top: 52%;
}
.c-about1 .c-sticky .c-main3 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #fff;
}
.c-about1 .c-sticky .c-main3 .c-title {
  font-size: 1.2rem;
  font-family: 'Poppins-Bold', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
  color: var(--color);
  line-height: 1;
  opacity: 0;
}
.c-about1 .c-sticky .c-main3 .c-text {
  margin-top: 0.2rem;
  font-family: 'Poppins-Medium', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
  opacity: 0;
}
.public-about {
  position: sticky;
  position: -webkit-sticky;
  top: 0;
  z-index: -1;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.public-about .container {
  position: relative;
  z-index: 5;
}
.public-about .c-img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: #fff url(../images/about1-bg3.webp) no-repeat left top / 100% auto;
  opacity: 0.1;
}
@media (max-width: 767px) {
  .public-about .c-img {
    background-size: 380%;
  }
}
.public-about .c-title {
  font-family: 'Poppins-Medium', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
  line-height: 1;
  opacity: 0;
  color: #fff;
  transform: scale(1.5);
}
@media (max-width: 767px) {
  .public-about .c-title {
    font-size: 48px;
    line-height: 1.2;
  }
  .public-about .c-title br {
    display: none;
  }
}
.public-about .c-text {
  font-family: 'Poppins-Bold', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
  font-size: 1.2rem;
  color: var(--color);
}
.c-about-list {
  opacity: 0;
  position: relative;
  z-index: 10;
  margin-top: -150vh;
  transition: all 0.5s;
}
.c-about-list.on {
  opacity: 1;
}
.c-about-list.on .c-about2 .public-about .c-title {
  transform: scale(1);
  opacity: 1;
  transition: all 0.5s 0.6s;
}
.c-about-list.on .c-about2 .public-about .c-img {
  opacity: 1;
  transition: all 0.5s 0.5s;
}
.c-about-list .c-main {
  background: rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: blur(40px);
  backdrop-filter: blur(40px);
  padding: 1.2rem 0;
  border-radius: 50px 50px 0 0;
  margin-top: 50vh;
}
@media (max-width: 767px) {
  .c-about-list .c-main {
    border-radius: 20px 20px 0 0;
    padding: 1.6rem 0;
  }
}
.c-about-list .c-main .container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .c-about-list .c-main .container {
    flex-wrap: wrap;
  }
}
.c-about-list .c-main .c-left {
  position: sticky;
  position: -webkit-sticky;
  top: 100px;
  width: calc(540/1600*100%);
}
@media (max-width: 991px) {
  .c-about-list .c-main .c-left {
    position: static;
    width: 100%;
    margin-bottom: 0.6rem;
  }
}
@media (max-width: 767px) {
  .c-about-list .c-main .c-left {
    margin-bottom: 1.2rem;
  }
}
.c-about-list .c-main .c-left .c-title {
  font-family: 'Poppins-Bold', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
  color: var(--color);
}
.c-about-list .c-main .c-left .c-text {
  font-family: 'Poppins-Medium', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
  margin-top: 0.35rem;
  line-height: 1.1;
}
@media (max-width: 1580px) {
  .c-about-list .c-main .c-left .c-text {
    font-size: 26px;
    line-height: 1.2;
  }
}
@media (max-width: 767px) {
  .c-about-list .c-main .c-left .c-text {
    font-size: 30px;
    line-height: 1.1;
  }
}
.c-about-list .c-main .c-left .c-list {
  margin-top: 1.6rem;
}
@media (max-width: 1580px) {
  .c-about-list .c-main .c-left .c-list {
    margin-top: 0.6rem;
  }
}
@media (max-width: 991px) {
  .c-about-list .c-main .c-left .c-list {
    display: none;
  }
}
.c-about-list .c-main .c-left .c-list li .c-title2 {
  color: #b3b3b3;
  transition: all 0.4s;
}
.c-about-list .c-main .c-left .c-list li .c-line-box {
  margin: 0 0 0 2px;
  width: 2px;
  height: 40px;
  background: #f0f0f0;
  overflow: hidden;
}
.c-about-list .c-main .c-left .c-list li .c-line-box .c-line {
  background: var(--color);
}
.c-about-list .c-main .c-left .c-list li.on .c-title2 {
  color: #111;
}
.c-about-list .c-main .c-left .c-list li:last-child .c-line-box {
  display: none;
}
.c-about-list .c-main .c-right {
  padding-top: 90px;
  width: calc(900/1600*100%);
}
@media (max-width: 991px) {
  .c-about-list .c-main .c-right {
    padding-top: 0;
    width: 100%;
  }
}
.c-about-list .c-main .c-right > div {
  margin-bottom: 1.9rem;
}
@media (max-width: 767px) and (max-width: 767px) {
  .c-about-list .c-main .c-right > div {
    margin-bottom: 1.2rem;
  }
}
.c-about-list .c-main .c-right > div:last-child {
  margin: 0;
}
.c-about-list .c-main .c-right .c-title-box {
  margin-bottom: 0.4rem;
}
@media (max-width: 767px) {
  .c-about-list .c-main .c-right .c-title-box {
    margin-bottom: 0.6rem;
  }
}
.c-about-list .c-main .c-right .c-title-box .c-title {
  font-family: 'Poppins-Medium', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
}
@media (max-width: 767px) {
  .c-about-list .c-main .c-right .c-title-box .c-title {
    display: flex;
    align-items: flex-start;
  }
}
.c-about-list .c-main .c-right .c-title-box .c-title::before {
  margin-right: 10px;
  content: "·";
  display: inline-block;
  vertical-align: middle;
  color: var(--color);
  font-size: 60px;
  line-height: 40px;
}
@media (max-width: 767px) {
  .c-about-list .c-main .c-right .c-title-box .c-title::before {
    line-height: 30px;
  }
}
.c-about-list .c-main .c-right .c-title-box .c-text {
  margin-top: 0.2rem;
  color: #333;
  line-height: 1.15;
}
@media (max-width: 767px) {
  .c-about-list .c-main .c-right .c-title-box .c-text {
    margin-top: 0.2rem;
    font-size: 16px;
    line-height: 1.4;
  }
}
.c-about2 .c-main {
  margin-top: 150vh;
}
.c-about2 .public-about .c-img,
.c-about2 .public-about .c-title {
  opacity: 0;
  transition: all 0.5s 0s;
}
.c-about2 .c-about2-1 .c-box {
  position: relative;
  border-radius: 0.14rem;
  overflow: hidden;
}
@media (max-width: 767px) {
  .c-about2 .c-about2-1 .c-box {
    border-radius: 10px;
  }
}
.c-about2 .c-about2-1 .c-box .public-img::before {
  padding-top: calc(400/900*100%);
}
@media (max-width: 767px) {
  .c-about2 .c-about2-1 .c-box .public-img::before {
    padding-top: 72vw;
  }
}
.c-about2 .c-about2-1 .c-box .c-list {
  position: absolute;
  bottom: 0.2rem;
  left: 0.2rem;
  z-index: 10;
  padding: 0.15rem 0.2rem;
  border-radius: 0.14rem;
  width: calc(100% - 0.4rem);
  color: #fff;
  background: rgba(231, 231, 231, 0.3);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .c-about2 .c-about2-1 .c-box .c-list {
    padding: 20px;
    width: 100%;
    position: static;
    line-height: 1.2;
    border-radius: 0 0 10px 10px;
    color: #333;
    background: rgba(255, 255, 255, 0.25);
  }
}
.c-about2 .c-about2-1 .c-box .c-list li {
  display: flex;
  padding: 0 0.2rem;
  width: 50%;
}
@media (max-width: 767px) {
  .c-about2 .c-about2-1 .c-box .c-list li {
    width: 100%;
    padding: 0.1rem 0.1rem;
  }
}
.c-about2 .c-about2-1 .c-box .c-list li::before {
  flex-shrink: 0;
  margin: 0.6em 0.1rem 0 0;
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
  vertical-align: middle;
}
@media (max-width: 767px) {
  .c-about2 .c-about2-1 .c-box .c-list li::before {
    display: none;
  }
}
.c-about2 .c-about2-2 .c-list li {
  border-top: 1px solid #fff;
}
.c-about2 .c-about2-2 .c-list li:first-child {
  border: 0;
}
.c-about2 .c-about2-2 .c-list li:last-child {
  border-bottom: 1px solid #fff;
}
.c-about2 .c-about2-2 .c-list li .c-wrap {
  position: relative;
  display: flex;
  align-items: flex-start;
  padding: 0.25rem 0.2rem 0.25rem 0;
  overflow: hidden;
  border-radius: 0.14rem;
  transition: all 0.4s;
}
@media (max-width: 767px) {
  .c-about2 .c-about2-2 .c-list li .c-wrap {
    padding: 20px 0;
    align-items: center;
  }
}
.c-about2 .c-about2-2 .c-list li .c-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: all 0.4s;
  opacity: 0;
}
.c-about2 .c-about2-2 .c-list li .c-wrap > img {
  position: absolute;
  top: 50%;
  right: 0;
  z-index: 1;
  transform: translateY(-50%) scale(2);
  opacity: 0;
  transition: all 0.4s;
  filter: blur(5px);
}
.c-about2 .c-about2-2 .c-list li .c-wrap .public-img {
  z-index: 5;
  flex-shrink: 0;
  width: 120px;
  transition: all 0.4s;
}
@media (max-width: 767px) {
  .c-about2 .c-about2-2 .c-list li .c-wrap .public-img {
    width: 50%;
  }
}
.c-about2 .c-about2-2 .c-list li .c-wrap .public-img::before {
  padding-top: 60%;
}
@media (max-width: 767px) {
  .c-about2 .c-about2-2 .c-list li .c-wrap .public-img::before {
    padding-top: 80%;
  }
}
.c-about2 .c-about2-2 .c-list li .c-wrap .public-img img {
  object-fit: contain;
  transform: scale(1.2);
}
@media (max-width: 767px) {
  .c-about2 .c-about2-2 .c-list li .c-wrap .public-img img {
    transform: scale(1);
  }
}
.c-about2 .c-about2-2 .c-list li .c-wrap .c-box1 {
  position: relative;
  z-index: 5;
  padding: 0 0.4rem;
  width: 100%;
  font-family: 'Poppins-Medium', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
}
@media (max-width: 767px) {
  .c-about2 .c-about2-2 .c-list li .c-wrap .c-box1 {
    padding: 10px 0 0;
    width: 100%;
  }
}
.c-about2 .c-about2-2 .c-list li .c-wrap .c-box1 .c-title {
  transition: all 0.4s;
}
@media (max-width: 767px) {
  .c-about2 .c-about2-2 .c-list li .c-wrap .c-box1 .c-title {
    font-size: 22px;
  }
}
.c-about2 .c-about2-2 .c-list li .c-wrap .c-box1 .c-text {
  color: #666;
  transition: all 0.4s;
}
@media (max-width: 767px) {
  .c-about2 .c-about2-2 .c-list li .c-wrap .c-box1 .c-text {
    margin-top: 5px;
    font-size: 16px;
  }
}
.c-about2 .c-about2-2 .c-list li .c-wrap .c-box2 {
  position: relative;
  z-index: 5;
  flex-shrink: 0;
  width: 3.6rem;
}
@media (max-width: 767px) {
  .c-about2 .c-about2-2 .c-list li .c-wrap .c-box2 {
    display: none;
    margin: 15px 0 0;
    width: 100%;
  }
}
.c-about2 .c-about2-2 .c-list li .c-wrap .c-box2 .c-title {
  color: #666;
  transition: all 0.4s;
}
.c-about2 .c-about2-2 .c-list li .c-wrap .c-box2 .c-tag {
  display: flex;
  flex-wrap: wrap;
  line-height: 1.1;
}
@media (max-width: 767px) {
  .c-about2 .c-about2-2 .c-list li .c-wrap .c-box2 .c-tag {
    font-size: 12px;
  }
}
.c-about2 .c-about2-2 .c-list li .c-wrap .c-box2 .c-tag p {
  margin: 0.1rem 0.1rem 0.1rem 0;
  padding: 5px 10px;
  border-radius: 4px;
  color: #999;
  background: #fff;
  border: 1px solid #fff;
  transition: all 0.4s;
}
@media (min-width: 992px) {
  .c-about2 .c-about2-2 .c-list li:hover {
    border-color: transparent;
  }
  .c-about2 .c-about2-2 .c-list li:hover + li {
    border-color: transparent;
  }
  .c-about2 .c-about2-2 .c-list li:hover .c-wrap {
    background: var(--color);
  }
  .c-about2 .c-about2-2 .c-list li:hover .c-wrap::before {
    opacity: 1;
  }
  .c-about2 .c-about2-2 .c-list li:hover .c-wrap > img {
    opacity: 0.5;
  }
  .c-about2 .c-about2-2 .c-list li:hover .c-wrap .public-img {
    margin: 0 0 0 0.3rem;
  }
  .c-about2 .c-about2-2 .c-list li:hover .c-wrap .c-box1 {
    color: #fff;
  }
  .c-about2 .c-about2-2 .c-list li:hover .c-wrap .c-box1 .c-text {
    color: #fff;
  }
  .c-about2 .c-about2-2 .c-list li:hover .c-wrap .c-box2 {
    color: #fff;
  }
  .c-about2 .c-about2-2 .c-list li:hover .c-wrap .c-box2 .c-title {
    color: #fff;
  }
  .c-about2 .c-about2-2 .c-list li:hover .c-wrap .c-box2 .c-tag p {
    background: transparent;
    color: #fff;
    border-color: #fff;
  }
}
.c-about2 .c-about2-3 .public-img {
  border-radius: 0.14rem;
}
@media (max-width: 767px) {
  .c-about2 .c-about2-3 .public-img {
    border-radius: 10px;
  }
}
@media (max-width: 767px) {
  .c-about2 .c-about2-3 .public-img {
    border-radius: 10px;
  }
}
.c-about2 .c-about2-3 .public-img::before {
  padding-top: calc(400/900*100%);
}
@media (max-width: 767px) {
  .c-about2 .c-about2-3 .public-img::before {
    padding-top: 72vw;
  }
}
.c-about3 .c-about3-1 .c-list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -0.1rem -0.2rem;
}
@media (max-width: 767px) {
  .c-about3 .c-about3-1 .c-list {
    margin: 0 -0.1rem -0.4rem;
  }
}
.c-about3 .c-about3-1 .c-list li {
  display: flex;
  padding: 0 0.1rem 0.2rem;
  width: 50%;
}
@media (max-width: 767px) {
  .c-about3 .c-about3-1 .c-list li {
    padding: 0 0.1rem 0.4rem;
    width: 50%;
  }
}
.c-about3 .c-about3-1 .c-list li .c-wrap {
  width: 100%;
  display: flex;
  align-items: center;
  padding: 0.3rem 0;
  border-bottom: 1px solid #c8d8f9;
}
@media (max-width: 767px) {
  .c-about3 .c-about3-1 .c-list li .c-wrap {
    flex-wrap: wrap;
  }
  .c-about3 .c-about3-1 .c-list li .c-wrap .c-box {
    width: 100%;
  }
}
.c-about3 .c-about3-1 .c-list li .c-wrap .c-img {
  flex-shrink: 0;
  margin-right: 0.2rem;
  width: 78px;
  height: 78px;
  object-fit: contain;
}
@media (max-width: 767px) {
  .c-about3 .c-about3-1 .c-list li .c-wrap .c-img {
    width: 60px;
    height: 60px;
    margin: 0 0 0.4rem;
  }
}
.c-about3 .c-about3-1 .c-list li .c-wrap .c-title {
  margin: 0 0 0.05rem;
  font-family: 'Poppins-Medium', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
  color: var(--color);
  line-height: 1;
}
.c-about3 .c-about3-1 .c-list li .c-wrap .c-text {
  color: #333;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .c-about3 .c-about3-1 .c-list li .c-wrap .c-text {
    font-size: 16px;
  }
}
.c-about3 .c-about3-2 .c-list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -0.1rem -0.35rem;
}
.c-about3 .c-about3-2 .c-list li {
  display: flex;
  padding: 0 0.1rem 0.35rem;
  width: 50%;
}
.c-about3 .c-about3-2 .c-list li .c-wrap {
  position: relative;
  width: 100%;
}
.c-about3 .c-about3-2 .c-list li .public-img {
  flex-shrink: 0;
  object-fit: contain;
  border-radius: 50%;
  border-radius: 0.14rem;
  overflow: hidden;
}
@media (max-width: 767px) {
  .c-about3 .c-about3-2 .c-list li .public-img {
    border-radius: 10px;
  }
}
.c-about3 .c-about3-2 .c-list li .public-img::before {
  padding-top: calc(220/440*100%);
}
.c-about3 .c-about3-2 .c-list li .c-title {
  margin-top: 0.2rem;
  font-family: 'Poppins-Medium', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
  text-align: center;
}
@media (max-width: 767px) {
  .c-about3 .c-about3-2 .c-list li .c-title {
    width: 100%;
    font-size: 18px;
  }
}
.c-about3 .c-about3-3 > .public-img {
  border-radius: 0.14rem;
}
.c-about3 .c-about3-3 > .public-img::before {
  padding-top: calc(400/900*100%);
}
@media (max-width: 767px) {
  .c-about3 .c-about3-3 > .public-img::before {
    padding-top: 72vw;
  }
}
.c-about3 .c-about3-3 .c-list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -0.18rem;
}
@media (max-width: 767px) {
  .c-about3 .c-about3-3 .c-list {
    margin: 0 -0.1rem;
  }
}
.c-about3 .c-about3-3 .c-list li {
  padding: 0.4rem 0.18rem 0;
  min-width: 340px;
  max-width: 50%;
}
@media (max-width: 1580px) {
  .c-about3 .c-about3-3 .c-list li {
    min-width: auto;
    width: 50%;
  }
}
@media (max-width: 767px) {
  .c-about3 .c-about3-3 .c-list li {
    width: 39%;
    padding: 0.6rem 0.1rem 0;
  }
  .c-about3 .c-about3-3 .c-list li:nth-child(2n) {
    width: 61%;
    max-width: 100%;
  }
}
.c-about3 .c-about3-3 .c-list li .c-num {
  font-family: 'Poppins-Medium', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
  color: var(--color);
}
@media (max-width: 767px) {
  .c-about3 .c-about3-3 .c-list li .c-num {
    font-size: 24px;
    padding-bottom: 0;
  }
}
.c-about3 .c-about3-3 .c-list li .c-text {
  font-family: 'Poppins-Medium', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
}
@media (max-width: 767px) {
  .c-about3 .c-about3-3 .c-list li .c-text {
    color: #333;
  }
}
.c-about3 .c-about3-3 .c-list2 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin: 0.4rem -0.1rem -0.2rem;
}
@media (max-width: 767px) {
  .c-about3 .c-about3-3 .c-list2 {
    margin: 0.6rem -0.1rem -0.2rem;
  }
}
.c-about3 .c-about3-3 .c-list2 li {
  padding: 0 0.1rem 0.2rem;
}
@media (max-width: 767px) {
  .c-about3 .c-about3-3 .c-list2 li {
    width: 25%;
  }
}
.c-about3 .c-about3-3 .c-list2 li img {
  max-height: 50px;
}
.c-about4 .c-about4-1 .c-list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -0.15rem -0.3rem;
}
.c-about4 .c-about4-1 .c-list li {
  padding: 0 0.15rem 0.3rem;
  width: 33.33%;
}
@media (max-width: 767px) {
  .c-about4 .c-about4-1 .c-list li {
    width: 100%;
  }
}
.c-about4 .c-about4-1 .c-list li .c-wrap {
  position: relative;
  perspective: 10rem;
}
@media (max-width: 767px) {
  .c-about4 .c-about4-1 .c-list li .c-wrap {
    perspective: 200vw;
  }
  .c-about4 .c-about4-1 .c-list li .c-wrap .card-front {
    display: none;
  }
  .c-about4 .c-about4-1 .c-list li .c-wrap .card-back {
    display: flex;
  }
  .c-about4 .c-about4-1 .c-list li .c-wrap .card-back .public-img {
    display: flex;
    border-radius: 10px 0 0 10px;
  }
  .c-about4 .c-about4-1 .c-list li .c-wrap .card-back .c-box {
    padding: 15px;
    height: auto;
    align-content: flex-start;
    border-radius: 0 10px 10px 0;
  }
}
.c-about4 .c-about4-1 .c-list li .c-wrap .public-img {
  border-radius: 0.14rem;
  overflow: hidden;
}
@media (max-width: 767px) {
  .c-about4 .c-about4-1 .c-list li .c-wrap .public-img {
    width: 50%;
  }
}
.c-about4 .c-about4-1 .c-list li .c-wrap .public-img::before {
  padding-top: calc(367/280*100%);
}
.c-about4 .c-about4-1 .c-list li .c-wrap .c-box {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  width: 100%;
  height: 100%;
  color: #fff;
  padding: 0.2rem;
  border-radius: 0.14rem;
  overflow: hidden;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  background: var(--color);
  transition: all 0.4s;
}
@media (max-width: 767px) {
  .c-about4 .c-about4-1 .c-list li .c-wrap .c-box {
    position: static;
    width: 50%;
    background: rgba(255, 255, 255, 0.5);
  }
}
.c-about4 .c-about4-1 .c-list li .c-wrap .c-box .c-title {
  margin-bottom: 0.1rem;
  font-family: 'Poppins-Medium', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
}
@media (max-width: 767px) {
  .c-about4 .c-about4-1 .c-list li .c-wrap .c-box .c-title {
    color: #111;
    font-size: 22px;
  }
}
.c-about4 .c-about4-1 .c-list li .c-wrap .c-box .c-text {
  line-height: 1.2;
}
@media (max-width: 767px) {
  .c-about4 .c-about4-1 .c-list li .c-wrap .c-box .c-text {
    color: #666;
  }
}
@media (min-width: 768px) {
  .c-about4 .c-about4-1 .c-list li .c-wrap .card {
    position: relative;
    z-index: 0;
    transform-style: preserve-3d;
    /* 保持子元素的3D变换 */
    transition: transform 0.6s;
    /* 定义翻转动画的过渡效果 
                            */
  }
  .c-about4 .c-about4-1 .c-list li .c-wrap .card-front,
  .c-about4 .c-about4-1 .c-list li .c-wrap .card-back {
    backface-visibility: hidden;
  }
  .c-about4 .c-about4-1 .c-list li .c-wrap .card-back {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    transform: rotateY(180deg);
  }
  .c-about4 .c-about4-1 .c-list li .c-wrap:hover .card {
    transform: rotateY(180deg);
  }
}
.c-about4 .c-about4-2 .swiper {
  padding-bottom: 80px;
}
@media (max-width: 767px) {
  .c-about4 .c-about4-2 .swiper {
    padding-bottom: 30px;
  }
}
.c-about4 .c-about4-2 .swiper .swiper-slide img {
  height: 3rem;
  object-fit: contain;
}
.c-about4 .c-about4-2 .swiper .c-box {
  position: absolute;
  bottom: 0;
  left: 43%;
  z-index: 10;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .c-about4 .c-about4-2 .swiper .c-box {
    left: 50%;
  }
}
.c-about4 .c-about4-2 .swiper .c-box .c-line-box {
  display: inline-block;
  height: 2px;
  width: 74px;
  background: rgba(1, 107, 255, 0.11);
  margin: 0 0 0 7px;
}
.c-about4 .c-about4-2 .swiper .c-box .c-line-box .c-line {
  width: 0;
  height: 100%;
  background: var(--color);
  transition: all 0.4s;
}
.c-about4 .c-about4-2 .swiper .c-box img {
  margin-left: 10px;
  width: 20px;
}
@media (max-width: 991px) {
  .c-about4 .c-about4-2 .swiper .c-box img {
    display: none;
  }
}
.c-about4 .c-about4-3 .c-list li {
  margin-top: 0.4rem;
}
.c-about4 .c-about4-3 .c-list li .c-title {
  font-family: 'Poppins-Medium', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
}
@media (max-width: 767px) {
  .c-about4 .c-about4-3 .c-list li .c-title {
    font-size: 18px;
  }
}
.c-about4 .c-about4-3 .c-list li .c-text {
  color: #666;
}
@media (max-width: 767px) {
  .c-about4 .c-about4-3 .c-list li .c-text {
    font-size: 16px;
    line-height: 1.4;
  }
}
.c-about5 {
  position: relative;
}
.c-about5 .c-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0;
  background: #fff url(../images/about1-bg3.webp) no-repeat left top / 100% 100%;
}
.c-about5 .c-sticky {
  position: sticky;
  position: -webkit-sticky;
  top: 0;
  z-index: 2;
  height: 100vh;
  text-align: center;
  overflow: hidden;
  -webkit-mask: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 10%, #000 40%, #000 60%, rgba(0, 0, 0, 0) 90%, rgba(0, 0, 0, 0) 100%);
  mask: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 10%, #000 40%, #000 60%, rgba(0, 0, 0, 0) 90%, rgba(0, 0, 0, 0) 100%);
}
@media (max-width: 767px) {
  .c-about5 .c-sticky {
    background-size: 380%;
  }
}
.c-about5 .c-sticky .c-main1 {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: #fff;
}
@media (max-width: 767px) {
  .c-about5 .c-sticky .c-main1 {
    color: rgba(255, 255, 255, 0.5);
  }
}
.c-about5 .c-sticky .c-main2 {
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.c-about5 .c-sticky .c-text {
  color: #fff;
  font-family: 'Poppins-Medium', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
  transform: scale(1.5);
  opacity: 0;
}
.c-about5 .c-sticky .c-text span {
  font-family: 'Poppins-Bold', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
}
@media (max-width: 767px) {
  .c-about5 .c-sticky .c-text br {
    display: none;
  }
}
.c-about5 .c-sticky .c-text2 {
  font-family: 'Poppins-Medium', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
  color: #fff;
}
@media (max-width: 767px) {
  .c-about5 .c-sticky .c-text2 {
    font-family: 'Poppins-Bold', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
  }
}
.c-about5 .c-sticky .c-title {
  font-family: 'Poppins-SemiBold', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
  color: #fff;
}
@media (max-width: 767px) {
  .c-about5 .c-sticky .c-title {
    margin-top: 0.2rem;
    font-family: 'Poppins-Bold', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
  }
}
.c-service1 {
  position: relative;
  overflow: hidden;
}
.c-service1 .container {
  max-width: 1400px;
}
.c-service1 .c-img {
  height: calc(720/1920*100vw);
}
@media (max-width: 991px) {
  .c-service1 .c-img {
    height: 80vw;
  }
}
@media (max-width: 767px) {
  .c-service1 .c-img {
    height: 80vw;
  }
}
.c-service1 .c-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.c-service1 .c-wrap {
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 5;
  width: 100%;
  color: #fff;
  text-align: center;
  transform: translateY(-50%);
}
.c-service1 .c-wrap .c-title {
  margin-bottom: 0.1rem;
  font-family: 'Poppins-Bold', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
}
@media (max-width: 767px) {
  .c-service1 .c-wrap .c-title {
    margin-bottom: 0.2rem;
  }
}
.c-service1 .c-wrap .c-text {
  margin: 0 auto;
  max-width: 550px;
}
.c-service-list .container {
  max-width: 1400px;
}
.c-service-list .c-main {
  display: flex;
  align-items: center;
  padding: 1.6rem 0 0;
}
@media (max-width: 767px) {
  .c-service-list .c-main .public-title {
    text-align: left;
  }
}
@media (max-width: 767px) {
  .c-service-list .swiper {
    padding-bottom: 40px;
  }
}
.c-service-list .swiper-pagination {
  bottom: 0;
}
.public-service {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: -1;
  text-align: center;
}
.public-service .c-img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: #fff url(../images/about1-bg3.webp) no-repeat top left / 100% 100%;
  opacity: 0;
}
@media (max-width: 767px) {
  .public-service .c-img {
    background-size: 380%;
  }
}
.public-service .c-wrap {
  position: relative;
  height: 100%;
  z-index: 2;
  -webkit-mask: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 10%, #000 40%, #000 60%, rgba(0, 0, 0, 0) 90%, rgba(0, 0, 0, 0) 100%);
  mask: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 10%, #000 40%, #000 60%, rgba(0, 0, 0, 0) 90%, rgba(0, 0, 0, 0) 100%);
}
.public-service .container {
  position: relative;
  z-index: 5;
  height: 100vh;
}
.public-service .c-title,
.public-service .c-text {
  position: absolute;
  top: 50%;
  left: 50%;
  font-family: 'Poppins-Medium', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
  line-height: 1.1;
  width: 100%;
  max-width: 1100px;
  color: #fff;
}
@media (max-width: 767px) {
  .public-service .c-title,
  .public-service .c-text {
    font-size: 38px;
    line-height: 1.2;
  }
}
.public-service .c-title {
  transform: translate(-50%, -50%) scale(1.5);
  opacity: 0;
}
.public-service .c-text {
  top: 100%;
  transform: translate(-50%, 0);
}
.c-service2 {
  top: 0;
  z-index: 1;
}
@media (max-width: 767px) {
  .c-service2 {
    overflow: hidden;
  }
}
.c-service2 .c-wrap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .c-service2 .c-wrap {
    margin-bottom: 20px;
    box-shadow: 0px 0px 0.3rem 0px rgba(17, 17, 17, 0.05);
    border-radius: 10px;
  }
}
.c-service2 .c-wrap .public-img {
  width: 50%;
  border-radius: 0.14rem;
}
@media (max-width: 991px) {
  .c-service2 .c-wrap .public-img {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .c-service2 .c-wrap .public-img {
    border-radius: 10px 10px 0 0;
  }
}
.c-service2 .c-wrap .public-img::before {
  padding-top: calc(540/700*100%);
}
.c-service2 .c-wrap .c-box {
  padding-left: 1.1rem;
  width: 50%;
}
@media (max-width: 1260px) {
  .c-service2 .c-wrap .c-box {
    padding-left: 0.6rem;
  }
}
@media (max-width: 991px) {
  .c-service2 .c-wrap .c-box {
    position: relative;
    z-index: 5;
    margin-top: -10px;
    padding: 30px 20px 20px;
    width: 100%;
    background: #fff;
    border-radius: 10px;
    border: 1px solid #fcfcfc;
  }
}
@media (max-width: 767px) {
  .c-service2 .c-wrap .c-box {
    background: #fff url(../images/service3-bg.webp) no-repeat top -3rem center / 120% auto;
  }
}
.c-service2 .c-wrap .c-box .c-list li {
  margin-bottom: 0.6rem;
}
@media (max-width: 991px) {
  .c-service2 .c-wrap .c-box .c-list li {
    margin-bottom: 0.6rem;
  }
}
.c-service2 .c-wrap .c-box .c-list li:last-child {
  margin-bottom: 0;
}
.c-service2 .c-wrap .c-box .c-list li .c-title {
  margin-bottom: 0.1rem;
  font-family: 'Poppins-Medium', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
  line-height: 1.2;
}
@media (max-width: 767px) {
  .c-service2 .c-wrap .c-box .c-list li .c-title {
    width: 90%;
  }
}
.c-service2 .c-wrap .c-box .c-list li .c-text {
  color: #666;
}
@media (max-width: 767px) {
  .c-service2 .c-wrap .c-box .c-list li .c-text {
    line-height: 1.4;
  }
}
.c-service3 {
  z-index: 3;
  overflow: hidden;
  padding-bottom: 1.6rem;
}
.c-service3 .swiper {
  overflow: visible;
}
.c-service3 .c-list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -0.15rem -0.3rem;
  width: auto;
}
@media (max-width: 767px) {
  .c-service3 .c-list {
    margin: 0;
    width: 100%;
    flex-wrap: nowrap;
  }
}
.c-service3 .c-list li {
  padding: 0 0.15rem 0.3rem;
  width: 33.33%;
}
@media (max-width: 991px) {
  .c-service3 .c-list li {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .c-service3 .c-list li {
    padding: 0;
    width: 100%;
  }
}
.c-service3 .c-list li .public-img {
  border-radius: 0.2rem;
}
@media (max-width: 767px) {
  .c-service3 .c-list li .public-img {
    border-radius: 10px;
  }
}
.c-service3 .c-list li .public-img::before {
  padding-top: calc(320/440*100%);
}
.c-service3 .c-list li .c-box {
  position: relative;
  z-index: 5;
  margin-top: -0.4rem;
  padding: 0.35rem 0.25rem;
  border-radius: 0.2rem;
  background: #fff url(../images/service3-bg.webp) no-repeat top -2rem center / 120% auto;
  border: 1px solid #fcfcfc;
  box-shadow: 0px 0px 0.3rem 0px rgba(17, 17, 17, 0.05);
}
@media (max-width: 767px) {
  .c-service3 .c-list li .c-box {
    border-radius: 10px;
  }
}
@media (max-width: 767px) {
  .c-service3 .c-list li .c-box {
    padding: 30px 20px;
    background: #fff url(../images/service3-bg.webp) no-repeat top -3rem center / 120% auto;
  }
}
.c-service3 .c-list li .c-box .c-title {
  font-family: 'Poppins-Medium', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
}
@media (max-width: 767px) {
  .c-service3 .c-list li .c-box .c-title {
    line-height: 1.1;
  }
}
.c-service3 .c-list li .c-box .c-text {
  color: #666;
}
@media (max-width: 767px) {
  .c-service3 .c-list li .c-box .c-text {
    margin-top: 0.2rem;
    line-height: 1.4;
  }
}
.c-service4 {
  z-index: 4;
}
.c-service4 .c-main {
  padding: 0;
}
.c-service4 .public-title .c-text {
  margin-left: auto;
  margin-right: auto;
  max-width: 1000px;
}
@media (max-width: 767px) {
  .c-service4 .public-title .c-text {
    line-height: 1.4;
  }
}
.c-service4 .c-wrap .public-img {
  border-radius: 0.2rem;
}
@media (max-width: 767px) {
  .c-service4 .c-wrap .public-img {
    border-radius: 10px;
  }
}
.c-service4 .c-wrap .public-img::before {
  padding-top: calc(540/1400*100%);
}
@media (max-width: 767px) {
  .c-service4 .c-wrap .public-img::before {
    padding-top: 128%;
  }
}
@media (max-width: 767px) {
  .c-service4 .c-wrap .public-img .c-img1 {
    display: none;
  }
}
.c-service4 .c-wrap .public-img .c-img1:nth-child(2) {
  display: none;
}
@media (max-width: 767px) {
  .c-service4 .c-wrap .public-img .c-img1:nth-child(2) {
    display: block;
  }
}
@media (max-width: 767px) {
  .c-service4 .c-wrap .public-img .c-img2 {
    display: none;
  }
}
.c-service4 .c-wrap .public-img .c-img2:nth-child(2) {
  display: none;
}
@media (max-width: 767px) {
  .c-service4 .c-wrap .public-img .c-img2:nth-child(2) {
    display: block;
  }
}
.c-service4 .c-wrap .public-img img {
  max-width: none;
  width: auto;
  object-fit: cover;
  height: 100%;
}
.c-service4 .c-wrap .public-img .c-img2-box {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  width: 50%;
  height: 100%;
  overflow: hidden;
}
.c-service4 .c-wrap .public-img .c-img2-box::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  border-left: 2px solid var(--color);
  height: 100%;
}
.c-service4 .c-wrap .public-img .c-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 10;
  width: 50px;
  height: 50px;
  transform: translate(-50%, -50%);
  cursor: pointer;
}
@media (max-width: 767px) {
  .c-service4 .c-wrap .public-img .c-btn {
    width: 30px;
    height: 30px;
  }
}
.c-service5 {
  z-index: 5;
  overflow: hidden;
}
.c-service5 .c-main {
  padding: 1.6rem 0;
}
.c-service5 .c-wrap {
  position: relative;
}
.c-service5 .c-wrap .swiper {
  margin: 0;
  width: 75%;
  mask: linear-gradient(to right, #000000 0%, #000000 60%, rgba(0, 0, 0, 0) 67%, rgba(0, 0, 0, 0) 100%);
  -wekit-mask: linear-gradient(to right, #000000 0%, #000000 60%, rgba(0, 0, 0, 0) 67%, rgba(0, 0, 0, 0) 100%);
}
@media (max-width: 767px) {
  .c-service5 .c-wrap .swiper {
    margin: 0 -5vw;
    overflow: visible;
    width: auto;
    mask: linear-gradient(to right, #000000 0%, #000000 100%);
    -wekit-mask: linear-gradient(to right, #000000 0%, #000000 100%);
  }
}
.c-service5 .c-wrap .swiper .public-img {
  border-radius: 0.14rem;
}
@media (max-width: 767px) {
  .c-service5 .c-wrap .swiper .public-img {
    border-radius: 10px;
  }
}
.c-service5 .c-wrap .c-text {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 10;
  width: 50%;
  height: 100%;
  padding: 0.7rem 0 0.7rem 1.3rem;
  color: #666;
}
@media (max-width: 1260px) {
  .c-service5 .c-wrap .c-text {
    padding: 0 0 0 0.8rem;
  }
}
@media (max-width: 767px) {
  .c-service5 .c-wrap .c-text {
    position: static;
    padding: 0;
    width: 100%;
    line-height: 1.4;
    color: #666;
  }
}
@media (max-width: 767px) {
  .x-rosc3.product {
    padding: 1.6rem 0;
  }
}
.x-rosc3.product .x-deli2 .x-container2 .x-xia {
  padding: 0;
  margin: 0;
}
@media (max-width: 991px) {
  .x-rosc3.product .x-deli2 .x-container2 .x-xia .x-le {
    width: 44%;
  }
}
.x-rosc3.product .x-deli2 .x-container2 .x-xia .x-le ul li {
  border-bottom: 1px solid #bbb;
}
.x-rosc3.product .x-deli2 .x-container2 .x-xia .x-le ul li.on .x-tit {
  color: #111;
}
.x-rosc3.product .x-deli2 .x-container2 .x-xia .x-le ul li::before {
  border-color: var(--color);
}
.x-rosc3.product .x-deli2 .x-container2 .x-xia .x-le ul li .x-tit {
  color: #111;
}
.x-rosc3.product .x-deli2 .x-container2 .x-xia .x-ri {
  width: 50%;
}
@media (max-width: 767px) {
  .x-rosc3.product .x-deli2 .x-container2 .x-xia .x-ri {
    width: 100%;
  }
}
.x-rosc3.product .x-deli2 .x-container2 .x-xia .x-ri .swiper .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--color);
}
@media (max-width: 767px) {
  .x-rosc3.product .x-deli2 .x-container2 .x-xia .x-ri .swiper .swiper-wrapper .swiper-slide {
    display: flex;
    flex-direction: column-reverse;
    padding: 0;
  }
  .x-rosc3.product .x-deli2 .x-container2 .x-xia .x-ri .swiper .swiper-wrapper .swiper-slide .x-box-yd {
    margin: 0 0 0.4rem;
  }
  .x-rosc3.product .x-deli2 .x-container2 .x-xia .x-ri .swiper .swiper-wrapper .swiper-slide .x-box-yd .x-tit {
    font-size: 30px;
  }
}
.x-rosc3.product .x-deli2 .x-container2 .x-xia .x-ri .swiper .swiper-wrapper .swiper-slide .x-box-yd .x-tit {
  color: #111;
}
@media (max-width: 767px) {
  .x-rosc3.product .x-deli2 .x-container2 .x-xia .x-ri .swiper .swiper-wrapper .swiper-slide .x-box-yd .x-p {
    font-size: 18px;
  }
}
.x-rosc3.product .x-deli2 .x-container2 .x-xia .x-ri .swiper .swiper-wrapper .swiper-slide .public-img {
  border-radius: 0.14rem;
}
.x-rosc3.product .x-deli2 .x-container2 .x-xia .x-ri .swiper .swiper-wrapper .swiper-slide .public-img::before {
  padding-top: calc(656/700*100%);
  border-radius: 0.14rem;
}
.x-rosc3.product .x-deli2 .x-container2 .x-xia .x-ri .swiper .swiper-wrapper .swiper-slide .public-img img {
  object-fit: cover;
}
.x-rosc3.product .x-deli2 .x-container2 .x-xia .x-ri .c-list2 {
  right: -40px;
}
.x-rosc3.product .x-deli2 .x-container2 .x-xia .x-ri .c-list2 li {
  background: var(--color);
}
#default-progress-bar > .bar {
  display: none !important;
  /* 隐藏进度条 */
}
.public-crumbs {
  padding: 0.25rem 0;
  color: #999;
}
.public-crumbs .c-box {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
}
.public-crumbs a {
  transition: all 0.4s;
}
.public-crumbs a:nth-last-child(2) {
  color: #333;
}
.public-crumbs a:hover {
  color: var(--color);
}
.public-crumbs span {
  margin: 0 0.1rem;
}
.public-crumbs span:last-child {
  display: none;
}
.public-page {
  padding-bottom: 1.5rem;
}
.public-page .container {
  max-width: 1000px;
}
.public-page .c-title {
  margin: 0.4rem 0 0.3rem;
  text-align: center;
  font-family: 'Poppins-SemiBold', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
}
.public-page .public-content {
  color: #333;
  line-height: 1.66666667;
}
.public-page2-main {
  background: url(../images/contact-bg.jpg) no-repeat left top / cover;
}
.public-page2 {
  color: #fff;
  padding-top: 90px;
}
@media (max-width: 1580px) {
  .public-page2 {
    padding-top: 70px;
  }
}
@media (max-width: 767px) {
  .public-page2 {
    padding-top: 60px;
  }
}
.public-page2 .public-crumbs {
  color: #fff;
}
@media (max-width: 991px) {
  .public-page2 .public-crumbs {
    display: none;
  }
}
.public-page2 .public-crumbs a {
  color: #fff;
}
.public-page2 .public-box a {
  background: transparent;
  border: 1px solid #fff;
}
.public-page2 .public-box a:hover {
  color: var(--color);
  background: #fff;
}
.public-page2.c-404 .c-main-box .public-box,
.public-page2.c-tank .c-main-box .public-box {
  transform: translateY(-0.7rem);
}
.public-page2 .container {
  max-width: 1400px;
}
.public-page2 .c-main-box {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem 0;
  min-height: 8rem;
}
@media (max-width: 1580px) {
  .public-page2 .c-main-box {
    min-height: 45vw;
  }
}
@media (max-width: 991px) {
  .public-page2 .c-main-box {
    min-height: calc(100vh - 100px);
  }
}
.public-page2 .c-main-box .public-title .c-title,
.public-page2 .c-main-box .public-title .c-text {
  color: #fff;
}
.public-page2.c-form .c-main-box {
  padding-top: 0.4rem;
}
.public-page2.c-form .c-main-box > div {
  width: 100%;
}
.public-page2.c-form .c-product6 {
  padding: 0;
  background: transparent;
  color: #000;
}
.public-page2.c-form .c-product6 .container {
  max-width: 1400px;
}
.public-page2.c-form .c-product6 .c-bg {
  display: none;
}
.public-page2.c-form .c-product6 .c-main {
  margin: 0;
  padding-top: 0;
}
.public-page2.c-form .c-product6 .c-main form {
  padding: 0.7rem 1.5rem;
}
@media (max-width: 1260px) {
  .public-page2.c-form .c-product6 .c-main form {
    padding: 0.7rem 0.6rem;
  }
}
@media (max-width: 767px) {
  .public-page2.c-form .c-product6 .c-main form {
    padding: 30px 20px;
  }
}
.hi-sitemap3 {
  margin-top: -0.3rem;
}
.hi-sitemap3 .c-list > li {
  padding: 0.55rem 0;
  border-bottom: 1px solid #ddd;
}
.hi-sitemap3 .c-list > li .c-title2 {
  font-family: 'Poppins-Bold', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
  line-height: 1.2;
}
.hi-sitemap3 .c-list > li ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -0.1rem;
}
@media (max-width: 767px) {
  .hi-sitemap3 .c-list > li ul {
    margin: 0 -0.2rem;
  }
}
.hi-sitemap3 .c-list > li ul li {
  width: 25%;
  padding: 0.1rem 0.1rem 0 0.1rem;
}
@media (max-width: 767px) {
  .hi-sitemap3 .c-list > li ul li {
    padding: 0.1rem 0.2rem 0 0.2rem;
    width: auto;
  }
}
.hi-sitemap3 .c-list > li ul li a {
  transition: all 0.3s;
}
.hi-sitemap3 .c-list > li ul li a:hover {
  color: var(--color);
}
.hi-404-2 {
  text-align: center;
  transform: translateY(-0.8rem);
}
.hi-404-2 a {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0 0.3rem;
  height: 50px;
  min-width: 1.5rem;
  border-radius: 25px;
  border: 1px solid #fff;
  color: #fff;
  transition: all 0.4s;
  cursor: pointer;
  overflow: hidden;
  background: transparent;
}
@media (max-width: 767px) {
  .hi-404-2 a {
    height: 0.8rem;
    border-radius: 0.4rem;
  }
}
.hi-404-2 a img,
.hi-404-2 a svg {
  position: relative;
  z-index: 5;
  width: 16px;
  height: 16px;
  object-fit: contain;
  margin-right: 0.1rem;
}
.hi-404-2 a span {
  position: relative;
  z-index: 5;
}
.hi-404-2 a:hover {
  color: var(--color);
  background: #fff;
}
.hi-404-2 .c-img {
  width: 430px;
}
.hi-404-2 .c-text2 {
  margin: 0.3rem 0 1rem;
}
.public-box {
  text-align: center;
  max-width: 850px;
  margin: 0 auto;
}
.public-box .c-img {
  width: 85px;
  height: 70px;
  object-fit: contain;
}
.public-box .c-title {
  margin: 0.4rem 0 0.2rem;
  font-family: 'Poppins-Bold', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
}
.public-box .c-btn-box {
  margin-top: 0.45rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.public-box a {
  margin: 0 5px;
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0 0.3rem;
  height: 50px;
  min-width: 1.5rem;
  border-radius: 25px;
  color: #fff;
  background-color: var(--color);
  transition: all 0.4s;
  cursor: pointer;
  overflow: hidden;
  background: var(--color);
}
@media (max-width: 767px) {
  .public-box a {
    height: 0.8rem;
    border-radius: 0.4rem;
  }
}
.public-box a img,
.public-box a svg {
  position: relative;
  z-index: 5;
  width: 16px;
  height: 16px;
  object-fit: contain;
  margin-right: 0.1rem;
}
.public-box a span {
  position: relative;
  z-index: 5;
}
.public-box a:hover {
  background: rgba(1, 107, 255, 0.9);
}
#c-cookie-pop {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 0.15rem;
  padding: 0.4rem;
  width: 640px;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
@media (max-width: 991px) {
  #c-cookie-pop {
    width: calc(100% - 40px);
  }
}
@media (max-width: 767px) {
  #c-cookie-pop {
    border-radius: 10px;
  }
}
#c-cookie-pop .c-close {
  position: absolute;
  top: 0.1rem;
  right: 0.1rem;
  width: 20px;
  height: 20px;
  cursor: pointer;
  transition: all 0.4s;
}
#c-cookie-pop .c-close img,
#c-cookie-pop .c-close svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
#c-cookie-pop .c-close:hover {
  color: var(--color);
}
#c-cookie-pop .c-title {
  font-family: 'Poppins-Bold', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
}
#c-cookie-pop .c-text {
  margin: 0.1rem 0 0.55rem;
  color: rgba(51, 51, 51, 0.7);
}
#c-cookie-pop .c-btn-box {
  display: flex;
  align-items: center;
}
#c-cookie-pop .c-btn-box .c-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.4rem;
  height: 46px;
  border-radius: 28px;
  border: 1px solid var(--color);
  color: var(--color);
  margin-right: 0.2rem;
  transition: all 0.4s;
  cursor: pointer;
}
@media (max-width: 767px) {
  #c-cookie-pop .c-btn-box .c-btn {
    height: 40px;
    border-radius: 20px;
  }
}
#c-cookie-pop .c-btn-box .c-btn:hover {
  color: #fff;
  background: var(--color);
}
#c-contact-pop {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  opacity: 0;
  transition: all 0.4s;
  pointer-events: none;
}
#c-contact-pop.on {
  opacity: 1;
  pointer-events: auto;
}
#c-contact-pop .c-product6 {
  padding: 0;
  background: transparent;
}
#c-contact-pop .c-product6 .c-bg {
  display: none;
}
#c-contact-pop .c-product6 .c-main {
  margin: 0;
}
#c-contact-pop .c-product6 .c-main .container {
  max-width: 1400px;
}
#c-contact-pop .c-product6 .c-main form {
  position: relative;
}
#c-contact-pop .c-product6 .c-main form .c-close {
  position: absolute;
  top: 0;
  right: -70px;
  width: 44px;
  height: 44px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s;
}
@media (max-width: 1260px) {
  #c-contact-pop .c-product6 .c-main form .c-close {
    right: 0;
  }
}
#c-contact-pop .c-product6 .c-main form .c-close img,
#c-contact-pop .c-product6 .c-main form .c-close svg {
  width: 50%;
  height: 50%;
}
@media (min-width: 1261px) {
  #c-contact-pop .c-product6 .c-main form .c-close:hover {
    color: #fff;
    background: var(--color);
  }
}
@media (max-width: 1260px) {
  #c-contact-pop .c-product6 .c-main form .c-close:hover {
    color: var(--color);
  }
}
#c-contact-pop .c-product6 .c-main .c-list {
  height: 55vh;
  overflow-y: auto;
}
.public-menu {
  background: #f5f5f5;
  border-radius: 30px;
}
.public-menu .c-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  border-radius: 30px;
  transition: all 0.4s;
  background: var(--color);
}
.public-menu .c-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.4s;
}
@media (max-width: 991px) {
  .public-menu .c-wrap {
    height: 50px;
    border-radius: 25px;
  }
}
.public-menu .on .c-wrap {
  color: #fff;
  transform: translateX();
}
.c-solution {
  padding: 0.6rem 0 0;
}
@media (max-width: 767px) {
  .c-solution {
    padding: 1.2rem 0 0;
  }
}
.c-solution .container {
  max-width: 1400px;
}
.c-solution > .container {
  position: sticky;
  position: -webkit-sticky;
  top: 20px;
  z-index: 10;
}
@media (max-width: 767px) {
  .c-solution > .container {
    position: static;
  }
}
.c-solution .c-list {
  margin-top: 1.3rem;
}
@media (max-width: 767px) {
  .c-solution .c-list {
    margin-top: 0.8rem;
  }
}
.c-solution .c-list li {
  position: sticky;
  position: -webkit-sticky;
  top: 0;
  overflow: hidden;
  background: #fff;
}
@media (max-width: 767px) {
  .c-solution .c-list li {
    position: static;
    padding-top: 0.4rem;
  }
  .c-solution .c-list li:last-child {
    padding-bottom: 0;
  }
}
.c-solution .c-list li .container {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .c-solution .c-list li .container {
    flex-direction: column-reverse !important;
    flex-wrap: wrap;
  }
}
.c-solution .c-list li:nth-child(2n) .container {
  flex-direction: row-reverse;
}
.c-solution .c-list li:nth-child(2n) .container .c-box {
  padding: 1.3rem 0 1.3rem 1.3rem;
}
@media (max-width: 991px) {
  .c-solution .c-list li:nth-child(2n) .container .c-box {
    padding: 0.8rem 0 0.8rem 0.8rem;
  }
}
.c-solution .c-list li .c-box {
  width: 50%;
  flex-shrink: 0;
  padding: 1.3rem 1.3rem 1.3rem 0;
}
@media (max-width: 991px) {
  .c-solution .c-list li .c-box {
    padding: 0.8rem 0.8rem 0.8rem 0;
  }
}
@media (max-width: 767px) {
  .c-solution .c-list li .c-box {
    padding: 20px 0 60px 0 !important;
    width: 100%;
  }
}
.c-solution .c-list li .c-box .c-title {
  font-family: 'Poppins-Bold', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
}
@media (max-width: 767px) {
  .c-solution .c-list li .c-box .c-title {
    font-size: 24px;
  }
}
.c-solution .c-list li .c-box .c-subtitle {
  margin: 0.3rem 0 0.1rem;
  font-family: 'Poppins-Medium', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
}
@media (max-width: 767px) {
  .c-solution .c-list li .c-box .c-subtitle {
    font-size: 20px;
  }
}
.c-solution .c-list li .c-box .c-text {
  color: #666;
}
@media (max-width: 767px) {
  .c-solution .c-list li .c-box .c-text {
    font-size: 14px;
  }
}
.c-solution .c-list li .public-img {
  width: 50vw;
  flex-shrink: 0;
  background: url(../images/solution-bg.jpg) no-repeat center center / cover;
}
@media (max-width: 767px) {
  .c-solution .c-list li .public-img {
    width: 100%;
    border-radius: 10px;
  }
}
@media (max-width: 767px) {
  .c-solution .public-menu {
    background: transparent;
    border-radius: 0;
    margin-bottom: -5vw;
  }
  .c-solution .public-menu .swiper-wrapper {
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .c-solution .public-menu .swiper-wrapper .swiper-slide {
    width: 48%;
    margin-bottom: 5vw;
    background: #f5f5f5;
    border-radius: 25px;
  }
  .c-solution .public-menu .swiper-wrapper .swiper-slide.on {
    background: var(--color);
  }
}
.c-news2 .container {
  max-width: 1400px;
}
.c-news2 .c-main-title {
  padding: 0.4rem 0 0.45rem;
  text-align: center;
  font-family: 'Poppins-Bold', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
}
.c-news2 .c-list {
  padding: 0.4rem 0 1.4rem;
}
.c-news2 .c-list > li {
  margin-bottom: 0.3rem;
  border-radius: 0.15rem;
  border: solid 1px #dddddd;
  transition: all 0.4s;
}
.c-news2 .c-list > li:last-child {
  margin: 0;
}
@media (max-width: 767px) {
  .c-news2 .c-list > li {
    border-radius: 10px;
  }
}
.c-news2 .c-list > li.on {
  box-shadow: 0px 0.05rem 0.3rem 0px rgba(15, 60, 74, 0.16);
  border-color: transparent;
}
.c-news2 .c-list > li.on .c-top .c-arrow {
  transform: rotate(270deg);
}
.c-news2 .c-list > li .c-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.35rem 0.3rem;
  cursor: pointer;
}
.c-news2 .c-list > li .c-top .c-title-box {
  display: flex;
  align-items: center;
  font-family: 'Poppins-Bold', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
}
.c-news2 .c-list > li .c-top .c-title-box img {
  margin-right: 0.1rem;
  width: 26px;
  height: 26px;
  object-fit: contain;
}
@media (max-width: 767px) {
  .c-news2 .c-list > li .c-top .c-title-box img {
    width: 16px;
    height: 16px;
  }
}
.c-news2 .c-list > li .c-top .c-title-box .c-title {
  color: var(--color);
}
@media (max-width: 767px) {
  .c-news2 .c-list > li .c-top .c-title-box .c-title {
    font-size: 18px;
  }
}
.c-news2 .c-list > li .c-top .c-arrow {
  width: 16px;
  height: 16px;
  object-fit: contain;
  color: var(--color);
  transform: rotate(90deg);
  transition: all 0.4s;
}
.c-news2 .c-list > li .c-bottom {
  display: none;
  position: relative;
  padding: 0.4rem 0.3rem;
}
.c-news2 .c-list > li .c-bottom::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0.3rem;
  width: calc(100% - 0.6rem);
  border-top: 1px solid #ddd;
}
.c-news2 .c-list > li .c-bottom .public-list3 {
  overflow-y: auto;
  max-height: 450px;
}
@media (max-width: 1580px) {
  .c-news2 .c-list > li .c-bottom .public-list3 {
    max-height: 300px;
  }
}
@media (max-width: 767px) {
  .c-news2 .public-menu {
    background: transparent;
    border-radius: 0;
    margin-bottom: -5vw;
  }
  .c-news2 .public-menu .swiper-wrapper {
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .c-news2 .public-menu .swiper-wrapper .swiper-slide {
    width: 48%;
    margin-bottom: 5vw;
    background: #f5f5f5;
    border-radius: 25px;
  }
  .c-news2 .public-menu .swiper-wrapper .swiper-slide.on {
    background: var(--color);
  }
}
.c-news {
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .c-news {
    padding-top: 1.6rem;
  }
}
.c-news .container {
  max-width: 1400px;
}
.c-news .c-top .c-box {
  margin-top: -0.55rem;
  padding: 0.55rem 0.8rem;
  background: #fff;
  border-radius: 0.15rem;
  color: #666;
  text-align: center;
}
@media (max-width: 767px) {
  .c-news .c-top .c-box {
    display: none;
    padding: 0.4rem;
    border-radius: 10px;
  }
}
.c-news .c-center {
  text-align: center;
  overflow: hidden;
  padding: 0 0 0.75rem;
}
.c-news .c-center .c-title {
  margin-bottom: 0.35rem;
  font-family: 'Poppins-Bold', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
}
.c-news .c-center .swiper {
  overflow: visible;
}
@media (max-width: 767px) {
  .c-news .c-center .swiper .swiper-wrapper {
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .c-news .c-center .swiper .swiper-wrapper .swiper-slide {
    margin-bottom: 5vw;
    width: 48%;
  }
}
.c-news .c-center .swiper .c-wrap {
  display: block;
  padding: 0.4rem 0.3rem 0.3rem;
  border: 1px solid #ddd;
  border-radius: 0.15rem;
  transition: all 0.4s;
}
@media (max-width: 1580px) {
  .c-news .c-center .swiper .c-wrap {
    padding: 0.3rem 0.2rem 0.2rem;
  }
}
@media (max-width: 767px) {
  .c-news .c-center .swiper .c-wrap {
    border-radius: 10px;
  }
}
.c-news .c-center .swiper .c-wrap .c-ico {
  position: relative;
  display: inline-flex;
}
.c-news .c-center .swiper .c-wrap .c-ico img {
  width: 55px;
  height: 55px;
  object-fit: contain;
  transition: all 0.4s;
}
@media (max-width: 767px) {
  .c-news .c-center .swiper .c-wrap .c-ico img {
    width: 40px;
    height: 40px;
  }
}
.c-news .c-center .swiper .c-wrap .c-ico img:nth-child(2) {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.c-news .c-center .swiper .c-wrap .c-title {
  margin: 35px 0 -10px;
  font-family: 'Poppins-Medium', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
  transition: all 0.4s;
}
@media (max-width: 1580px) {
  .c-news .c-center .swiper .c-wrap .c-title {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .c-news .c-center .swiper .c-wrap .c-title {
    margin: 0.1rem 0 0;
  }
}
.c-news .c-center .swiper .c-wrap .c-more {
  opacity: 0;
  width: 10px;
  height: 10px;
  object-fit: contain;
  transition: all 0.4s;
  transform: rotate(45deg);
}
@media (max-width: 767px) {
  .c-news .c-center .swiper .c-wrap .c-more {
    display: none;
  }
}
@media (min-width: 768px) {
  .c-news .c-center .swiper .c-wrap:hover {
    background: var(--color);
    border-color: var(--color);
    box-shadow: 0px 5px 30px 0px rgba(1, 107, 255, 0.3);
  }
  .c-news .c-center .swiper .c-wrap:hover .c-ico img {
    opacity: 0;
  }
  .c-news .c-center .swiper .c-wrap:hover .c-ico img:nth-child(2) {
    opacity: 1;
  }
  .c-news .c-center .swiper .c-wrap:hover .c-title {
    color: #fff;
    transform: translateY(-15px);
  }
  .c-news .c-center .swiper .c-wrap:hover .c-more {
    opacity: 1;
    color: #fff;
  }
}
.c-news .c-bottom .c-title {
  margin-bottom: 0.4rem;
  color: #999;
}
.c-news .c-bottom .c-list {
  padding-bottom: 1.15rem;
}
@media (max-width: 991px) {
  .c-news .c-bottom .c-list {
    padding-bottom: 1.3rem;
  }
}
.c-news .c-bottom .c-list li {
  margin-bottom: 0.3rem;
}
.c-news .c-bottom .c-list li .c-wrap {
  display: flex;
  align-items: flex-start;
  padding: 0.3rem;
  border-radius: 0.15rem;
  border: solid 1px #dddddd;
  transition: all 0.4s;
}
@media (max-width: 767px) {
  .c-news .c-bottom .c-list li .c-wrap {
    flex-wrap: wrap;
    border-radius: 10px;
  }
}
.c-news .c-bottom .c-list li .c-wrap .public-img {
  width: 384px;
  flex-shrink: 0;
  border-radius: 0.15rem;
}
@media (max-width: 991px) {
  .c-news .c-bottom .c-list li .c-wrap .public-img {
    width: 300px;
  }
}
@media (max-width: 767px) {
  .c-news .c-bottom .c-list li .c-wrap .public-img {
    width: 100%;
    border-radius: 10px;
  }
}
.c-news .c-bottom .c-list li .c-wrap .public-img::before {
  padding-top: calc(240/384*100%);
}
.c-news .c-bottom .c-list li .c-wrap .c-box {
  width: 100%;
  padding: 0.2rem 1rem 0.2rem 0.65rem;
}
@media (max-width: 991px) {
  .c-news .c-bottom .c-list li .c-wrap .c-box {
    padding: 0.2rem 0.2rem 0.2rem 0.4rem;
  }
}
@media (max-width: 767px) {
  .c-news .c-bottom .c-list li .c-wrap .c-box {
    padding: 0.4rem 0 0;
  }
}
.c-news .c-bottom .c-list li .c-wrap .c-box .c-time {
  color: #999;
}
.c-news .c-bottom .c-list li .c-wrap .c-box .c-title2 {
  margin: 0.1rem 0 0.6rem;
  line-height: 1.3;
  height: 2.6em;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
}
.c-news .c-bottom .c-list li .c-wrap .c-box .c-more {
  display: inline-flex;
  align-items: center;
  color: #666;
  transition: all 0.4s;
}
.c-news .c-bottom .c-list li .c-wrap .c-box .c-more .c-ico {
  margin-left: 0.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  color: #fff;
  background: #355ef7;
  border-radius: 50%;
}
.c-news .c-bottom .c-list li .c-wrap .c-box .c-more .c-ico img,
.c-news .c-bottom .c-list li .c-wrap .c-box .c-more .c-ico svg {
  width: 10px;
  height: 10px;
  object-fit: contain;
}
.c-news .c-bottom .c-list li .c-wrap:hover {
  border-color: transparent;
  box-shadow: 0px 5px 30px 0px rgba(15, 60, 74, 0.16);
}
.c-news .c-bottom .c-list li .c-wrap:hover .public-img img {
  transform: scale(1.05);
}
.c-news .c-bottom .c-list li .c-wrap:hover .c-box .c-more {
  color: var(--color);
}
.c-news .c-bottom .c-list li .c-wrap:hover .c-box .c-more .c-ico img,
.c-news .c-bottom .c-list li .c-wrap:hover .c-box .c-more .c-ico svg {
  animation: arrow 0.8s;
}
.c-search {
  padding: 0.7rem 0 1.4rem;
}
@media (max-width: 767px) {
  .c-search {
    padding: 0.8rem 0;
  }
  .c-search .public-menu {
    background: transparent;
    border-radius: 0;
    margin-bottom: -5vw;
  }
  .c-search .public-menu .swiper-wrapper {
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .c-search .public-menu .swiper-wrapper .swiper-slide {
    width: 48%;
    margin-bottom: 5vw;
    background: #f5f5f5;
    border-radius: 25px;
  }
  .c-search .public-menu .swiper-wrapper .swiper-slide.on {
    background: var(--color);
  }
}
.c-search .container {
  max-width: 1400px;
}
.c-search .c-item {
  padding: 0.75rem 0 0;
}
.c-search .public-list li .c-wrap {
  background: #f2f9ff;
}
.c-news-info {
  padding: 0 0 1.6rem;
}
.c-news-info .container {
  max-width: 1000px;
}
.c-news-info .c-main-title {
  margin: 0.35rem 0;
  font-family: 'Poppins-Bold', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
}
.c-news-info .c-box-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.35rem;
  padding: 15px 30px;
  background-color: #f5f5f5;
  border-radius: 10px;
  color: #999;
}
@media (max-width: 1580px) {
  .c-news-info .c-box-wrap {
    padding: 15px;
  }
}
@media (max-width: 767px) {
  .c-news-info .c-box-wrap {
    flex-wrap: wrap;
  }
}
.c-news-info .c-box-wrap .c-photo-box {
  display: flex;
  align-items: center;
}
.c-news-info .c-box-wrap .c-photo-box .c-img {
  flex-shrink: 0;
  margin-right: 0.1rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
}
.c-news-info .c-box-wrap .c-photo-box p:nth-child(2) {
  color: var(--color);
}
.c-news-info .c-box-wrap .c-time-box {
  padding-left: 0.3rem;
  border-left: 1px solid rgba(221, 221, 221, 0.5);
  color: #999;
}
.c-news-info .c-box-wrap .c-time-box p:nth-child(2) {
  color: #333;
}
@media (max-width: 767px) {
  .c-news-info .c-box-wrap .c-time-box {
    width: 100%;
    padding: 10px 0;
    border: 0;
  }
}
.c-news-info .c-box-wrap .c-share {
  color: #fff;
}
.c-news-info .public-content {
  color: #333;
  line-height: 1.66666667;
}
.c-news-info .public-content img {
  margin: 10px 0;
}
.c-news-info .c-character {
  display: flex;
  align-items: flex-start;
  margin-top: 0.45rem;
  padding: 0.5rem;
  background-color: #f8f8f8;
  border-radius: 0.15rem;
}
@media (max-width: 767px) {
  .c-news-info .c-character {
    padding: 20px;
    flex-wrap: wrap;
    border-radius: 10px;
  }
}
.c-news-info .c-character .public-img {
  margin-right: 0.5rem;
  flex-shrink: 0;
  width: 1.2rem;
  border-radius: 50%;
}
.c-news-info .c-character .c-box .c-text {
  padding-top: 0.15rem;
  color: #999;
}
.c-news-info .c-character .c-box .c-text2 {
  margin: 0.05rem 0 0.2rem;
  font-family: 'Poppins-Bold', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
}
.c-news-info .c-character .c-box .c-text3 {
  color: #333;
  line-height: 1.66666667;
}
.c-news-info .c-prev-next {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.45rem 0;
}
.c-news-info .c-prev-next .c-box {
  color: #999;
}
.c-news-info .c-prev-next .c-box p {
  margin-bottom: 0.1rem;
}
@media (max-width: 767px) {
  .c-news-info .c-prev-next .c-box p {
    margin-bottom: 0.2rem;
  }
}
.c-news-info .c-prev-next .c-box p:last-child {
  margin-bottom: 0;
}
.c-news-info .c-prev-next .c-box a {
  transition: all 0.4s;
}
.c-news-info .c-prev-next .c-box a:hover {
  color: var(--color);
}
.c-news-info .c-prev-next .c-return {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 20px;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  color: #fff;
  background: var(--color);
}
@media (max-width: 1580px) {
  .c-news-info .c-prev-next .c-return {
    width: 50px;
    height: 50px;
  }
}
.c-news-info .c-prev-next .c-return .c-svg {
  width: 35%;
  height: 35%;
  object-fit: contain;
}
.c-news-info .c-related {
  padding-top: 0.35rem;
  border-top: 1px solid #ddd;
}
.c-news-info .c-related .c-list-title {
  margin-bottom: 0.25rem;
  font-family: 'Poppins-Bold', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
}
.c-news-info .c-related .public-list3 li {
  width: 50%;
}
@media (max-width: 767px) {
  .c-news-info .c-related .public-list3 li {
    width: 100%;
  }
}
body a.a2a_i .a2a_svg,
body a.a2a_more .a2a_svg {
  color: #fff !important;
}
body .a2a_svg {
  width: 26px;
  height: 26px;
  line-height: 26px;
}
body .a2a_default_style:not(.a2a_flex_style) > a {
  padding: 0 15px 0 0;
}
@media (max-width: 1580px) {
  body .a2a_default_style:not(.a2a_flex_style) > a {
    padding: 0 10px 0 0;
  }
}
body .a2a_default_style:not(.a2a_flex_style) > a:nth-last-child(2) {
  padding-right: 0;
}
.c-deli6 {
  margin-bottom: 1rem;
  position: relative;
}
@media (max-width: 767px) {
  .c-deli6.mg0 .c-title-box {
    text-align: left;
  }
}
.c-deli6.c-style2 .c-title-box .c-title {
  color: #000;
}
.c-deli6.c-style3 .c-img {
  padding-top: 3rem;
  text-align: center;
}
@media (max-width: 1260px) {
  .c-deli6.c-style3 .c-img {
    padding: 0;
  }
}
.c-deli6.c-style3 .c-img img {
  width: auto;
}
@media (max-width: 767px) {
  .c-deli6 .formatitle {
    text-align: center;
  }
}
.c-deli6 .c-title-box {
  position: absolute;
  top: 1rem;
  left: 0;
  z-index: 5;
  width: 100%;
  text-align: center;
}
@media (max-width: 1260px) {
  .c-deli6 .c-title-box {
    padding-top: 1.6rem;
    position: static;
  }
}
.c-deli6 .c-title-box .c-title {
  font-family: 'Poppins-Bold', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
  color: #fff;
}
.c-deli6 .c-title-box .public-btn {
  margin-top: 0.55rem;
}
.c-deli6 .c-img img {
  width: 100%;
}
.technology-deliflow .x-deli1.c-style2 .x-container2 .x-xia .x-p2 {
  color: #333;
  background: transparent;
  -webkit-text-fill-color: #333;
}
.technology-deliflow .x-deli1.c-style2 .x-container2 .x-xia .x-p3 {
  color: #111;
}
.technology-deliflow .x-deli1.c-style2 .x-container2 .x-top .x-p {
  text-shadow: 0 0 10px #fff;
}
.technology-deliflow .x-deli1.c-style3 .x-container2 .x-top .x-p {
  text-shadow: 0 0 10px #30dfdd, 0 0 10px #30dfdd;
}
.technology-deliflow .x-deli1 .x-container2 .x-top .x-txt .x-tit {
  color: #fff;
  background: transparent;
  -webkit-text-fill-color: #fff;
}
.technology-deliflow .x-deli1 .x-container2 .x-top .x-p {
  color: #fff;
  text-shadow: 0 0 10px #f17b0c, 0 0 10px #f17b0c;
}
.technology-deliflow .x-deli1 .x-container2 .x-lin span {
  color: #fff;
}
.technology-deliflow .x-deli1 .x-container2 .x-lin i img,
.technology-deliflow .x-deli1 .x-container2 .x-lin i svg {
  color: #fff;
}
.technology-deliflow .x-deli1 .x-container2 .x-xia {
  color: #fff;
}
.technology-deliflow .x-deli1 .x-container2 .x-xia .x-p2 {
  color: #fff;
  background: transparent;
  -webkit-text-fill-color: #fff;
}
.technology-deliflow .x-deli1 .x-container2 .x-xia .x-p3 {
  color: #fff;
}
.technology-deliflow .x-deli3 .x-container2 {
  top: 0.5rem;
}
.technology-deliflow .x-deli3 .x-container2 .x-title {
  color: #fff;
}
.technology-deliflow .x-deli3 .x-container2:nth-child(2) .x-xia .x-le {
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.technology-deliflow .x-deli3 .x-container2:nth-child(2) .x-xia .x-le .x-box .x-txt .x-tit,
.technology-deliflow .x-deli3 .x-container2:nth-child(2) .x-xia .x-le .x-box .x-p {
  color: #fff;
}
.technology-deliflow .x-deli3 .x-container2:nth-child(2) .x-xia .x-ri {
  border: 1px solid #fff;
}
@media (max-width: 767px) {
  .technology-deliflow .x-deli3 .x-container2:nth-child(2) .x-xia .x-ri {
    margin-top: 40px;
  }
}
.technology-deliflow .x-deli3 .x-container2:nth-child(2) .x-xia .x-ri .x-box .x-txt .x-tit {
  color: transparent;
  /* 文字透明以显示背景 */
  background: linear-gradient(to right, #00dcff, #0055ff);
  /* 渐变背景 */
  -webkit-background-clip: text;
  /* 背景裁剪到文字 */
  background-clip: text;
  mask: linear-gradient(to right, #00dcff, #0055ff);
  /* 从左到右渐变 */
  -webkit-mask: linear-gradient(to right, #00dcff, #0055ff);
}
.technology-deliflow .x-deli3 .x-container2:nth-child(2) .x-xia .x-zh {
  bottom: 50%;
  transform: translate(-50%, 50%);
}
.technology-deliflow .x-deli3 .x-container2:nth-child(2) .x-xia .x-zh .x-ico {
  display: none;
}
.technology-deliflow .x-deli3 .x-container2:nth-child(2) .x-xia .x-zh .x-sz {
  margin-top: 0;
}
@media (max-width: 767px) {
  .technology-deliflow .x-deli3 .x-container2:nth-child(2) .x-xia .x-zh .x-sz {
    margin-top: 0;
  }
}
.technology-deliflow .x-deli3 .x-container2:nth-child(2) .x-xia .x-zh .x-sz span:last-child {
  margin: 0;
}
.technology-deliflow .x-deli3 .x-container2:nth-child(2) .x-xia .x-zh::after,
.technology-deliflow .x-deli3 .x-container2:nth-child(2) .x-xia .x-zh::before {
  content: "";
  position: absolute;
  left: 50%;
  width: 6px;
  height: 2.5rem;
  background: url(../images/line.png) no-repeat center center / contain;
  transform: translateX(-50%);
}
@media (max-width: 767px) {
  .technology-deliflow .x-deli3 .x-container2:nth-child(2) .x-xia .x-zh::after,
  .technology-deliflow .x-deli3 .x-container2:nth-child(2) .x-xia .x-zh::before {
    display: none;
  }
}
.technology-deliflow .x-deli3 .x-container2:nth-child(2) .x-xia .x-zh::after {
  top: 100%;
}
.technology-deliflow .x-deli3 .x-container2:nth-child(2) .x-xia .x-zh::before {
  bottom: 100%;
}
.technology-deliflow .x-deli3 .x-container2:nth-child(2) .c-text {
  margin-top: 0.55rem;
  color: #969696;
  text-align: center;
}
.technology-deliflow .x-deli6 {
  background: transparent;
}
.technology-deliflow .x-deli6 .x-container2 .x-title {
  color: #fff;
}
.c-keyframes {
  position: relative;
  z-index: 5;
  color: #fff;
}
.c-keyframes.c-style2 .c-title-box .c-title,
.c-keyframes.c-style2 .c-main .c-sticky .c-list li .c-box .c-title {
  color: transparent;
  background: linear-gradient(to right, #ffab00, #ff1a00);
  background-clip: border-box;
  -webkit-background-clip: text;
  background-clip: text;
  mask: linear-gradient(to right, #ffab00, #ff1a00);
  -webkit-mask: linear-gradient(to right, #ffab00, #ff1a00);
}
.c-keyframes.c-style3 .c-main .c-sticky .c-list li:nth-child(2n) .c-box .c-title {
  color: transparent;
  background: linear-gradient(to right, #00dcff, #0055ff);
  background-clip: border-box;
  -webkit-background-clip: text;
  background-clip: text;
  mask: linear-gradient(to right, #00dcff, #0055ff);
  -webkit-mask: linear-gradient(to right, #00dcff, #0055ff);
}
.c-keyframes.c-style4::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1;
  height: 100vh;
  background: -webkit-linear-gradient(bottom, #f1f6f9 0%, #fff 100%);
  background: linear-gradient(to top, #f1f6f9 0%, #fff 100%);
}
.c-keyframes.c-style4 .c-title-box .c-title,
.c-keyframes.c-style4 .c-main .c-sticky .c-list li:nth-child(2n) .c-box .c-title {
  color: transparent;
  background: linear-gradient(to right, #1340f3, #ff5e45);
  background-clip: border-box;
  -webkit-background-clip: text;
  background-clip: text;
  mask: linear-gradient(to right, #1340f3, #ff5e45);
  -webkit-mask: linear-gradient(to right, #1340f3, #ff5e45);
}
.c-keyframes.c-style4 .c-main .c-sticky .c-list li .c-box .c-title {
  color: transparent;
  background: linear-gradient(to right, #00f88b, #009aff);
  background-clip: border-box;
  -webkit-background-clip: text;
  background-clip: text;
  mask: linear-gradient(to right, #00f88b, #009aff);
  -webkit-mask: linear-gradient(to right, #00f88b, #009aff);
}
.c-keyframes.c-style4 .c-main .c-sticky .c-list li .c-box .c-text {
  color: #666;
}
.c-keyframes.c-style5 .c-title-box .c-text {
  max-width: 1100px;
  margin: 0.2rem auto 0;
  font-family: 'Poppins-Regular', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
  color: #111;
}
.c-keyframes.c-style5 .c-main .c-sticky .c-list li .c-box .c-title {
  color: transparent;
  background: linear-gradient(to right, #ffab00, #ff1a00);
  background-clip: border-box;
  -webkit-background-clip: text;
  background-clip: text;
  mask: linear-gradient(to right, #ffab00, #ff1a00);
  -webkit-mask: linear-gradient(to right, #ffab00, #ff1a00);
}
.c-keyframes.c-style5 .c-main .c-sticky .c-list li .c-box .c-text {
  color: #646464;
}
.c-keyframes.c-style5 .c-main .c-sticky .c-list li:nth-child(2n-1) .c-box .c-title {
  color: transparent;
  background: linear-gradient(to right, #00f88b, #009aff);
  background-clip: border-box;
  -webkit-background-clip: text;
  background-clip: text;
  mask: linear-gradient(to right, #00f88b, #009aff);
  -webkit-mask: linear-gradient(to right, #00f88b, #009aff);
}
.c-keyframes .container {
  max-width: 1400px;
}
.c-keyframes .c-title-box {
  position: relative;
  z-index: 2;
  text-align: center;
  font-family: 'Poppins-Bold', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
  color: #fff;
}
@media (max-width: 767px) {
  .c-keyframes .c-title-box {
    text-align: left;
  }
}
.c-keyframes .c-title-box .c-title {
  display: inline-block;
  color: transparent;
  background: linear-gradient(to right, #00dcff, #0055ff);
  -webkit-background-clip: text;
  background-clip: text;
  mask: linear-gradient(to right, #00dcff, #0055ff);
  -webkit-mask: linear-gradient(to right, #00dcff, #0055ff);
}
@media (max-width: 767px) {
  .c-keyframes .c-title-box .c-title br {
    display: none;
  }
}
.c-keyframes .c-main {
  position: relative;
  z-index: 2;
  height: 200vh;
}
.c-keyframes .c-main .c-sticky {
  position: sticky;
  position: -webkit-sticky;
  top: 0;
  left: 0;
  height: 100vh;
}
.c-keyframes .c-main .c-sticky .c-keyframes-list {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.c-keyframes .c-main .c-sticky .hi-keyframes {
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 7rem;
  transform: translate(-50%, -50%);
}
@media (max-width: 991px) {
  .c-keyframes .c-main .c-sticky .hi-keyframes {
    transform: translate(-50%, -100%);
  }
}
@media (max-width: 767px) {
  .c-keyframes .c-main .c-sticky .hi-keyframes {
    width: 100%;
    transform: translate(-50%, -80%);
  }
}
.c-keyframes .c-main .c-sticky .hi-keyframes.on {
  opacity: 1;
}
.c-keyframes .c-main .c-sticky .c-list {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.c-keyframes .c-main .c-sticky .c-list li {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  opacity: 0;
}
@media (max-width: 991px) {
  .c-keyframes .c-main .c-sticky .c-list li {
    top: 75%;
  }
}
.c-keyframes .c-main .c-sticky .c-list li .container {
  display: flex;
  align-items: center;
}
.c-keyframes .c-main .c-sticky .c-list li .c-box {
  padding-right: 0.4rem;
  width: calc(440/1400*100%);
}
@media (max-width: 991px) {
  .c-keyframes .c-main .c-sticky .c-list li .c-box {
    padding: 0 !important;
    width: 100%;
  }
}
.c-keyframes .c-main .c-sticky .c-list li .c-box .c-title {
  margin-bottom: 0.1rem;
  font-family: 'Poppins-Bold', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
  color: transparent;
  background: linear-gradient(to right, #00dcff, #0055ff);
  -webkit-background-clip: text;
  background-clip: text;
  mask: linear-gradient(to right, #00dcff, #0055ff);
  -webkit-mask: linear-gradient(to right, #00dcff, #0055ff);
}
.c-keyframes .c-main .c-sticky .c-list li:nth-child(2n) .container {
  flex-direction: row-reverse;
}
.c-keyframes .c-main .c-sticky .c-list li:nth-child(2n) .c-box {
  padding: 0 0 0 0.4rem;
}
.c-keyframes .c-main .c-sticky .c-list li:nth-child(2n) .c-box .c-title {
  color: transparent;
  background: linear-gradient(to right, #ffab00, #ff1a00);
  -webkit-background-clip: text;
  background-clip: text;
  mask: linear-gradient(to right, #ffab00, #ff1a00);
  -webkit-mask: linear-gradient(to right, #ffab00, #ff1a00);
}
.c-deli7 {
  padding: 1.35rem 0 0;
  color: #fff;
}
@media (max-width: 767px) {
  .c-deli7 {
    padding: 1rem 0 1.6rem;
  }
}
.c-deli7 .container {
  max-width: 1400px;
}
.c-deli7 .c-title-box {
  margin-bottom: 1.1rem;
  font-family: 'Poppins-Bold', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
  text-align: center;
}
@media (max-width: 767px) {
  .c-deli7 .c-title-box {
    margin-bottom: 1rem;
    text-align: left;
  }
}
.c-deli7 .c-main {
  display: flex;
  align-items: flex-start;
  flex-direction: row-reverse;
}
@media (max-width: 767px) {
  .c-deli7 .c-main {
    flex-wrap: wrap;
  }
}
.c-deli7 .c-main .c-box {
  padding: 0.55rem 1.7rem 0.55rem 0;
  width: 50%;
}
@media (max-width: 991px) {
  .c-deli7 .c-main .c-box {
    padding: 0 0.4rem 0 0;
  }
}
@media (max-width: 767px) {
  .c-deli7 .c-main .c-box {
    padding: 0.4rem 0 0;
    width: 100%;
  }
}
.c-deli7 .c-main .c-box .c-title {
  font-family: 'Poppins-Medium', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
  color: transparent;
  background: linear-gradient(to right, #ffab00, #ff1a00);
  -webkit-background-clip: text;
  background-clip: text;
  mask: linear-gradient(to right, #ffab00, #ff1a00);
  -webkit-mask: linear-gradient(to right, #ffab00, #ff1a00);
}
.c-deli7 .c-main .c-box .c-text {
  margin-top: 0.2rem;
}
.c-deli7 .c-main .c-img {
  width: 50%;
  max-width: 650px;
}
@media (max-width: 767px) {
  .c-deli7 .c-main .c-img {
    width: 100%;
  }
}
.c-deli8 {
  position: relative;
  z-index: 2;
  color: #fff;
}
.c-deli8 .c-bg {
  position: absolute;
  top: -50vw;
  left: 0;
  z-index: -1;
  width: 100%;
  pointer-events: none;
}
@media (max-width: 767px) {
  .c-deli8 .c-bg {
    top: 5vw;
  }
}
@media (max-width: 767px) {
  .c-deli8.c-style2 {
    margin-top: 2rem;
  }
}
.c-deli8.c-style2 .c-bg {
  top: 0;
}
@media (max-width: 767px) {
  .c-deli8.c-style2 .c-bg {
    top: 25vw;
  }
}
.c-deli8.c-style2 .c-title-box .c-title {
  color: transparent;
  background: linear-gradient(to right, #0055ff, #1d30c1);
  -webkit-background-clip: text;
  background-clip: text;
  mask: linear-gradient(to right, #0055ff, #1d30c1);
  -webkit-mask: linear-gradient(to right, #0055ff, #1d30c1);
}
.c-deli8.c-style2 .c-title-box .c-text {
  color: #111;
}
@media (max-width: 767px) {
  .c-deli8.c-style2 .c-img img {
    transform: scale(1.2) translateY(-12vw);
  }
}
.c-deli8 .container {
  max-width: 1400px;
}
.c-deli8 .c-title-box {
  position: absolute;
  top: 1.5rem;
  left: 0;
  z-index: 10;
  width: 100%;
  text-align: center;
}
@media (max-width: 991px) {
  .c-deli8 .c-title-box {
    position: static;
  }
}
@media (max-width: 767px) {
  .c-deli8 .c-title-box {
    text-align: left;
  }
}
.c-deli8 .c-title-box .c-title {
  display: inline-block;
  font-family: 'Poppins-Bold', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
}
@media (max-width: 767px) {
  .c-deli8 .c-title-box .c-title {
    color: transparent;
    background: linear-gradient(to right, #0055ff, #1d30c1);
    -webkit-background-clip: text;
    background-clip: text;
    mask: linear-gradient(to right, #0055ff, #1d30c1);
    -webkit-mask: linear-gradient(to right, #0055ff, #1d30c1);
  }
}
.c-deli8 .c-title-box .c-text {
  margin: 0.2rem auto 0;
  max-width: 1100px;
}
@media (max-width: 767px) {
  .c-deli8 .c-title-box .c-text {
    color: #111;
  }
}
.c-deli8 .c-img {
  overflow: hidden;
}
@media (max-width: 991px) {
  .c-deli8 .c-img {
    margin: -2rem 0 1rem;
  }
}
@media (max-width: 767px) {
  .c-deli8 .c-img {
    margin: -1rem 0 1rem;
  }
}
.c-deli8 .c-img img {
  width: 100%;
}
@media (max-width: 767px) {
  .c-deli8 .c-img img {
    height: 100vw;
    object-fit: cover;
    transform: scale(1.2) translateY(-7vw);
  }
}
