:root {
  --gradient-1: -webkit-linear-gradient(-45deg, #8b018d, #c72777);
}
body {
  text-rendering: optimizeLegibility;
  /*background-color: var(--back-color);*/
  /*background-image:linear-gradient(to bottom,#090812,#111520 100vh,#07090e 200vh);*/
  color: #b8babc;
  position: relative;
  overflow-x: hidden;
  font-family: var(--font-family);
  font-weight: lighter;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.1rem;
}
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: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 a {
  color: #b8babc;
}
body h1,
body h2,
body h3 {
  color: #fff;
}
.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-image: linear-gradient(to bottom, #090812, #111520 100vh, #07090e 200vh);
  top: 0;
  left: 0;
  z-index: 100;
}
._show_loading .global-loading {
  display: block;
}
.container {
  position: relative;
  padding-bottom: 120px;
}
@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;*/
}
.upward {
  transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}
.head-mask {
  width: 100%;
  height: 80px;
  position: fixed;
  top: 0;
  left: 0;
  background-image: linear-gradient(to bottom, #000000, rgba(0, 0, 0, 0));
  z-index: 98;
}
@media screen and (max-width: 1024px) {
  .head-mask {
    height: 60px;
  }
}
header {
  width: 96vw;
  transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  position: fixed;
  top: 0.5vw;
  left: 50%;
  transform: translateX(-50%);
  z-index: 99;
  border-radius: 6px;
  /*box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 20%);*/
}
header.ef {
  top: -100px;
}
header.shown {
  top: 0.5vw;
}
header.fixed {
  width: 100vw;
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  top: 0;
  left: 0;
  transform: translateX(0);
  border-radius: 0;
}
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;
  /*        margin-bottom: 40px;*/
}
@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;
    transform: translateX(0) !important;
    border-radius: 0;
  }
}
header .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  position: unset;
  width: 100%;
  /*background: #FFFFFF;*/
  padding-left: 28px;
}
@media screen and (max-width: 768px) {
  header .wrapper {
    height: 60px;
    padding-left: 15px;
    background: transparent;
  }
}
header .logo-sec img {
  height: 60px;
}
@media screen and (max-width: 1024px) {
  header .logo-sec img {
    height: 52px;
  }
}
header .drawer-btn {
  display: none;
}
@media screen and (max-width: 1024px) {
  header .drawer-btn {
    display: flex;
    width: 20vw;
    height: 100%;
    position: relative;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    flex-direction: column;
  }
  header .drawer-btn i {
    font-size: 24px;
    color: #fff;
    position: relative;
    z-index: 2;
    transform: translateY(-6px);
    margin-left: 10px;
  }
  header .drawer-btn .text {
    font-size: 10px;
    position: absolute;
    bottom: 8px;
    color: #fff;
    z-index: 1;
    margin-left: 10px;
  }
  header .drawer-btn:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: transparent;
    transform: translate(0, 0) skewX(-20deg);
    transform-origin: bottom left;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  }
  header .drawer-btn.show-open:after {
    background-color: #090812;
  }
}
header .nav-sec {
  display: flex;
  justify-content: center;
  height: 100%;
  width: 980px;
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}
@media screen and (max-width: 1024px) {
  header .nav-sec {
    display: none;
    flex-direction: column;
    width: 100%;
    position: absolute;
    background-color: var(--main-color);
    top: 60px;
    left: 0;
    height: 0;
    padding: 0 10px;
    overflow: hidden;
    justify-content: flex-start;
  }
  header .nav-sec.m-show {
    height: calc(100vh - 60px);
  }
}
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%;
  margin-right: 40px;
  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;
}
@media screen and (max-width: 1024px) {
  header .nav-sec .base li {
    height: 60px;
  }
}
header .nav-sec .base li .base-link {
  color: #fff;
  width: 100%;
  height: 100%;
  font-size: 15px;
  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;
  /*background-color: #fff;*/
}
header .nav-sec .base li .base-link i {
  margin-left: 12px;
}
header .nav-sec .base li .base-link i.front {
  margin-left: 0;
  margin-right: 8px;
}
@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: var(--main-color);
}
@media screen and (max-width: 1024px) {
  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 .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: #161623;
}
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 rgb(0 0 0 / 20%);*/
}
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: #b8babc;
  display: flex;
  font-size: 15px;
  height: 52px;
  align-items: center;
  justify-content: space-between;
  padding: 0 15px 0 20px;
  position: relative;
  z-index: 2;
  transition: all 0.2s cubic-bezier(0.18, 0.06, 0.23, 1);
}
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: var(--alpha-main-color);
}
header .nav-sec .base li .dropdown-menu .drop-li .dropdown-menu2 li:hover > a {
  color: var(--main-color);
}
header .nav-sec .base li .dropdown-menu .drop-li:hover {
  background-color: var(--alpha-main-color);
  z-index: 1;
}
header .nav-sec .base li .dropdown-menu .drop-li:hover > a {
  color: var(--main-color);
}
header .nav-sec .base li .dropdown-menu .drop-li:hover > a i {
  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: var(--main-color);
}
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 {
  display: none;
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}
@media screen and (max-width: 1024px) {
  header .m-nav-sec {
    display: flex;
    flex-direction: column;
    width: 70%;
    position: absolute;
    background-image: linear-gradient(to bottom, #090812, #111520 100vh, #07090e 200vh);
    top: 60px;
    right: 0;
    height: 0;
    padding: 0 10px;
    overflow-x: hidden;
    overflow-y: auto;
    justify-content: flex-start;
    z-index: 100;
  }
  header .m-nav-sec.m-show {
    height: calc(100vh - 60px);
  }
}
header .m-nav-sec .online:last-child {
  transform: translate(0, 0) skewX(0);
  margin: 30px auto ;
  width: 100%;
  height: 60px;
  transform-origin: bottom left;
  overflow: hidden;
  flex-shrink: 0;
}
header .m-nav-sec .online a {
  display: flex;
  justify-content: center;
  align-items: center;
  transform-origin: bottom left;
  width: 100%;
  height: 100%;
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  background-color: #fff;
  color: var(--main-color);
  transform: translate(0, 0) skewX(0);
}
header .m-nav-sec .online a:hover {
  background-color: var(--darken-main-color);
  color: rgba(255, 255, 255, 0.2);
}
header .m-nav-sec .base {
  display: flex;
  align-items: center;
  width: 100%;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-right: 0;
  height: auto;
}
header .m-nav-sec .base > li {
  width: 100%;
  min-height: 60px;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
header .m-nav-sec .base > li .base-link {
  width: 100%;
  height: 100%;
  min-height: 60px;
  font-size: 15px;
  display: flex;
  align-items: center;
  position: relative;
  text-align: center;
  color: #b8babc;
  padding: 0 10px;
  justify-content: space-between;
}
header .m-nav-sec .base > li .base-link i {
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}
header .m-nav-sec .base > li .base-link i.front {
  margin-right: 6px;
}
header .m-nav-sec .base > li .base-link.activate {
  color: #b8babc;
}
header .m-nav-sec .base > li .base-link.activate:after {
  position: absolute;
  content: "";
  width: 100%;
  bottom: 0;
  left: 0;
  height: 1px;
  background-color: #ffffff;
}
header .m-nav-sec .base > li .base-link.open {
  color: var(--main-color);
}
header .m-nav-sec .base > li .base-link.open i:not(.front) {
  transform: rotate(90deg);
}
header .m-nav-sec .base > li .dropdown-menu {
  text-align: center;
  font-size: 15px;
  width: 100%;
  padding-left: 16px;
  display: none;
}
header .m-nav-sec .base > li .dropdown-menu .drop-li {
  color: #b8babc;
  position: relative;
}
header .m-nav-sec .base > li .dropdown-menu .drop-li > a {
  color: #b8babc;
  display: flex;
  padding: 16px 10px;
  padding-left: 16px;
  align-items: center;
  justify-content: space-between;
}
header .m-nav-sec .base > li .dropdown-menu .drop-li > a i {
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}
header .m-nav-sec .base > li .dropdown-menu .drop-li > a.open {
  color: var(--main-color);
}
header .m-nav-sec .base > li .dropdown-menu .drop-li > a.open i {
  transform: rotate(90deg);
}
header .m-nav-sec .base > li .dropdown-menu .drop-li .dropdown-menu2 {
  padding-left: 16px;
  display: none;
}
header .m-nav-sec .base > li .dropdown-menu .drop-li .dropdown-menu2 li {
  display: block;
}
header .m-nav-sec .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 .base > li .dropdown-menu .drop-li .dropdown-menu2 li:hover > a {
  color: #b8babc;
}
.banner-section {
  position: relative;
  width: 100%;
  /*width: 90vw;*/
  margin: 0 auto;
}
.banner-section .banner-content {
  position: relative;
  /*padding: 200px 0 100px 5vw;*/
  margin-bottom: 120px;
  height: 600px;
}
@media screen and (max-width: 768px) {
  .banner-section .banner-content {
    margin-bottom: 0;
    height: 240px;
  }
}
.banner-section .banner-content .btn-inner {
  position: absolute;
  bottom: 80px;
  z-index: 2;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .banner-section .banner-content .btn-inner {
    justify-content: space-between;
    bottom: 20px;
    gap: 0;
    padding: 0 6px;
  }
}
.banner-section .banner-content .btn-inner .button {
  margin-bottom: 0;
  justify-content: space-evenly;
}
@media screen and (max-width: 768px) {
  .banner-section .banner-content .btn-inner .button {
    width: calc(50% - 5px);
    justify-content: unset;
  }
}
.banner-section .banner-content .vis {
  width: 100%;
  height: 100%;
  transform-origin: 100% 100%;
  z-index: 1;
  overflow: hidden;
  position: relative;
}
.banner-section .banner-content .vis .inner {
  width: 100%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #0d0e19;
  transform-origin: 100% 100%;
}
@media screen and (max-width: 768px) {
  .banner-section .banner-content .vis .inner {
    transform: skewY(0);
    transform-origin: 100% 0;
  }
}
.banner-section .banner-content .rep {
  position: absolute;
  left: 50%;
  transform: translateX(-50%) translateY(50%);
  bottom: 50%;
  z-index: 3;
}
@media screen and (max-width: 768px) {
  .banner-section .banner-content .rep {
    font-size: 25px;
    text-align: center;
    transform: translateX(-50%);
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
    bottom: 100px;
  }
}
.banner-section .banner-content .rep .rep-sub {
  color: var(--main-color);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.3em;
}
.banner-section .banner-content .rep .rep-title {
  font-size: 35px;
  font-weight: 300;
  letter-spacing: 0.4em;
}
@media screen and (max-width: 768px) {
  .banner-section .banner-content .rep .rep-title {
    font-size: 25px;
  }
}
.breadcrumb {
  width: 100%;
  margin: 0 auto;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  display: flex;
  justify-content: center;
  font-size: 14px;
}
.breadcrumb li:after {
  content: ">";
  padding: 0 8px;
}
.breadcrumb li:last-child {
  text-overflow: ellipsis;
  overflow: hidden;
}
.breadcrumb li:last-child:after {
  content: "";
}
.breadcrumb li.active {
  color: var(--main-color);
}
.breadcrumb li.active a {
  color: var(--main-color);
}
.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: var(--section-back-color);*/
  position: relative;
  overflow: hidden;
}
footer .footer-inner {
  width: 100%;
  margin: 0 auto;
  color: #fff;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 90px 2vw 15px;
}
@media screen and (max-width: 1024px) {
  footer .footer-inner {
    padding: 10px 4vw 15px;
    display: block;
  }
}
footer .footer-nav {
  display: flex;
  justify-content: space-around;
  align-items: center;
  position: relative;
  z-index: 5;
  width: 100%;
  padding-bottom: 70px;
}
@media screen and (max-width: 1024px) {
  footer .footer-nav {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-bottom: 0;
  }
}
footer .footer-nav .footer-logo {
  width: 144px;
  margin-left: 0.9vw;
}
@media screen and (max-width: 1024px) {
  footer .footer-nav .footer-logo {
    width: 30vw;
    max-width: 144px;
    order: 3;
    margin-bottom: 10px;
  }
}
footer .footer-nav .footer-logo img {
  width: 100%;
}
footer .footer-nav .menu-list {
  font-size: 16px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 45.3125%;
}
@media screen and (max-width: 1024px) {
  footer .footer-nav .menu-list {
    width: 100%;
    order: 1;
    margin-bottom: 20px;
  }
}
footer .footer-nav .menu-list li {
  width: 47.27273%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
footer .footer-nav .menu-list li a {
  padding: 20px 30px 14px 0;
  display: inline-block;
  width: 100%;
  height: 100%;
  line-height: 1;
  position: relative;
  color: #b8babc;
}
footer .footer-nav .menu-list li a:after {
  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;
}
footer .footer-nav .menu-list li a:hover {
  opacity: 0.5;
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}
@media screen and (max-width: 768px) {
  footer .footer-nav .menu-list li a {
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  }
}
footer .footer-nav .office {
  width: 34%;
  font-size: 13px;
  max-width: 500px;
}
@media screen and (max-width: 1024px) {
  footer .footer-nav .office {
    width: 100%;
    order: 2;
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
  }
}
@media screen and (max-width: 768px) {
  footer .footer-nav .office {
    font-size: 12px;
  }
}
footer .footer-nav .office .topic {
  opacity: 0.9;
  width: 100%;
}
footer .footer-nav .office .topic .item {
  width: 100%;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  margin-bottom: 20px;
}
footer .footer-nav .office .topic .item a {
  color: #b8babc;
}
footer .footer-nav .office .topic .item .col {
  display: flex;
  align-items: center;
}
footer .footer-nav .office .topic .item .col .icon {
  text-align: center;
  width: 32px;
  height: 32px;
  line-height: 32px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  /*align-items: center;*/
  -moz-transition: all 0.2s;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  -ms-transition: all 0.2s;
  transition: all 0.2s;
  border: 1px solid #fff;
}
footer .footer-nav .office .topic .item .col .icon .iconfont {
  vertical-align: middle;
  text-align: center;
  font-size: 20px;
}
@media screen and (max-width: 768px) {
  footer .footer-nav .office .topic .item .col .icon .iconfont {
    font-size: 20px;
  }
}
footer .footer-nav .office .topic .item .col .text {
  margin-left: 10px;
  font-size: 18px;
}
@media screen and (max-width: 768px) {
  footer .footer-nav .office .topic .item .col .text {
    font-size: 16px;
  }
}
footer .footer-nav .office .topic .item .col .arrow-right {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  -moz-transition: all 0.2s;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  -ms-transition: all 0.2s;
  transition: all 0.2s;
}
footer .footer-nav .office .topic .item .col .arrow-right i {
  font-size: 20px;
  font-weight: 100;
}
footer .footer-nav .office .topic .item:hover .icon {
  background-color: #fff;
}
footer .footer-nav .office .topic .item:hover .icon .iconfont {
  vertical-align: middle;
  text-align: center;
  color: var(--main-color);
}
footer .footer-nav .office .topic .item:hover .arrow-right {
  position: absolute;
  right: 0;
}
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-bottom: 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-bottom: 10px;
  }
}
footer .spot {
  font-size: 270px;
  font-weight: bold;
  color: #fff;
  opacity: 0.1;
  position: absolute;
  right: 40px;
  top: 0;
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}
@media screen and (max-width: 1024px) {
  footer .spot {
    font-size: 35vw;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 100%;
    text-align: center;
  }
}
.lds-logo-lilly svg {
  fill: currentColor;
}
.loading-action-btn-disabled {
  opacity: 0.5 !important;
  cursor: no-drop;
}
.swal2-styled.swal2-confirm {
  background-color: var(--main-color) !important;
}
.swal2-styled.swal2-confirm:focus {
  box-shadow: unset!important;
}
.guide-scroll {
  position: absolute;
  right: 60px;
  bottom: 100px;
  line-height: 1;
  opacity: 1;
  transition: all 0.8s 2.6s cubic-bezier(0.19, 1, 0.22, 1);
  z-index: 3;
}
@media screen and (max-width: 1024px) {
  .guide-scroll {
    right: 0px;
    bottom: 0;
  }
}
.guide-scroll p {
  letter-spacing: 0.25em;
  line-height: 1;
  font-size: 13px;
  color: var(--main-color);
  font-family: 'Roboto', sans-serif;
  font-weight: 800;
  writing-mode: vertical-lr;
}
@media screen and (max-width: 1024px) {
  .guide-scroll p {
    font-size: 12px;
  }
}
.guide-scroll .roll {
  transform: rotate(90deg) translate(-148px, 4px);
}
.guide-scroll .roll::before,
.guide-scroll .roll::after {
  content: '';
  height: 1px;
  background-color: var(--main-color);
  position: absolute;
  left: 0;
  bottom: 3px;
  transform-origin: 0 0;
}
.guide-scroll .roll::before {
  width: 0px;
  transform: rotate(-45deg);
  animation: scroll_2 1.5s linear infinite;
}
.guide-scroll .roll::after {
  animation: scroll_1 1.5s linear infinite;
}
@keyframes scroll_1 {
  0% {
    width: 0;
    left: 70px;
  }
  30% {
    width: 70px;
    left: 0;
  }
  60% {
    width: 70px;
    left: 0;
  }
  80% {
    width: 0;
    left: 0;
  }
  100% {
    width: 0;
    left: 0;
  }
}
@keyframes scroll_2 {
  0% {
    width: 0;
  }
  30% {
    width: 0;
  }
  38% {
    width: 7px;
    left: 0;
    bottom: 3px;
  }
  80% {
    width: 7px;
    left: 0;
    bottom: 3px;
  }
  90% {
    width: 0;
    left: 4.95px;
    bottom: 7.95px;
  }
  100% {
    width: 0;
    left: 4.95px;
    bottom: 7.95px;
  }
}
.elevator {
  background-color: var(--main-color);
  position: fixed;
  right: 0;
  bottom: 20px;
  z-index: 10;
  transition-duration: 300ms;
  padding: 10px 0;
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
  opacity: 1;
  transform: translateX(0);
  width: 34px;
}
@media screen and (min-width: 768px) {
  .elevator {
    position: fixed;
    bottom: 100px;
  }
}
.elevator.slipOut {
  transform: translateX(100%);
  opacity: 0;
}
.elevator .p1 {
  letter-spacing: 0.25em;
  font-size: 14px;
  color: #fff;
  font-family: 'Roboto', sans-serif;
  font-weight: 800;
  writing-mode: vertical-lr;
  margin: 0 auto;
  margin-bottom: 4px;
}
.elevator .ico {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: #fff;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--main-color);
}
.elevator .ico i {
  font-size: 26px;
}
.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;
}
.btn div,
.btn a {
  transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}
.btn div p,
.btn a p {
  transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}
.btn div p:after,
.btn a p:after {
  transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}
.btn div:hover,
.btn a:hover {
  background-color: var(--darken-main-color) !important;
}
.btn div:hover p,
.btn a:hover p {
  padding-right: 70px!important;
}
.btn div:hover p:after,
.btn a:hover p:after {
  width: 60px!important;
}
.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;
  }
}
.step-main {
  margin-top: 100px;
  display: flex;
}
@media screen and (max-width: 1024px) {
  .step-main {
    flex-direction: column;
    margin-top: 0;
  }
}
.step-main .s-box {
  width: 100%;
  text-align: center;
  margin: 0 auto;
  position: relative;
  padding: 0 40px;
}
@media screen and (max-width: 1024px) {
  .step-main .s-box {
    width: 100%;
    padding-bottom: 100px;
    margin-bottom: 50px;
  }
}
.step-main .s-box:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
}
.step-main .s-box .s-icon {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background-image: var(--gradient-1);
  position: relative;
  transition: all 0.3s ease;
  margin: auto;
  margin-bottom: 17px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.step-main .s-box .s-icon:before {
  content: "";
  width: 114px;
  height: 114px;
  border-radius: 50%;
  background-color: #161623;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(1);
  position: absolute;
  z-index: 0;
  transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}
.step-main .s-box .s-icon i {
  background-image: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-size: 48px;
  z-index: 1;
  transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  display: block;
  position: relative;
  text-decoration: none;
}
.step-main .s-box .arrow {
  position: absolute;
  background-image: url("/static/img/arrow.png");
  width: 18px;
  height: 46px;
  top: 40px;
  right: 0;
  transform: rotateZ(-90deg) translateY(25%);
}
@media screen and (max-width: 1024px) {
  .step-main .s-box .arrow {
    transform: translateX(-50%);
    top: unset;
    right: unset;
    bottom: 0;
    left: 50%;
  }
}
.step-main .s-box .s-t2 {
  font-size: 20px;
  font-weight: 500;
}
.step-main .s-box:hover .s-icon:before {
  transform: translate(-50%, -50%) scale(0);
}
.step-main .s-box:hover .s-icon i {
  background-image: -webkit-linear-gradient(45deg, #fff, #fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.arr-btn {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: var(--gradient-1);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
  border-radius: 50px;
}
.arr-btn span {
  color: white;
  line-height: 1;
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 0.15em;
  padding-right: 50px;
  position: relative;
  transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}
.arr-btn span:before,
.arr-btn span:after {
  content: '';
  height: 1px;
  background-color: white;
  position: absolute;
  right: 0;
  bottom: 0.25em;
  transform-origin: 100% 100%;
  transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}
.arr-btn span:before {
  width: 7px;
  transform: rotate(45deg);
}
.arr-btn span:after {
  width: 40px;
}
.arr-btn:hover span {
  padding-right: 70px!important;
}
.arr-btn:hover span:after {
  width: 60px!important;
}
.button {
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-pack: justify;
  -ms-flex-align: center;
  align-items: center;
  width: 400px;
  height: 80px;
  background-image: var(--gradient-1);
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  border-radius: 3em;
  box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.1);
  padding-left: 20px;
  -ms-flex: none;
  flex: none;
  transition-duration: 0.3s;
  color: #fff;
  margin-bottom: 20px;
}
@media screen and (min-width: 1px) and (max-width: 768px) {
  .button {
    width: 260px;
    height: 62px;
    font-size: 18px;
    padding: 0 5px 0 10px;
  }
}
.button .text {
  display: inline-flex;
  align-items: center;
}
@media screen and (min-width: 1px) and (max-width: 768px) {
  .button .text {
    font-size: 18px;
  }
}
.button .text i {
  font-size: 48px;
  margin-right: 10px;
  font-weight: 100;
}
@media screen and (max-width: 768px) {
  .button .text i {
    font-size: 38px;
    margin-right: 4px;
  }
}
.button .text p {
  display: flex;
  flex-direction: column;
}
.button .text p .btn-text {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.03rem;
}
.button .text p .btn-num {
  font-size: 40px;
  margin-top: 2px;
  font-weight: 700;
  letter-spacing: -0.03rem;
}
@media screen and (max-width: 768px) {
  .button .text p .btn-num {
    font-size: 16px;
  }
}
.button .text .button-arrow {
  background-color: #fff;
  width: 30px;
  height: 30px;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 1px) and (max-width: 768px) {
  .button .text .button-arrow {
    width: 26px;
    height: 26px;
  }
}
.button:hover {
  box-shadow: 0 0 0 rgba(0, 0, 0, 0.05);
  transform: scale(1.05);
}
.ripple {
  position: relative;
}
.ripple .dot {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 50px;
  height: 40px;
  border-radius: 50%;
  /*box-shadow: 2px 4px 4px 0 rgb(0 0 0 / 10%);*/
  /*background-color: #2a7114;*/
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  display: none;
}
@media screen and (min-width: 1px) and (max-width: 768px) {
  .ripple .dot {
    right: 0;
  }
}
@media screen and (min-width: 1px) and (max-width: 768px) {
  .ripple .dot:before,
  .ripple .dot:after {
    display: none;
  }
}
.ripple .dot:before,
.ripple .dot:after {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  background-color: #fff;
  /*-webkit-animation-name: opacity;
            animation-name: opacity;
            -webkit-animation-duration: 2s;
            animation-duration: 2s;
            -webkit-animation-iteration-count: infinite;
            animation-iteration-count: infinite;
            content: '';*/
  /*animation-play-state: paused;*/
}
.ripple .dot:before {
  width: 100px;
  height: 100px;
  margin: -50px 0 0 -50px;
  box-shadow: 2px 4px 4px 0 rgba(0, 0, 0, 0.2);
  opacity: 0;
}
.ripple .dot:after {
  width: 80px;
  height: 80px;
  margin: -40px 0 0 -40px;
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
  opacity: 0;
}
.ripple:hover .dot:before,
.ripple:hover .dot:after {
  /*animation-play-state: running;*/
}
.ripple:hover .dot:before {
  opacity: 0.65;
}
.ripple:hover .dot:after {
  opacity: 0.6;
}
/*# sourceMappingURL=global.css.map */