:root {
  --gradient-1: -webkit-linear-gradient(-45deg, #8b018d, #c72777);
}
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;
  overflow-x: hidden;
  font-family: var(--font-family);
  font-weight: lighter;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.03rem;
  /*&: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 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: #fff;
  top: 0;
  left: 0;
  z-index: 100;
}
._show_loading .global-loading {
  display: block;
}
@media screen and (min-width: 769px) {
  .pc-hide {
    display: none!important;
  }
}
.button {
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  width: 380px;
  height: 80px;
  background-color: #ffd103;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  border-radius: 3em;
  border: 2px solid #f7f7f7;
  /* box-shadow: 0px 10px 10px rgba(0,0,0,0.1); */
  padding: 0 15px 0px 15px;
  -ms-flex: none;
  flex: none;
  /* transition-duration: .3s; */
  transition: 0.3s all cubic-bezier(0.5, 1.5, 0.5, 1.5);
  color: #000000;
}
@media screen and (min-width: 1px) and (max-width: 768px) {
  .button {
    width: 260px;
    height: 54px;
    font-size: 18px;
    padding: 0 10px 0 12px;
  }
}
.button .text {
  display: inline-flex;
  align-items: center;
}
@media screen and (min-width: 1px) and (max-width: 768px) {
  .button .text {
    font-size: 18px;
    margin-top: 2px;
  }
}
.button .text i {
  font-size: 48px;
  margin-right: 4px;
  font-weight: 100;
}
@media screen and (min-width: 1px) and (max-width: 768px) {
  .button .text i {
    font-size: 36px;
    margin-right: 0;
    display: none;
  }
}
.button .text p {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 1px) and (max-width: 768px) {
  .button .text p {
    margin-left: 6px;
  }
}
.button .text p .btn-text {
  font-size: 16px;
  font-weight: 500;
}
@media screen and (min-width: 1px) and (max-width: 768px) {
  .button .text p .btn-text {
    font-size: 18px;
  }
}
.button .text p .btn-num {
  font-size: 32px;
  font-weight: bold;
  margin-top: 4px;
}
@media screen and (min-width: 1px) and (max-width: 768px) {
  .button .text p .btn-num {
    font-size: 15px;
  }
}
.button .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 .button-arrow {
    width: 26px;
    height: 26px;
  }
}
.button:hover {
  background-color: #ffd103;
  /* box-shadow: 0 0 0 rgba(0,0,0,0.05); */
  width: 380px;
  transform: scale(1.1);
}
.ripple {
  position: relative;
}
.ripple .dot {
  /* position: absolute; */
  top: 50%;
  /* transform: translateY(-50%); */
  right: 31px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  /* box-shadow: 2px 4px 4px 0 rgba(0,0,0,0.1); */
  background-color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000000;
  transition: 0.3s all cubic-bezier(0.5, 1.5, 0.5, 1.5);
  /* &:before,&: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;

        } */
  /* &:before {
            width: 100px;
            height: 100px;
            margin: -50px 0 0 -50px;
            box-shadow: 2px 4px 4px 0 rgba(0,0,0,0.2);
            opacity: 0;
        }
        &:after {
            width: 80px;
            height: 80px;
            margin: -40px 0 0 -40px;
            -webkit-animation-delay: .3s;
            animation-delay: .3s;
            opacity: 0;
        } */
}
@media screen and (min-width: 1px) and (max-width: 768px) {
  .ripple .dot {
    width: 32px;
    height: 32px;
    right: 12px;
    box-shadow: unset;
    /* background-color:unset; */
  }
}
.ripple:hover .dot {
  /* &:before,&:after{
                animation-play-state: running;

            }
            &:before {
                opacity: .65;
            }
            &:after {

                opacity: .6;
            } */
  background-color: #ffffff;
  transform: scale(1.4);
}
.r-dot {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  left: 50%;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  box-shadow: 2px 4px 4px 0 rgba(0, 0, 0, 0.1);
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}
.r-dot:before,
.r-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;*/
}
.r-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.65;
}
.r-dot:after {
  width: 80px;
  height: 80px;
  margin: -40px 0 0 -40px;
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
  opacity: 0.6;
}
@-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;
}
@media screen and (max-width: 768px) {
  .container {
    overflow: hidden;
    padding-bottom: 0px;
    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;
  --header-font-color: #fff;
}
header.ef {
  top: -100px;
}
header.shown {
  top: 0.5vw;
}
header.loan {
  width: 100vw;
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  top: 0;
  left: 0;
  transform: translateX(0);
  border-radius: 0;
  background-color: #fff;
  --header-font-color: #000;
}
@media screen and (max-width: 768px) {
  header.loan {
    --header-font-color: #fff;
    background-color: transparent;
  }
  header.loan .logo-sec img {
    height: 54px;
  }
  header.loan .logo-sec .black {
    display: none!important;
  }
  header.loan .logo-sec .white {
    display: block!important;
  }
}
@media screen and (max-width: 768px) and screen and (max-width: 1024px) {
  header.loan .logo-sec img {
    height: 44px;
  }
}
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;
  background-color: #fff;
  --header-font-color: #000;
}
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: 54px;
}
@media screen and (max-width: 1024px) {
  header .logo-sec img {
    height: 44px!important;
  }
}
header .logo-sec .black {
  display: none;
}
header .logo-sec .white {
  display: block;
}
header.loan .logo-sec .black,
header.fixed .logo-sec .black {
  display: block;
}
header.loan .logo-sec .white,
header.fixed .logo-sec .white {
  display: none;
}
header.loan.fixed .logo-sec .black {
  display: block!important;
}
header.loan.fixed .logo-sec .white {
  display: none!important;
}
header .icons {
  display: none;
  height: 100%;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  header .icons {
    display: flex;
  }
}
header .icons .contact-icons {
  display: none;
}
header .icons .contact-icons a {
  display: inline-block;
}
header .icons .contact-icons a:first-child {
  margin-right: 12px;
}
header .icons .contact-icons a i {
  color: #fff;
  font-size: 32px;
}
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: var(--header-font-color, #000);
    position: relative;
    z-index: 2;
    transform: translateY(-6px);
    margin-left: 10px;
  }
  header .drawer-btn .text {
    font-size: 10px;
    position: absolute;
    bottom: 8px;
    color: var(--header-font-color, #000);
    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: #fff;
  }
  header .drawer-btn.show-open i {
    color: #000;
  }
  header .drawer-btn.show-open .text {
    color: #000;
  }
}
header .nav-sec {
  display: flex;
  justify-content: center;
  height: 100%;
  width: 1400px;
  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%;
  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: var(--header-font-color, #000);
  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;
  font-weight: 500;
  /*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: #ffd103;
}
@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: #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;
}
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: #ccc;
}
header .nav-sec .base li .dropdown-menu .drop-li .dropdown-menu2 li:hover {
  background-color: rgba(0, 0, 0, 0.1);
}
header .nav-sec .base li .dropdown-menu .drop-li .dropdown-menu2 li:hover > a {
  color: #000;
}
header .nav-sec .base li .dropdown-menu .drop-li:hover {
  background-color: rgba(0, 0, 0, 0.1);
  z-index: 1;
}
header .nav-sec .base li .dropdown-menu .drop-li:hover > a {
  color: #000000;
}
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: #ffd103;
}
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: 65%;
    position: absolute;
    background-color: #fff;
    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: #000;
  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: #cccccc;
}
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: #ffd103;
}
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: #000;
  position: relative;
}
header .m-nav-sec .base > li .dropdown-menu .drop-li > a {
  color: #000;
  display: flex;
  padding: 16px 10px;
  padding-left: 16px;
  align-items: center;
}
header .m-nav-sec .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 .base > li .dropdown-menu .drop-li > a.open {
  color: #ffd103;
}
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: #cccccc;
}
header .m-nav-sec .base > li .dropdown-menu .drop-li .dropdown-menu2 li:hover > a {
  color: #cccccc;
}
.banner-section {
  position: relative;
  width: 100%;
  /*width: 90vw;*/
  margin: 0 auto;
  padding-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .banner-section {
    padding-bottom: 0;
  }
}
.banner-section .banner-content {
  position: relative;
  margin-bottom: 20px;
  /* padding-bottom: 40px; */
}
.banner-section .banner-content .c-inner {
  position: absolute;
  bottom: -35px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
}
@media screen and (min-width: 1px) and (max-width: 768px) {
  .banner-section .banner-content .c-inner {
    width: 100%;
    justify-content: space-evenly;
  }
}
.banner-section .banner-content .c-inner .button {
  border-radius: 3em;
}
@media screen and (min-width: 1px) and (max-width: 768px) {
  .banner-section .banner-content .c-inner .button {
    width: 48%;
  }
}
.banner-section .banner-content .c-inner .button:first-child {
  margin-right: 40px;
}
@media screen and (min-width: 1px) and (max-width: 768px) {
  .banner-section .banner-content .c-inner .button:first-child {
    margin-right: 0;
  }
}
.banner-section .banner-content .c-inner .button .dot {
  /* display: none; */
}
.banner-section .banner-content .vis {
  width: 100%;
  z-index: 1;
  overflow: hidden;
  position: relative;
  height: 456px;
  border-radius: 0 0 60px 60px;
}
@media screen and (max-width: 768px) {
  .banner-section .banner-content .vis {
    height: 240px;
    border-radius: 0;
  }
}
.banner-section .banner-content .vis .inner {
  width: 100%;
  height: 100%;
  background-size: cover,cover;
  background-position: center;
  background-image: linear-gradient(rgba(34, 34, 34, 0.1), rgba(34, 34, 34, 0.1)), var(--back-img);
  background-repeat: no-repeat;
}
.banner-section .banner-content .vis .paperwork {
  width: 100%;
  margin: 0 auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  max-width: 1200px;
  padding-left: 20px;
}
@media screen and (max-width: 768px) {
  .banner-section .banner-content .vis .paperwork {
    width: 90%;
    top: 45%;
    transform: translate(-50%, -25%);
    padding-left: 0;
  }
}
.banner-section .banner-content .vis .paperwork .p1 {
  font-size: 80px;
  font-weight: bold;
  letter-spacing: 0.03em;
  line-height: 1.1;
}
@media screen and (max-width: 768px) {
  .banner-section .banner-content .vis .paperwork .p1 {
    font-size: 32px;
  }
}
.banner-section .banner-content .vis .paperwork .p2 {
  font-size: 24px;
  margin-top: 8px;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .banner-section .banner-content .vis .paperwork .p2 {
    font-size: 15px;
  }
}
.banner-section .banner-content .c-inner {
  padding: 0 30px;
}
@media screen and (max-width: 768px) {
  .banner-section .banner-content .c-inner {
    /* flex-direction: column; */
    padding: 0;
  }
}
@media screen and (max-width: 768px) {
  .banner-section .banner-content .c-inner .button {
    /* width: 50%; */
    margin-bottom: 10px;
  }
}
.rep {
  width: 100%;
  text-align: center;
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .rep {
    font-size: 25px;
    text-align: center;
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 40px;
    margin-top: 20px;
  }
}
.rep .rep-title {
  font-size: 35px;
  font-weight: 300;
  letter-spacing: 0.4em;
  color: #000;
  width: 100%;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .rep .rep-title {
    font-size: 25px;
  }
}
.rep .rep-title.hide {
  display: none;
}
.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: #333333;
}
.breadcrumb li.active a {
  color: #333333;
}
.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: #222;
  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: 50px 2vw 15px;
}
@media screen and (max-width: 1024px) {
  footer .footer-inner {
    padding: 10px 4vw 15px;
    display: none;
  }
}
footer .footer-nav {
  display: flex;
  justify-content: space-around;
  align-items: center;
  position: relative;
  z-index: 5;
  width: 100%;
}
@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;
  flex-wrap: wrap;
}
@media screen and (max-width: 1024px) {
  footer .footer-nav .menu-list {
    width: 100%;
    order: 1;
    margin-bottom: 20px;
  }
}
footer .footer-nav .menu-list li {
  border-right: 1px solid #fff;
}
footer .footer-nav .menu-list li:last-child {
  border-right: none;
}
footer .footer-nav .menu-list li a {
  padding: 0 10px;
  display: inline-block;
  width: 100%;
  height: 100%;
  line-height: 1;
  position: relative;
  color: #fff;
}
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: #fff;
}
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: #cccccc;
  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: 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;
}
.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-color: #ffd103;
  /* border: 2px solid #2c9bff; */
  border-radius: 50px;
  color: #000000;
  font-weight: 700;
}
.arr-btn span {
  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);
  font-weight: 500;
}
.arr-btn span:before,
.arr-btn span:after {
  content: '';
  height: 2px;
  background-color: #000000;
  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 {
  color: #000000;
  background-color: #ffd103;
}
.arr-btn:hover span {
  padding-right: 70px!important;
}
.arr-btn:hover span:before,
.arr-btn:hover span:after {
  background-color: #000000;
}
.arr-btn:hover span:after {
  width: 60px!important;
}
.nomogram {
  width: 100%;
}
.nomogram .lean {
  bottom: 100px;
  left: 0;
  width: 100%;
  z-index: 1;
  background-image: url(/static/img/middlebanner.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  padding: 80px 0;
}
@media screen and (max-width: 768px) {
  .nomogram .lean {
    background-position: 28% center;
    height: 500px;
  }
}
.nomogram .contact-title {
  color: #fff !important;
  font-size: 56px;
}
@media screen and (max-width: 1024px) {
  .nomogram .contact-title {
    width: 100%;
    text-align: center;
    font-size: 32px;
    margin: 60px 0 20px;
  }
}
.nomogram .contact-inner {
  position: relative;
  margin: 0 auto;
  width: 94%;
  max-width: 1280px;
  /*&.down{
            .cut-text{
                overflow: hidden;
                span{
                    display: block;
                    transform: translateY(0);
                    transition-delay: 1s;
                }
            }
            .contact-main{
                .show-sordown{
                    &.stackable{
                        transform: translateY(0);
                        opacity: 1;
                        transition: 0.8s ease;
                        -webkit-transition: 0.8s ease;
                        !*transition-delay: 2s;*!
                    }
                    &.contact-form{
                        transform: translateY(0);
                        opacity: 1;
                        transition: 0.8s ease;
                        -webkit-transition: 0.8s ease;

                    }
                }

            }
        }
    */
}
.nomogram .contact-inner .head {
  text-align: center;
}
.nomogram .contact-inner .contact-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  .nomogram .contact-inner .contact-main {
    margin-top: 0;
  }
}
@media screen and (max-width: 1024px) {
  .nomogram .contact-inner .contact-main {
    flex-direction: column;
  }
}
.nomogram .contact-inner .contact-main .stackable {
  /*transform: translateY(40px);
                opacity: 0;
                transition: 0.1s ease;
                -webkit-transition: 0.1s ease;*/
}
@media screen and (max-width: 1024px) {
  .nomogram .contact-inner .contact-main .stackable {
    /* margin-bottom: 40px; */
  }
}
@media screen and (max-width: 768px) {
  .nomogram .contact-inner .contact-main .stackable {
    width: 100%;
  }
}
.nomogram .contact-inner .contact-main .stackable .stk-content {
  color: #fff;
  /* margin-top: 60px;  */
}
@media screen and (max-width: 768px) {
  .nomogram .contact-inner .contact-main .stackable .stk-content {
    margin-top: 0;
  }
}
.nomogram .contact-inner .contact-main .stackable .stk-content .skt-item {
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .nomogram .contact-inner .contact-main .stackable .stk-content .skt-item {
    margin-bottom: 0;
    margin-top: 10px;
  }
}
.nomogram .contact-inner .contact-main .stackable .stk-content .skt-item .p1 {
  font-size: 28px;
  display: flex;
  align-items: center;
  opacity: 1;
  font-weight: 700;
  /* text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4); */
}
@media screen and (max-width: 768px) {
  .nomogram .contact-inner .contact-main .stackable .stk-content .skt-item .p1 {
    font-size: 18px;
    justify-content: center;
  }
}
.nomogram .contact-inner .contact-main .stackable .stk-content .skt-item .p1 i {
  font-size: 28px;
  margin-right: 10px;
  font-weight: 100;
}
@media screen and (max-width: 768px) {
  .nomogram .contact-inner .contact-main .stackable .stk-content .skt-item .p1 i {
    font-size: 24px;
  }
}
.nomogram .contact-inner .contact-main .stackable .stk-content .skt-item .p2 {
  font-size: 28px;
  font-weight: 300;
}
@media screen and (max-width: 768px) {
  .nomogram .contact-inner .contact-main .stackable .stk-content .skt-item .p2 {
    font-size: 24px;
  }
}
.nomogram .contact-inner .contact-main .stackable .stk-content .skt-item .btn-box {
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  .nomogram .contact-inner .contact-main .stackable .stk-content .skt-item .btn-box {
    margin-top: 0;
    text-align: center;
  }
}
.nomogram .contact-inner .contact-main .stackable .stk-foot {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.nomogram .contact-inner .contact-main .stackable .stk-foot a {
  width: 350px;
}
@media screen and (max-width: 768px) {
  .nomogram .contact-inner .contact-main .stackable .stk-foot a {
    width: 96%;
  }
}
.nomogram .contact-inner .contact-main .stackable .stk-foot a:first-child {
  margin-bottom: 20px;
}
.nomogram .contact-inner .contact-main .stackable .stk-foot .btn {
  padding: 12px 16px;
  border-radius: 25px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 18px;
  width: 260px;
  margin-top: 0;
  margin-bottom: 12px;
}
.nomogram .contact-inner .contact-main .stackable .stk-foot .btn i {
  font-size: 32px;
  margin-right: 10px;
}
.nomogram .contact-inner .contact-main .stackable .stk-foot .btn:first-child {
  margin-right: 12px;
}
@media screen and (max-width: 768px) {
  .nomogram .contact-inner .contact-main .stackable .stk-foot .btn:first-child {
    margin-right: 0;
  }
}
.nomogram .contact-inner .contact-main .stackable .stk-foot .btn.line-btn {
  background-color: #f36530;
}
.nomogram .contact-inner .contact-main .stackable .stk-foot .btn.phone-btn {
  border: 2px solid #fff;
}
.nomogram .contact-inner .contact-main .contact-form {
  background-color: rgba(0, 0, 0, 0.3);
  /* width: 650px; */
  padding: 30px;
  flex-shrink: 0;
  font-size: 16px;
  border-radius: 25px !important;
  backdrop-filter: blur(6px) brightness(105%);
  -webkit-backdrop-filter: blur(6px) brightness(105%);
  border: 1px solid rgba(255, 255, 255, 0.4);
  /* overflow: hidden !important; */
  /*border-style: solid !important;
                border-color: #f36530 !important;
                border-top-width: 3px !important;
                border-right-width: 3px !important;
                border-bottom-width: 3px !important;
                border-left-width: 3px !important;*/
  position: relative;
  /*transform: translateY(40px);
                opacity: 0;
                transition: 0.1s ease;
                -webkit-transition: 0.1s ease;*/
}
@media screen and (max-width: 1024px) {
  .nomogram .contact-inner .contact-main .contact-form {
    width: 100%;
    padding: 30px 15px;
    display: none;
  }
}
.nomogram .contact-inner .contact-main .contact-form .list-inline {
  display: flex;
  gap: 15px;
  width: 100%;
  align-items: center;
}
.nomogram .contact-inner .contact-main .contact-form .list-inline span {
  color: #ffffff;
  font-weight: 500;
}
.nomogram .contact-inner .contact-main .contact-form .gender {
  flex-basis: 50%;
}
.nomogram .contact-inner .contact-main .contact-form .gender label {
  padding: 20px;
}
@media screen and (max-width: 768px) {
  .nomogram .contact-inner .contact-main .contact-form .gender label {
    padding: 0 10px;
  }
}
.nomogram .contact-inner .contact-main .contact-form .list {
  flex-basis: 50%;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .nomogram .contact-inner .contact-main .contact-form .list {
    margin-bottom: 15px;
  }
}
.nomogram .contact-inner .contact-main .contact-form .list label {
  display: block;
  margin-bottom: 4px;
  font-weight: 500;
  color: #ffffff;
}
@media screen and (max-width: 768px) {
  .nomogram .contact-inner .contact-main .contact-form .list label {
    margin-bottom: 4px;
  }
}
.nomogram .contact-inner .contact-main .contact-form .list label em {
  font-style: normal;
  color: red;
}
.nomogram .contact-inner .contact-main .contact-form .list .control {
  background-clip: padding-box;
  background-image: none;
  border: 1px solid #8c8c8c;
  border-radius: 0.25rem;
  /* background-color: rgba(255,255,255,.4); */
  color: rgba(0, 0, 0, 0.9);
  display: block;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.5;
  margin-bottom: 0;
  max-width: 100%;
  padding: 6px 12px;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  width: 100%;
  height: 42px;
  outline: none;
}
.nomogram .contact-inner .contact-main .contact-form .list .control option {
  background-color: #fff;
}
.nomogram .contact-inner .contact-main .contact-form .list .flag {
  position: relative;
  border-radius: 0.25rem;
  overflow: hidden;
  /*.pd{
                            padding-left: 72px;
                        }*/
}
.nomogram .contact-inner .contact-main .contact-form .list .flag .stand-icon {
  background-image: url("/static/img/flag.png");
  background-repeat: no-repeat;
  background-size: auto 20px;
  background-position: center;
  background-color: #0000007d;
  position: absolute;
  left: 0;
  top: 1px;
  width: 60px;
  height: calc(100% - 2px);
}
.nomogram .contact-inner .contact-main .contact-form .list .flag select {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}
.nomogram .contact-inner .contact-main .contact-form .list .flag .right-icon {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: #363636;
  font-size: 12px;
}
.nomogram .contact-inner .contact-main .contact-form .list .column {
  display: flex;
  position: relative;
  overflow: hidden;
  border-radius: 0.25rem;
}
.nomogram .contact-inner .contact-main .contact-form .list .column .captcha_img {
  width: 150px;
  height: 46px;
  position: absolute;
  right: 1px;
  bottom: 1px;
  border-radius: 0.25rem;
  cursor: pointer;
}
@media screen and (max-width: 1024px) {
  .nomogram .contact-inner .contact-main .contact-form .list .column .captcha_img {
    width: 110px;
  }
}
.nomogram .contact-inner .contact-main .contact-form .safe {
  font-size: 14px;
  color: #ffffff;
  font-weight: bold;
}
.nomogram .contact-inner .contact-main .contact-form .last {
  text-align: center;
}
.nomogram .contact-inner .contact-main .contact-form .btn-submit {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 18px;
  width: 260px;
  height: 52px;
  margin-top: 20px;
}
@media screen and (max-width: 1024px) {
  .nomogram .contact-inner .contact-main .contact-form .btn-submit {
    width: 100%;
  }
}
.nomogram .contact-inner .contact-main #contact-loading {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 3;
  display: flex;
  justify-content: center;
  align-items: center;
}
.nomogram .contact-inner .contact-main #contact-loading.hide {
  display: none;
}
.nomogram .contact-inner .contact-main .result {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.8);
  color: #fff;
  font-size: 16px;
  bottom: 50%;
  left: 50%;
  transform: translate(-50%, 50%) scale(0);
  transform-origin: 50% 50%;
  text-align: center;
  padding: 10px 16px;
  border-radius: 5px;
  z-index: 4;
  opacity: 0;
  transition: all 0.1s linear;
}
.nomogram .contact-inner .contact-main .result.show {
  transform: translate(-50%, 50%) scale(1);
  opacity: 1;
}
.nomogram .contact-inner .contact-main .result .p1 {
  display: flex;
  align-items: center;
}
.nomogram .contact-inner .contact-main .result .p1 .proper {
  margin-right: 4px;
}
.nomogram .contact-inner .contact-main .result .p1 .proper i {
  font-size: 32px;
}
.nomogram .contact-inner .flavour {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin: 0 auto;
  margin-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 10px;
  transition-delay: 0.8s;
}
@media screen and (max-width: 768px) {
  .nomogram .contact-inner .flavour {
    display: none;
  }
}
.nomogram .contact-inner .flavour .text {
  color: #fff;
  display: flex;
  align-items: center;
  font-size: 20px;
}
.nomogram .contact-inner .flavour .text .si {
  color: #ffffff;
  /* background-image: linear-gradient(to bottom, #4c4c4c, #000); */
  width: 60px;
  height: 60px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  margin-right: 12px;
  border: 2px solid;
}
.nomogram .contact-inner .flavour .text .si i {
  font-size: 30px;
}
.nomogram .contact-inner .flavour .text .s1,
.nomogram .contact-inner .flavour .text .s2 {
  font-weight: bold;
}
.m-fixed-contact {
  position: fixed;
  bottom: 20px;
  z-index: 10;
  display: flex;
  width: 100%;
  justify-content: space-evenly;
  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 {
  width: calc(50% - 5px);
}
.m-fixed-contact .button .text {
  font-size: 14px;
}
.m-fixed-contact .button .text i {
  font-size: 32px;
  display: inline;
}
.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;
}
/*# sourceMappingURL=global.css.map */