@font-face {
  font-family: 'SourceHanSansCN-Medium';
  src: url('./../font/SourceHanSansCN-Medium.ttf');
}
@font-face {
  font-family: 'SourceHanSansCN-Normal';
  src: url('./../font/SourceHanSansCN-Normal.ttf');
}
html,body{
  height: 100%;
  width: 100%;
}
body{
  margin: 0;
}
/*语义化标签*/
article, aside, figcaption, figure, footer, header, hgroup, main, nav, section {
  display: block;
}
 
div,
h1, h2, h3, h4, h5, h6,
ul, ol, dl, li, dt, dd,
p,
blockquote,
pre,
form,
section,
fieldset,
table, th, td,
input,
button,
optgroup,
textarea,
fieldset{
  margin: 0;
  padding: 0;
  font-family: "SourceHanSansCN-Medium";
  box-sizing: border-box;
}
img {
  display: block;
}
li{
  list-style: none;
}
 
/* correct font weight in Chrome, Edge, and Safari. */
b,
strong {
  font-weight: bolder;
}
/*
 * IE 10 激活转态有背景色
 * 去掉默认的下划线
 */
a{
  text-decoration: none;
  background-color: transparent;
  color: #000;
}
/* IE 10 下img有border */
img {
  border-style: none;
}
table {
  border-collapse: collapse;
  table-layout: fixed;
}
 
/* form 表单元素 */
input{
  margin: 0;
  padding: 0;
  outline: none;
}
input::-webkit-input-placeholder{
  color: #ccc;
}
input::-ms-input-placeholder{
  color: #ccc;
}
input::-moz-placeholder{
  color: #ccc;
}
input[type=submit],input[type=button]{
  cursor: pointer;
}
button[disabled], input[disabled] {
  cursor: default;
}
button{
  outline: none;
  border: none;
  background-color: transparent;
}
.fL{
  float: left;
}

.fR{
  float: right;
}

.df {
  display: flex;
}
.vertical {
  align-items: center;
}
.center {
  justify-content: center;
}
.both-side {
  justify-content: space-between;
}
.around {
  justify-content: space-around;
}

.container {
  margin: 0 auto;
}

.default-page{
  margin-top: 1.02rem;
}
/* line */
.linear-line {
  width: 2.85rem;
  height: 0.04rem;
  background: linear-gradient(90deg,#C8EFFF 0%, #3EE2D6 50%, #C8EFFF 100%);
  border-radius: 0.08rem;
  margin: 0.40rem auto 0;
}
/* swiper */
.swiper {
  width: 100%;
  /* height: 100%; */
  height: 11.6rem;
}
.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: scale-down;
}

/* mobile start */
.mobile {
  height: 1.02rem;
  padding-left: 0.3rem;
  background: white;
  box-sizing: border-box;
  box-shadow: 0px 5px 16px 0px rgba(0,0,0,0.08);
  position: fixed;
  left: 0;
  top: 0;
  width: 7.50rem;
  z-index: 999;
}
.mobile .logo {
  font-size: 0.34rem;
  font-family: STYuanti-SC-Bold, STYuanti-SC;
  font-weight: bold;
  color: #888889;
}
.mobile .logo .logo-img {
  width: 3.00rem;
  height: 0.54rem;
}
.mobile .trigger > span {
  height: 0.04rem;
  width: 0.44rem;
  display: inline-block;
  background: #3F3F3F;
  position: absolute;
  left: -0.02rem;
}
.region {
  width: 1.02rem;
  height: 1.02rem;
}
.mobile .trigger {
  width: 0.40rem;
  height: 0.40rem;
  position: relative;
  margin: 0.32rem auto;
}
.mobile .trigger .top {
  top: 0.04rem;
}
.mobile .trigger .middle {
  top: 0.18rem;
}
.mobile .trigger .low {
  top: 0.32rem;
}
/* trigger动画 */
.mobile .trigger .trigger-on-top {
  transition: top 0.1s linear, transform 0.3s linear;
  top: 0.18rem;
  transform: rotate(225deg);
}
.mobile .trigger .trigger-on-middle {
  opacity: 0;
  transition: opacity 0.3s linear;
}
.mobile .trigger .trigger-on-low {
  transition: top 0.1s linear, transform 0.3s linear;
  top: 0.18rem;
  transform: rotate(-225deg);
}
.mobile .trigger .trigger-off {
  opacity: 1;
  transition: transform 0.3s linear, top 0.45s linear, opacity 0.3s linear;
}



/* .mobile .trigger::before {
  content: '';
  position: absolute;
  top: 60%;
  left: 50%;
  height: 4rem;
  width: 40rem;
  border-radius: 2px;
  background-color: #000;
  -webkit-transform: translate(-50%,-50%) rotate(0);
  transform: translate(-50%,-50%) rotate(0);
  transition: .3s ease-out;
}

.mobile .trigger::after{
  content: '';
  position: absolute;
  top: 40%;
  left: 50%;
  height: 4rem;
  width: 40rem;
  border-radius: 2px;
  background-color: #000;
  -webkit-transform: translate(-50%,-50%) rotate(0);
  transform: translate(-50%,-50%) rotate(0);
  transition: .3s ease-out;
}

.mobile .open::after{
  transform: translate(-50%, 180%) rotate(-225deg);
}

.mobile .open::before{
  transform: translate(-50%, -25%) rotate(225deg);
} */

/* memu start */
.ovflow-box {
  height: calc( 100vh - 1.02rem );
  width: 100vw;
  overflow: hidden;
  position: fixed;
  left: 0;
  top: 1.02rem;
  z-index: 1;
  transition: opacity .3s linear;
}
.ovflow-box-hide {
  opacity: 0;
  z-index: -2;
}
.ovflow-box-show {
  opacity: 1;
  z-index: 2;
}
.menu {
  /* height: calc( 100vh - 102rem ); */
  height: 3.96rem;
  width: 100vw;
  transition: all  0.3s linear;
  box-shadow: 0px 5px 16px 0px rgba(0,0,0,0.08);
}

.menu li {
  /* padding: 0 30rem; */
  transition: opacity .15s ease-out,transform .3s ease-out;
  height: 1.32rem;
  background: white;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.li-show {
  transform: translateY(0px);
  opacity: 1;
}
.li-hide {
  transform: translateY(0.60rem);
  opacity: 0;
}
/* .menu-hide li {
  transform: translateY(30rem);
  opacity: 0;
}

.menu-show li {
  transform: translateY(0px);
  opacity: 1;
} */
.menu a {
  font-size: 0.40rem;
  font-weight: 500;
  color: #000000;
  line-height: 1.32rem;
  padding: 0 0.30rem !important;
  width: 100%;
  height: 1.32rem;
  display: inline-block;
}
.menu .home-text > p {
  width: 1.6rem;
  height: 100%;
  display: flex;
  justify-content: space-between;
}



/* 服务支持 */
.service{
  padding: 40px 0  40px 0 !important;
  border-bottom: 2px solid #F1F1F1;
}
.service .service-box{
  width: 341px;
  height: 176px;
  padding: 20px 41px 0 0 ;
  box-sizing: border-box;
  float: left;
}
.service .contact-us{
  padding: 20px 0px 0 0 ;
}
.service .service-box .qr-code{
  float: right;
  text-align: center;
  margin-left: 18px;
}
.service .service-box .qr-code img {
  width: 112px;
  height: 112px;
}
.service .service-box .title{
  font-size: 16px;
  font-family: SourceHanSansCN-Medium, SourceHanSansCN;
  font-weight: 600;
  color: #000000;
  margin-bottom: 16px;
}
.service .service-box .content{
  font-size: 16px;
  font-family: SourceHanSansCN-Normal, SourceHanSansCN;
  font-weight: 400;
  line-height: 24px;
  color: #1E1E1E;
}



/* 底部 */
/* .foot{
  height: 63px;
  padding: 0;
  font-size: 35px;
}
.foot > a {
  font-size: 16px;
  font-family: SourceHanSansCN-Medium, SourceHanSansCN;
  font-weight: 500;
  color: #1E1E1E;
  line-height: 63px;
}

.foot > a:hover {
  color: #35B7AD;
} */

.swiper-button-next:after, .swiper-button-prev:after{
  /* color: #AAABAC; */
  content: '';
}

.swiper-pagination-bullet-active{
  background: #333;
}

.swiper-button-next, .swiper-button-prev {
  width: 0.70rem;
  height: 0.70rem;
}
.swiper-button-img {
  width: 0.70rem;
  height: 0.70rem;
}

/* mobile start */
/* .toggle{
  line-height: 30px;
  width: 60px;
  height: 30px;
  position: absolute;
  right: 10px;
  top: 5px;
}
.toggle > span{
  font-size: 15px;
  color: #000;
  font-weight: bold;
}
.nav-bar-lg .toggle-menu{
  width: 30px;
  height: 30px;
  position: absolute;
  right: 0px;
  top: 0px;
  line-height: 30px;
}

.mobile .toggle-menu .toggle-menu .toggle-menu-buttom{
  width: 30px;
  height: 30px;
  margin-left: 15px;
}

.mobile .toggle-menu::before{
  content: '';
  position: absolute;
  top: 60%;
  left: 50%;
  height: 2px;
  width: 20px;
  border-radius: 2px;
  background-color: #000;
  -webkit-transform: translate(-50%,-50%) rotate(0);
  transform: translate(-50%,-50%) rotate(0);
  transition: .3s ease-out;
}


.mobile .toggle-menu::after{
  content: '';
  position: absolute;
  top: 40%;
  left: 50%;
  height: 2px;
  width: 20px;
  border-radius: 2px;
  background-color: #000;
  -webkit-transform: translate(-50%,-50%) rotate(0);
  transform: translate(-50%,-50%) rotate(0);
  transition: .3s ease-out;
}
.mobile-menu-list{
  position: absolute;
  left: 0;
  top: 54px;
  background: white;
  height: calc( 100vh - 54px );
  width: 100%;
  transition: .7s ease-out;
}

.menushow {
  visibility: visible;
  opacity: 1;
}

.menuhide {
  visibility: hidden;
  opacity: 0;
}
.mobile-menu-list > ul{
  margin: 0;
}
.mobile-menu-list > ul > li{
  width: 100%;
  height: 40px;
  line-height: 40px;
  border-bottom: 1px solid #efefef;
}
.mobile-menu-list > ul > li > a{
  float: left;
  color: #333;
  font-weight: bold;
}
.mobile-menu-list > ul > li > i{
  float: right;
} */

/* foot */
/* foot */
.foot {
  /* padding: 0.38rem 0 0; */
  width: 6.90rem;
  margin: 0 auto;
  border-bottom: 1px solid #F1F1F1;
}

.foot-universal{
  padding: 0 0 0.20rem;
  margin-bottom: 0.40rem;
}

.foot-universal .title {
  font-size: 0.32rem;
  font-weight: 500;
  color: #000000;
  margin-bottom: 0.52rem;
}

.foot-universal .name {
  font-size: 0.28rem;
  font-weight: 400;
  color: #1A1A1A;
  font-family: 'SourceHanSansCN-Normal';
}

.foot .org .name {
  margin-bottom: 0.24rem;
}

/* contact */
.contact {
  width: 6.90rem;
  margin: 0 auto;
  padding-top: 0.40rem;
  padding-bottom: 0.60rem;
}
.contact .company-logo {
  width: 1.80rem;
  height: 0.66rem;
  margin-bottom: 0.30rem;
}
.contact-universal .text{
  font-size: 0.28rem;
  font-weight: 400;
  color: #1A1A1A;
  margin-top: 0.10rem;
  font-family: 'SourceHanSansCN-Normal';
}
.contact .wechat {
  margin-left: 0.40rem;
}
.contact .wechat-qrcode {
  padding-top: 0.40rem;
  padding-bottom: 0.70rem;
}
.contact .wechat-qrcode > img {
  width: 1.67rem;
  height: 1.72rem;
}
.contact .wechat-qrcode > p {
  font-size: 0.22rem;
  font-weight: 500;
  color: #1E1E1E;
  text-align: center;
}
.copyright {
  font-size: 0.22rem;
  font-weight: 500;
  color: #323232;
}
