html {
  scroll-behavior: smooth;
}
body {
  text-rendering: optimizeLegibility;
  background-color: var(--back-color);
  color: #333;
  position: relative;
  overflow-x: hidden;
  font-family: Source Han Sans CN-Bold, Source Han Sans CN;
  font-weight: lighter;
  font-size: 18px;
  line-height: 1.5;
}
@media (max-width: 991px) {
  body {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
  }
}
body.mask:before {
  content: "";
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 200000;
}
body.overflow-hidden {
  overflow: hidden;
}
.hide {
  display: none!important;
}
img {
  -webkit-touch-callout: none;
  -moz-user-select: none;
  /*火狐*/
  -webkit-user-select: none;
  /*webkit浏览器*/
  -ms-user-select: none;
  /*IE10*/
  -khtml-user-select: none;
  /*早期浏览器*/
  user-select: none;
  -webkit-user-drag: none;
}
.main-body {
  -ms-overflow-x: hidden;
  overflow-x: hidden;
  width: 100%;
  padding-left: 280px;
  left: 0;
  -webkit-transition: all 400ms cubic-bezier(0.19, 1, 0.22, 1);
  -moz-transition: all 400ms cubic-bezier(0.19, 1, 0.22, 1);
  -o-transition: all 400ms cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 400ms cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  -moz-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  -o-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-transition-property: left;
  -moz-transition-property: left;
  -ms-transition-property: left;
  -o-transition-property: left;
  transition-property: left;
  position: relative;
}
.main-body.drawer-opened {
  left: -240px;
}
@media (max-width: 991px) {
  .main-body {
    padding-left: 0;
  }
}
.mobile-header {
  position: sticky;
  top: 0;
  left: 0;
  height: 60px;
  /*background: linear-gradient(90deg, #0f3874 0%, #0a2956 100%);*/
  background-color: #000;
  width: 100%;
  z-index: 99;
  -webkit-transition: all 400ms cubic-bezier(0.19, 1, 0.22, 1);
  -moz-transition: all 400ms cubic-bezier(0.19, 1, 0.22, 1);
  -o-transition: all 400ms cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 400ms cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  -moz-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  -o-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  /*nav{
        margin-top: 16px;
        -webkit-transition: all 400ms cubic-bezier(0.19, 1, 0.22, 1);
        -moz-transition: all 400ms cubic-bezier(0.19, 1, 0.22, 1);
        -o-transition: all 400ms cubic-bezier(0.19, 1, 0.22, 1);
        transition: all 400ms cubic-bezier(0.19, 1, 0.22, 1);
        -webkit-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
        -moz-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
        -o-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
        transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
        ul{
            display: flex;
            justify-content: space-between;
            text-align: center;
            li{
                width: 33%;
                border-right: 1px solid #CB993D;
                font-size: 14px;
                &:last-child{
                    border-right: none;
                }
                a{
                    color: #CB993D;
                }
            }
        }
    }*/
  /*    &.scroll{
        .logo{
            .text{
                .p1{
                    font-size: 16px;
                }
                .p2{
                    display: none;
                }
            }
            .img-wrap{
                width: 20px;

            }
        }

    }*/
}
.mobile-header:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  /*background-image: url('/static/img/nav-back.png');*/
  background-repeat: repeat;
  background-size: 128px;
  top: 0;
  opacity: 0.2;
  z-index: -1;
  -webkit-transition: all 400ms cubic-bezier(0.19, 1, 0.22, 1);
  -moz-transition: all 400ms cubic-bezier(0.19, 1, 0.22, 1);
  -o-transition: all 400ms cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 400ms cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  -moz-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  -o-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
@media (min-width: 992px) {
  .mobile-header {
    display: none;
  }
}
.mobile-header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 15px;
}
.mobile-header .logo a {
  display: flex;
  align-items: center;
}
.mobile-header .logo .img-wrap {
  width: 40px;
  -webkit-transition: all 400ms cubic-bezier(0.19, 1, 0.22, 1);
  -moz-transition: all 400ms cubic-bezier(0.19, 1, 0.22, 1);
  -o-transition: all 400ms cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 400ms cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  -moz-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  -o-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.mobile-header .logo .img-wrap img {
  width: 100%;
}
.mobile-header .logo .text {
  color: #fff;
  margin-left: 10px;
  line-height: 1.3;
}
.mobile-header .logo .text .p1 {
  color: #fff;
  font-size: 20px;
}
.mobile-header .logo .text .p2 {
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
}
.mobile-header .menu {
  display: flex;
  align-items: center;
}
.mobile-header .menu .line {
  margin-right: 22px;
}
.mobile-header .menu .line a {
  color: rgba(255, 255, 255, 0.9);
}
.mobile-header .menu .line a i {
  font-size: 38px;
}
.mobile-header .menu .nav a {
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
}
.mobile-header .menu .nav a .ico i {
  font-size: 20px;
}
.mobile-header .menu .nav a .text {
  font-size: 12px;
}
.sidebar {
  width: 280px;
  height: 100vh;
  position: fixed;
  left: 0;
  top: 0;
  color: rgba(255, 255, 255, 0.9);
  z-index: 10001;
  opacity: 1;
  /*background: linear-gradient(180deg,#0f3874 0%,#0a2956 100%);*/
  background: #000;
  animation: show-sidebar 0.6s cubic-bezier(0.77, 0, 0.175, 1);
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  -webkit-animation: show-sidebar 0.6s cubic-bezier(0.77, 0, 0.175, 1);
  -webkit-animation-iteration-count: 1;
  -webkit-animation-fill-mode: forwards;
}
.sidebar:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  /*background-image: url('/static/img/nav-back.png');*/
  background-repeat: repeat;
  background-size: 100%;
  top: 0;
  opacity: 0.15;
  z-index: -1;
}
@media (max-width: 991px) {
  .sidebar {
    display: none;
  }
}
.sidebar a {
  color: inherit;
}
.sidebar header {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 24px;
}
.sidebar header .logo {
  text-align: center;
}
.sidebar header .logo img {
  margin: 0 auto;
}
.sidebar header .logo .text {
  line-height: 1.2;
  margin-top: 6px;
}
.sidebar header .logo .p1 {
  color: #FFFFFF;
  font-size: 24px;
  font-weight: 400;
}
.sidebar header .logo .p2 {
  color: rgba(255, 255, 255, 0.5);
  font-size: 16px;
}
.sidebar nav {
  /*padding-left: 96px;*/
  font-size: 18px;
  margin-top: 90px;
}
.sidebar nav ul li {
  /*                margin-bottom: 30px;*/
  font-weight: 400;
  position: relative;
}
.sidebar nav ul li > span {
  position: relative;
  display: block;
  padding-top: 12px;
  padding-bottom: 12px;
  padding-left: 96px;
}
.sidebar nav ul li a {
  padding-left: 68px;
  position: relative;
  display: block;
  padding-top: 12px;
  padding-bottom: 12px;
}
.sidebar nav ul li a span {
  position: relative;
  z-index: 1;
  display: block;
  transition: all 400ms cubic-bezier(0.19, 1, 0.22, 1);
}
.sidebar nav ul li a span.s2 {
  color: rgba(255, 255, 255, 0.4);
  font-size: 14px;
}
.sidebar nav ul li a span:first-child {
  color: #d5971f;
}
.sidebar nav ul li a:before {
  content: "";
  -webkit-transition: all 400ms cubic-bezier(0.19, 1, 0.22, 1);
  -moz-transition: all 400ms cubic-bezier(0.19, 1, 0.22, 1);
  -o-transition: all 400ms cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 400ms cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  -moz-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  -o-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  width: 0;
  height: 100%;
  background: #a2741b;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}
.sidebar nav ul li a:hover {
  color: #fff;
}
.sidebar nav ul li a:hover:before {
  width: 100%;
}
.sidebar nav ul li a:hover span:first-child {
  color: #fff;
}
.sidebar nav ul li .arrow {
  position: absolute;
  right: 20px;
  top: 0px;
  font-size: 18px;
  -webkit-transition: all 400ms cubic-bezier(0.19, 1, 0.22, 1);
  -moz-transition: all 400ms cubic-bezier(0.19, 1, 0.22, 1);
  -o-transition: all 400ms cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 400ms cubic-bezier(0.19, 1, 0.22, 1);
  z-index: 2;
  cursor: pointer;
  /*width: 40px;
                    height: 40px;
                    text-align: center;*/
  padding: 13px;
  color: #d5971f;
}
.sidebar nav ul li .arrow.close {
  transform: rotate(-90deg);
}
.sidebar nav ul li ul li {
  font-size: 16px;
}
.sidebar nav ul li ul li a {
  padding-left: 100px;
}
@keyframes show-sidebar {
  from {
    left: -100%;
  }
  to {
    left: 0;
  }
}
@-webkit-keyframes show-sidebar {
  from {
    left: -100%;
  }
  to {
    left: 0;
  }
}
main #mainImage {
  background-color: #191919;
  background-repeat: no-repeat;
  background-position: center center;
  -webkit-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  /*padding-top: 20vh;
        padding-bottom: 20vh;*/
  height: 800px;
}
@media (max-width: 991px) {
  main #mainImage {
    height: 320px;
  }
}
main #mainImage .container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  height: 100%;
  color: #fff;
}
main #mainImage .container .slogan {
  color: #fff;
  font-size: 48px;
  text-align: center;
}
@media (max-width: 991px) {
  main #mainImage .container .slogan {
    font-size: 31px;
    padding: 0 15px;
  }
}
main #mainImage .container .sub {
  font-size: 24px;
  color: rgba(255, 255, 255, 0.5);
}
@media (max-width: 991px) {
  main #mainImage .container .sub {
    font-size: 14px;
    padding: 0 10px;
  }
}
main #content {
  background-color: #f7f7f7;
  padding: 0 10%;
}
@media (max-width: 991px) {
  main #content {
    padding: 0 15px;
  }
}
footer {
  height: 450px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  text-align: center;
}
@media (max-width: 991px) {
  footer {
    height: 340px;
  }
}
footer .inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
footer .inner .title {
  font-size: 48px;
}
@media (max-width: 991px) {
  footer .inner .title {
    font-size: 24px;
  }
}
footer .inner .text {
  font-size: 16px;
  margin-top: 56px;
  margin-bottom: 44px;
}
@media (max-width: 991px) {
  footer .inner .text {
    margin-top: 30px;
    margin-bottom: 40px;
  }
}
.contact-btn {
  padding: 2px 20px 2px 15px;
  background: linear-gradient(135deg, #313131 0%, #000000 100%);
  border: 1px solid #a27813;
  border-radius: 100px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: #d5971f;
  margin-top: 100px;
  transition: all 0.5s ease 0s;
}
.contact-btn i {
  font-size: 38px;
  margin-right: 6px;
}
.contact-btn p {
  display: flex;
  flex-direction: column;
}
.contact-btn .btn-text {
  font-weight: 700;
  line-height: 1.1;
}
.contact-btn .btn-num {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.1;
}
.contact-btn:hover {
  /*color: #ffbf5a;*/
}
@media (max-width: 991px) {
  .contact-btn {
    margin-top: 28px;
  }
}
#loading {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000;
  /*    background: -moz-linear-gradient(left, #2c4d99 0%, #3761c1 100%);
    background: -webkit-gradient(linear, left top, right top, color-stop(0%, #2c4d99), color-stop(100%, #3761c1));
    background: -webkit-linear-gradient(left, #2c4d99 0%, #3761c1 100%);
    background: -o-linear-gradient(left, #2c4d99 0%, #3761c1 100%);
    background: -ms-linear-gradient(left, #2c4d99 0%, #3761c1 100%);
    background: linear-gradient(to right, #2c4d99 0%, #3761c1 100%);*/
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='$start-color', endColorstr='$end-color', GradientType=1);
  z-index: 10000;
  display: block;
  /*animation: loading-out 1s cubic-bezier(0.770, 0.000, 0.175, 1.000);
    animation-iteration-count: 1;
    animation-fill-mode:forwards;

    -webkit-animation: loading-out 1s cubic-bezier(0.770, 0.000, 0.175, 1.000);
    -webkit-animation-iteration-count: 1;
    -webkit-animation-fill-mode:forwards;

    @keyframes loading-out
    {
        from {left:0}
        to {left: 100%}
    }

    @-webkit-keyframes loading-out
    {
        from {left:0}
        to {left: 100%}
    }*/
  /*    &.eff{
        animation: loading-out 1s cubic-bezier(0.770, 0.000, 0.175, 1.000);
        animation-iteration-count: 1;
        animation-fill-mode:forwards;

        -webkit-animation: loading-out 1s cubic-bezier(0.770, 0.000, 0.175, 1.000);
        -webkit-animation-iteration-count: 1;
        -webkit-animation-fill-mode:forwards;

        @keyframes loading-out
        {
            from {left:0}
            to {left: 100%}
        }

        @-webkit-keyframes loading-out
        {
            from {left:0}
            to {left: 100%}
        }
    }

    &.eff1{

        left: 0;
    }*/
}
#drawer {
  /*background: linear-gradient(180deg, #0f3874 0%, #0a2956 100%);*/
  background-color: #000;
  color: #fff;
  position: fixed;
  display: block;
  -webkit-transform: translateZ(0);
  -webkit-transition: all 400ms cubic-bezier(0.19, 1, 0.22, 1);
  -moz-transition: all 400ms cubic-bezier(0.19, 1, 0.22, 1);
  -o-transition: all 400ms cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 400ms cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  -moz-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  -o-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  right: -240px;
  top: 0;
  z-index: 1000;
  width: 240px;
  height: 100vh;
}
#drawer.show {
  right: 0;
}
#drawer a {
  color: inherit;
}
#drawer:after {
  content: "";
  position: absolute;
  /*        background-image: url('/static/img/nav-back.png');*/
  background-repeat: repeat;
  background-size: 75%;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.15;
}
#drawer #drawer-inner {
  padding-top: 50px;
  padding-bottom: 40px;
  -ms-overflow-y: auto;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  position: relative;
  z-index: 2;
}
#drawer #drawer-inner ul li {
  width: 100%;
  text-align: left;
  display: block;
  font-size: 14px;
  font-weight: 400;
}
#drawer #drawer-inner ul li a {
  width: 100%;
  margin: 0 auto;
  display: block;
  padding: 10px 20px;
  text-decoration: none;
  color: #d5971f;
  font-size: 16px;
  position: relative;
}
#drawer #drawer-inner ul li a i {
  font-size: 14px;
  margin-right: 6px;
  position: absolute;
  right: 10px;
}
#drawer #drawer-inner ul li a.business {
  padding: 12px 0 0 20px;
}
#drawer #drawer-inner ul li a.business i {
  display: inline-block;
  transform: rotateZ(90deg);
}
#drawer #drawer-inner ul li a span {
  font-size: 14px;
  display: block;
}
#drawer #drawer-inner ul li a span.s1 {
  font-size: 16px;
}
#drawer #drawer-inner ul li a span.s2 {
  color: rgba(255, 255, 255, 0.4);
}
#drawer #drawer-inner ul li ul {
  padding: 0;
  margin: 0;
  margin-left: 20px;
  margin-bottom: 10px;
  margin-top: 10px;
}
#drawer .close {
  position: absolute;
  right: 18px;
  top: 10px;
  font-weight: bold;
  z-index: 2;
}
#drawer .close i {
  font-size: 24px;
}
.breadcrumb {
  width: 100%;
  margin: 0 auto;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  display: flex;
  font-size: 14px;
  padding-bottom: 40px;
}
.breadcrumb li {
  color: #333;
}
.breadcrumb li a {
  color: #333;
}
.breadcrumb li:after {
  content: "-";
  padding: 0 8px;
}
.breadcrumb li:last-child {
  text-overflow: ellipsis;
  overflow: hidden;
}
.breadcrumb li:last-child:after {
  content: "";
}
.breadcrumb li:last-child {
  color: #d5971f;
}
.overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 100;
  background-color: rgba(0, 0, 0, 0.2);
  top: 0;
  left: 0;
}
/*# sourceMappingURL=global.css.map */