/*css reset*/

* {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html,
body {
  position: absolute;
  width: 100%;
  height: 100%;
  min-height: 100% !important;
  margin: 0;
  padding: 0;
  color: #4c5568;
  font-family: "微软雅黑", "宋体", Arial;
  background: #fff;
  font-size: 0.14rem;
  /*min-width: 1200px;*/
}

html,
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
span,
fieldset,
input,
textarea,
p,
blockquote,
th,
td,
header,
section,
footer {
  padding: 0;
  margin: 0;
}

video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
}

ul,
li {
  list-style-type: none;
}

a {
  text-decoration: none;
  margin: 0;
  padding: 0;
}

i,
em {
  font-style: normal;
}

img {
  border: none;
}

/*浮动样式*/

.fl {
  float: left;
}

.fr {
  float: right;
}

.hidden {
  display: none;
}

.hide {
  visibility: hidden;
}

/*超出省略号*/

.ell {
  overflow: hidden;
  -ms-text-overflow: ellipsis;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/*提示样式*/

.tip {
  position: fixed;
  top: 0;
  font-size: 0.3rem;
  height: 100%;
  width: 100%;
  z-index: 99;
}

.tip div {
  margin: 0 auto;
  max-width: 2rem;
  background: #76797D;
  border-radius: 0.2rem;
  color: white;
  text-align: center;
  padding: 0.2rem 0;
  top: 40%;
  position: relative;
  opacity: 0;
}

/*动画*/

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
    /*初始状态 透明度为0*/
    -webkit-transform: translateY(0.3rem);
    transform: translateY(0.3rem);
  }
  50% {
    opacity: 1;
    /*中间状态 透明度为0*/
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    /*结尾状态 透明度为1*/
    -webkit-transform: translateY(0.3rem);
    transform: translateY(0.3rem);
    display: none;
  }
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
    /*初始状态 透明度为0*/
    -webkit-transform: translateY(0.3rem);
    transform: translateY(0.3rem);
  }
  35% {
    opacity: 1;
    /*中间状态 透明度为0*/
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  65% {
    opacity: 1;
    /*中间状态 透明度为0*/
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    /*结尾状态 透明度为1*/
    -webkit-transform: translateY(0.3rem);
    transform: translateY(0.3rem);
    display: none;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    /*初始状态 透明度为0*/
    -webkit-transform: translateY(0.3rem);
    transform: translateY(0.3rem);
  }
  35% {
    opacity: 1;
    /*中间状态 透明度为0*/
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  65% {
    opacity: 1;
    /*中间状态 透明度为0*/
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    /*结尾状态 透明度为1*/
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
    display: none;
  }
}

.fadeIn {
  animation: fadeIn;
  /*动画名称*/
  animation-duration: 2s;
  /*动画持续时间*/
  -webkit-animation: fadeIn 2s;
  /*针对webkit内核*/
}

.clearfix::after {
  content: ".";
  clear: both;
  display: block;
  overflow: hidden;
  font-size: 0;
  height: 0;
}

.clearfix {
  zoom: 1;
}

.centralContainer{
  width: 12rem;
  height: 100%;
  padding: 0 0.4rem;
  margin: 0 auto;
  overflow: hidden;
}
span{
  line-height: 0.23rem;
}
p{
  /*line-height: 0.23rem;*/
}


.wrapBox{
  width: 100%;
  background: #fff;
}
.middleBox{
  width: 12.8rem;
  margin: 0 auto;
  text-align: center;
}
.navWrap{
  background: #172139;
  height: 0.8rem;
  color: #fff;
  position: fixed;
  z-index: 10;
}
.nav{
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.18rem;
}
.logo img{
  width: 0.48rem;

}
.listBox ul{
  display: flex;
  align-items: center;
}
.listBox li{
  color:#fff;
  margin: 0 0.3rem;
  padding: 0.1rem;
  position: relative;
}
.listBox li:after{
  content: "";
  position: absolute;
  width: 0.03rem;
  height: 0.03rem;
  left: 0;
  bottom: 0;
  z-index: 9;
  background: transparent;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}
.listBox li:hover,
.listBox li:focus {
  color: #E6339B;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}

.listBox li:hover:after,
.listBox li:focus:after{
  width: 100%;
  background: #E6339B;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}
.listBox li.active{
    color: #E6339B!important;
    position: relative;
  }
.listBox li.active a{
  color: #E6339B!important;
  position: relative;
}
.listBox li.active:after{
  content: "";
  position: absolute;
  width: 100%;
  height: 0.03rem;
  left: 0;
  bottom: 0;
  z-index: 9;
  background: #E6339B;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}

.langChange img{
  width: 0.18rem;
  height: 0.18rem;
  vertical-align: middle;
  margin-left: 0.12rem;
}
/*a:hover,a:focus,a:visited,a:active {*/
/*  color: #fff;*/
/*  text-decoration: none!important;*/
/*}*/

.wechat-wrapper {
  position: relative;
  display: inline-block;
}

.qrcode-hehe {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
}
.qrcode-hehe .qr-img {
  width: 200px;
  height: 200px;
}