@charset "UTF-8";
:root {
  --base-color: #3c3c3c;
  --light-color: #ffffff;
}

input:-webkit-autofill,
textarea:-webkit-autofill,
select:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px white inset;
  border: 1px solid #ccc !important;
}

input,
textarea,
select {
  font-family: "Microsoft YaHei", 微软雅黑, "MicrosoftJhengHei", sans-serif;
}

::-webkit-input-placeholder {
  color: #595a62;
  opacity: 0.5;
}

::-moz-placeholder {
  color: #595a62;
  opacity: 0.5;
}

/* firefox 19+ */
:-ms-input-placeholder {
  color: #595a62;
  opacity: 0.5;
}

/* Internet Explorer 10+ */
:-moz-placeholder {
  color: #595a62;
  opacity: 0.5;
}

/* firefox 14-18 */
html::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

html::-webkit-scrollbar-track {
  border-radius: 8px;
}

html::-webkit-scrollbar-thumb {
  border-radius: 8px;
  background-color: #93d0f5;
}

.oscroll::-webkit-scrollbar {
  width: 8px;
  height: 8px;
  background-color: #383838;
}

/* 两头空块 */
.oscroll::-webkit-scrollbar-button {
  width: 8px;
  height: 8px;
  background-color: transparent;
}

.oscroll::-webkit-scrollbar-thumb {
  background-color: #93d0f5;
  border-radius: 0px;
  width: 4px;
  /* -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3); */
}

.oscroll::-webkit-scrollbar-track {
  border-radius: 0px;
  width: 4px;
  background-color: #383838;
}

html,
body {
  width: 100%;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.layout {
  background-image: url("../images/bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  padding-bottom: 1.2rem;
}

.menu {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 1rem;
  background-image: url("../images/navm.png");
  background-size: 100% 100%;
  background-position: center center;
  background-repeat: no-repeat;
  position: fixed;
  left: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 5;
}
.menu span {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  line-height: 1em;
}
.menu span i {
  font-style: normal;
  position: relative;
  z-index: 1;
  line-height: 1.3em;
  font-size: 0.2rem;
  color: #ea8e8e;
  display: block;
  text-align: center;
  padding: 0.1rem 0.05rem;
}
.menu span.act::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url("../images/nav.png");
  background-size: 100% 100%;
  z-index: 0;
  left: 0;
  top: 0;
}

.wrap {
  min-width: 100%;
  margin: 0 auto;
  min-height: 1000px;
}

.head-bar {
  top: 0;
  height: 1rem;
  width: 100%;
  position: fixed;
  z-index: 1;
}

.fillout {
  height: 1rem;
}

/* 顶部导航栏和Banner样式 SASS嵌套优化 */
.pc-navbar {
  display: none;
}

.m-navbar {
  display: block;
  height: 1.01rem;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.9);
}
.m-navbar .logo {
  position: absolute;
  top: 0rem;
  left: 0.5rem;
}
.m-navbar .logo img {
  width: auto;
  height: 1rem;
  display: block;
}
.m-navbar .toindex {
  position: absolute;
  top: 0.3rem;
  right: 0.5rem;
  width: 1.34rem;
  height: 0.39rem;
  display: block;
  background-image: url("../images/toindex.png");
  background-position: center;
  background-size: 100%;
  z-index: 1;
}

.topact {
  display: none;
  width: 0.78rem;
  height: 1.91rem;
  background-image: url("../images/top.png");
  background-size: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(7.88rem);
          transform: translateX(7.88rem);
  top: 8.88rem;
}
.topact.pos {
  position: fixed;
  top: 0rem;
}

.slogan {
  position: absolute;
  top: 3.5rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.slogan .slogan-wrap {
  width: 4.93rem;
  height: 3.25rem;
  position: relative;
  background: url("../images/slogan_m.png") no-repeat;
  background-size: 100% 100%;
  -webkit-mask: url("../images/slogan_m.png") 0 0/100%;
}
.slogan .slogan-wrap::after {
  content: "";
  position: absolute;
  inset: -20%;
  background: linear-gradient(45deg, rgba(255, 255, 255, 0) 40%, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0) 60%);
  -webkit-animation: shark-wrap 2.2s infinite;
          animation: shark-wrap 2.2s infinite;
  -webkit-transform: translateX(-70%);
          transform: translateX(-70%);
}

@-webkit-keyframes shark-wrap {
  0% {
    -webkit-transform: translateX(-70%);
            transform: translateX(-70%);
  }
  100% {
    -webkit-transform: translateX(70%);
            transform: translateX(70%);
  }
}

@keyframes shark-wrap {
  0% {
    -webkit-transform: translateX(-70%);
            transform: translateX(-70%);
  }
  100% {
    -webkit-transform: translateX(70%);
            transform: translateX(70%);
  }
}
.mainWrap {
  position: relative;
  width: 100%;
  margin: 0 auto 0;
  padding-top: 6rem;
}
.mainWrap .content {
  width: 100%;
  background-image: url("../images/cntbg.png");
  background-size: 100% 100%;
  background-position: center center;
  background-repeat: no-repeat;
  padding: 0.28rem 0.5rem 0.2rem;
}
.mainWrap .content .part {
  width: 100%;
}
.mainWrap .content .part:not(:first-child) {
  margin-top: 0.95rem;
}
.mainWrap .content .part img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
}
.mainWrap .content .p4 img {
  display: block;
  width: 80%;
  height: auto;
}

.swiperPop .pop-wrap {
  padding: 135px 0px;
  width: 947px;
  height: 820px;
  background-color: transparent;
}
.swiperPop .pop-wrap .close-pop {
  width: 50px;
  height: 50px;
  background-repeat: no-repeat;
  background-position: left top;
  background-size: 100%;
  position: absolute;
  right: 57px;
  top: 95px;
  z-index: 2;
}

.copyrt {
  width: 90px;
  position: absolute;
  bottom: 54px;
  right: 34px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  z-index: 10;
}
.copyrt img {
  display: block;
  width: 100%;
  height: auto;
}
.copyrt.show {
  -webkit-filter: brightness(1.5);
          filter: brightness(1.5);
}

body .footer {
  display: none;
}
@-webkit-keyframes keystep1 {
  0% {
    background-position-x: 0px;
  }
  100% {
    background-position-x: -4516px;
  }
}
@keyframes keystep1 {
  0% {
    background-position-x: 0px;
  }
  100% {
    background-position-x: -4516px;
  }
}
@-webkit-keyframes keystep2 {
  0% {
    background-position-x: 0px;
  }
  100% {
    background-position-x: -3000px;
  }
}
@keyframes keystep2 {
  0% {
    background-position-x: 0px;
  }
  100% {
    background-position-x: -3000px;
  }
}
@-webkit-keyframes keystep3 {
  0% {
    background-position-x: 0px;
  }
  100% {
    background-position-x: -3000px;
  }
}
@keyframes keystep3 {
  0% {
    background-position-x: 0px;
  }
  100% {
    background-position-x: -3000px;
  }
}
@-webkit-keyframes keystep4 {
  0% {
    background-position-x: 0px;
  }
  100% {
    background-position-x: -17.44rem;
  }
}
@keyframes keystep4 {
  0% {
    background-position-x: 0px;
  }
  100% {
    background-position-x: -17.44rem;
  }
}
@-webkit-keyframes keystepppp2 {
  0% {
    background-position: -0.31rem 0;
  }
  20% {
    background-position: -2.66rem 0;
  }
  30% {
    background-position: -4.97rem 0;
  }
  40% {
    background-position: -7.26rem 0;
  }
  50% {
    background-position: -9.61rem 0;
  }
  60% {
    background-position: -11.92rem 0;
  }
  70% {
    background-position: -14.26rem 0;
  }
  80% {
    background-position: -16.52rem 0;
  }
  100% {
    background-position: -0.31rem 0;
  }
}
@keyframes keystepppp2 {
  0% {
    background-position: -0.31rem 0;
  }
  20% {
    background-position: -2.66rem 0;
  }
  30% {
    background-position: -4.97rem 0;
  }
  40% {
    background-position: -7.26rem 0;
  }
  50% {
    background-position: -9.61rem 0;
  }
  60% {
    background-position: -11.92rem 0;
  }
  70% {
    background-position: -14.26rem 0;
  }
  80% {
    background-position: -16.52rem 0;
  }
  100% {
    background-position: -0.31rem 0;
  }
}