:root {
  --gradient-1: -webkit-linear-gradient(-45deg, #8b018d, #c72777);
}
body::-webkit-scrollbar {
  width: 6px;
}
body::-webkit-scrollbar-thumb {
  border-radius: 12px;
  -webkit-box-shadow: inset 0 0 5px rgba(255, 255, 255, 0.2);
  background: rgba(0, 0, 0, 0.3);
}
body::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 5px rgba(255, 255, 255, 0.2);
  border-radius: 0;
  background: transparent;
  position: absolute;
}
html {
  scroll-behavior: smooth;
}
body {
  text-rendering: optimizeLegibility;
  background-color: var(--back-color);
  /*background-image:linear-gradient(to bottom,#090812,#111520 100vh,#07090e 200vh);*/
  position: relative;
  font-family: var(--font-family);
  font-weight: lighter;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.03rem;
  width: 100%;
  /*&:after{
        content: "";
        position: fixed;
        z-index: -1;
        background-image:linear-gradient(to bottom,#090812,#111520 100vh,#07090e 200vh);
        width: 100%;
        height: 100vh;
        left: 0;
        top: 0;
    }*/
}
body.show-mobile-menu {
  overflow: hidden;
}
body.show-mobile-menu .mask-shade {
  position: fixed;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  z-index: 98;
}
body.overflow-y-h {
  overflow-y: hidden;
  padding-right: 7px;
}
@media screen and (min-width: 1px) and (max-width: 768px) {
  body.overflow-y-h {
    padding-right: 0;
  }
}
body a {
  color: #333;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
  -webkit-user-select: none;
  -moz-user-focus: none;
  -moz-user-select: none;
}
body a,
body a:hover,
body a:active,
body a:visited,
body a:link,
body a:focus {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-tap-highlight-color: transparent;
  outline: none;
  text-decoration: none;
}
.global-loading {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 100;
  opacity: 1;
  display: none;
}
._show_loading {
  overflow: hidden;
}
._show_loading:before {
  content: "";
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: #000;
  top: 0;
  left: 0;
  z-index: 100;
  animation: showup 0.7s 1.2s forwards;
}
@keyframes showup {
  0% {
    height: 100%;
  }
  100% {
    height: 0;
  }
}
._show_loading .global-loading {
  display: block;
}
@media screen and (min-width: 769px) {
  .pc-hide {
    display: none!important;
  }
}
.btnbox {
  width: 70%;
  position: sticky;
  transition: 0.4s all cubic-bezier(0, 1, 0.75, 1);
  display: flex;
  justify-content: space-evenly;
  z-index: 20;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .btnbox {
    width: 100%;
  }
}
.btnbox .button {
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-pack: justify;
  -ms-flex-align: center;
  align-items: center;
  justify-content: space-evenly;
  width: 360px;
  background-color: #000;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  border-radius: 3em;
  padding: 10px 25px;
  -ms-flex: none;
  flex: none;
  transition-duration: 0.3s;
  color: #fff;
  position: relative;
  height: 80px;
}
@media screen and (min-width: 1px) and (max-width: 768px) {
  .btnbox .button {
    width: calc(50% - 10px);
    max-width: 400px;
    padding: 10px 0px;
    height: 60px;
  }
}
.btnbox .button:hover .uwu {
  filter: blur(30px);
  transform: scale(1.1);
}
.btnbox .button .text {
  display: inline-flex;
  align-items: center;
  margin-right: 20px;
}
@media screen and (min-width: 1px) and (max-width: 768px) {
  .btnbox .button .text {
    margin-right: 0px;
  }
}
.btnbox .button .text i {
  font-size: 42px;
  margin-right: 10px;
  font-weight: 100;
}
@media screen and (min-width: 1px) and (max-width: 768px) {
  .btnbox .button .text i {
    font-size: 32px;
    margin-right: 6px;
  }
}
.btnbox .button .text p {
  display: flex;
  flex-direction: column;
  margin: 0 !important;
}
.btnbox .button .text p .btn-text {
  font-size: 24px;
}
@media screen and (min-width: 1px) and (max-width: 768px) {
  .btnbox .button .text p .btn-text {
    font-size: 16px;
  }
}
.btnbox .button .text p .btn-num {
  font-size: 24px;
  font-weight: 700;
  margin-top: 4px;
}
@media screen and (min-width: 1px) and (max-width: 768px) {
  .btnbox .button .text p .btn-num {
    font-size: 16px;
    font-weight: 700;
  }
}
.btnbox .button .shake1 {
  animation: shake1 6s infinite;
  animation-delay: 0s;
}
@keyframes shake1 {
  0% {
    transform: translateX(2px);
  }
  1% {
    transform: translateX(-2px);
  }
  2% {
    transform: translateX(2px);
  }
  3% {
    transform: translateX(-2px);
  }
  4% {
    transform: translateX(2px);
  }
  5% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(0);
  }
}
.btnbox .button .shake2 {
  animation: shake2 6s infinite;
  animation-delay: 3s;
}
@keyframes shake2 {
  0% {
    transform: translateX(0);
  }
  95% {
    transform: translateX(0);
  }
  96% {
    transform: translateX(2px);
  }
  97% {
    transform: translateX(-2px);
  }
  98% {
    transform: translateX(2px);
  }
  99% {
    transform: translateX(-2px);
  }
  100% {
    transform: translateX(2px);
  }
}
.btnbox .btn-bg {
  position: absolute;
  z-index: -1;
  inset: -2px;
  border-radius: 3em;
  overflow: hidden;
}
.btnbox .uwu {
  filter: blur(8px);
  transition: filter 0.3s;
}
.btnbox .btn-bg::before {
  content: '';
  position: absolute;
  aspect-ratio: 1/1;
  top: 50%;
  left: 50%;
  min-width: 150%;
  min-height: 150%;
  background-image: conic-gradient(hsl(0, 100%, 50%), hsl(30, 100%, 50%), hsl(60, 100%, 50%), hsl(90, 100%, 50%), hsl(120, 100%, 50%), hsl(150, 100%, 50%), hsl(180, 100%, 50%), hsl(210, 100%, 50%), hsl(240, 100%, 60%), hsl(270, 100%, 50%), hsl(300, 100%, 50%), hsl(330, 100%, 50%), hsl(0, 100%, 50%));
  animation: speeen 4s linear infinite;
  transform-origin: 0% 0%;
  transform: rotate(0deg) translate(-50%, -50%);
}
@keyframes speeen {
  from {
    transform: rotate(0deg) translate(-50%, -50%);
  }
  to {
    transform: rotate(360deg) translate(-50%, -50%);
  }
}
@media screen and (max-width: 768px) {
  .btnbox-top {
    top: 4vw;
    justify-content: space-between;
    padding: 0 4vw;
  }
  .btnbox-top::after {
    content: "";
    width: 20%;
    height: 50px;
  }
}
@media screen and (min-width: 1px) and (max-width: 768px) {
  .btnbox-top .button {
    width: 38%;
    padding: 8px 0px;
    height: unset;
  }
}
@media screen and (min-width: 1px) and (max-width: 768px) {
  .btnbox-top .button .text p .btn-num {
    font-size: 12px;
  }
}
.btnbox-col {
  display: flex;
  margin: 0 auto;
  max-width: 1024px;
  justify-content: space-evenly;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .btnbox-col {
    flex-direction: column;
  }
}
@media screen and (min-width: 1px) and (max-width: 768px) {
  .btnbox-col .button {
    width: 75%;
    max-width: 400px;
    padding: 10px 0px;
  }
  .btnbox-col .button:last-child {
    margin-top: 30px;
  }
}
@-webkit-keyframes opacity {
  0% {
    -webkit-transform: scale(0.2);
    transform: scale(0.2);
  }
  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
}
@keyframes opacity {
  0% {
    transform: scale(0.2);
  }
  70% {
    transform: scale(1);
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}
[data-trigger]:not(ol):not(ul) {
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  transform: translateY(40px);
  transition-delay: 0.3s;
  transition-duration: 0.4s;
  transition-timing-function: cubic-bezier(0.7, 0.3, 0.47, 0.78);
}
ol[data-trigger] > li,
ul[data-trigger] > li {
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  transform: translateY(40px);
  transition-duration: 0.4s;
  transition-timing-function: cubic-bezier(0.7, 0.3, 0.47, 0.78);
}
ol[data-trigger] > li:nth-child(1),
ul[data-trigger] > li:nth-child(1) {
  transition-delay: 0.2s;
}
ol[data-trigger] > li:nth-child(2),
ul[data-trigger] > li:nth-child(2) {
  transition-delay: 0.4s;
}
ol[data-trigger] > li:nth-child(3),
ul[data-trigger] > li:nth-child(3) {
  transition-delay: 0.6s;
}
ol[data-trigger].visible > li,
ul[data-trigger].visible > li {
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  transform: translateY(0);
}
[data-trigger]:not(ol):not(ul).visible {
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  transform: translateY(0);
}
.container {
  position: relative;
  padding-bottom: 120px;
  background-color: #000;
}
@media screen and (max-width: 768px) {
  .container {
    /* overflow: hidden; */
    padding-bottom: 60px;
    z-index: 2;
  }
}
.container:before {
  /*content: '';
        width: 98vw;
        height: 440px;
        background-color: var(--section-back-color);
        position: absolute;
        top: 0;
        left: 0;
        z-index: 1;
        @media screen and (max-width: 768px) {
            width: 100vw;
            height: 65vh;
            transform: skewY(-12.5deg);
            transform-origin: 0 0;
        }*/
}
.container.no-curtain:before {
  content: unset;
}
.container .intro {
  width: 80vw;
  margin: 0 auto;
  color: #fff;
  position: relative;
  z-index: 2;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .container .intro {
    width: 100%;
  }
}
.container .intro .text {
  text-align: left;
  font-size: 16px;
  line-height: 2;
  font-weight: 500;
}
.container .intro .title {
  font-size: 42px;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .container .intro .title {
    font-size: 22px;
  }
}
.container .intro .sub {
  opacity: 0.15;
}
@media screen and (max-width: 768px) {
  .container .intro .sub {
    font-size: 14px;
  }
}
.container .main {
  position: relative;
  z-index: 2;
  width: 100%;
}
.container .main .wrap {
  width: 100%;
  margin: 0 auto;
  /*background-color: #fff;*/
  /*padding: 80px 15% 100px;*/
}
header {
  width: 100vw;
  transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  position: sticky;
  padding: 2vw;
  z-index: 99;
  top: 0;
  left: 0;
}
@media screen and (max-width: 1024px) {
  header {
    padding: 4vw;
  }
}
header.sticky {
  width: 100vw;
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  top: 0;
  left: 0;
  transform: translateX(0);
  border-radius: 0;
  position: sticky;
}
@media screen and (max-width: 768px) {
  header {
    width: 100vw;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    top: 0!important;
    left: 0!important;
    border-radius: 0;
  }
}
header .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  width: 100%;
  height: 80px;
  z-index: 999;
  max-width: 1024px;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  header .wrapper {
    height: 50px;
  }
}
header .logo-sec img {
  height: 40px;
}
@media screen and (max-width: 1024px) {
  header .logo-sec img {
    height: 32px;
  }
}
header .icons {
  display: flex;
  height: 100%;
  align-items: center;
  text-align: center;
  transition: 0.4s all cubic-bezier(0, 1, 0.75, 1);
  color: #FFF;
  background-color: #1a1a1a;
  border-radius: 99px;
  z-index: 999;
  padding: 40px;
}
@media screen and (max-width: 1024px) {
  header .icons {
    width: 30%;
    padding: 0px;
  }
}
header .icons .drawer-btn .toggle {
  position: relative;
  width: 34px;
  cursor: pointer;
  margin: auto;
  display: block;
  height: calc(4px * 3 + 11px * 2);
}
@media screen and (max-width: 1024px) {
  header .icons .drawer-btn .toggle {
    width: 24px;
    height: calc(4px * 3 + 3px * 2);
  }
}
header .icons .drawer-btn .bar {
  position: absolute;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: calc(4px / 2);
  background: #ffffff;
  color: inherit;
  opacity: 1;
  transition: none 0.35s cubic-bezier(0.5, -0.35, 0.35, 1.5) 0s;
}
@media screen and (max-width: 1024px) {
  header .icons .drawer-btn .bar {
    height: 3px;
  }
}
header .icons .drawer-btn .bar--top {
  bottom: calc(50% + 6px + 4px/2);
  transition-property: bottom,transform;
  transition-delay: calc(0s + 0.35s), 0s;
}
@media screen and (max-width: 1024px) {
  header .icons .drawer-btn .bar--top {
    bottom: calc(50% + 3px + 4px/2);
  }
}
header .icons .drawer-btn .bar--middle {
  top: calc(50% - 4px/2);
  transition-property: opacity;
  transition-delay: calc(0s + 0.35s);
}
@media screen and (max-width: 1024px) {
  header .icons .drawer-btn .bar--middle {
    top: calc(50% - 3px/2);
  }
}
header .icons .drawer-btn .bar--bottom {
  top: calc(50% + 6px + 4px/2);
  transition-property: top,transform;
  transition-delay: calc(0s + 0.35s), 0s;
}
@media screen and (max-width: 1024px) {
  header .icons .drawer-btn .bar--bottom {
    top: calc(50% + 3px + 4px/2);
  }
}
header .icons .drawer-btn.show-open .toggle .bar--top {
  bottom: calc(50% - 4px/2);
  transform: rotate(135deg);
  transition-delay: 0s, calc(0s + 0.35s);
}
header .icons .drawer-btn.show-open .toggle .bar--middle {
  opacity: 0;
  transition-duration: 0s;
  transition-delay: calc(0s + 0.35s);
}
header .icons .drawer-btn.show-open .toggle .bar--bottom {
  top: calc(50% - 4px/2);
  transform: rotate(225deg);
  transition-delay: 0s, calc(0s + 0.35s);
}
@media screen and (max-width: 1024px) {
  header .icons .drawer-btn {
    width: 100%;
    margin-top: 4px;
  }
}
header .icons .drawer-btn .text {
  line-height: 1;
  width: 54px;
}
@media screen and (max-width: 1024px) {
  header .icons .drawer-btn .text {
    width: 100%;
  }
}
header .icons .drawer-btn .text .text-en {
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
}
@media screen and (max-width: 1024px) {
  header .icons .drawer-btn .text .text-en {
    font-size: 11px;
  }
}
@media screen and (max-width: 1024px) {
  header .icons-top {
    width: 20%;
  }
}
header .nav-sec {
  display: flex;
  justify-content: center;
  height: 100%;
  width: fit-content;
  margin: 0 auto;
  background-color: #1a1a1a;
  border-radius: 99px;
  padding: 0 60px;
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}
@media screen and (max-width: 1024px) {
  header .nav-sec {
    display: none;
  }
}
header .nav-sec .online:last-child {
  transform: translate(0, 0) skewX(-20deg);
  transform-origin: bottom left;
  overflow: hidden;
  width: 180px;
  flex-shrink: 0;
}
@media screen and (max-width: 1024px) {
  header .nav-sec .online:last-child {
    transform: translate(0, 0) skewX(0);
    margin: 30px auto ;
    width: 300px;
    height: 60px;
  }
}
header .nav-sec .online a {
  display: flex;
  background-color: var(--main-color);
  transform: translate(0, 0) skewX(20deg);
  transform-origin: bottom left;
  color: #fff;
  width: 100%;
  justify-content: center;
  align-items: center;
  height: 100%;
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}
@media screen and (max-width: 1024px) {
  header .nav-sec .online a {
    background-color: #fff;
    color: var(--main-color);
    transform: translate(0, 0) skewX(0);
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
header .nav-sec .online a:hover {
  background-color: var(--darken-main-color);
  color: rgba(255, 255, 255, 0.2);
}
header .nav-sec .online a i.front {
  margin-left: 0;
  margin-right: 4px;
}
header .nav-sec .base {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}
header .nav-sec .base:hover {
  overflow: unset;
}
@media screen and (max-width: 1024px) {
  header .nav-sec .base {
    flex-wrap: wrap;
    justify-content: space-between;
    margin-right: 0;
    height: auto;
  }
}
header .nav-sec .base li {
  width: 100%;
  height: 100%;
  position: relative;
  white-space: nowrap;
  padding: 10px 0;
}
@media screen and (max-width: 1024px) {
  header .nav-sec .base li {
    height: 60px;
  }
}
header .nav-sec .base li .base-link {
  color: #808080;
  width: 100%;
  height: 100%;
  font-size: 24px;
  font-weight: 700;
  display: flex;
  align-items: center;
  position: relative;
  text-align: center;
  justify-content: center;
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  z-index: 2;
  padding: 0 30px;
}
@media screen and (max-width: 1024px) {
  header .nav-sec .base li .base-link {
    color: #fff;
    justify-content: flex-start;
    padding: 0 2vw;
  }
}
header .nav-sec .base li .base-link:hover {
  color: #fff;
}
header .nav-sec .base li .base-link:hover.online {
  color: #fff;
}
header .nav-sec .base li .base-link:hover.online:after {
  content: unset;
}
@media screen and (max-width: 1024px) {
  header .nav-sec .base li .base-link:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.12);
    bottom: 0;
    left: 0;
  }
}
@media screen and (max-width: 1024px) {
  header .nav-sec .base li .base-link:before {
    content: '';
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 4px 0 4px 5px;
    border-color: transparent transparent transparent white;
  }
}
header .nav-sec .base li .base-link.activate {
  color: var(--main-color);
}
@media screen and (max-width: 1024px) {
  header .nav-sec .base li .base-link.activate {
    color: #fff;
  }
}
header .nav-sec .base li .base-link.activate:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 4px;
  background-color: var(--main-color);
  bottom: 0;
  left: 0;
}
@media screen and (max-width: 1024px) {
  header .nav-sec .base li .base-link.activate:after {
    height: 1px;
    background-color: #ffffff;
  }
}
header .nav-sec .base li .current {
  background: radial-gradient(circle at 50% 0, #ff009e, rgba(255, 0, 0, 0) 70.71%), radial-gradient(circle at 6.7% 75%, #5e00ff, rgba(0, 0, 255, 0) 70.71%), radial-gradient(circle at 93.3% 75%, rgba(255, 77, 0, 0.8), rgba(0, 255, 0, 0) 70.71%) #62fffd;
  /* -webkit-background-clip: text;
                    -webkit-text-fill-color: transparent;
                    -webkit-background-size: auto; */
  margin: 0 auto;
  border-radius: 99px;
  color: #fff;
}
@media screen and (max-width: 1024px) {
  header .nav-sec .base li .current {
    width: 60%;
    font-size: 32px;
  }
}
header .nav-sec .base li .current.activate {
  color: #b8babc;
}
header .nav-sec .base li .current.activate:after {
  position: absolute;
  content: "";
  width: 100%;
  bottom: 0;
  left: 0;
  height: 1px;
  background-color: #ffffff;
}
header .nav-sec .base li .current.open {
  color: #fff;
}
header .nav-sec .base li .current.open i:not(.front) {
  transform: rotate(90deg);
}
header .nav-sec .base li .dropdown-menu {
  text-align: left;
  font-size: 16px;
  width: 95%;
  margin: 0 auto;
  opacity: 0;
  transform: translate3d(0, -30px, 0);
  transition: opacity 0.35s cubic-bezier(0.26, 0.06, 0, 1), padding 0.35s cubic-bezier(0.26, 0.06, 0, 1), transform 1s cubic-bezier(0.18, 0.06, 0.23, 1);
  position: relative;
  z-index: 1;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  background-color: #fff;
}
header .nav-sec .base li .dropdown-menu::-webkit-scrollbar {
  width: 5px;
}
header .nav-sec .base li .dropdown-menu::-webkit-scrollbar-track {
  background: #161623;
  border-radius: 2px;
}
header .nav-sec .base li .dropdown-menu::-webkit-scrollbar-thumb {
  background: var(--main-color);
  border-radius: 10px;
}
header .nav-sec .base li .dropdown-menu::-webkit-scrollbar-thumb:hover {
  background: var(--main-color);
}
header .nav-sec .base li .dropdown-menu::-webkit-scrollbar-corner {
  background: var(--main-color);
}
header .nav-sec .base li .dropdown-menu.sg {
  max-height: calc(100vh - 100px);
}
header .nav-sec .base li .dropdown-menu > ul {
  background-color: #161623;
  border-radius: 8px;
  /*transform: translateY(-10px);*/
  /*box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.2);*/
}
header .nav-sec .base li .dropdown-menu .drop-li {
  color: #b8babc;
  position: relative;
  height: auto;
  transition: all 0.2s cubic-bezier(0.18, 0.06, 0.23, 1);
  z-index: 0;
}
header .nav-sec .base li .dropdown-menu .drop-li:last-child {
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}
header .nav-sec .base li .dropdown-menu .drop-li:first-child {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}
header .nav-sec .base li .dropdown-menu .drop-li > a {
  color: #333;
  display: flex;
  font-size: 15px;
  height: 52px;
  align-items: center;
  justify-content: space-between;
  padding: 0 15px 0 10px;
  position: relative;
  z-index: 2;
  transition: all 0.2s cubic-bezier(0.18, 0.06, 0.23, 1);
  font-weight: 300;
}
header .nav-sec .base li .dropdown-menu .drop-li > a .sp1 {
  display: flex;
  align-items: center;
}
header .nav-sec .base li .dropdown-menu .drop-li > a .sp1 i {
  margin-right: 8px;
}
header .nav-sec .base li .dropdown-menu .drop-li > a i {
  transition: all 0.2s cubic-bezier(0.18, 0.06, 0.23, 1);
}
header .nav-sec .base li .dropdown-menu .drop-li .dropdown-menu2 {
  position: absolute;
  background-color: #161623;
  right: 0;
  top: 0;
  transform: translateX(95%);
  z-index: -1;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
  transition: opacity 0.35s cubic-bezier(0.26, 0.06, 0, 1), transform 1s cubic-bezier(0.18, 0.06, 0.23, 1);
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  overflow: hidden;
  opacity: 0;
}
header .nav-sec .base li .dropdown-menu .drop-li .dropdown-menu2 li {
  display: block;
  width: 160px;
  height: 52px;
}
header .nav-sec .base li .dropdown-menu .drop-li .dropdown-menu2 li > a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 20px;
  font-size: 15px;
  color: #b8babc;
}
header .nav-sec .base li .dropdown-menu .drop-li .dropdown-menu2 li:hover {
  background-color: rgba(32, 157, 17, 0.1);
}
header .nav-sec .base li .dropdown-menu .drop-li .dropdown-menu2 li:hover > a {
  color: rgba(255, 255, 255, 0.7);
}
header .nav-sec .base li .dropdown-menu .drop-li:hover {
  background-color: rgba(0, 0, 0, 0.05);
  z-index: 1;
}
header .nav-sec .base li .dropdown-menu .drop-li:hover > a {
  color: #000;
}
header .nav-sec .base li .dropdown-menu .drop-li:hover > a .after {
  transform: translateX(10px);
}
header .nav-sec .base li .dropdown-menu .drop-li:hover .dropdown-menu2 {
  transform: translateX(100%);
  opacity: 1;
  overflow: auto;
}
header .nav-sec .base li .dropdown-menu .drop-li.hover-sub {
  /*background-color: #fff;*/
}
header .nav-sec .base li .dropdown-menu .drop-li.hover-sub > a {
  color: var(--main-color);
}
header .nav-sec .base li:hover > a {
  color: rgba(255, 255, 255, 0.7);
}
header .nav-sec .base li:hover > .dropdown-menu {
  pointer-events: auto;
  opacity: 1;
  transform: translate3d(0, -10px, 0);
  transition: opacity 0.5s cubic-bezier(0.26, 0.06, 0, 1), padding 0.35s cubic-bezier(0.26, 0.06, 0, 1), transform 0.6s cubic-bezier(0.47, 0.16, 0.24, 1);
}
header .nav-sec .base:hover .dropdown-menu {
  /*overflow-y: auto;
                    overflow-x: hidden;*/
  overflow: unset;
}
header .nav-sec .base:hover .dropdown-menu.sg {
  overflow-y: auto;
  overflow-x: unset;
}
header .m-nav-sec {
  position: fixed;
  display: flex;
  flex-direction: column;
  width: 100%;
  background-color: #000;
  top: -100vh;
  right: 0;
  height: 100vh;
  justify-content: space-around;
  z-index: 100;
  transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  opacity: 0;
}
header .m-nav-sec.m-show {
  top: 0;
  padding: 5% 15px 0;
  opacity: 1;
}
@media screen and (max-width: 1024px) {
  header .m-nav-sec.m-show {
    padding: 10% 15px 0;
  }
}
header .m-nav-sec.m-show .nav-main {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  flex: 1;
}
header .m-nav-sec.m-show .nav-main .base {
  display: flex;
  align-items: center;
  width: 100%;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 0;
  height: auto;
  opacity: 0;
  animation: navUp 1s 0.3s forwards;
}
@media screen and (max-width: 1024px) {
  header .m-nav-sec.m-show .nav-main .base {
    margin-top: 8%;
  }
}
@keyframes navUp {
  0% {
    transform: translateY(100px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
header .m-nav-sec.m-show .nav-main .base > li {
  width: 100%;
}
header .m-nav-sec.m-show .nav-main .base > li .base-link {
  width: 100%;
  height: 100%;
  font-size: 40px;
  font-weight: 700;
  display: flex;
  align-items: center;
  position: relative;
  text-align: center;
  color: #b8babc;
  justify-content: center;
  padding: 1% 0;
}
@media screen and (max-width: 1024px) {
  header .m-nav-sec.m-show .nav-main .base > li .base-link {
    font-size: 32px;
    padding: 2% 0;
  }
}
header .m-nav-sec.m-show .nav-main .base > li .base-link.activate {
  color: #b8babc;
}
header .m-nav-sec.m-show .nav-main .base > li .base-link.activate:after {
  position: absolute;
  content: "";
  width: 100%;
  bottom: 0;
  left: 0;
  height: 1px;
  background-color: #ffffff;
}
header .m-nav-sec.m-show .nav-main .base > li .base-link.open {
  color: #fff;
}
header .m-nav-sec.m-show .nav-main .base > li .base-link.open i:not(.front) {
  transform: rotate(90deg);
}
header .m-nav-sec.m-show .nav-main .base > li .current {
  width: 20%;
  background: radial-gradient(circle at 50% 0, #ff009e, rgba(255, 0, 0, 0) 70.71%), radial-gradient(circle at 6.7% 75%, #5e00ff, rgba(0, 0, 255, 0) 70.71%), radial-gradient(circle at 93.3% 75%, rgba(255, 77, 0, 0.8), rgba(0, 255, 0, 0) 70.71%) #62fffd;
  /* -webkit-background-clip: text;
                            -webkit-text-fill-color: transparent;
                            -webkit-background-size: auto; */
  margin: 0 auto;
  border-radius: 99px;
  color: #fff;
}
@media screen and (max-width: 1024px) {
  header .m-nav-sec.m-show .nav-main .base > li .current {
    width: 60%;
    font-size: 32px;
  }
}
header .m-nav-sec.m-show .nav-main .base > li .current.activate {
  color: #b8babc;
}
header .m-nav-sec.m-show .nav-main .base > li .current.activate:after {
  position: absolute;
  content: "";
  width: 100%;
  bottom: 0;
  left: 0;
  height: 1px;
  background-color: #ffffff;
}
header .m-nav-sec.m-show .nav-main .base > li .current.open {
  color: #fff;
}
header .m-nav-sec.m-show .nav-main .base > li .current.open i:not(.front) {
  transform: rotate(90deg);
}
header .m-nav-sec.m-show .nav-main .base > li .dropdown-menu {
  text-align: center;
  font-size: 15px;
  width: 100%;
  padding-left: 16px;
  display: none;
}
header .m-nav-sec.m-show .nav-main .base > li .dropdown-menu .drop-li {
  color: #b8babc;
  position: relative;
}
header .m-nav-sec.m-show .nav-main .base > li .dropdown-menu .drop-li > a {
  color: #b8babc;
  display: flex;
  padding: 16px 10px;
  padding-left: 16px;
  align-items: center;
}
header .m-nav-sec.m-show .nav-main .base > li .dropdown-menu .drop-li > a i {
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  margin-right: 6px;
}
header .m-nav-sec.m-show .nav-main .base > li .dropdown-menu .drop-li > a.open {
  color: #fff;
}
header .m-nav-sec.m-show .nav-main .base > li .dropdown-menu .drop-li > a.open i {
  /*transform: rotate(90deg);*/
}
header .m-nav-sec.m-show .nav-main .base > li .dropdown-menu .drop-li .dropdown-menu2 {
  padding-left: 16px;
  display: none;
}
header .m-nav-sec.m-show .nav-main .base > li .dropdown-menu .drop-li .dropdown-menu2 li {
  display: block;
}
header .m-nav-sec.m-show .nav-main .base > li .dropdown-menu .drop-li .dropdown-menu2 li > a {
  padding: 16px 10px;
  padding-left: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #b8babc;
}
header .m-nav-sec.m-show .nav-main .base > li .dropdown-menu .drop-li .dropdown-menu2 li:hover > a {
  color: #b8babc;
}
header .m-nav-sec.m-show .nav-main .btnbox {
  opacity: 0;
  animation: btnUp 1s 0.6s forwards;
}
@keyframes btnUp {
  0% {
    transform: translateY(100px);
    opacity: 1;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
header .m-nav-sec.m-show .nav-main .uploopwrap {
  opacity: 0;
  animation: groupUp 1s 0.8s forwards;
}
@keyframes groupUp {
  0% {
    transform: translateY(100px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
header .m-nav-sec.m-show .nav-main .uploopwrap .loopWrap {
  height: 200px;
  display: grid;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  header .m-nav-sec.m-show .nav-main .uploopwrap .loopWrap {
    height: 40px;
  }
}
header .m-nav-sec.m-show .nav-main .uploopwrap .loopWrap .group {
  display: flex;
}
header .m-nav-sec.m-show .nav-main .uploopwrap .loopWrap .group .item {
  width: 100px;
  height: 100px;
  background-size: cover;
  background-repeat: no-repeat;
  flex-shrink: 0;
  margin-right: 120px;
  opacity: 0.7;
  transition: all 0.5s;
}
header .m-nav-sec.m-show .nav-main .uploopwrap .loopWrap .group .item:hover {
  opacity: 1;
}
@media screen and (max-width: 1024px) {
  header .m-nav-sec.m-show .nav-main .uploopwrap .loopWrap .group .item {
    width: 40px;
    height: 40px;
    margin-right: 60px;
  }
}
.breadcrumb {
  width: 100%;
  margin: 0 auto;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  display: flex;
  justify-content: center;
  font-size: 14px;
  margin-top: 15px;
}
.breadcrumb li a {
  color: #000;
}
.breadcrumb li:after {
  content: ">";
  padding: 0 8px;
  color: #000;
}
.breadcrumb li:last-child {
  text-overflow: ellipsis;
  overflow: hidden;
}
.breadcrumb li:last-child:after {
  content: "";
}
.breadcrumb li.active {
  color: #000;
}
.breadcrumb li.active a {
  color: #000;
}
.division {
  width: 100%;
  height: 38px;
  position: relative;
  transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}
@media screen and (max-width: 768px) {
  .division {
    height: 10px;
  }
}
.division:before {
  content: "";
  width: 100%;
  height: 300px;
  background-color: var(--main-color);
  position: absolute;
  left: 0;
  bottom: 0;
  transform: translateY(150px);
  z-index: 0;
  transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}
@media screen and (max-width: 768px) {
  .division:before {
    height: 500px;
    top: -100px;
    bottom: unset;
    transform: skewY(10deg);
  }
}
footer {
  width: 100%;
  background: #000000;
  position: relative;
  overflow: hidden;
}
footer .office {
  width: 100%;
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 8%;
}
footer .office .slogan {
  position: relative;
  height: 200px;
}
@media screen and (max-width: 1024px) {
  footer .office .slogan {
    height: 140px;
  }
}
footer .office .slogan .footertitle {
  font-size: 80px;
  font-weight: 700;
  font-style: italic;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  /* transition: top 0.3s ease-in-out; */
  text-align: center;
  color: #ffffff;
  white-space: nowrap;
  letter-spacing: 2px;
  animation: footertitle 3s cubic-bezier(0, 0, 0, 1);
  animation: shift 1s ease-in-out infinite alternate;
  opacity: 1;
}
@media screen and (max-width: 1024px) {
  footer .office .slogan .footertitle {
    font-size: 40px;
  }
}
footer .office .slogan .footertitle:before,
footer .office .slogan .footertitle:after {
  display: block;
  content: attr(data-footertitle);
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.8;
}
footer .office .slogan .footertitle:before {
  animation: footertitle 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) both infinite;
  color: #8b00ff;
  z-index: -1;
}
footer .office .slogan .footertitle:after {
  animation: footertitle 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) reverse both infinite;
  color: #00e1e5;
  z-index: -2;
}
@keyframes footertitle {
  0% {
    transform: translate(0);
  }
  20% {
    transform: translate(-3px, 3px);
  }
  40% {
    transform: translate(-3px, -3px);
  }
  60% {
    transform: translate(3px, 3px);
  }
  80% {
    transform: translate(3px, -3px);
  }
  to {
    transform: translate(0);
  }
}
@keyframes shift {
  0%,
  40%,
  44%,
  58%,
  61%,
  65%,
  69%,
  73%,
  100% {
    transform: translate(-50%, -50%) rotateX(0deg) skewX(0deg);
  }
  41% {
    transform: translate(-50%, -50%) rotateX(10deg) skewX(10deg);
  }
  42% {
    transform: translate(-50%, -50%) rotateX(-10deg) skewX(-10deg);
  }
  59% {
    transform: translate(-50%, -50%) rotateX(20deg) rotateY(10deg) skewX(20deg) skewY(10deg);
  }
  60% {
    transform: translate(-50%, -50%) rotateX(-20deg) rotateY(-10deg) skewX(-20deg) skewY(-10deg);
  }
  63% {
    transform: translate(-50%, -50%) rotateX(10deg) rotateY(-5deg) skewX(-10deg) skewY(-5deg);
  }
  70% {
    transform: translate(-50%, -50%) rotateX(-20deg) rotateY(-20deg) skewX(-20deg) skewY(-20deg);
  }
  71% {
    transform: translate(-50%, -50%) rotateX(10deg) rotateY(-10deg) skewX(10deg) skewY(-10deg);
  }
}
footer .office .footerdesc {
  width: 100%;
  font-size: 16px;
  font-weight: 300;
  color: #fff;
}
footer .footer-inner {
  width: 100%;
  background-color: #1a1a1a;
  border-radius: 20px;
  padding: 40px 0;
  margin: 0 auto;
  max-width: 1024px;
}
@media screen and (max-width: 1024px) {
  footer .footer-inner {
    width: 90%;
  }
}
footer .footer-inner .footer-nav {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 5;
  width: 100%;
}
footer .footer-inner .footer-nav .base {
  display: flex;
  align-items: center;
  width: 100%;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 5% 0;
  height: auto;
}
footer .footer-inner .footer-nav .base > li {
  width: 100%;
}
footer .footer-inner .footer-nav .base > li .base-link {
  width: 100%;
  height: 100%;
  font-size: 40px;
  font-weight: 700;
  display: flex;
  align-items: center;
  position: relative;
  text-align: center;
  color: #b8babc;
  padding: 1% 0;
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  justify-content: center;
}
footer .footer-inner .footer-nav .base > li .base-link:hover {
  color: #FFF;
}
@media screen and (max-width: 1024px) {
  footer .footer-inner .footer-nav .base > li .base-link {
    font-size: 32px;
  }
}
footer .footer-inner .footer-nav .base > li .base-link.activate {
  color: #b8babc;
}
footer .footer-inner .footer-nav .base > li .base-link.activate:after {
  position: absolute;
  content: "";
  width: 100%;
  bottom: 0;
  left: 0;
  height: 1px;
  background-color: #ffffff;
}
footer .footer-inner .footer-nav .base > li .base-link.open {
  color: #fff;
}
footer .footer-inner .footer-nav .base > li .base-link.open i:not(.front) {
  transform: rotate(90deg);
}
footer .footer-inner .footer-nav .base > li .current {
  background: radial-gradient(circle at 50% 0, #ff009e, rgba(255, 0, 0, 0) 70.71%), radial-gradient(circle at 6.7% 75%, #5e00ff, rgba(0, 0, 255, 0) 70.71%), radial-gradient(circle at 93.3% 75%, rgba(255, 77, 0, 0.8), rgba(0, 255, 0, 0) 70.71%) #62fffd;
  /* -webkit-background-clip: text;
                        -webkit-text-fill-color: transparent;
                        -webkit-background-size: auto; */
  margin: 0 auto;
  border-radius: 99px;
  color: #fff;
  width: 40%;
}
@media screen and (max-width: 1024px) {
  footer .footer-inner .footer-nav .base > li .current {
    width: 60%;
    font-size: 32px;
  }
}
footer .footer-inner .footer-nav .base > li .current.activate {
  color: #b8babc;
}
footer .footer-inner .footer-nav .base > li .current.activate:after {
  position: absolute;
  content: "";
  width: 100%;
  bottom: 0;
  left: 0;
  height: 1px;
  background-color: #ffffff;
}
footer .footer-inner .footer-nav .base > li .current.open {
  color: #fff;
}
footer .footer-inner .footer-nav .base > li .current.open i:not(.front) {
  transform: rotate(90deg);
}
footer .footer-inner .footer-nav .base > li .dropdown-menu {
  text-align: center;
  font-size: 15px;
  width: 100%;
  padding-left: 16px;
  display: none;
}
footer .footer-inner .footer-nav .base > li .dropdown-menu .drop-li {
  color: #b8babc;
  position: relative;
}
footer .footer-inner .footer-nav .base > li .dropdown-menu .drop-li > a {
  color: #b8babc;
  display: flex;
  padding: 16px 10px;
  padding-left: 16px;
  align-items: center;
}
footer .footer-inner .footer-nav .base > li .dropdown-menu .drop-li > a i {
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  margin-right: 6px;
}
footer .footer-inner .footer-nav .base > li .dropdown-menu .drop-li > a.open {
  color: #fff;
}
footer .footer-inner .footer-nav .base > li .dropdown-menu .drop-li > a.open i {
  /*transform: rotate(90deg);*/
}
footer .footer-inner .footer-nav .base > li .dropdown-menu .drop-li .dropdown-menu2 {
  padding-left: 16px;
  display: none;
}
footer .footer-inner .footer-nav .base > li .dropdown-menu .drop-li .dropdown-menu2 li {
  display: block;
}
footer .footer-inner .footer-nav .base > li .dropdown-menu .drop-li .dropdown-menu2 li > a {
  padding: 16px 10px;
  padding-left: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #b8babc;
}
footer .footer-inner .footer-nav .base > li .dropdown-menu .drop-li .dropdown-menu2 li:hover > a {
  color: #b8babc;
}
footer .footer-inner .footer-nav .btnbox-col {
  width: 100%;
}
@media screen and (max-width: 1024px) {
  footer .footer-inner .footer-nav .btnbox-col {
    margin-top: 5%;
  }
}
footer .footer-inner .footer-nav .qrcodebox {
  position: sticky;
  margin-top: 80px;
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}
footer .footer-inner .footer-nav .qrcodebox .qrcode {
  position: relative;
  border-radius: 1.6em;
  padding: 10px;
  background-color: #000;
}
footer .footer-inner .footer-nav .qrcodebox .qrcode img {
  width: 120px;
  height: 120px;
}
footer .footer-inner .footer-nav .qrcodebox .qrcode:after {
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 1.6em;
  position: absolute;
  mix-blend-mode: darken;
  background-image: linear-gradient(45deg, #fb0094, #0000ff, #00ff00, #ffff00, #ff0000, #fb0094, #0000ff, #00ff00, #ffff00, #ff0000);
  pointer-events: none;
  background-size: 1500% 1200%;
  animation: steam 20s linear infinite;
}
@keyframes steam {
  0% {
    background-position: 0 0;
  }
  50% {
    background-position: 100% 0;
  }
  100% {
    background-position: 0 0;
  }
}
footer .footer-inner .footer-nav .qrcodebox .btn-bg {
  position: absolute;
  z-index: -1;
  inset: -2px;
  border-radius: 1.6em;
  overflow: hidden;
}
footer .footer-inner .footer-nav .qrcodebox .uwu {
  filter: blur(8px);
  transition: filter 0.3s;
}
footer .footer-inner .footer-nav .qrcodebox .btn-bg::before {
  content: '';
  position: absolute;
  aspect-ratio: 1/1;
  top: 50%;
  left: 50%;
  min-width: 150%;
  min-height: 150%;
  background-image: conic-gradient(hsl(0, 100%, 50%), hsl(30, 100%, 50%), hsl(60, 100%, 50%), hsl(90, 100%, 50%), hsl(120, 100%, 50%), hsl(150, 100%, 50%), hsl(180, 100%, 50%), hsl(210, 100%, 50%), hsl(240, 100%, 60%), hsl(270, 100%, 50%), hsl(300, 100%, 50%), hsl(330, 100%, 50%), hsl(0, 100%, 50%));
  animation: speeen 4s linear infinite;
  transform-origin: 0% 0%;
  transform: rotate(0deg) translate(-50%, -50%);
}
@keyframes speeen {
  from {
    transform: rotate(0deg) translate(-50%, -50%);
  }
  to {
    transform: rotate(360deg) translate(-50%, -50%);
  }
}
footer .footer-inner .footer-nav .qrcodebox:hover {
  transform: scale(1.05);
}
footer .copyright {
  color: #b8babc;
  font-size: 14px;
  text-align: center;
  opacity: 0.5;
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  padding: 20px;
}
@media screen and (max-width: 1024px) {
  footer .copyright {
    width: 100%;
    text-align: center;
    right: 50%;
    position: unset;
    font-size: 12px;
    padding: 0 26px;
    margin: 10px;
  }
}
.form-btn {
  width: 340px;
  height: 60px;
  margin: 0 auto;
  margin-top: 40px;
  border: none;
}
.form-btn div {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--main-color);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  border-radius: 6px;
}
.form-btn div p {
  color: white;
  line-height: 1;
  font-size: 15px;
  font-weight: 300;
  letter-spacing: 0.15em;
  padding-right: 50px;
  position: relative;
}
.form-btn div p:before,
.form-btn div p:after {
  content: '';
  height: 1px;
  background-color: white;
  position: absolute;
  right: 0;
  bottom: 0.25em;
  transform-origin: 100% 100%;
}
.form-btn div p:before {
  width: 7px;
  transform: rotate(45deg);
}
.form-btn div p:after {
  width: 40px;
}
.g-icons {
  display: flex;
  flex-wrap: wrap;
}
.g-icons li {
  display: flex;
  align-items: center;
  margin-top: 20px;
}
.g-icons li .p1 {
  border-radius: 50%;
  border: 1px solid var(--main-color);
  width: 30px;
  height: 30px;
  line-height: 30px;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  /*align-items: center;*/
  color: var(--main-color);
}
.g-icons li .p1 i {
  font-size: 18px;
}
.g-icons li .p2 {
  margin-left: 6px;
  color: #b8babc;
  font-size: 15px;
}
@media screen and (max-width: 1024px) {
  .g-icons li .p2 {
    font-size: 14px;
    margin-left: 4px;
  }
}
.fixed-contact {
  position: fixed;
  bottom: 120px;
  right: 20px;
  z-index: 1000;
  transition: 0.3s ease;
}
@media screen and (min-width: 1px) and (max-width: 768px) {
  .fixed-contact {
    display: none;
  }
}
.fixed-contact .cur_wrap_sidebar {
  width: 87px;
  border-radius: 12px;
  border: 2px solid #999999;
  position: relative;
}
.fixed-contact .cur_wrap_sidebar .li_four {
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
  background: url(/static/img/chat.jpg);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.fixed-contact .cur_wrap_sidebar .li_four:before,
.fixed-contact .cur_wrap_sidebar .li_four:after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 0;
  height: 100%;
  background: url(/static/img/chat.jpg);
  z-index: -2;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.fixed-contact .cur_wrap_sidebar .li_four:before {
  transition: 0.3s;
  background: linear-gradient(180deg, #02E36F, #07C160);
  z-index: 0;
}
.fixed-contact .cur_wrap_sidebar .li_four .wrap_btn {
  height: 85px;
  position: relative;
  overflow: hidden;
}
.fixed-contact .cur_wrap_sidebar .li_four .wrap_btn .wrap_up_box {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  height: 85px;
  position: relative;
  border-right: 5px solid;
  border-image: -webkit-linear-gradient(#02e36f, #07c160) 20 20;
  border-image: -moz-linear-gradient(#02e36f, #07c160) 20 20;
  border-image: -o-linear-gradient(#02e36f, #07c160) 20 20;
  border-image: linear-gradient(#02e36f, #07c160) 20 20;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fixed-contact .cur_wrap_sidebar .li_four .wrap_btn .wrap_up_box .ab {
  text-align: center;
}
.fixed-contact .cur_wrap_sidebar .li_four .wrap_btn .wrap_up_box .ab p {
  text-align: center;
}
.fixed-contact .cur_wrap_sidebar .li_four .wrap_btn .wrap_up_box .ab p .iconfont {
  font-size: 28px;
  color: #fff;
  line-height: 1;
}
.fixed-contact .cur_wrap_sidebar .li_four .wrap_btn .wrap_up_box .ab p .text {
  color: #fff;
  font-size: 14px;
}
.fixed-contact .cur_wrap_sidebar .li_four .wrap_btn .wrap_up_box .triangle-left {
  position: absolute;
  right: -5px;
  top: 31px;
}
.fixed-contact .cur_wrap_sidebar .li_four .wrap_left {
  padding-right: 20px;
  position: absolute;
  left: -190px;
  top: -50%;
  display: none;
}
.fixed-contact .cur_wrap_sidebar .li_four .wrap_left .trigger {
  position: absolute;
  right: 5px;
  top: 40%;
  font-size: 25px;
  color: #0FD956;
}
.fixed-contact .cur_wrap_sidebar .li_four .wrap_left .wrap_img {
  border: 2px solid #0FD956;
  width: auto;
  position: relative;
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
}
.fixed-contact .cur_wrap_sidebar .li_four .wrap_left .wrap_img p {
  font-size: 16px;
  padding-bottom: 10px;
  text-align: center;
  font-weight: bold;
}
.fixed-contact .cur_wrap_sidebar .li_four .wrap_left.contact-phone {
  top: 0;
  width: 190px;
}
.fixed-contact .cur_wrap_sidebar .li_four .wrap_left.contact-phone .wrap_img {
  display: flex;
  align-content: center;
  justify-content: center;
  height: 85px;
}
.fixed-contact .cur_wrap_sidebar .li_four .wrap_left.contact-phone .wrap_img p {
  padding: 0;
  display: flex;
  align-items: center;
  font-weight: bold;
}
.fixed-contact .cur_wrap_sidebar .li_four .wrap_left.contact-phone .wrap_img p i {
  font-size: 20px;
  margin-right: 4px;
  font-weight: 300;
}
.fixed-contact .cur_wrap_sidebar .li_four .wrap_left.contact-phone .iconfont {
  top: 25%;
}
.fixed-contact .cur_wrap_sidebar .li_four:first-child {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.fixed-contact .cur_wrap_sidebar .li_four:first-child .wrap_btn {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.fixed-contact .cur_wrap_sidebar .li_four:last-child {
  border-top-left-radius: unset;
  border-top-right-radius: unset;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom: none;
}
.fixed-contact .cur_wrap_sidebar .li_four:last-child .wrap_btn {
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
.fixed-contact .cur_wrap_sidebar .li_four:last-child:before {
  border-top-left-radius: unset;
  border-top-right-radius: unset;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
.fixed-contact .cur_wrap_sidebar .li_four:hover {
  overflow: unset;
}
.fixed-contact .cur_wrap_sidebar .li_four:hover .wrap_left {
  display: block;
}
.fixed-contact .cur_wrap_sidebar .li_four:hover:before {
  width: 100%;
}
.fixed-contact .cur_wrap_sidebar .division-line {
  height: 2px;
  width: 100%;
  background: #999999;
  position: absolute;
  top: 50%;
  z-index: 10;
}
.fixed-contact .upper-apex {
  margin-top: 4px;
  width: 87px;
  background: #333333;
  border: 2px solid #999999;
  border-radius: 12px;
  color: #fff;
  text-align: center;
  cursor: pointer;
  padding-top: 5px;
  padding-bottom: 5px;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s ease;
}
.fixed-contact .upper-apex.show {
  opacity: 1;
  pointer-events: auto;
}
.fixed-contact .upper-apex .iconfont {
  font-size: 24px;
  line-height: 1;
}
.fixed-contact .upper-apex .text {
  font-size: 12px;
}
.fixed-contact .arrow {
  -webkit-animation: bounce 5s infinite;
  animation: bounce 5s infinite;
  -webkit-transition: border 150ms ease-in-out, -webkit-transform 300ms ease-in;
  transition: border 150ms ease-in-out, -webkit-transform 300ms ease-in;
  transition: border 150ms ease-in-out, transform 300ms ease-in;
  transition: border 150ms ease-in-out, transform 300ms ease-in, -webkit-transform 300ms ease-in;
}
.fixed-contact .arrow:hover {
  -webkit-animation: mymove 3s;
  -webkit-animation-iteration-count: 2;
  -webkit-animation-fill-mode: forwards;
  animation: mymove 3s;
  animation-iteration-count: 2;
  animation-fill-mode: forwards;
}
@-webkit-keyframes bounce {
  0%,
  82% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  85% {
    -webkit-transform: translateY(-30%);
    transform: translateY(-30%);
  }
  88% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  91% {
    -webkit-transform: translateY(-20%);
    transform: translateY(-20%);
  }
  94% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  97% {
    -webkit-transform: translateY(-8%);
    transform: translateY(-8%);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes bounce {
  0%,
  82% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  85% {
    -webkit-transform: translateY(-30%);
    transform: translateY(-30%);
  }
  88% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  91% {
    -webkit-transform: translateY(-20%);
    transform: translateY(-20%);
  }
  94% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  97% {
    -webkit-transform: translateY(-8%);
    transform: translateY(-8%);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.m-fixed-contact {
  position: fixed;
  bottom: 20px;
  z-index: 10;
  display: flex;
  width: 100%;
  justify-content: space-around;
  height: 50px;
  align-items: center;
  opacity: 0;
  transition: opacity 0.6s ease;
}
@media screen and (min-width: 768px) {
  .m-fixed-contact {
    display: none;
  }
}
.m-fixed-contact.m_show {
  opacity: 1;
}
.m-fixed-contact .button .text {
  font-size: 14px;
}
.m-fixed-contact .button .text i {
  font-size: 32px;
}
.m-fixed-contact .button .dot {
  width: 30px;
  height: 30px;
}
.m-upper-apex {
  position: fixed;
  right: 10px;
  bottom: 80px;
  z-index: 10;
  opacity: 0;
  transition: opacity 0.6s ease;
}
@media screen and (min-width: 768px) {
  .m-upper-apex {
    display: none;
  }
}
.m-upper-apex.m_show {
  opacity: 1;
}
.m-upper-apex p {
  color: #fff;
  background-color: rgba(0, 0, 0, 0.4);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.m-upper-apex p i {
  font-size: 20px;
}
.loopWrap {
  height: 600px;
  display: grid;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .loopWrap {
    height: 300px;
  }
}
.loopWrap .group {
  display: flex;
}
.loopWrap .group .item {
  width: 140px;
  height: 140px;
  background-size: cover;
  background-repeat: no-repeat;
  flex-shrink: 0;
  margin-right: 120px;
  opacity: 0.7;
  transition: all 0.5s;
}
.loopWrap .group .item:hover {
  opacity: 1;
}
@media screen and (max-width: 1024px) {
  .loopWrap .group .item {
    width: 80px;
    height: 80px;
    margin-right: 60px;
  }
}
/*# sourceMappingURL=global.css.map */