body, p, h1, h2, h3, h4, h5, h6, img, ul, li, dl, dd, dt {
  margin: 0;
  padding: 0;
  font-size: 16px;
  color: #333;
  font-family: "Source Han Sans CN", "Montserrat", "Microsoft YaHei", "Arial", "SimSun";
}

img {
  border: 0 none;
  width: 100%;
  display: block;
}

ol, ul, dl, li, dt, dd {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
}

em {
  font-style: normal;
}

input, button, select, textarea {
  outline: none;
}

textarea {
  resize: none;
}

a {
  color: #333;
  text-decoration: none;
  outline: medium none;
  cursor: pointer;
}
a:hover {
  text-decoration: none;
  outline: medium none;
}

.clearfix {
  zoom: 1;
}
.clearfix:after {
  content: "";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

p {
  line-height: 1.6em;
}

input::-webkit-input-placeholder {
  color: #999;
}

.swiper-button-prev, .swiper-button-next, .swiper-pagination {
  outline: none;
}

.in_content {
  width: 83%;
  min-width: 1200px;
  max-width: 1600px;
  margin: 0 auto;
}

.content {
  width: 83%;
  min-width: 1200px;
  margin: 0 auto;
  max-width: 1600px;
}

.aniimg {
  overflow: hidden;
}

.aniimg img {
  display: block;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  -moz-transition: all 0.6s;
  transition: all 0.6s;
  vertical-align: middle;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  width: 100%;
}

.aniimgbox:hover .aniimg img {
  -webkit-transform: scale(1.06);
  -moz-transform: scale(1.06);
  -ms-transform: scale(1.06);
  -o-transform: scale(1.06);
  transform: scale(1.06);
}

.menubtn {
  display: none;
}

.swiper-container {
  height: 100%;
}

.wap-flex {
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -moz-box-pack: space-between;
  -webkit--moz-box-pack: space-between;
  box-pack: space-between;
  -ms-flex-align: center;
      align-items: center;
  -webkit-align-items: center;
  box-align: center;
  -moz-box-align: center;
  -webkit-box-align: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}

.padd {
  padding: 1.2rem 0;
}

.paddtop {
  padding-top: 80px;
}

/*header  */
header {
  position: absolute;
  width: 100%;
  top: 0;
  z-index: 9;
  padding-top: 0.5rem;
}

.logo {
  display: inline-block;
  width: 1.34rem;
}
.logo img {
  display: block;
}
.logo .inlogo {
  display: none;
}

.indexbody .logo img {
  display: none;
}
.indexbody .logo .inlogo {
  display: block;
}

nav {
  width: 63%;
}

.nav {
  width: 85%;
}
.nav>li>a {
  color: #FFF;
  text-transform: uppercase;
  padding-bottom: 6px;
  font-size: 18px;
  position: relative;
}
.nav>li>a:after {
  content: "";
  height: 3px;
  -webkit-transform: scale(0);
     -moz-transform: scale(0);
      -ms-transform: scale(0);
       -o-transform: scale(0);
          transform: scale(0);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  width: 100%;
  bottom: -3px;
  position: absolute;
  display: block;
  background: #E8AC14;
}
.nav>li.navact>a:after, .nav>li:hover>a:after {
  -webkit-transform: scale(1);
     -moz-transform: scale(1);
      -ms-transform: scale(1);
       -o-transform: scale(1);
          transform: scale(1);
}
.nav>li{
  position: relative;
  padding: 20px 0;
}
.nav>li ul{
  position: absolute;
  background: rgba(255,255,255,.8);
  border-radius: 10px;
  top: 58px;
  padding: 10px 20px;
  white-space: nowrap;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0px 3px 7px 0px rgba(7, 13, 43, 0.05);
  display: none;

}
.nav>li ul:before{
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 6px 8px 6px;
  border-color: transparent transparent rgba(255,255,255,.8) transparent;
  position: absolute;
  left: 50%;
  top: -8px;
  margin-left: -6px;

}
.nav>li:hover ul{
  display: block;
}
.nav>li ul li{
  line-height: 30px;
}
.nav>li ul li a{
  color: #333;
  font-size: 14px;
}
.nav>li ul li:hover a{
  color: #E8AC14;
}
.searchbox {
  position: relative;
}
.searchbox span {
  display: inline-block;
  width: 34px;
  height: 34px;
  cursor: pointer;
  background: #E8AC14;
  border-radius: 0px 10px 10px 10px;
}

.search {
  display: none;
  position: absolute;
  right: 0;
  top: 40px;
  background-color: rgba(242, 249, 252, 0.3);
  border-radius: 10px;
  height: 45px;
  padding-right: 45px;
}

.search input {
  border: 0 none;
  background: none;
  line-height: 45px;
  color: #FFF;
  padding-left: 10px;
  font-size: 16px;
}

.search input::-webkit-input-placeholder {
  color: #FFF;
}

.search input:-moz-placeholder {
  color: #FFF;
}

.search input::-moz-placeholder {
  color: #FFF;
}

.search input:-ms-input-placeholder {
  color: #FFF;
}

.search input::placeholder {
  color: #FFF;
}

.search input[type=submit] {
  width: 45px;
  height: 45px;
  background: url(../images/search.png) no-repeat center center;
  position: absolute;
  right: 0;
  top: 0;
}

.titbox p {
  font-size: 0.44rem;
  line-height: 1em;
  text-transform: uppercase;
  color: rgba(22, 22, 22, 0.1);
}
.titbox h2 {
  font-weight: bold;
  font-size: 0.36rem;
  margin-top: 0.25rem;
  line-height: 1em;
}

.titboxfff p, .titboxfff h2 {
  color: #FFF;
}
.titboxfff p {
  opacity: 0.2;
}

.indexswiper1 {
  overflow: hidden;
}

.footer {
  height: auto;
  background: #F8B500;
}

.footleft {
  width: 31.4%;
}

.foottop {
  padding: 0.7rem 0;
}

.footlogo {
  display: block;
  width: 26.8%;
  margin-bottom: 0.5rem;
}

.code {
  width: 37%;
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding: 3px;
}
.code img {
  width: 46.5%;
}

.codetxt {
  width: 46%;
}
.codetxt span {
  display: block;
}

.chattxt {
  margin-top: 0.3rem;
}
.chattxt li {
  line-height: 30px;
  margin-bottom: 0.15rem;
}
.chattxt li img {
  margin-right: 15px;
  float: left;
  margin-top: 3px;
  line-height: 30px;
  width: auto;
}
.chattxt li a {
  display: inline-block;
  line-height: 30px;
}
.chattxt li b {
  font-size: 30px;
  display: inline-block;
  line-height: 30px;
}

.footnav {
  width: 50.3%;
  -webkit-align-items: flex-start;
     -moz-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.footnav dl dt {
  font-size: 18px;
  color: #000;
  margin-bottom: 0.3rem;
}
.footnav dl dd {
  line-height: 2em;
}
.footnav dl dd a {
  color: rgba(0, 0, 0, 0.8);
}
.footnav dl dd:hover a {
  color: #000;
}

.foottxt {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding: 0.3rem 0;
}
.foottxt-left{
  text-align: left;
}

.share a {
  width: 44px;
  height: 44px;
  display: inline-block;
  border: 2px solid rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  margin-left: 10px;
}
.share a img {
  display: inline-block;
}

.totop {
  width: 0.7rem;
  height: 0.7rem;
  background: url(../images/totop.png) no-repeat center center #000000;
  border-radius: 50%;
  position: fixed;
  right: 0.6rem;
  bottom: 1.1rem;
  z-index: 99;
  cursor: pointer;
  display: none;
}

.footer {
  position: relative;
}
.swiper-slide.footer{
  height: auto;
}
.indexbody .footer .totop {
  display: none;
}
.share a{
  position: relative;
}
.codepic{
  position: absolute;
  display: none;
  background: #FFF;
  border-radius: 10px;
  bottom: 52px;
  width: 100px;
  padding: 3px;
  left: 50%;
  margin-left: -50px;

}
.codepic:after{
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 8px 0 8px;
  border-color: #fff transparent transparent transparent;
  left: 50%;
  margin-left:-8px;
  bottom:-8px;
}
.share a:hover .codepic{
  display: block;
}
@media (max-width: 1600px) {
  .paddtop {
    padding-top: 60px;
  }
  .nav li a {
    font-size: 16px;
  }
  .chattxt li b {
    font-size: 24px;
  }
}
@media (max-width: 1450px) {
  .paddtop {
    padding-top: 50px;
  }
}
@media (max-width: 1380px) {
  .content, .in_content {
    width: 90%;
  }
}