@font-face {
  font-family: lianmeng;
  src: url('../fonts/lianmeng.TTF');
}
@font-face {
  font-family: rzzy;
  src: url('../fonts/rzzy.TTF');
}
@font-face {
  font-family: youshe;
  src: url('../fonts/youshe.ttf');
}

.bg-color {
  background: #fff;
}
.img_jz{
  display: block;
  position: relative;
  overflow: hidden;
}
.img_jz img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.title{
  text-align: center;
  padding-top: 4vw;
  padding-bottom: 1.5vw;
  margin:0 auto;
}
.title h3{
  font-size: 3.8rem;
  color: #2e2d2d;
  font-weight: bold;
  background: url("../images/titbg.png") no-repeat center;
}
.title>small{
  font-size: 1.8rem;
  color: #686868;
  text-align: center;
  text-transform: uppercase;
}

/*head*/
.logo{
  display:flex;
  align-items: center;
}
.logo>img{
  height: 62px;
  margin-right: 13px;
}
.logo>div>h1{
  font-size: 1.7rem;
  color: #fff;
  -webkit-transition: 350ms 0s all ease;
  -moz-transition: 350ms 0s all ease;
  -ms-transition: 350ms 0s all ease;
  -o-transition: 350ms 0s all ease;
  transition: 350ms 0s all ease;
}
.logo>div>small{
  font-size: 1rem;
  color: #fff;
  display:block;
  width: 220px;
  -webkit-transition: 350ms 0s all ease;
  -moz-transition: 350ms 0s all ease;
  -ms-transition: 350ms 0s all ease;
  -o-transition: 350ms 0s all ease;
  transition: 350ms 0s all ease;
}
.head:hover .logo>div>h1,
.head:hover .logo>div>small,
.headfix .logo>div>h1,
.headfix .logo>div>small{
  color: #333;
}
.head{
  position:fixed;
  -webkit-transition: 350ms 0s all ease;
  -moz-transition: 350ms 0s all ease;
  -ms-transition: 350ms 0s all ease;
  -o-transition: 350ms 0s all ease;
  transition: 350ms 0s all ease;
  z-index: 1000;
  width: 100%;
  top:0;
  left:0;
}
.headfix,.head:hover{
  background:#fff;
  box-shadow: 0 0 10px #ddd;
}
.head>.warpper{
  display:flex;
  justify-content: space-between;
  align-items: center;
  height: 120px;
  -webkit-transition: 350ms 0s all ease;
  -moz-transition: 350ms 0s all ease;
  -ms-transition: 350ms 0s all ease;
  -o-transition: 350ms 0s all ease;
  transition: 350ms 0s all ease;
}
.nav-bar{
  width: 60%;
  display:flex;
  justify-content: space-between;
  align-items: center;
}
.nav-bar li{
  position:relative;
  line-height: 120px;
}
.nav-bar li>a{
  display:block;
  font-size: 1.8rem;
  color: #ffffff;
  -webkit-transition: 350ms 0s all ease;
  -moz-transition: 350ms 0s all ease;
  -ms-transition: 350ms 0s all ease;
  -o-transition: 350ms 0s all ease;
  transition: 350ms 0s all ease;
}

.head:hover .nav-bar li>a,
.headfix .nav-bar li>a{
  color: #333;
}
.nav-bar li>a:hover{
  color: #1055ca!important;
}

/*downshow*/
.downshow{
  position:fixed;
  top:130px;
  left:0;
  width: 100%;
  background:#fff url("../images/down_cir.png") no-repeat center bottom;
  border-top: 2px solid #eeeeee;
  /*display:none;*/
  visibility: hidden;
  z-index: -1;
  opacity: 0;
}
.showdiv{
  /*display:block;*/
  opacity: 1;
  top:120px;
  visibility: visible;
  z-index: 1000;
  -webkit-transition: 350ms 0s all ease;
  -moz-transition: 350ms 0s all ease;
  -ms-transition: 350ms 0s all ease;
  -o-transition: 350ms 0s all ease;
  transition: 350ms 0s all ease;
}
.downshow .warpper{
  display:flex;
  justify-content: center;
  align-items: center;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding:3vw 0;
}
.downshow .warpper>a{
  position:relative;
  line-height: 40px;
  margin-right: 3vw;
}
.downshow .warpper>a:before{
  position:absolute;
  content: '';
  left:0;
  bottom:0;
  display:block;
  height: 1px;
  background:#e7e7e7;
  width: 100%;
}
.downshow .warpper>a:after{
  content:"";
  width:100%;
  height:1px;
  background:#1055ca;
  position:absolute;
  left:0;
  bottom:0;
  transform-origin:100%;
  -webkit-transform-origin:100%;
  -webkit-transition:-webkit-transform .6s cubic-bezier(.4,0,.2,1);
  transition:-webkit-transform .32s cubic-bezier(.4,0,.2,1);
  transition:transform .6s cubic-bezier(.4,0,.2,1);
  transition:transform .6s cubic-bezier(.4,0,.2,1),-webkit-transform .6s cubic-bezier(.4,0,.2,1);
  transform:scaleX(0);
  -webkit-transform:scaleX(0);
  visibility:hidden\9;}
.downshow .warpper>a:hover:after{
  transform:scaleX(1);
  -webkit-transform:scaleX(1);
  -moz-transform:scaleX(1);
  transform-origin:0;
  -webkit-transform-origin:0;
  visibility:visible\9;
}
.downshow .warpper>a>span{
  border-bottom: 1px solid #e7e7e7;
  position:relative;
  padding-bottom: 10px;
  font-size: 1.6rem;
  color: #353535;
  display:block;
  min-width: 167px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding-right:34px;
  -webkit-transition: 350ms 0s all ease;
  -moz-transition: 350ms 0s all ease;
  -ms-transition: 350ms 0s all ease;
  -o-transition: 350ms 0s all ease;
  transition: 350ms 0s all ease;
}
.downshow .warpper>a>span:before{
  position: absolute;
  right: 0;
  font-family: swiper-icons;
  content: 'next';
  font-size: 1.2rem;
  font-weight: bold;
  color: #7b7b7b;
  line-height: 40px;
}
.downshow .warpper>a:hover>span{
  color: #1055ca;
}
.downshow .warpper>a:hover span:before{
  color: #1055ca;
}
.lxicon{
  width:275px;
  height: 135px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  position:relative;
  overflow:hidden;
}
.lxicon img{
  position:absolute;
  left:0;
  top:0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lxicon span{
  color: #fff;
  font-size:1.8rem;
  top:20px;
  left:20px;
  position:absolute;
  line-height: 20px;
}


/*lang*/
.langchange{
  position:relative;
}

.thislang{
  position:relative;
  cursor: pointer;
  overflow: hidden;
  -webkit-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
  transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
  background:#1055ca;
  border:1px solid #1055ca;
  border-radius: 16.5px;
  -webkit-transition: 350ms 0s all ease;
  -moz-transition: 350ms 0s all ease;
  -ms-transition: 350ms 0s all ease;
  -o-transition: 350ms 0s all ease;
  transition: 350ms 0s all ease;
}
.thislang:hover{
  background:none;
}
.thislang>a,.thislang::after{
  display:block;
  font-weight: bold;
  font-size: 1.3rem;
  line-height: 31px;
  width: 90px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding:0 15px;
}
.thislang>a{
  position:relative;
  color: #fff;
  background:url("../images/changeicon.png") no-repeat 68px center;
  transition: all .4s cubic-bezier(.445,.05,.55,.95);
}

.thislang::after{
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  color: #1055ca;
  background:url("../images/changeicons.png") no-repeat 68px center;
  -webkit-transform: translate3d(0, 70%, 0);
  transform: translate3d(0, 70%, 0);
  transition: all .4s cubic-bezier(.445,.05,.55,.95);
}
.thislang:hover>a{
  opacity: 0;
  -webkit-transform: translate3d(0, -70%, 0);
  transform: translate3d(0, -70%, 0);
}
.thislang:hover::after{
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.sele_lang{
  display:none;
}
.sele_lang a{
  float:left;
  font-size: 1.3rem;
  color: #666;
  font-weight: bold;
  position:relative;
  -webkit-transition: 350ms 0s all linear;
  -moz-transition: 350ms 0s all linear;
  -ms-transition: 350ms 0s all linear;
  -o-transition: 350ms 0s all linear;
  transition: 350ms 0s all linear;
}
.sele_lang>i{
  float:left;
  color: #a5a5a5;
  font-size: 1.3rem;
  font-weight: bold;
  margin-left: 15px;
  cursor: default;
}
.sele_lang a:hover{
  color: #1055ca;
}
.sele_lang a:after{
  content:"";
  width:100%;
  height:2px;
  background:#1055ca;
  position:absolute;
  left:0;
  bottom:0;
  transform-origin:100%;
  -webkit-transform-origin:100%;
  -webkit-transition:-webkit-transform .6s cubic-bezier(.4,0,.2,1);
  transition:-webkit-transform .32s cubic-bezier(.4,0,.2,1);
  transition:transform .6s cubic-bezier(.4,0,.2,1);
  transition:transform .6s cubic-bezier(.4,0,.2,1),-webkit-transform .6s cubic-bezier(.4,0,.2,1);
  transform:scaleX(0);
  -webkit-transform:scaleX(0);
  visibility:hidden\9;
}
.sele_lang a:hover:after{
  transform:scaleX(1);
  -webkit-transform:scaleX(1);
  -moz-transform:scaleX(1);
  transform-origin:0;
  -webkit-transform-origin:0;
  visibility:visible\9;
}




/*banner*/

.banner{
  width: 100%;
  height: 48vw;
  position:relative;
  overflow:hidden;
}
.swiper-banner{
  width: 100%;
  height: 100%;
}
.swiper-banner .swiper-slide a{
  width:100%;
  height: 100%;
  position:relative;
  overflow:hidden;
  display:flex;
  justify-content: center;
  align-items: center;
}
.swiper-banner .swiper-slide a p{
  color: #fff;
  font-size: 4.5rem;
  font-weight: bold;
}
.ban_tr{
  text-align: right;
  font-size: 5rem;
  font-weight: normal;
  padding-bottom: 14vw;
}
.swiper-banner .swiper-pagination {
  position: absolute;
  left:7%!important;
  width: initial!important;
  bottom: 3vw!important;
  z-index: 100;
}
.swiper-banner .swiper-pagination span{
  display: inline-block;
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0);
  border-radius: 5px;
  border:1px solid #fff;
  margin: 0 75px;
  cursor: pointer;
  opacity: 1;
  -webkit-transition: 350ms 0s all linear;
  -moz-transition: 350ms 0s all linear;
  -ms-transition: 350ms 0s all linear;
  -o-transition: 350ms 0s all linear;
  transition: 350ms 0s all linear;
}
.swiper-banner .swiper-pagination .swiper-pagination-bullet-active {
  background: #fff;
  width: 40px;
}


.scrolldown{
  position: absolute;
  bottom:2vw;
  left:50%;
  cursor:pointer;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 100;
}
.scrolldown span{
  border: 2px solid #fff;
  width: 20px;
  height: 32px;
  display: block;
  margin: 0 auto 14px;
  border-radius: 16px;
  position: relative;
}
.scrolldown span:after{
  display: block;
  content: '';
  width: 3px;
  height: 7px;
  border-radius: 1px;
  background-color: #fff;
  position: absolute;
  left: 50%;
  margin-left: -1.5px;
  top: 5px;
  -webkit-animation: mouse-dot 1.5s cubic-bezier(0.23, 1, 0.32, 1) infinite;
  animation: mouse-dot 1.5s cubic-bezier(0.23, 1, 0.32, 1) infinite;
}
@keyframes mouse-dot {
  from { opacity: 0; }
  33% { opacity: 1; }
  to { transform: translateY(15px); -webkit-transform: translateY(15px); opacity: 0; }
}
@-webkit-keyframes mouse-dot {
  from { opacity: 0; }
  33% { opacity: 1; }
  to { transform: translateY(15px); -webkit-transform: translateY(15px); opacity: 0; }
}
.scrolldown b{
  color: #fff;
  font-size: 1.4rem;
  font-weight: normal;
}

/*company*/
.companybg{
  background:url("../images/combg.jpg") no-repeat center/cover;
  padding:3vw 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.company{
  position:relative;
  overflow:hidden;
  display:flex;
  justify-content: space-between;
  align-items: center;
}
.compicbg{
  width: 650px;
  height: 460px;
  position:relative;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding:15px;
  display:flex;
  justify-content: center;
  align-items: center;
}
.compicbg:before{
  position:absolute;
  left:50%;
  top:50%;
  border-radius: 10px;
  -webkit-transform: translate(-50%,-50%);
  -moz-transform: translate(-50%,-50%);
  -ms-transform: translate(-50%,-50%);
  -o-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
  display:block;
  content: '';
  width: 88%;
  height: 88%;
  background: rgba(16, 85, 202, 0.1);
  animation:myscale 1s linear 0s infinite alternate;
}
.compicbg>i
{
  position:absolute;
  left:50%;
  top:50%;
  border-radius: 10px;
  -webkit-transform: translate(-50%,-50%);
  -moz-transform: translate(-50%,-50%);
  -ms-transform: translate(-50%,-50%);
  -o-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
  display:block;
  content: '';
  width: 96%;
  height: 96%;
}
@keyframes myscale {
  0%{
    -webkit-transform: translate(-50%,-50%) scale(0.98);
    -moz-transform: translate(-50%,-50%) scale(0.98);
    -ms-transform: translate(-50%,-50%) scale(0.98);
    -o-transform: translate(-50%,-50%) scale(0.98);
    transform: translate(-50%,-50%) scale(0.98);
  }
  100%{
    -webkit-transform: translate(-50%,-50%) scale(1);
    -moz-transform: translate(-50%,-50%) scale(1);
    -ms-transform: translate(-50%,-50%) scale(1);
    -o-transform: translate(-50%,-50%) scale(1);
    transform: translate(-50%,-50%) scale(1);
  }
}
.compicbg:after{
  position:absolute;
  left:50%;
  top:50%;
  border-radius: 10px;
  -webkit-transform: translate(-50%,-50%);
  -moz-transform: translate(-50%,-50%);
  -ms-transform: translate(-50%,-50%);
  -o-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
  display:block;
  content: '';
  width: 95%;
  height: 95%;
  background: rgba(16, 85, 202, 0.1);
  animation:myscale 1s linear 200ms infinite alternate;
}
.compic{
  position:relative;
  width: 85%;
  height:85%;
  border-radius: 10px;
  overflow:hidden;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  z-index: 99;
  border:10px solid rgba(16, 85, 202, 0.5);
}
.compic>img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.com_right{
  position:relative;
  width: calc(96% - 650px);
  z-index: 100;
}
.com_logo{
  display:flex;
  align-items: center;
  margin-bottom: 2vw;
}
.com_logo>img{
  height: 60px;
  margin-right: 20px;
}
.com_logo>p{
  font-size: 2.4rem;
  font-weight: bold;
  color: #2a2a2a;
}
.com_right>small{
  font-size: 1.8rem;
  color: #3d3d3d;
  text-align: justify;
  line-height: 36px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
  text-indent: 36px;
}
.com_btn{
  display:flex;
  align-content: center;
  margin-top: 2.5vw;
}
.com_btn a:first-of-type{
  margin-right: 13px;
}
.btns{
  display:block;
  width: 152px;
  line-height: 54px;
  border-radius: 5px;
  text-align: center;
  position:relative;
  overflow:hidden;
}
.btns:before{
  display:block;
  content: '';
  position:absolute;
  left:0;
  height: 100%;
  background:#1995d0;
  width: 100%;
  transform-origin:100%;
  -webkit-transform-origin:100%;
  -webkit-transition:-webkit-transform .6s cubic-bezier(.4,0,.2,1);
  transition:-webkit-transform .32s cubic-bezier(.4,0,.2,1);
  transition:transform .6s cubic-bezier(.4,0,.2,1);
  transition:transform .6s cubic-bezier(.4,0,.2,1),-webkit-transform .6s cubic-bezier(.4,0,.2,1);
  transform:scaleX(0);
  -webkit-transform:scaleX(0);
  visibility:hidden\9;
}
.btns:hover:before {
  transform:scaleX(1);
  -webkit-transform:scaleX(1);
  -moz-transform:scaleX(1);
  transform-origin:0;
  -webkit-transform-origin:0;
  visibility:visible\9;
}
.btns span{
  font-size: 1.6rem;
  position:relative;
  padding-right: 18px;
}
.btns span:after{
  position:absolute;
  right:0;
  font-family: swiper-icons;
  content: 'next';
  font-size: 1.2rem;
  font-weight: bold;
}
.btn_blue{
  background:#1055ca;
}
.btn_blue span,
.btn_blue span:after {
  color: #fff;
}
.btn_gray{
  background:#f2f2f2;
}
.btn_gray span,
.btn_gray span:after {
  color: #2b2b2b;
}
.btn_gray:hover span,
.btn_gray:hover span:after {
  color: #fff;
}



.adv{
  display:flex;
  align-content: center;
  margin-top: 3vw;
}
.adv li{
  margin-right: 46px;
}
.adv li>div{
  font-size: 4.2rem;
  color: #232323;
  font-weight: bold;
  line-height: 32px;
}
.adv li>div sub{
  font-weight: normal;
  font-size: 1.6rem;
  color: #3e3e3e;
  vertical-align: baseline;
}
.adv li>p{
  font-size: 1.8rem;
  color: #4a4a4a;
}

/*indexpro*/
.indexproduct{
  background:#f2f2f2;
  padding-bottom: 2vw;
}
.indexpro{
  display:flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.indexpro a{
  display:flex;
  justify-content: center;
  align-items: center;
  width: 24%;
  margin-bottom: 1vw;
  height: 30vw;
  background-repeat: no-repeat;
  background-position:center;
  background-size:auto 100%;
  -webkit-transition: 350ms 0s all ease;
  -moz-transition: 350ms 0s all ease;
  -ms-transition: 350ms 0s all ease;
  -o-transition: 350ms 0s all ease;
  transition: 350ms 0s all ease;
}
.indexpro a:hover{
  background-size:auto 105%;
}
.indexpro a div{
  width: 100%;
  height: 65%;
}
.indexpro a h4{
  color: #fff;
  text-align: center;
  font-weight: bold;
  font-size: 3.2rem;
}
.indexpro a small{
  display:block;
  color: #fff;
  margin-top: 10px;
  margin-bottom: 2vw;
  text-align: center;
  font-size: 1.6rem;
  text-transform: uppercase;
}
.indexpro a p{
  width: 140px;
  line-height: 46px;
  border-radius: 23px;
  margin:0 auto;
}

/*news*/
.newsbg{
  padding-bottom: 3.5vw;
}
.newsbg>a{
  margin:0 auto;
  margin-top: 2vw;
}
.news{
  width: 100%;
  overflow:hidden;
}
.swiper-news a{
  display:block;
  width: 100%;
  background:#f5f5f5;
}
.swiper-news a>b{
  position:relative;
  width: 100%;
  height: 13vw;
}
.swiper-news a>b>span{
  display:block;
  position:absolute;
  left:0;
  bottom:0;
  width: 130px;
  line-height: 46px;
  text-align: center;
  background:#1055ca;
  color: #fff;
  font-size: 1.8rem;
}
.news_text{
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding:28px 15px;
}
.news_text>h4{
  font-size: 2rem;
  line-height: 3rem;
  height: 6rem;
  color: #353535;
  font-weight: bold;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  -webkit-transition: 350ms 0s all ease;
  -moz-transition: 350ms 0s all ease;
  -ms-transition: 350ms 0s all ease;
  -o-transition: 350ms 0s all ease;
  transition: 350ms 0s all ease;
}
.swiper-news a:hover .news_text>h4 {
  color: #1055ca;
}
.news_text small{
  font-size: 1.6rem;
  line-height: 30px;
  color: #555555;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  margin-top: 10px;
  margin-bottom: 10px;
}
.news_text>p{
  width: 114px;
  line-height: 38px;
  border:1px solid #b6b6b6;
}
.news_text>p:hover{
  border:1px solid #1055ca;
}
.news_text>p:before{
  background:#1055ca;
}
.newsbtnall{
  display:flex;
  justify-content: space-between;
  align-items: center;
  width: 300px;
  margin:0 auto;
  margin-top: 2vw;
  position:relative;
}
.newsbtnall>a{
  margin:0 auto;
}
.newsbtnall>div{
  border-radius: 5px;
  background:#1055ca;
  width: 54px;
  height: 54px;
  margin-top: initial;
  top: 0;
  -webkit-transition: 350ms 0s all ease;
  -moz-transition: 350ms 0s all ease;
  -ms-transition: 350ms 0s all ease;
  -o-transition: 350ms 0s all ease;
  transition: 350ms 0s all ease;
}
.newsbtnall>div:after{
  color: #fff;
  font-size: 16px;
}
.newsbtnall>div:hover{
  background:#1995d0;
}

/*coop*/
.coopbg{
  background:url("../images/coopbg.jpg") no-repeat center/cover;
  padding-bottom: 4vw;
}
.cooplist{
  width: 100%;
  position:relative;
  overflow:hidden;
}
.cooplist li{
  float:left;
  width: 224px;
  height:110px;
  margin-right: 15px;
  margin-bottom: 15px;
}
.cooplist li a{
  display:flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background:#fff;
}
.cooplist li a img{
  max-width: 80%;
  max-height: 69%;
}



/*footer*/
.footerbg{
  background:#003ea3;
  background: -moz-linear-gradient(-90deg, #003ea3, #095add);
  background: -webkit-linear-gradient(-90deg,#003ea3,#095add);
  background: -o-linear-gradient(-90deg, #003ea3, #095add);
  position:relative;
  overflow:hidden;
}
.footer{
  /*background:#003ea3;*/
  /*background: -moz-linear-gradient(-90deg, #003ea3, #095add);*/
  /*background: -webkit-linear-gradient(-90deg,#003ea3,#095add);*/
  /*background: -o-linear-gradient(-90deg, #003ea3, #095add);*/
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding:3vw 0;
  position:relative;
  overflow:hidden;
}
#fotm{
  position:absolute;
  left:0;
  top:0;
  width: 100%;
  height: 100%;
}
.footer>.warpper{
  position:relative;
  display:flex;
  align-items: flex-start;
  justify-content: space-between;
}
.fot_left{
  width: calc(92% - 260px);
}
.fot_flex{
  display:flex;
  justify-content: space-between;
  align-items: flex-start;
}
.fot_youqing{
  display:flex;
  align-items: center;
  margin-top: 4vw;
}
.fot_youqing span{
  color: #fff;
  font-size: 1.6rem;
}
.fot_youqing a{
  color: #fff;
  margin-right: 50px;
  font-size: 1.6rem;
}
.fot_youqing a:hover{
  text-decoration: underline;
}
.fot_logo{
  display:flex;
  align-items: center;
}
.fot_logo>img{
  margin-right: 15px;
  height: 66px;
}
.fot_logo h1{
  font-size: 1.9rem;
  color: #fff;
}
.fot_logo small{
  display:block;
  width: 230px;
  color: #fff;
  font-size: 1.2rem;
}
.fot_mid{
  width:100%;
  display:flex;
  justify-content: space-between;
}
.fot_mid h3 a{
  font-size: 1.8rem;
  color: #fff;
  font-weight: bold;
}
.fot_mid div a{
  display:block;
  font-size: 1.4rem;
  color: #fff;
  margin-top: 15px;
}
.fot_mid a:hover{
  text-decoration: underline;
}
.fot_right strong{
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 12px;
}
.fot_right p{
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 5px;
}
.fot_bot{
  background: #042357;
  padding:25px 0;
  position:relative;
  overflow: hidden;
}
.fot_bot .warpper{
  display:flex;
  justify-content: space-between;
  align-items: center;
}
.fot_bot .warpper p,
.fot_bot .warpper a{
  font-size: 1.6rem;
  color: #fff;
}
.fot_bot a:hover{
  text-decoration: underline;
}


/*float window*/
.float_box{
  position: fixed;
  top:60%;
  right:0px;
  z-index: 100;
  -webkit-transition: 350ms 0s all ease;
  -moz-transition: 350ms 0s all ease;
  -ms-transition: 350ms 0s all ease;
  -o-transition: 350ms 0s all ease;
  transition: 350ms 0s all ease;
}
/*.float_boxfix{*/
/*right:-52px;*/
/*}*/
.float_box>div.float06{
  position: absolute;
  top:0;
  right:0px;
  z-index: 8;
  -webkit-transition: 350ms 300ms all ease;
  -moz-transition: 350ms 300ms all ease;
  -ms-transition: 350ms 300ms all ease;
  -o-transition: 350ms 300ms all ease;
  transition: 350ms 300ms all ease;
}
.float_boxfix>div.float06{
  right:80px;
}
.float_box>div{
  cursor: pointer;
  margin-bottom:1px;
  position: relative;
  width:50px;
  height: 50px;
}
.float_box>div>b{
  display:block;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 10;
  background-color: #034898;
  box-shadow: 0 3px 7px rgba(0,0,0,0.15);
  -webkit-transition: 350ms 0s all ease;
  -moz-transition: 350ms 0s all ease;
  -ms-transition: 350ms 0s all ease;
  -o-transition: 350ms 0s all ease;
  transition: 350ms 0s all ease;
}
.float_box>div>div{
  position: absolute;
  top:50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
.float01 b{  background:#fff url("../images/float01.png") no-repeat center;}
.float02 b{  background:#fff url("../images/float06.png") no-repeat center;}
.float03 b{  background:#fff url("../images/float03.png") no-repeat center;}
.float04 b{  background:#fff url("../images/float04.png") no-repeat center;}
.float05 b{  background:#fff url("../images/float05.png") no-repeat center;}

.float_box>div:hover b{
  background-color:#64acff;
}

.float03>div{
  border-radius: 5px;
  width: 100px;
  height: 100px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding:8px;
  background: #64acff;
  right:calc(100% + 20px);
  opacity: 0;
  -webkit-transition: 350ms 0s all linear;
  -moz-transition: 350ms 0s all linear;
  -ms-transition: 350ms 0s all linear;
  -o-transition: 350ms 0s all linear;
  transition: 350ms 0s all linear;
  visibility: hidden;
}
.float03:hover>div{
  right:calc(100% + 10px);
  opacity: 1;
  visibility: visible;
}
.float03>div>img{
  width:100%;
  height: 100%;
}

.float02>div,.float04>div{
  width: 48px;
  height: 48px;
  border-radius: 48px;
  background: #64acff;
  right:1px;
  overflow: hidden;
  line-height: 50px;
  color: #fff;
  font-size: 18px;
  z-index: 8;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding-left:20px;
  -webkit-transition: 350ms 0s all linear;
  -moz-transition: 350ms 0s all linear;
  -ms-transition: 350ms 0s all linear;
  -o-transition: 350ms 0s all linear;
  transition: 350ms 0s all linear;
}
.float02>div a{
  color: #fff;
  font-size: 18px;
}
.float02:hover>div{
  width: 385px;
  height: 50px;
}
.float04:hover>div{
  width: 233px;
  height: 50px;
}
.float_box>div.float05{
  visibility: hidden;
  opacity: 0;
  -webkit-transition: 350ms 0s all ease;
  -moz-transition: 350ms 0s all ease;
  -ms-transition: 350ms 0s all ease;
  -o-transition: 350ms 0s all ease;
  transition: 350ms 0s all ease;
}
.float_box>div.float05show{
  opacity: 1;
  visibility: visible;
}


.qqkf a{
  background:url(../images/qqkf.png) no-repeat left center;
  float:left;
  display:block;
  width: 45px;
  height: 45px;
  color: #fff;
  padding-left:30px;
}



.page {
  font-size: 0;
  text-align: center;
}
.page .center {
  display: inline-block;
  overflow: hidden;
}
.page .center .page-span {
  float: left;
  font-size: 14px;
  color: #c3c3c3;
  line-height: 32px;
  margin-right: 30px;
}
.page .center .page-list {
  float: left;
  overflow: hidden;
}
.page .center .page-list ul li {
  float: left;
  width: auto;
  min-width: 30px;
  height: 32px;
  text-align: center;
  line-height: 30px;
  font-size: 14px;
  margin: 0 4px;
  padding: 0;
  border: none;
  background: transparent;
}
.page .center .page-list ul li a {
  min-width: 20px;
  padding: 0 5px;
  border: 1px solid #eee;
  display: block;
  color: #333;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  overflow: hidden;
  background: #fff;
}
.page .center .page-list ul li:hover a {
  color: #f3c04b;
}
.page .center .page-list ul li.active a {
  background: #f3c04b;
  color: #fff;
}
.news-center {
  background: #fff;
  padding-bottom: 25px;
}
.news-center .new-list {
  padding: 45px 45px 0px;
}
.news-center .new-list ul li {
  margin-bottom: 35px;
  border-bottom: 1px solid #eee;
}
.news-center .new-list ul li a {
  overflow: hidden;
  display: block;
  height: 90px;
  padding-bottom: 30px;
}
.news-center .new-list ul li a .img {
  float: left;
  width: 130px;
  height: 90px;
  background: #eee;
  line-height: 90px;
  font-size: 0;
  text-align: center;
}
.news-center .new-list ul li a .img img {
  display: inline-block;
  vertical-align: middle;
  max-width: 100%;
  max-height: 100%;
}
.news-center .new-list ul li a .info {
  float: right;
  width: 690px;
}
.news-center .new-list ul li a .info h3 {
  font-size: 14px;
  font-weight: bold;
  line-height: 24px;
  color: #333;
}
.news-center .new-list ul li a .info em {
  display: block;
  font-size: 12px;
  color: #999;
  line-height: 16px;
  margin-bottom: 10px;
}
.news-center .new-list ul li a .info p {
  font-size: 14px;
  line-height: 22px;
  color: #999;
  max-height: 44px;
  overflow: hidden;
}
.news-center .new-list ul li a:hover h3 {
  color: #f3c04b;
}
.message-c {
  background: #fff;
  padding: 40px 50px;
  overflow: hidden;
}
.message-c .p {
  font-size: 16px;
  line-height: 30px;
  color: #666;
  margin-bottom: 35px;
}
.message-c .from input {
  display: block;
  height: 38px;
  line-height: 38px;
  padding: 0 5px;
  border: 1px solid #d2d2d2;
  margin-bottom: 10px;
  font-size: 14px;
  color: #333;
}
.message-c .from input[name=user],
.message-c .from input[name=phone] {
  width: 348px;
}
.message-c .from textarea {
  font-size: 14px;
  color: #333;
  line-height: 20px;
  display: block;
  width: 728px;
  height: 130px;
  border: 1px solid #d2d2d2;
  padding: 5px;
  margin-bottom: 10px;
}
.message-c .from .code {
  overflow: hidden;
}
.message-c .from .code input[name=code] {
  width: 258px;
  float: left;
}
.message-c .from .code a {
  display: block;
  float: left;
  width: 80px;
  height: 38px;
  padding: 1px 0;
  margin-left: 10px;
}
.message-c .from .code a img {
  width: 80px;
  height: 38px;
}
.message-c .from .btn {
  padding-top: 25px;
}
.message-c .from .btn a {
  display: block;
  width: 362px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  color: #fff;
  font-size: 16px;
  background: #8fa4de;
}
.message-c .from .btn a:hover {
  background: #8397d0;
}
.contact-o {
  background: #fff;
  overflow: hidden;
  padding: 40px 0;
  text-align: center;
}
.contact-o iframe {
  width: 830px;
  height: 500px;
  margin: 0 auto;
}