@charset "utf-8";
:root {
  --color: #E90044;
  --color2: #0047BB;
  --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 {
  src: url('../fonts/PingFang-Heavy.woff2') format('woff2');
  font-family: 'PingFang-Heavy';
  font-weight: 800;
  font-display: swap;
}
@font-face {
  src: url('../fonts/PingFang-Bold.woff2') format('woff2');
  font-family: 'PingFang-Bold';
  font-weight: 700;
  font-display: swap;
}
@font-face {
  src: url('../fonts/PingFang-Medium.woff2') format('woff2');
  font-family: 'PingFang-Medium';
  font-weight: 500;
  font-display: swap;
}
@font-face {
  src: url('../fonts/PingFang-Regular.woff2') format('woff2');
  font-family: 'PingFang-Regular';
  font-weight: 400;
  font-display: swap;
}
@font-face {
  src: url('../fonts/PingFang-Light.woff2') format('woff2');
  font-family: 'PingFang-Light';
  font-weight: 300;
  font-display: swap;
}
@font-face {
  src: url('../fonts/PingFang-ExtraLight.woff2') format('woff2');
  font-family: 'PingFang-ExtraLight';
  font-weight: 200;
  font-display: swap;
}
.font-h {
  font-family: 'PingFang-Heavy', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
}
.font-b {
  font-family: 'PingFang-Bold', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
}
.font-m {
  font-family: 'PingFang-Medium', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
}
.font-r {
  font-family: 'PingFang-Regular', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
}
.font-l {
  font-family: 'PingFang-Light', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
}
.font-e {
  font-family: 'PingFang-ExtraLight', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
}
* {
  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;
}
@-moz-document url-prefix() {
  * {
    scrollbar-width: thin;
  }
}
* ::-webkit-scrollbar {
  /*滚动条整体样式*/
  width: 5px;
  /*高宽分别对应横竖滚动条的尺寸*/
  height: 5px;
}
* ::-webkit-scrollbar-thumb {
  /*滚动条-滑块*/
  border-radius: 3px;
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  background: var(--color);
}
* ::-webkit-scrollbar-track {
  /*滚动条-背景*/
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  border-radius: 3px;
  background: #ededed;
}
html {
  font-size: calc(100vw/19.2);
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media (min-width: 1901px) {
  html {
    font-size: 100px;
  }
}
@media (max-width: 1580px) {
  html {
    font-size: 66px;
  }
}
@media (max-width: 767px) {
  html {
    font-size: 50px;
  }
}
body {
  min-height: 100%;
  font-family: 'PingFang-Regular', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
  font-size: 16px;
  line-height: 1.5;
  color: #000;
  background: #fff;
}
@media (max-width: 1580px) {
  body {
    font-size: 14px;
  }
}
img {
  max-width: 100%;
  border: 0;
  vertical-align: top;
}
video,
video:focus {
  display: block;
  font-size: 0;
  border: 0;
  outline: none;
}
li {
  list-style: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: inherit;
  font-style: inherit;
  font-size: inherit;
  font-weight: normal;
}
a {
  color: inherit;
}
a,
a:hover,
a:focus {
  text-decoration: none;
}
input,
button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
}
button {
  cursor: pointer;
}
input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  appearance: button;
  cursor: pointer;
}
textarea {
  resize: none;
  overflow: auto;
}
input,
button,
textarea,
select {
  border: 0;
  font-family: inherit;
  font-style: inherit;
  font-size: inherit;
  font-weight: normal;
  color: inherit;
  background: transparent;
}
select {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  white-space: nowrap;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
select::-ms-expand {
  display: none;
}
table {
  border-collapse: collapse;
}
svg:not(.no-inherit) path,
svg:not(.no-inherit) circle,
svg:not(.no-inherit) rect {
  fill: currentColor !important;
  opacity: 1 !important;
}
picture,
section,
main {
  display: block;
}
.fl {
  float: left;
}
.fr {
  float: right;
}
.clear {
  zoom: 1;
}
.clear:after {
  content: '';
  display: block;
  clear: both;
}
.container {
  margin: 0 auto;
  width: 90%;
  max-width: 1600px;
}
.bg-color1 {
  background-color: #fff;
}
@media (max-width: 767px) {
  .padding {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
  }
  .padding-top {
    padding-top: 60px !important;
  }
  .padding-bottom {
    padding-bottom: 60px !important;
  }
}
@media (max-width: 767px) {
  .ico32 {
    width: 32px !important;
    height: 32px !important;
  }
  .ico24 {
    width: 24px !important;
    height: 24px !important;
  }
  .ico16 {
    width: 16px !important;
    height: 16px !important;
  }
  .ico12 {
    width: 12px !important;
    height: 12px !important;
  }
}
@media (max-width: 767px) {
  .radius8 {
    border-radius: 8px !important;
  }
  .radius4 {
    border-radius: 4px !important;
  }
}
.font12 {
  font-size: 12px;
  line-height: calc(22/12);
}
.font14 {
  font-size: 14px;
  line-height: calc(24/14);
}
.font16 {
  font-size: 16px;
  line-height: calc(26/16);
}
.font18 {
  font-size: 18px;
  line-height: calc(26/18);
}
.font20 {
  font-size: 20px;
  line-height: calc(30/20);
}
.font22 {
  font-size: 22px;
  line-height: calc(32/22);
}
.font24 {
  font-size: 24px;
  line-height: calc(34/24);
}
.font26 {
  font-size: 26px;
  line-height: calc(36/26);
}
.font28 {
  font-size: 28px;
  line-height: calc(38/28);
}
.font30 {
  font-size: 30px;
  line-height: calc(40/30);
}
.font32 {
  font-size: 32px;
  line-height: calc(42/32);
}
.font34 {
  font-size: 34px;
  line-height: calc(44/34);
}
.font36 {
  font-size: 36px;
  line-height: calc(46/36);
}
.font38 {
  font-size: 38px;
  line-height: calc(48/38);
}
.font40 {
  font-size: 40px;
  line-height: calc(50/40);
}
.font42 {
  font-size: 42px;
  line-height: calc(52/42);
}
.font44 {
  font-size: 44px;
  line-height: calc(54/44);
}
.font46 {
  font-size: 46px;
  line-height: calc(56/46);
}
.font48 {
  font-size: 48px;
  line-height: calc(58/48);
}
.font50 {
  font-size: 50px;
  line-height: calc(60/50);
}
.font52 {
  font-size: 52px;
  line-height: calc(62/52);
}
.font54 {
  font-size: 54px;
  line-height: calc(64/54);
}
.font56 {
  font-size: 56px;
  line-height: calc(66/56);
}
.font58 {
  font-size: 58px;
  line-height: calc(68/58);
}
@media (max-width: 1580px) {
  .font16 {
    font-size: 14px;
  }
  .font18,
  .font20 {
    font-size: 16px;
  }
  .font22,
  .font24,
  .font26,
  .font28 {
    font-size: 18px;
  }
  .font30,
  .font32,
  .font34,
  .font36,
  .font38 {
    font-size: 24px;
  }
  .font40,
  .font42,
  .font44,
  .font46,
  .font48 {
    font-size: 36px;
  }
  .font50,
  .font52,
  .font54,
  .font56,
  .font58 {
    font-size: 40px;
  }
}
@media (max-width: 991px) {
  .font30,
  .font32,
  .font34,
  .font36,
  .font38 {
    font-size: 20px;
  }
  .font40,
  .font42,
  .font44,
  .font46,
  .font48 {
    font-size: 28px;
  }
  .font50,
  .font52,
  .font54,
  .font56,
  .font58 {
    font-size: 36px;
  }
}
@media (max-width: 767px) {
  .font12 {
    font-size: 10px;
    line-height: calc(15/10);
  }
  .font14 {
    font-size: 12px;
    line-height: calc(18/12);
  }
  .font16 {
    font-size: 14px;
    line-height: calc(21/14);
  }
  .font18,
  .font20 {
    font-size: 16px;
    line-height: calc(24/16);
  }
  .font22,
  .font24,
  .font26,
  .font28 {
    font-size: 18px;
    line-height: calc(27/18);
  }
  .font30,
  .font32,
  .font34,
  .font36,
  .font38 {
    font-size: 20px;
    line-height: calc(30/20);
  }
  .font40,
  .font42,
  .font44,
  .font46,
  .font48 {
    font-size: 24px;
    line-height: calc(34/24);
  }
  .font50,
  .font52,
  .font54,
  .font56,
  .font58 {
    font-size: 32px;
    line-height: calc(42/32);
  }
}
.public-btn {
  position: relative;
  z-index: 1;
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  min-width: 1.62rem;
  height: 52px;
  line-height: 1.3;
  color: #fff;
  cursor: pointer;
  transition: all 0.4s;
  overflow: hidden;
}
.public-btn.style2 {
  color: #000;
}
.public-btn.style2::before {
  border-color: #000;
}
.public-btn.style3::before {
  opacity: 0;
}
.public-btn.style3::after {
  opacity: 1;
}
.public-btn.style3:hover::after {
  opacity: 0.8 !important;
}
@media (max-width: 1580px) {
  .public-btn {
    height: 40px;
  }
}
.public-btn span {
  position: relative;
  z-index: 5;
}
.public-btn .c-svg {
  position: relative;
  z-index: 5;
  margin-left: 0.1rem;
  width: 16px;
  height: 16px;
}
@media (max-width: 1580px) {
  .public-btn .c-svg {
    width: 14px;
    height: 14px;
  }
}
.public-btn::before,
.public-btn::after {
  box-sizing: border-box;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  border-radius: 38px;
  border: 1px solid #fff;
  transition: all 0.4s;
}
.public-btn::after {
  z-index: 2;
  border: 0;
  border-radius: 38px;
  background: linear-gradient(90deg, #0047BB 0%, #E90044 110%);
  opacity: 0;
  transition: all 0.4s;
}
.public-btn:hover {
  color: #fff;
}
.public-btn:hover::before {
  opacity: 0;
}
.public-btn:hover::after {
  opacity: 1;
}
.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-swiper-button-prev,
.public-swiper-button-next {
  margin-top: 0;
  width: 56px;
  height: 56px;
  z-index: 2;
  opacity: 1;
  border-radius: 50%;
  transition: 0.4s;
  color: #000;
  transform: translateY(-50%);
  overflow: hidden;
}
@media (max-width: 1580px) {
  .public-swiper-button-prev,
  .public-swiper-button-next {
    width: 40px;
    height: 40px;
  }
}
.public-swiper-button-prev::after,
.public-swiper-button-next::after {
  box-sizing: border-box;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid #000;
  color: transparent;
  transition: all 0.4s;
}
.public-swiper-button-prev::before,
.public-swiper-button-next::before {
  box-sizing: border-box;
  opacity: 0;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #0047BB 0%, #E90044 110%);
  transition: all 0.4s;
}
.public-swiper-button-prev .c-svg,
.public-swiper-button-next .c-svg {
  position: relative;
  z-index: 5;
  width: 18px;
  height: 18px;
}
@media (max-width: 1580px) {
  .public-swiper-button-prev .c-svg,
  .public-swiper-button-next .c-svg {
    width: 14px;
    height: 14px;
  }
}
.public-swiper-button-prev:hover,
.public-swiper-button-next:hover {
  opacity: 1;
  background: #fff;
  color: #fff;
}
.public-swiper-button-prev:hover::after,
.public-swiper-button-next:hover::after {
  opacity: 0;
}
.public-swiper-button-prev:hover::before,
.public-swiper-button-next:hover::before {
  opacity: 1;
}
.public-swiper-button-prev {
  transform: translateY(-50%) rotate(180deg);
}
.public-content {
  color: #666;
  line-height: calc(26/16);
}
@media (max-width: 991px) {
  .public-content {
    font-size: 14px;
    line-height: 1.5;
  }
  .public-content * {
    font-size: 14px !important;
  }
}
.public-content * {
  max-width: 100% !important;
  white-space: wrap !important;
}
.public-content a {
  color: var(--color);
}
.public-content a:hover {
  text-decoration: underline;
}
.public-content table {
  width: 100%;
}
.public-content table td,
.public-content table th {
  padding: 10px 15px;
  border: 1px solid #ddd;
}
.public-content ul,
.public-content ol {
  padding-left: revert;
}
.public-content li {
  list-style: revert;
}
.public-content dd {
  margin-left: revert;
}
.public-content img,
.public-content video,
.public-content iframe {
  max-width: 100%;
  height: auto !important;
}
.public-content h1,
.public-content h2,
.public-content h3,
.public-content h4,
.public-content h5,
.public-content h6 {
  color: #000;
  font-weight: revert;
}
.public-content h1:nth-child(1),
.public-content h2:nth-child(1),
.public-content h3:nth-child(1),
.public-content h4:nth-child(1),
.public-content h5:nth-child(1),
.public-content h6:nth-child(1) {
  margin-top: 0;
}
.public-content h1 {
  font-size: 1.75em;
}
.public-content h2 {
  font-size: 1.5em;
}
.public-content h3 {
  font-size: 1.25em;
}
.public-content h4 {
  font-size: 1em;
}
.public-content h5 {
  font-size: 0.875em;
}
.public-content h6 {
  font-size: 0.75em;
}
@media (max-width: 1580px) {
  .public-content h1 {
    font-size: 1.857em;
  }
  .public-content h2 {
    font-size: 1.571em;
  }
  .public-content h3 {
    font-size: 1.286em;
  }
  .public-content h4 {
    font-size: 1em;
  }
  .public-content h5 {
    font-size: 0.857em;
  }
  .public-content h6 {
    font-size: 0.714em;
  }
}
@media (max-width: 991px) {
  .public-content h1 {
    font-size: 1.571em !important;
  }
  .public-content h2 {
    font-size: 1.429em !important;
  }
  .public-content h3 {
    font-size: 1.286em !important;
  }
  .public-content h4 {
    font-size: 1em !important;
  }
  .public-content h5 {
    font-size: 0.857em !important;
  }
  .public-content h6 {
    font-size: 0.714em !important;
  }
  .public-content h1 *,
  .public-content h2 *,
  .public-content h3 *,
  .public-content h4 *,
  .public-content h5 *,
  .public-content h6 * {
    font-size: inherit !important;
  }
}
.public-title {
  text-align: center;
}
.public-title .c-title span {
  display: block;
}
.public-title .c-text {
  margin-top: 0.27rem;
}
.public-title .c-line {
  margin: 0.36rem 0;
  width: 2.7rem;
  height: 6px;
  background: linear-gradient(90deg, #0047BB 5.06%, #E90044 38.38%, rgba(233, 0, 68, 0) 94.99%);
}
.public-title .public-btn {
  margin-top: 0.27rem;
}
@keyframes width100 {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@keyframes width0 {
  0% {
    width: 100%;
  }
  100% {
    width: 0%;
  }
}
@keyframes arrow {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(250%);
  }
  51% {
    transform: translateX(-250%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes dotScale {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(2.5);
    opacity: 0;
  }
}
@keyframes rotate360 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes flowingLight {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
.font-run span {
  clip-path: polygon(0 0, 100% 0, 100% 0, 0 50%);
  transition: all 1s;
  transform: translateY(40px);
  position: relative;
  display: inline-block;
  opacity: 0;
}
.font-run.on span {
  opacity: 1;
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  transform: translateY(0);
}
#c-loading {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  height: 100%;
  overflow: auto;
}
@media (max-width: 991px) {
  #c-loading {
    display: none;
  }
}
#c-loading video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#c-loading.on {
  opacity: 0;
  pointer-events: none;
}
#c-loading .c-sticky-box {
  height: 100vh;
  height: 100svh;
  height: 100dvh;
}
#c-loading .c-sticky {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100vh;
  height: 100svh;
  height: 100dvh;
}
#c-loading .c-loading-box {
  left: 0;
  top: 0;
  z-index: 5;
  position: absolute;
  width: 108px;
  height: 108px;
  background: linear-gradient(134.93deg, #0047BB 15%, #E90044 96.35%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #Fff;
  flex-direction: column;
  transform: scale(0);
  will-change: transform;
}
#c-loading .c-loading-box .public-btntebie {
  border-radius: 0.1rem;
  background-color: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  padding: 5px;
  display: flex;
  align-items: center;
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.5s;
}
#c-loading .c-loading-box .public-btntebie span {
  line-height: 50px;
  color: #Fff;
  padding: 0 40px 0 20px;
}
#c-loading .c-loading-box .public-btntebie .btn {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  background: linear-gradient(90deg, #0047BB 0%, #E90044 110%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
#c-loading .c-loading-box .public-btntebie .btn img,
#c-loading .c-loading-box .public-btntebie .btn svg {
  transform: rotate(0deg);
  transition: all 0.5s;
}
#c-loading .c-loading-box .public-btntebie:hover img,
#c-loading .c-loading-box .public-btntebie:hover svg {
  transform: rotate(45deg);
}
#c-loading .c-main {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
#c-loading .c-main .c-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
}
#c-loading .c-main .c-box.c-box1 {
  margin-top: -50px;
  transform: translateY(-100%);
}
#c-loading .c-main .c-box.c-box2 {
  margin-top: 50px;
  transform: translateY(100%);
}
#c-loading .c-main .c-box.c-box3 {
  transform: translateX(-100%);
  margin-left: -50px;
}
#c-loading .c-main .c-box.c-box4 {
  transform: translateX(100%);
  margin-left: 50px;
}
#c-loading .c-main .c-bg {
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  background: linear-gradient(134.93deg, #0047BB 15%, #E90044 96.35%);
}
#c-loading .c-main .c-text {
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  transform: translateY(-50%);
}
#c-loading .c-main .c-text p {
  width: calc(50% - 200px);
}
#c-loading .c-main .c-text p:first-child {
  margin-right: 200px;
  text-align: right;
}
/* 占位标签，设置导航样式 */
#c-placeholder {
  height: 86px;
}
@media (max-width: 991px) {
  #c-placeholder {
    height: 60px;
  }
}
/*头部*/
.c-head-move #c-header {
  top: -90px;
}
@media (max-width: 991px) {
  .c-head-move #c-header {
    top: -70px;
  }
}
#c-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 900;
  width: 100%;
  border-bottom: 1px solid transparent;
  line-height: 86px;
  text-align: center;
  color: #000;
  transition: 0.4s;
}
@media (max-width: 991px) {
  #c-header {
    line-height: 60px;
  }
}
#c-header a {
  color: #000;
  transition: 0.4s;
}
#c-header > .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1800px;
  width: 95%;
}
@media (max-width: 1580px) {
  #c-header > .container {
    width: 90%;
  }
}
@media (max-width: 991px) {
  #c-header > .container {
    height: 60px;
  }
}
#c-header .c-right-box {
  display: flex;
  align-items: center;
}
#c-header.c-style3 .c-logo .c-img-box img:nth-child(1) {
  opacity: 0;
}
#c-header.c-style3 .c-logo .c-img-box img:nth-child(2) {
  opacity: 1;
}
#c-header.c-style3 a {
  color: #Fff;
}
#c-header.c-style3 .c-gn {
  color: #Fff;
}
#c-header.c-style2 {
  background: #fff;
  border-bottom: 1px solid #f4f4f4;
}
#c-header.c-style2 .c-logo .c-img-box img:nth-child(1) {
  opacity: 1;
}
#c-header.c-style2 .c-logo .c-img-box img:nth-child(2) {
  opacity: 0;
}
#c-header.c-style2 a {
  color: #000;
}
#c-header.c-style2 .c-gn {
  color: #000;
}
#c-header .c-logo {
  display: flex;
  align-items: center;
}
#c-header .c-logo .c-img-box {
  display: flex;
  align-items: center;
  position: relative;
}
#c-header .c-logo .c-img-box img {
  height: 48px;
  transition: all 0.4s;
}
@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) {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
}
#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-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;
  width: 100%;
  background: #000;
  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-gn {
  display: flex;
  align-items: center;
}
#c-header .c-gn form {
  margin-right: 5px;
  padding: 0 0.2rem;
  cursor: pointer;
}
#c-header .c-gn form img,
#c-header .c-gn form svg {
  width: 18px;
  height: 18px;
  transition: 0.4s;
  vertical-align: middle;
}
@media (min-width: 992px) {
  #c-header .c-gn form:hover > svg {
    color: var(--color);
  }
}
#c-header .c-gn form .c-pop {
  position: absolute;
  top: 100%;
  left: 0;
  display: none;
  padding: 0.8rem 0;
  width: 100%;
  background: #fff;
  border-top: 1px solid rgba(51, 51, 51, 0.1);
  box-shadow: 0 10px 20px -8px rgba(0, 0, 0, 0.1);
  color: #333;
  text-align: left;
  cursor: auto;
}
#c-header .c-gn form .c-pop .container {
  max-width: 750px;
  line-height: calc(26/16);
}
#c-header .c-gn form .c-pop .container .c-box {
  position: relative;
  display: flex;
  width: 100%;
  background: #fff;
  border-radius: 50px;
  overflow: hidden;
  border: 1px solid #e6e6e6;
}
@media (max-width: 991px) {
  #c-header .c-gn form .c-pop .container .c-box {
    border-radius: 20px;
  }
}
#c-header .c-gn form .c-pop .container .c-box input {
  padding: 0 60px;
  width: 100%;
  height: 66px;
  line-height: 66px;
  color: #000;
}
#c-header .c-gn form .c-pop .container .c-box input::placeholder {
  color: #000;
}
@media (max-width: 991px) {
  #c-header .c-gn form .c-pop .container .c-box input {
    height: 40px;
    line-height: 40px;
  }
}
#c-header .c-gn form .c-pop .container .c-box button {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 50px;
  color: #000;
  cursor: pointer;
  transition: all 0.4s;
}
@media (max-width: 991px) {
  #c-header .c-gn form .c-pop .container .c-box button {
    height: 40px;
  }
}
#c-header .c-gn form .c-pop .container .c-box button:hover {
  color: var(--color);
}
#c-header .c-gn form .c-pop .container .c-tag {
  margin: 0.3rem 0 0.2rem;
  color: #777;
}
#c-header .c-gn form .c-pop .container .c-list li {
  margin-top: 0.1rem;
}
#c-header .c-gn form .c-pop .container .c-list li a {
  display: inline-flex;
  align-items: center;
  color: #222;
}
#c-header .c-gn form .c-pop .container .c-list li a .c-svg {
  margin-right: 5px;
  width: 14px;
  height: 14px;
}
#c-header .c-gn form .c-pop .container .c-list li a:hover {
  color: var(--color);
}
#c-header .c-gn .c-language {
  position: relative;
}
@media (max-width: 991px) {
  #c-header .c-gn .c-language {
    display: none;
  }
}
#c-header .c-gn .c-language .c-ico-text {
  display: flex;
  align-items: center;
  cursor: pointer;
  line-height: 1.5;
  height: 86px;
}
@media (max-width: 991px) {
  #c-header .c-gn .c-language .c-ico-text {
    height: 60px;
  }
}
#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 .c-svg {
  width: 14px;
  height: 14px;
  transform: rotate(90deg);
  transition: 0.4s;
  vertical-align: middle;
}
#c-header .c-gn .c-language .c-pop {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  padding: 10px 0;
  min-width: 136px;
  line-height: 40px;
  background: #fff;
  border-top: 1px solid rgba(51, 51, 51, 0.1);
  box-shadow: 2px 0px 32.8px 0px #0000001A;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  border-radius: 0.08rem;
}
#c-header .c-gn .c-language .c-pop a {
  display: block;
  padding: 0 20px;
  color: #777;
  text-align: left;
  transition: all 0s;
}
#c-header .c-gn .c-language .c-pop a:hover {
  background: linear-gradient(-90deg, #0047BB 0%, #E90044 110%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
#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;
}
@media (max-width: 1260px) {
  #c-header .c-gn .c-phone {
    display: none;
  }
}
#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 .public-btn {
  color: #fff;
  height: 40px;
  min-width: 1.16rem;
}
@media (max-width: 991px) {
  #c-header .c-gn .public-btn {
    display: none;
  }
}
#c-header .c-gn .public-btn::after {
  opacity: 1;
}
#c-header .c-nav {
  display: flex;
  align-items: center;
  white-space: nowrap;
}
@media (max-width: 991px) {
  #c-header .c-nav {
    display: none;
  }
}
#c-header .c-nav > li {
  margin-right: 0.6rem;
}
@media (max-width: 1260px) {
  #c-header .c-nav > li {
    margin-right: 0.4rem;
  }
}
#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;
  height: 86px;
  line-height: 1.5;
}
@media (max-width: 991px) {
  #c-header .c-nav > li > .c-title-box {
    height: 60px;
  }
}
#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 span {
  line-height: 1.5;
}
#c-header .c-nav > li > .c-title-box:before {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--color);
  transition: 0.4s;
}
#c-header .c-nav > li > ul {
  position: absolute;
  top: 100%;
  left: 50%;
  display: none;
  padding: 10px;
  min-width: 100px;
  line-height: 40px;
  background: #fff;
  border-top: 1px solid rgba(51, 51, 51, 0.1);
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  border-radius: 0 0 5px 5px;
}
#c-header .c-nav > li > ul li:last-child a::before {
  display: none;
}
#c-header .c-nav > li > ul li a {
  display: block;
  padding: 0 20px;
  color: #333;
  border-radius: 5px;
}
#c-header .c-nav > li > ul li a:hover {
  color: var(--color);
  background: #f8f9fc;
}
#c-header.c-style2 .c-nav li.on > .c-title-box,
#c-header .c-nav li:hover > .c-title-box,
#c-header.c-style2 .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:before,
#c-header .c-nav li:hover > .c-title-box:before,
#c-header.c-style2 .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-box {
  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-box .c-nav2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0 5vw;
  border-top: 1px solid #f1f1f1;
  height: calc(100% - 80px);
  overflow-y: auto;
}
#c-header .c-nav2-box .c-nav2 ul {
  border-top: 1px solid #f1f1f1;
}
#c-header .c-nav2-box .c-nav2 li {
  margin: 0 0 0 5vw;
  border-top: 1px solid #f1f1f1;
}
#c-header .c-nav2-box .c-nav2 li .c-title-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#c-header .c-nav2-box .c-nav2 li .c-title-box img,
#c-header .c-nav2-box .c-nav2 li .c-title-box svg {
  width: 14px;
  height: 14px;
  transition: all 0.4s;
}
#c-header .c-nav2-box .c-nav2 li .c-title-box.on img,
#c-header .c-nav2-box .c-nav2 li .c-title-box.on svg {
  transform: rotate(90deg);
}
#c-header .c-nav2-box .c-nav2 li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #333;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  width: calc(100% - 40px);
}
#c-header .c-nav2-box .c-nav2 li a:hover,
#c-header .c-nav2-box .c-nav2 li.on > a {
  color: var(--color);
}
#c-header .c-nav2-box .c-nav2 li ul {
  display: none;
}
#c-header .c-nav2-box .c-nav2 > li {
  margin: 0;
}
#c-header .c-nav2-box .c-nav2 > li:last-child {
  border-bottom: 1px solid #f1f1f1;
}
#c-header .c-nav2-box .c-nav2 li:first-child {
  border-top: 0;
}
#c-header .c-nav2-box .c-btn-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 20px 5vw;
  width: 100%;
}
#c-header .c-nav2-box .c-btn-box .c-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 15px;
  border-radius: 20px;
  background: #f4f4f4;
  color: #333;
  width: calc(50% - 8px);
  border: 1px solid #e4e4e4;
  cursor: pointer;
}
#c-header .c-nav2-box .c-btn-box .c-btn .c-svg {
  margin-right: 5px;
  width: 16px;
  height: 16px;
}
#c-header .c-nav2-box .c-language2 {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  background: rgba(0, 0, 0, 0.4);
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s;
}
#c-header .c-nav2-box .c-language2 .c-box {
  background: #fff;
  border-radius: 10px 10px 0 0;
  width: 100%;
  padding: 5vw;
  transform: translateY(100%);
  transition: all 0.4s;
}
#c-header .c-nav2-box .c-language2 .c-box .c-text {
  color: #666;
}
#c-header .c-nav2-box .c-language2 .c-box ul {
  max-height: 50vh;
  overflow-y: auto;
}
#c-header .c-nav2-box .c-language2 .c-box ul li {
  margin-top: 10px;
}
#c-header .c-nav2-box .c-language2 .c-box ul li:first-child {
  margin-top: 15px;
}
#c-header .c-nav2-box .c-language2 .c-box ul li a {
  color: #333;
}
#c-header .c-nav2-box.on .c-language2 {
  opacity: 1;
  pointer-events: auto;
}
#c-header .c-nav2-box.on .c-language2 .c-box {
  transform: translateY(0);
}
#c-header.c-style3 .c-switch i {
  background-color: #Fff;
}
#c-header.c-style2 .c-switch i {
  background-color: #000;
}
.c-open #c-header {
  background: #fff;
}
.c-open #c-header .c-nav2-box {
  height: calc(100vh - 60px);
  height: calc(100svh - 60px);
  height: calc(100dvh - 60px);
}
.c-open #c-header .c-switch i {
  background-color: #000 !important;
}
.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);
}
.gradient-canvas {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
}
/* 底部 */
#c-footer {
  position: relative;
  z-index: 2;
  color: #fff;
  background: #000;
}
#c-footer a {
  color: #fff;
  transition: 0.4s;
}
#c-footer a:hover {
  color: var(--color);
}
#c-footer .c-top-box {
  position: relative;
  z-index: 5;
  padding: 0.8rem 0 0.9rem;
  text-align: center;
  color: #fff;
}
#c-footer .c-top-box .c-title span {
  display: block;
}
#c-footer .c-top-box .public-btn {
  margin-top: 0.3rem;
  color: #fff;
  justify-content: center;
}
#c-footer .c-center-box {
  position: relative;
  z-index: 5;
}
#c-footer .c-center-box .container {
  padding: 0.85rem 0 0.4rem;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
@media (max-width: 767px) {
  #c-footer .c-center-box .container {
    padding: 0.8rem 0 0;
    border-bottom: 0;
  }
}
#c-footer .c-center-box .container .c-title-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 0.27rem;
}
@media (max-width: 767px) {
  #c-footer .c-center-box .container .c-title-box {
    padding: 0.3rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
}
#c-footer .c-center-box .container .c-title-box img,
#c-footer .c-center-box .container .c-title-box svg {
  display: none;
  transition: 0.4s;
  width: 14px;
  height: 14px;
}
@media (max-width: 767px) {
  #c-footer .c-center-box .container .c-title-box img,
  #c-footer .c-center-box .container .c-title-box svg {
    display: inline-block;
  }
}
@media (max-width: 991px) {
  #c-footer .c-center-box .container .c-list-box {
    display: none;
  }
}
@media (max-width: 767px) {
  #c-footer .c-center-box .container .c-list-box {
    width: 100%;
    display: block;
  }
}
@media (max-width: 767px) {
  #c-footer .c-center-box .container .c-list-box .c-list {
    padding-top: 0.2rem;
    display: none;
  }
}
#c-footer .c-center-box .container .c-list-box .c-list a {
  opacity: 0.8;
}
#c-footer .c-center-box .container .c-list-box .c-list a:hover {
  opacity: 1;
}
#c-footer .c-center-box .container .c-list-box .c-list li {
  padding-bottom: 0.1rem;
}
#c-footer .c-center-box .container .c-list-box .c-list li:last-child {
  padding-bottom: 0;
}
@media (max-width: 767px) {
  #c-footer .c-center-box .container .c-list-box .c-list li:last-child {
    padding-bottom: 0.2rem;
  }
}
@media (max-width: 767px) {
  #c-footer .c-center-box .container .c-list-box .c-list li {
    padding-bottom: 0.2rem;
  }
}
#c-footer .c-center-box .container .c-list-box.on .c-title-box img,
#c-footer .c-center-box .container .c-list-box.on .c-title-box svg {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
@media (max-width: 767px) {
  #c-footer .c-center-box .container .c-list-box.on .c-title-box img,
  #c-footer .c-center-box .container .c-list-box.on .c-title-box svg {
    display: inline-block;
  }
}
@media (max-width: 767px) {
  #c-footer .c-center-box .container .c-link {
    display: flex;
    width: 100%;
    justify-content: center;
  }
}
#c-footer .c-center-box .container .c-ico {
  display: flex;
  align-items: center;
  padding-left: 0.16rem;
}
@media (max-width: 767px) {
  #c-footer .c-center-box .container .c-ico {
    margin: 0.6rem 0 0.4rem;
    padding: 0;
  }
}
#c-footer .c-center-box .container .c-ico a {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.3rem;
  transition: 0.4s;
}
#c-footer .c-center-box .container .c-ico a:last-child {
  margin-right: 0;
}
#c-footer .c-center-box .container .c-ico a img,
#c-footer .c-center-box .container .c-ico a svg {
  width: 20px;
  height: 20px;
}
#c-footer .c-center-box .container .c-ico a:hover {
  color: var(--color);
}
@media (max-width: 767px) {
  #c-footer .c-center-box .container .c-text-wrap {
    width: 100%;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
  }
}
#c-footer .c-center-box .container .c-text-wrap .c-logo {
  display: inline-block;
}
@media (max-width: 767px) {
  #c-footer .c-center-box .container .c-text-wrap .c-logo {
    width: 100%;
    text-align: center;
  }
}
#c-footer .c-center-box .container .c-text-wrap .c-logo img {
  height: 56px;
}
@media (max-width: 767px) {
  #c-footer .c-center-box .container .c-text-wrap .c-logo img {
    height: 38px;
  }
}
#c-footer .c-center-box .container .c-text-wrap .public-btn {
  margin: 0.47rem 0 1.34rem;
  color: #fff;
  min-width: 2rem;
  justify-content: center;
}
@media (max-width: 991px) {
  #c-footer .c-center-box .container .c-text-wrap .public-btn {
    margin: 0.4rem 0 0.6rem;
  }
}
@media (max-width: 767px) {
  #c-footer .c-center-box .container .c-text-wrap .public-btn {
    margin: 0.4rem 0 0;
  }
}
#c-footer .c-center-box .container .c-text-wrap .public-btn .c-svg {
  width: 18px;
  height: 18px;
  margin: 0 0.1rem -1px 0;
}
#c-footer .c-bottom-box {
  position: relative;
  z-index: 5;
  color: rgba(255, 255, 255, 0.5);
}
#c-footer .c-bottom-box .container {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0.35rem 0;
}
@media (max-width: 991px) {
  #c-footer .c-bottom-box .container {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  #c-footer .c-bottom-box .container {
    padding: 0.6rem 0;
    justify-content: center;
    text-align: center;
  }
}
#c-footer .c-bottom-box .container .c-go-top {
  margin-bottom: 0.4rem;
  position: absolute;
  right: 0;
  bottom: 100%;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  cursor: pointer;
}
@media (max-width: 767px) {
  #c-footer .c-bottom-box .container .c-go-top {
    display: none;
  }
}
#c-footer .c-bottom-box .container .c-go-top::before,
#c-footer .c-bottom-box .container .c-go-top::after {
  content: "";
  box-sizing: border-box;
  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;
}
#c-footer .c-bottom-box .container .c-go-top::after {
  opacity: 0;
  border: 0;
  background: linear-gradient(90deg, #0047BB 0%, #E90044 110%);
}
#c-footer .c-bottom-box .container .c-go-top img {
  position: relative;
  z-index: 5;
  width: 14px;
  height: 14px;
  object-fit: contain;
}
#c-footer .c-bottom-box .container .c-go-top:hover::before {
  opacity: 0;
}
#c-footer .c-bottom-box .container .c-go-top:hover::after {
  opacity: 1;
}
@media (max-width: 767px) {
  #c-footer .c-bottom-box .container .c-copyright a:last-child {
    display: block;
  }
}
#c-footer .c-bottom-box .container a {
  color: rgba(255, 255, 255, 0.5);
}
#c-footer .c-bottom-box .container a:hover {
  color: var(--color);
}
#c-footer .c-bottom-box .container .c-copyright {
  margin-right: 0.4rem;
  word-wrap: break-word;
  word-break: break-all;
}
@media (max-width: 991px) {
  #c-footer .c-bottom-box .container .c-copyright {
    margin-right: 0;
  }
}
#c-footer .c-bottom-box .container .c-policy-link a {
  position: relative;
  margin-right: 0.2rem;
}
#c-footer .c-bottom-box .container .c-policy-link a:last-child {
  margin-right: 0;
}
#c-footer .c-bottom-box .container .c-policy-link a:last-child::before {
  display: none ;
}
#c-footer .c-bottom-box .container .c-policy-link a::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -0.1rem;
  height: 1em;
  border-left: 1px solid rgba(255, 255, 255, 0.25);
  transform: translateY(-50%);
}
#c-go-top {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  bottom: 10px;
  right: 10px;
  z-index: 999;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--color);
  cursor: pointer;
}
@media (max-width: 767px) {
  #c-go-top {
    display: none !important;
  }
}
#c-go-top img,
#c-go-top svg {
  width: 50%;
  height: 50%;
  color: #fff;
  transform: rotate(-90deg);
}
#c-code-pop {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 910;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}
#c-code-pop .c-img-box {
  position: absolute;
  top: 50%;
  left: 50%;
  padding: 20px;
  width: 200px;
  border-radius: 5px;
  background: #fff;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
#c-code-pop .c-img-box .c-close {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  bottom: -60px;
  left: 50%;
  margin-left: -20px;
  cursor: pointer;
  background-color: #fff;
  border-radius: 50%;
  transition: all 0.4s;
  color: #333;
}
#c-code-pop .c-img-box .c-close img,
#c-code-pop .c-img-box .c-close svg {
  margin: 4px;
  width: 18px;
  height: 18px;
}
#c-code-pop .c-img-box .c-close:hover {
  color: #fff;
  background-color: var(--color);
}
#c-code-pop .c-img-box > img {
  width: 100%;
}
#c-code-pop .c-img-box .c-text {
  padding-top: 10px;
  line-height: 1;
  text-align: center;
  color: #333;
}
.public-page {
  padding: 1.2rem 0;
  background: #f0f6ff;
  min-height: calc(100vh - 100px);
  min-height: calc(100svh - 100px);
  min-height: calc(100dvh - 100px);
}
@media (max-width: 991px) {
  .public-page {
    min-height: calc(100vh - 60px);
    min-height: calc(100svh - 60px);
    min-height: calc(100dvh - 60px);
  }
}
.public-page .container {
  max-width: 1400px;
}
.public-page .c-title-box {
  text-align: center;
}
.public-page .c-title-box .c-title {
  font-weight: bold;
}
.public-page .c-title-box .c-time {
  margin: 0.2rem 0 0.9rem;
  color: #888888;
}
.public-page .c-title-box .c-time span {
  margin: 0 0 -0.13rem;
}
.c-404 {
  display: flex;
  align-items: center;
  padding: 1.2rem 0;
  text-align: center;
  background: #f0f6ff;
  min-height: calc(100vh - 100px);
  min-height: calc(100svh - 100px);
  min-height: calc(100dvh - 100px);
}
@media (max-width: 991px) {
  .c-404 {
    min-height: calc(100vh - 60px);
    min-height: calc(100svh - 60px);
    min-height: calc(100dvh - 60px);
  }
}
.c-404 .container {
  position: relative;
}
.c-404 .c-num {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  font-size: 5.12rem;
  color: #3f80e8;
  opacity: 0.05;
  transform: translateY(-50%);
}
@media (max-width: 767px) {
  .c-404 .c-num {
    font-size: 50vw;
  }
}
.c-404 .c-title {
  position: relative;
  z-index: 5;
  font-weight: border;
}
.c-404 .public-btn {
  position: relative;
  z-index: 5;
  margin: 0.85rem 0 0;
}
.c-sitemap {
  padding: 1.2rem 0;
  background: #f0f6ff;
  min-height: calc(100vh - 100px);
  min-height: calc(100svh - 100px);
  min-height: calc(100dvh - 100px);
}
@media (max-width: 991px) {
  .c-sitemap {
    min-height: calc(100vh - 60px);
    min-height: calc(100svh - 60px);
    min-height: calc(100dvh - 60px);
  }
}
.c-sitemap .container {
  max-width: 1080px;
}
.c-sitemap .c-title {
  font-weight: bold;
  text-align: center;
}
.c-sitemap .c-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 1rem -0.2rem -0.4rem;
}
@media (max-width: 767px) {
  .c-sitemap .c-list {
    justify-content: flex-start;
    margin-bottom: -0.8rem;
  }
}
.c-sitemap .c-list a {
  transition: all 0.4s;
}
.c-sitemap .c-list a:hover {
  color: var(--color) !important;
  text-decoration: underline;
}
.c-sitemap .c-list > li {
  padding: 0 0.2rem 0.4rem;
}
@media (max-width: 767px) {
  .c-sitemap .c-list > li {
    width: 33.33%;
    padding-bottom: 0.8rem;
  }
}
.c-sitemap .c-list > li > a {
  font-weight: bold;
}
.c-sitemap .c-list > li ul li {
  margin-top: 0.1rem;
}
.c-sitemap .c-list > li ul li:first-child {
  margin-top: 0.25rem;
}
.c-sitemap .c-list > li ul li a {
  color: #888;
}
/*首页内容1*/
.c-home1 {
  position: sticky;
  position: -webkit-sticky;
  top: 0;
  z-index: 1;
  overflow: hidden;
}
.c-home1 .c-main-box {
  position: relative;
}
@media (max-width: 991px) {
  .c-home1 .c-main-box {
    display: flex;
    overflow-x: auto;
  }
}
.c-home1 .c-main {
  flex-shrink: 0;
  position: relative;
}
.c-home1.on .c-slogan,
.c-home1.on .c-list {
  opacity: 0;
}
.c-home1.on2 .c-list2 {
  opacity: 1;
  pointer-events: auto;
}
.c-home1.on2 .c-list2 > li.on {
  pointer-events: auto;
}
.c-home1.on2 .c-list3 {
  opacity: 1;
}
.c-home1 .container {
  width: 93.75%;
  max-width: none;
}
@media (max-width: 1580px) {
  .c-home1 .container {
    width: 90%;
  }
}
.c-home1 .c-video-img {
  width: 100%;
  height: 100vh;
  height: 100svh;
  height: 100dvh;
  object-fit: cover;
}
@media (max-width: 991px) {
  .c-home1 .c-video-img {
    width: auto;
    max-width: none;
    opacity: 1;
  }
}
.c-home1 video {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 991px) {
  .c-home1 video {
    display: none;
  }
}
.c-home1 .c-slogan {
  position: absolute;
  left: 0;
  bottom: 0;
  padding-bottom: 1.5rem;
  z-index: 5;
  width: 100%;
  pointer-events: none;
  transition: all 0.4s;
}
@media (max-width: 1580px) {
  .c-home1 .c-slogan {
    padding-bottom: 0.8rem;
  }
}
@media (max-width: 991px) {
  .c-home1 .c-slogan {
    position: sticky;
    left: 0;
    width: 100vw;
  }
  .c-home1 .c-slogan .container {
    width: 100%;
    max-width: 100%;
    padding: 0 5vw;
  }
}
.c-home1 .c-slogan .c-line {
  margin: 0.1rem 0;
  width: 2.7rem;
  height: 6px;
  background: linear-gradient(90deg, #0047BB 5.06%, #E90044 50.92%, rgba(255, 255, 255, 0) 98.99%);
}
.c-home1 .c-slogan .c-note {
  display: none;
  position: absolute;
  bottom: 10px;
  text-align: center;
  color: #000;
}
@media (max-width: 991px) {
  .c-home1 .c-slogan .c-note {
    display: block;
  }
}
.c-home1 .c-list {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
  transition: all 0.4s;
}
.c-home1 .c-list li {
  position: absolute;
  cursor: pointer;
}
.c-home1 .c-list li .c-ico {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 52px;
  height: 52px;
  transform: translate(-50%, -50%);
  transition: all 0.4s;
}
@media (max-width: 1580px) {
  .c-home1 .c-list li .c-ico {
    height: 40px;
    width: 40px;
  }
}
.c-home1 .c-list li .c-ico::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  opacity: 0.2;
  background: linear-gradient(268deg, #0047BB 1.12%, #E90044 98.64%);
  transition: all 0.4s;
}
.c-home1 .c-list li .c-ico img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: all 0.4s;
}
.c-home1 .c-list li .c-ico img:nth-child(2) {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  opacity: 0;
}
.c-home1 .c-list li .c-box {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 52px;
  min-width: 1.75rem;
  padding: 0 20px 0 40px;
  transform: translateY(-50%);
}
@media (max-width: 1580px) {
  .c-home1 .c-list li .c-box {
    height: 40px;
    min-width: 150px;
  }
}
.c-home1 .c-list li .c-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 0%;
  height: 100%;
  background: #fff;
  border-radius: 0 26px 26px 0;
  transition: all 0.4s 0.2s;
}
.c-home1 .c-list li .c-box span {
  transition: all 0.4s 0s;
  opacity: 0;
}
.c-home1 .c-list li .c-box .c-svg {
  flex-shrink: 0;
  margin-left: 10px;
  width: 12px;
  height: 12px;
  transition: all 0.4s 0s;
  opacity: 0;
}
.c-home1 .c-list li:hover .c-ico {
  transform: translate(-50%, -50%) rotate(90deg);
}
.c-home1 .c-list li:hover .c-ico::before {
  transform: scale(1.5);
}
.c-home1 .c-list li:hover .c-ico img:nth-child(2) {
  opacity: 1;
}
.c-home1 .c-list li:hover .c-box::before {
  width: 100%;
  transition: all 0.4s 0s;
}
.c-home1 .c-list li:hover .c-box span,
.c-home1 .c-list li:hover .c-box svg {
  opacity: 1;
  transition: all 0.4s 0.2s;
}
.c-home1 .c-list2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  pointer-events: none;
  transition: all 0.4s;
  opacity: 0;
}
.c-home1 .c-list2 > li {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  pointer-events: none;
  opacity: 0;
  transition: all 0.4s;
}
.c-home1 .c-list2 > li.on {
  opacity: 1;
}
.c-home1 .c-list2 > li .container {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-bottom: 0.8rem;
}
@media (max-width: 991px) {
  .c-home1 .c-list2 > li .container {
    flex-wrap: wrap;
  }
}
.c-home1 .c-list2 > li .container .c-title-box {
  width: 45%;
}
@media (max-width: 991px) {
  .c-home1 .c-list2 > li .container .c-title-box {
    width: 100%;
  }
}
.c-home1 .c-list2 > li .container .c-title-box .c-title {
  margin: 0 0 0.12rem;
}
.c-home1 .c-list2 > li .container .c-title-box .c-text {
  background: linear-gradient(131deg, #0047BB 14.75%, #E90044 107.67%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}
.c-home1 .c-list2 > li .container .c-content {
  width: 45%;
  max-width: 4.2rem;
}
@media (max-width: 991px) {
  .c-home1 .c-list2 > li .container .c-content {
    margin-top: 0.2rem;
    width: 100%;
    max-width: 100%;
  }
}
.c-home1 .c-list2 > li .container .c-content .c-box1 {
  padding: 0.4rem;
  border-radius: 0.16rem;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 11px 26.5px 0 rgba(80, 80, 80, 0.05);
  backdrop-filter: blur(10px);
}
.c-home1 .c-list2 > li .container .c-content .c-box1 .c-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.c-home1 .c-list2 > li .container .c-content .c-box1 .c-title img {
  flex-shrink: 0;
  margin-left: 0.2rem;
  width: 52px;
  object-fit: contain;
}
.c-home1 .c-list2 > li .container .c-content .c-box1 .c-line {
  margin: 0.1rem 0 0.2rem;
  width: 0.9rem;
  height: 6px;
  background: linear-gradient(90deg, #0047BB 5.06%, #E90044 50.92%, rgba(255, 255, 255, 0) 98.99%);
}
.c-home1 .c-list2 > li .container .c-content .c-box1 .c-text {
  display: flex;
  align-items: flex-end;
  min-height: 2.15rem;
  margin-top: 0.26rem;
  color: #6B6B6B;
}
.c-home1 .c-list2 > li .container .c-content .c-box1 .c-btn {
  margin-top: 0.26rem;
  display: flex;
  align-items: center;
  color: #6B6B6B;
  transition: all 0.4s;
}
.c-home1 .c-list2 > li .container .c-content .c-box1 .c-btn .c-svg {
  margin-left: 0.1rem;
  width: 14px;
}
.c-home1 .c-list2 > li .container .c-content .c-box1 .c-btn:hover {
  color: var(--color);
}
.c-home1 .c-list2 > li .container .c-content .c-return {
  margin-top: 0.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  padding: 18px 18px 18px 35px;
  border-radius: 0.16rem;
  background: rgba(0, 0, 0, 0.3);
  box-shadow: 0 11px 26.5px 0 rgba(80, 80, 80, 0.05);
  backdrop-filter: blur(16px);
  color: #fff;
  transition: all 0.4s;
}
@media (max-width: 1580px) {
  .c-home1 .c-list2 > li .container .c-content .c-return {
    padding: 10px;
  }
}
.c-home1 .c-list2 > li .container .c-content .c-return .c-ico {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 8px;
  background: linear-gradient(131deg, #0047BB 14.75%, #E90044 107.67%);
  color: #fff;
}
@media (max-width: 1580px) {
  .c-home1 .c-list2 > li .container .c-content .c-return .c-ico {
    width: 30px;
    height: 30px;
  }
}
.c-home1 .c-list2 > li .container .c-content .c-return .c-ico .c-svg {
  width: 22px;
  height: 22px;
  object-fit: contain;
}
.c-home1 .c-list2 > li .container .c-content .c-return:hover {
  background: rgba(0, 0, 0, 0.5);
}
.c-home1 .c-list3 {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0;
  transition: all 0.4s;
  display: none;
}
@media (max-width: 991px) {
  .c-home1 .c-list3 {
    display: none;
  }
}
.c-home1 .c-list3 > li {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.c-home1 .c-list3 > li ul {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.c-home1 .c-list3 > li ul li {
  position: absolute;
}
.c-home1 .c-list3 > li ul li .c-dot {
  position: relative;
  z-index: 2;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(131deg, #0047BB 14.75%, #E90044 107.67%);
}
.c-home1 .c-list3 > li ul li .c-dot::before,
.c-home1 .c-list3 > li ul li .c-dot::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(131deg, rgba(0, 71, 187, 0.2) 14.75%, rgba(233, 0, 68, 0.2) 107.67%);
  animation: dotScale 3s infinite;
}
.c-home1 .c-list3 > li ul li .c-dot::after {
  animation-delay: 1.5s;
}
.c-home1 .c-list3 > li ul li p {
  position: absolute;
  top: 50%;
  left: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  padding: 15px;
  min-width: 120px;
  background: #fff;
  border-radius: 0.09rem;
  transform: translateY(-50%);
  text-align: center;
}
@media (max-width: 1580px) {
  .c-home1 .c-list3 > li ul li p {
    height: 40px;
  }
}
.c-home2 {
  position: relative;
  z-index: 2;
  padding: 0.87rem 0 1rem;
  color: #fff;
  background: #000;
}
.c-home2 .public-title {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  text-align: left;
}
.c-home2 .c-list {
  display: flex;
  flex-wrap: wrap;
  margin: 0.65rem -0.17rem -0.34rem;
}
.c-home2 .c-list .c-item {
  padding: 0 0.17rem 0.34rem;
  width: 50%;
}
@media (max-width: 767px) {
  .c-home2 .c-list .c-item {
    width: 100%;
  }
}
.c-home2 .c-list .c-item:nth-child(2) .c-wrap {
  background: url(../images/home2-bg2.png) no-repeat left bottom / cover;
}
.c-home2 .c-list .c-item .c-wrap {
  position: relative;
  z-index: 1;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.25);
  overflow: hidden;
  background: url(../images/home2-bg1.png) no-repeat left bottom / cover;
}
.c-home2 .c-list .c-item .c-wrap::before {
  content: '';
  display: block;
  padding-top: calc(585/960*100%);
}
.c-home2 .c-list .c-item .c-wrap .public-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.c-home2 .c-list .c-item .c-wrap .public-img img {
  object-fit: contain;
}
.c-home2 .c-list .c-item .c-wrap .c-text-box {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  padding: 0.35rem 0.4rem;
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.c-home2 .c-list .c-item .c-wrap .c-text-box .c-box .c-text {
  font-weight: bold;
}
.c-home2 .c-list .c-item .c-wrap .c-text-box .c-box .c-title {
  display: flex;
  align-items: center;
}
@media (max-width: 991px) {
  .c-home2 .c-list .c-item .c-wrap .c-text-box .c-box .c-title {
    font-size: 24px;
    margin: 0.1rem 0;
  }
}
.c-home2 .c-list .c-item .c-wrap .c-text-box .c-box .c-title img {
  margin-right: 0.08rem;
  height: 28px;
}
@media (max-width: 991px) {
  .c-home2 .c-list .c-item .c-wrap .c-text-box .c-box .c-title img {
    height: 24px;
  }
}
.c-home2 .c-list .c-item .c-wrap .c-text-box .c-box .c-text2 {
  margin-top: 5px;
  position: relative;
  display: inline-flex;
  padding: 0 0.13rem;
  border: 1px solid transparent;
  border-radius: 68px;
  line-height: 32px;
  background: linear-gradient(90deg, #340419, #340419) padding-box, linear-gradient(90deg, #E90044, #0047BB) border-box;
}
@media (max-width: 1580px) {
  .c-home2 .c-list .c-item .c-wrap .c-text-box .c-box .c-text2 {
    line-height: 24px;
  }
}
.c-home2 .c-list .c-item .c-wrap .c-text-box .c-ico {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 56px;
  height: 56px;
  overflow: hidden;
}
@media (max-width: 1580px) {
  .c-home2 .c-list .c-item .c-wrap .c-text-box .c-ico {
    width: 40px;
    height: 40px;
  }
}
.c-home2 .c-list .c-item .c-wrap .c-text-box .c-ico .c-svg {
  position: relative;
  z-index: 5;
  width: 16px;
  height: 16px;
}
@media (max-width: 1580px) {
  .c-home2 .c-list .c-item .c-wrap .c-text-box .c-ico .c-svg {
    width: 14px;
    height: 14px;
  }
}
.c-home2 .c-list .c-item .c-wrap .c-text-box .c-ico::before,
.c-home2 .c-list .c-item .c-wrap .c-text-box .c-ico::after {
  box-sizing: border-box;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.4s;
}
.c-home2 .c-list .c-item .c-wrap .c-text-box .c-ico::after {
  opacity: 0;
  border: 0;
  background: linear-gradient(90deg, #E90044, #0047BB);
}
.c-home2 .c-list .c-item .c-wrap:hover .c-text-box .c-ico::before {
  opacity: 0;
}
.c-home2 .c-list .c-item .c-wrap:hover .c-text-box .c-ico::after {
  opacity: 1;
}
.c-home3 {
  position: relative;
  z-index: 2;
  color: #fff;
  height: 360vh;
}
.c-home3 .c-sticky {
  position: sticky;
  position: -webkit-sticky;
  top: 0;
  height: 100vh;
  height: 100svh;
  height: 100dvh;
  overflow: hidden;
  background: #000;
}
.c-home3 .c-sticky .c-list1-box {
  position: absolute;
  top: 1.15rem;
  left: 0;
  width: 100%;
  z-index: 5;
}
.c-home3 .c-sticky .c-list1-box .c-list1 {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.c-home3 .c-sticky .c-list1-box .c-list1 li {
  display: flex;
  align-items: center;
  cursor: pointer;
  opacity: 0.5;
  transition: all 0.4s;
}
.c-home3 .c-sticky .c-list1-box .c-list1 li img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  margin-right: 0.1rem;
}
@media (max-width: 767px) {
  .c-home3 .c-sticky .c-list1-box .c-list1 li img {
    width: 20px;
    height: 20px;
  }
}
.c-home3 .c-sticky .c-list1-box .c-list1 li.on {
  opacity: 1;
}
.c-home3 .c-sticky .c-list2 {
  position: relative;
  z-index: 1;
}
.c-home3 .c-sticky .c-list2 li {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.c-home3 .c-sticky .c-list2 li:nth-child(1) {
  position: relative;
  z-index: 3;
}
.c-home3 .c-sticky .c-list2 li:nth-child(2) {
  z-index: 2;
}
.c-home3 .c-sticky .c-list2 li:nth-child(3) {
  z-index: 1;
}
.c-home3 .c-sticky .c-list2 li .public-img {
  width: 100vw;
}
.c-home3 .c-sticky .c-list2 li .public-img::before {
  padding-top: 100vh;
  padding-top: 100svh;
  padding-top: 100dvh;
}
.c-home3 .c-sticky .c-list2 li .c-text-box {
  position: absolute;
  bottom: 1rem;
  left: 0;
  width: 100vw;
  z-index: 5;
}
.c-home3 .c-sticky .c-list2 li .c-text-box .container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .c-home3 .c-sticky .c-list2 li .c-text-box .container {
    flex-wrap: wrap;
  }
}
.c-home3 .c-sticky .c-list2 li .c-text-box .container .c-text {
  flex-shrink: 0;
  margin-left: 0.4rem;
  max-width: 330px;
}
@media (max-width: 767px) {
  .c-home3 .c-sticky .c-list2 li .c-text-box .container .c-text {
    margin: 0.1rem 0 0;
  }
}
.c-home4 {
  position: relative;
  z-index: 2;
  padding: 0.9rem 0;
  color: #fff;
  background: #000 url(../images/home4-bg.jpg) no-repeat left top / 100% auto;
  overflow: hidden;
}
.c-home4::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}
.c-home4 .c-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 0.16rem;
  max-width: 1080px;
  margin: 0.6rem auto 0.75rem;
}
.c-home4 .c-list li {
  padding: 2px;
  position: relative;
  overflow: hidden;
  border-radius: 0.16rem;
}
.c-home4 .c-list li::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 0;
  width: 150%;
  height: 400%;
  background: conic-gradient(transparent, var(--color), var(--color2), transparent 20%);
  animation: flowingLight 3s linear infinite;
  transition: all 0.4s;
  box-sizing: border-box;
  opacity: 0;
}
.c-home4 .c-list li .public-img {
  border-radius: 0.16rem;
}
.c-home4 .c-list li .public-img::before {
  padding-top: calc(435/345*100%);
}
.c-home4 .c-list li:hover::after {
  opacity: 1;
}
.c-home4 .c-list li:hover .public-img img {
  transform: scale(1.05);
}
.c-home4 .container {
  position: relative;
  z-index: 2;
}
.c-home4 .swiper {
  z-index: 2;
  padding: 0 1.2rem;
}
.c-home4 .swiper .public-img img {
  object-fit: contain;
}
.c-home4 .swiper .public-img::before {
  padding-top: calc(95/290*100%);
}
.c-home4 .swiper .public-img .c-border {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  width: 100%;
  height: 100%;
  background: url(../images/home4-border.svg) no-repeat left top / 8px 8px;
  opacity: 0;
  transition: all 0.4s;
}
@media (max-width: 991px) {
  .c-home4 .swiper .public-img .c-border {
    opacity: 1;
  }
}
.c-home4 .swiper .public-img .c-border::before,
.c-home4 .swiper .public-img .c-border::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 8px;
  height: 8px;
  background: url(../images/home4-border.svg) no-repeat left top / 8px 8px;
  transform: rotate(90deg);
}
.c-home4 .swiper .public-img .c-border::after {
  top: auto;
  bottom: 0;
  transform: rotate(180deg);
}
.c-home4 .swiper .public-img .c-border div {
  position: absolute;
  top: auto;
  right: auto;
  bottom: 0;
  left: 0;
  width: 8px;
  height: 8px;
  background: url(../images/home4-border.svg) no-repeat left top / 8px 8px;
  transform: rotate(-90deg);
}
.c-home4 .swiper .public-img:hover .c-border {
  opacity: 1;
}
.c-home5 {
  position: relative;
  z-index: 2;
  height: 300vh;
  background: #000;
}
@media (max-width: 767px) {
  .c-home5 {
    height: auto;
    padding: 0 0 1.2rem;
    overflow: visible;
  }
}
.c-home5 .c-sticky {
  position: sticky;
  position: -webkit-sticky;
  top: 0;
  height: 100vh;
  height: 100svh;
  height: 100dvh;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}
@media (max-width: 767px) {
  .c-home5 .c-sticky {
    position: relative;
    height: auto;
    overflow: visible;
  }
}
.c-home5 .c-sticky .container {
  position: relative;
}
.c-home5 .c-sticky .public-title {
  position: relative;
  z-index: 5;
  text-align: left;
  width: 40%;
  max-width: 570px;
  opacity: 0;
}
@media (max-width: 1260px) {
  .c-home5 .c-sticky .public-title {
    width: 45%;
  }
}
@media (max-width: 767px) {
  .c-home5 .c-sticky .public-title {
    opacity: 1;
    width: 100%;
  }
}
.c-home5 .c-sticky .public-title .public-btn {
  margin-top: 0.4rem;
}
.c-home5 .c-sticky .c-video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1.2);
  width: 7.4rem;
  height: 7.4rem;
}
@media (max-width: 767px) {
  .c-home5 .c-sticky .c-video {
    position: static;
    transform: translate(0, 0);
    width: 90vw;
    height: 90vw;
  }
}
.c-home5 .c-sticky .c-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.c-home5 .c-sticky .c-list {
  position: relative;
  z-index: 5;
  display: flex;
  margin: 0.8rem -13px 0;
  overflow: visible;
  transform: translateX(100vw);
}
@media (max-width: 767px) {
  .c-home5 .c-sticky .c-list {
    flex-wrap: wrap;
    transform: translate(0, 0);
    margin: 0.8rem -0.1rem -0.2rem;
  }
}
.c-home5 .c-sticky .c-list li {
  display: flex;
  padding: 0 13px;
  width: 33.33%;
  flex-shrink: 0;
}
@media (max-width: 991px) {
  .c-home5 .c-sticky .c-list li {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .c-home5 .c-sticky .c-list li {
    width: 100%;
    padding: 0 0.1rem 0.2rem;
  }
}
.c-home5 .c-sticky .c-list li .c-wrap {
  display: flex;
  align-content: space-between;
  flex-wrap: wrap;
  width: 100%;
  position: relative;
  padding: 0.3rem;
  border: 1px solid rgba(234, 234, 234, 0.16);
  background: rgba(41, 64, 78, 0.19);
  backdrop-filter: blur(40px);
}
.c-home5 .c-sticky .c-list li .c-wrap::before {
  opacity: 0;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/home5-bg.png) no-repeat center center / cover;
  transition: all 0.4s;
}
.c-home5 .c-sticky .c-list li .c-wrap .c-title {
  position: relative;
  z-index: 2;
}
.c-home5 .c-sticky .c-list li .c-wrap .c-title span {
  opacity: 0.5;
}
.c-home5 .c-sticky .c-list li .c-wrap .c-box {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: 0.65rem;
  width: 100%;
}
.c-home5 .c-sticky .c-list li .c-wrap .c-box .c-text {
  padding-right: 0.4rem;
  opacity: 0.5;
}
.c-home5 .c-sticky .c-list li .c-wrap .c-box .c-ico {
  width: 66px;
  height: 66px;
  object-fit: contain;
}
@media (max-width: 1580px) {
  .c-home5 .c-sticky .c-list li .c-wrap .c-box .c-ico {
    width: 40px;
    height: 40px;
  }
}
.c-home5 .c-sticky .c-list li .c-wrap:hover::before {
  opacity: 1;
}
.c-home6 {
  position: relative;
  z-index: 2;
  overflow: hidden;
  background: #fff;
}
@media (max-width: 767px) {
  .c-home6 {
    padding: 1.2rem 0 0;
    overflow: visible;
  }
}
.c-home6 .container {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  min-height: 9.6rem;
}
@media (max-width: 767px) {
  .c-home6 .container {
    min-height: auto;
  }
}
.c-home6 .container .public-title {
  width: 50%;
  max-width: 700px;
  text-align: left;
}
@media (max-width: 1260px) {
  .c-home6 .container .public-title {
    width: 55%;
  }
}
@media (max-width: 767px) {
  .c-home6 .container .public-title {
    width: 100%;
  }
}
.c-home6 .container .public-title .public-btn {
  margin-top: 0.55rem;
}
.c-home6 .c-img {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  max-width: 14.6rem;
  transform: translate(40%, 40%);
}
@media (max-width: 1260px) {
  .c-home6 .c-img {
    max-width: 12rem;
  }
}
@media (max-width: 767px) {
  .c-home6 .c-img {
    position: static;
    transform: translate(0, 0);
    width: 70%;
    margin: 0.4rem auto 0;
  }
}
.c-home6 .c-img img {
  width: 100%;
}
.c-home6 .c-img img:nth-child(2) {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  animation: rotate360 6s linear infinite;
}
.c-home7 {
  position: relative;
  z-index: 2;
  padding: 1.5rem 0 1.8rem;
  overflow: hidden;
  background: #fff;
}
.c-home7 .public-title {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.c-home7 .public-title .public-btn {
  margin-left: 0.4rem;
  flex-shrink: 0;
}
.c-home7 .swiper {
  margin-top: 0.55rem;
  height: 5.2rem;
  overflow: visible;
}
.c-home7 .swiper .swiper-slide {
  width: 4.8rem;
  transition: all 0.8s;
}
.c-home7 .swiper .swiper-slide .c-wrap {
  position: relative;
  display: block;
}
.c-home7 .swiper .swiper-slide .c-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
  background: url(../images/home7-bg.png) no-repeat left bottom / 100% auto;
  opacity: 0;
  transition: all 0.4s;
}
.c-home7 .swiper .swiper-slide .c-wrap .public-img::before {
  padding-top: calc(520/800*100%);
}
.c-home7 .swiper .swiper-slide .c-wrap .c-text-box {
  position: absolute;
  bottom: 0.2rem;
  left: 0.2rem;
  z-index: 5;
  padding: 0.2rem;
  width: calc(100% - 0.4rem);
  max-width: 460;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  transition: all 0.4s;
}
.c-home7 .swiper .swiper-slide .c-wrap .c-text-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 7px;
  height: 100%;
  background: linear-gradient(180deg, #0047BB 5.81%, #E90044 53.64%, rgba(0, 0, 0, 0) 113.53%);
  opacity: 0;
  transition: all 0.4s;
}
.c-home7 .swiper .swiper-slide .c-wrap .c-text-box .c-title {
  margin-top: 0.3rem;
  transition: all 0.4s;
}
.c-home7 .swiper .swiper-slide .c-wrap .c-text-box .c-svg {
  width: 24px;
  height: 24px;
  position: absolute;
  bottom: 0.2rem;
  right: 0.2rem;
  opacity: 0;
  transition: all 0.4s;
}
@media (max-width: 1580px) {
  .c-home7 .swiper .swiper-slide .c-wrap .c-text-box .c-svg {
    width: 14px;
    height: 14px;
  }
}
.c-home7 .swiper .swiper-slide-active {
  width: 8rem;
}
.c-home7 .swiper .swiper-slide-active .c-wrap::before {
  opacity: 1;
}
.c-home7 .swiper .swiper-slide-active .c-wrap .c-text-box {
  padding-bottom: 1rem;
  background: rgba(0, 0, 0, 0.9);
}
@media (max-width: 767px) {
  .c-home7 .swiper .swiper-slide-active .c-wrap .c-text-box {
    padding-bottom: 30px;
  }
}
.c-home7 .swiper .swiper-slide-active .c-wrap .c-text-box::before {
  opacity: 1;
}
.c-home7 .swiper .swiper-slide-active .c-wrap .c-text-box .c-title {
  font-size: 24px;
}
@media (max-width: 1580px) {
  .c-home7 .swiper .swiper-slide-active .c-wrap .c-text-box .c-title {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .c-home7 .swiper .swiper-slide-active .c-wrap .c-text-box .c-title {
    font-size: 14px;
  }
}
.c-home7 .swiper .swiper-slide-active .c-wrap .c-text-box .c-svg {
  opacity: 1;
}
.c-home7 .swiper .c-btn-box {
  display: flex;
  align-items: center;
  position: absolute;
  bottom: 0;
  right: 0;
}
@media (max-width: 767px) {
  .c-home7 .swiper .c-btn-box {
    justify-content: center;
    width: 100%;
  }
}
.c-home7 .swiper .c-btn-box .swiper-button-prev,
.c-home7 .swiper .c-btn-box .swiper-button-next {
  position: static;
  transform: translate(0, 0);
}
.c-home7 .swiper .c-btn-box .swiper-button-prev {
  margin-right: 0.18rem;
  transform: rotate(180deg);
}
