/*/*设置不同设备的像素大小*/
@media only screen and (min-width: 320px){
    html {
        font-size:10px !important;
    }
}
@media only screen and (min-width: 360px){
    html {
        font-size:11.25px !important;
    }
}
@media only screen and (min-width: 400px){
    html {
        font-size:12.5px !important;
    }
}
@media only screen and (min-width: 480px){
    html {
        font-size:15px !important;
    }
}
@media only screen and (min-width: 640px){
    html {
        font-size:20px !important;
    }
}


html,body{
  width: 100%;
  overflow-x:hidden;
}
body {
  /*color: #fff;*/
  line-height: 1.5;
  /*font-size: 14px;*/

  font-family:'微软雅黑', 'helvetica neue', tahoma, 'PingFang SC', 'microsoft yahei', arial, 'hiragino sans gb', sans-serif;
  -webkit-font-smoothing: antialiased;
}


html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  margin: 0;
  padding: 0;
}
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
  padding: 0;
  border: 0;
  background: 0;
}
button:focus,
input:focus,
optgroup:focus,
select:focus,
textarea:focus {
  text-decoration: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  outline: none;
}
textarea {
  resize: none;
}
img {
  border: 0;
  vertical-align: bottom;
}
a {
  text-decoration: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  outline: none;
}
a,a:hover,a:active,a:visited,a:link,a:focus{
  -webkit-tap-highlight-color:rgba(0,0,0,0);
  -webkit-tap-highlight-color: transparent;
  outline:none;
  background: none;
  text-decoration: none;
}
ul,
li {
  list-style: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-variant: normal;
}


.container{
  display: block;
  width: 60.0rem;
  margin: 0 auto;
  position: relative;
}
@font-face {
  font-family: 'TencentSansw3';
  src: url('../font/TencentSans-W3.eot');
  src:
    url('../font/TencentSans-W3.eot?#font-spider') format('embedded-opentype'),
    url('../font/TencentSans-W3.woff') format('woff'),
    url('../font/TencentSans-W3.ttf') format('truetype'),
    url('../font/TencentSans-W3.svg') format('svg');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'ssjhjxt';
  src: url('../font/ssjhjxt.eot');
  src:
    url('../font/ssjhjxt.eot?#font-spider') format('embedded-opentype'),
    url('../font/ssjhjxt.woff') format('woff'),
    url('../font/ssjhjxt.ttf') format('truetype'),
    url('../font/ssjhjxt.svg') format('svg');
  font-weight: normal;
  font-style: normal;
}
/*三极极黑简体*/
@font-face {
  font-family: 'sjjhjt';
  src: url('../font/sjjhjt.eot');
  src:
    url('../font/sjjhjt.eot?#font-spider') format('embedded-opentype'),
    url('../font/sjjhjt.woff') format('woff'),
    url('../font/sjjhjt.ttf') format('truetype'),
    url('../font/sjjhjt.svg') format('svg');
  font-weight: normal;
  font-style: normal;
}
body{
  padding-top: 72px;
}
/*头部代码*/
#header{
  position: fixed;
  background-color: #fff;
  z-index: 2;
  left: 0;
  top: 0;
  right: 0;
  transition: all ease .5s;
}
#header nav{
  display: flex !important;
  justify-content: space-between;
  align-items: center;
  height: 72px;
}
nav .logo{
  display: block;
  height: 40px;
}
nav .logo img{
  height: 100%;
}
nav .nav{
  display: flex;

}
nav .nav li{
  margin-left: 65px;
}
nav .nav a{
  color: #2b2e2e;
  /* color: #fff; */
  font-size: 16px;
  font-weight: bold;
  opacity: 0.95;
  white-space: nowrap;
}
nav .nav li a::after{
  display: block;
    content: "";
    height: 4px;
    width: 100%;
    background: #2fa4ec;
    opacity: 0;
    transition: transform 0.2s ease-out,opacity 0.2s ease-out;
    /*transform-origin: 50% 0%;*/
    transform: scale(0.01,1);
}
nav .nav li.active a::after{
  opacity: 1;
  transform: scale(1);
}
nav .nav li:hover a::after{
  opacity: 1;
  transform: scale(1);
}
nav .lang_area{
  display: flex;
  align-items: center;
  color: #fff;
}
nav .lang_area a.current{
  opacity: 1;
}
nav .lang_area a{
  /* color: #fff; */
  color: #2b2e2e;
  font-size: 16px;
  font-family: "PingFangSC-Regular";
  opacity: 0.7;
  cursor: pointer;
}
nav .lang_area a::after{
  content : " / ";
  margin-right: 5px;
  /*display: inline-block;*/
}
nav .lang_area a:last-child::after{
  content : "";
}
nav .lang_area i{
    font-size: 12px;
    margin: 0px 8px;
    opacity: 0.7;
}


/* 尾部css */
#tabbar{
  display: none;
  position: fixed;
  bottom:0;
  left:0;
  right:0;
  border-top:1px solid #dddddd;
  overflow: hidden;
}
#footer{
  background-color: #2B343D;
  color: rgba(255,255,255,0.56);
  padding: 1.75rem 0 1.0rem;
}
#footer>ul{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 1.0rem;
  font-size: 0.7rem;
}
#footer>ul>li{
  width: 17.5rem;
  /*border: 1px solid red;*/
}
#footer li h4{
  color: #fff;
  font-weight: bold;
  padding-left: 8px;
  margin-bottom: 14px;
  font-size: 0.75rem;
  line-height: 0.7rem;
  border-left: 4px solid #2fa4ec;
}
#footer a{
  color: rgba(255,255,255,0.56);
}
#footer .ewmbox{
  display: flex;
}
#footer .ewm{
  width: 96px;
  margin-left: 10px;
}
#footer .ewm:first-child{
  margin-left: 0;
}
#footer .ewm img{
  height: 96px;
}
#footer .ewm p{
  text-align: center;
  margin-top: 10px;
}
#footer .footer{
  font-size: 0.7rem;
  height: 2.9rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
#footer .footer .yyzzbox:hover .yyzz{
  display: block;
}
#footer .footer .yyzz{
  position: absolute;
  left: -182px;
  top: -379px;
  display: none;
}
#footer .footer .yyzz::after{
  content: '';
  position: absolute;
  bottom: -16px;
  border-top: 16px solid #fff;
  border-left: 16px solid #2B343D;
  border-right: 16px solid #2B343D;
  left: 255px;
}
#footer .footer .yyzz img{
  width: 500px;

}
#footer .footer2{
  font-size: 0.7rem;
  text-align: center;
}
#footer .footer a{
  position: relative;
  margin-right: 33px;
  display: flex;
  align-items: center;
}
#footer .footer a img{
  margin-right: 10px;
}

.lianxi{
  position: relative;
}
.lianxi li{
  padding-bottom: 9px;
}
.lianxi li input{
  width: 265px;
  height: 32px;
  line-height: 22px;
  padding: 0 12px;
  font-size: 14px;
  border: 1px solid rgba(255,255,255,0.56);;
  border-radius: 2px;
  /*background-color: #fff;*/
  color: #fff;
}
.lianxi li textarea{
  width: 265px;
  height: 78px;
  padding: 0 12px;
  font-size: 14px;
  border: 1px solid rgba(255,255,255,0.56);
  border-radius: 2px;
  /*background-color: #fff;*/
  color: #fff;
}
.lianxi .btn{
  position: absolute;
  right: 59px;
  bottom: 5px;
}
.lianxi .btn .tijiao{
  border: 1px solid rgba(255,255,255,0.56);
  border-right: none;
  border-bottom: none;
  padding: 5px 20px;
  font-size: 14px;
  display: inline-block;
  cursor: pointer;
}
/*侧边css*/
#aside{
  /*display: none;*/
  position: fixed;
  right: 10px;
  z-index: 999;
  
  cursor: pointer;
}
#aside ul{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 5px 0  rgba(0,0,0,0.5);
  border-radius: 10px;
  background-color: #fff;
}
#aside ul li,#aside .top{
  text-align: center;
  color: #000;
  font-size: 12px;
  width: 55px;
  margin-bottom: 1px;
  position: relative;
}
#aside .iconfont{
  font-size: 30px
}
#aside .top{
  margin-top: 50px;
  display: none;
  box-shadow: 0 0 5px 0  rgba(0,0,0,0.5);
  border-radius: 5px;
  padding: 3px 0;
  background-color: #fff;
}
#aside ul li .showmenu{
  position: absolute;
  width: 100px;
  height: 100px;
  right: 90px;
  top: -20px;
  opacity:0;
  display: none;
}
#aside ul li .showmenu::after{
  content: '';
  border-left: 10px solid #fff;
  border-top: 10px solid rgba(0,0,0,0);
  border-bottom: 10px solid rgba(0,0,0,0);
  position: absolute;
  right: -10px;
  height: 0;
  top: 45px;
}
#aside ul li .showmenu img{
  width: 100%;
  height: 100%;
}

.block>header{
  font-size: 1.4rem;
  color: rgb(38,38,38);
  text-align: center;
}
.block>p{
  color: rgb(102,102,102);
  text-align: center;
  font-size: 0.8rem;
}

/*顶部封面图*/
/*顶部图片*/
.topBanner{
  height: 17.5rem;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.topBanner .title{
    text-align: center;
    font-family: 'sjjhjt';
    font-size: 1.5rem;
    color: #fff;
}
.topBanner .desc{
    text-align: center;
    font-size: 0.8rem;
    color: #fff;
}

/*公司新闻*/
.news{
    
}
.news .articlebox {
    display: flex;
    flex-wrap: wrap;
    font-family: '微软雅黑';
    /*background-color: gray;*/
}
.articlebox article{
    display: flex;
    width: 26.5rem;
    background-color: #fff;
    padding:15px;
    border-radius: 5px;
    margin-right: 4.0rem;
    margin-top: 2.0rem;
    transition: all ease .5s;
    position: relative;
    top: 0;
}
.articlebox article:nth-child(2n){
    margin-right: 0;
}
.articlebox article:hover{
    box-shadow: 0 5px 8px 0 rgba(0,0,0,0.1);
    top: -8px;
}
.articlebox article:hover header{
    color: #2db5a3 !important;
}
.articlebox article img{
    width: 150px;
    height: 100px;
    flex-shrink: 0;
    border-radius::5px;
}
.articlebox article .a-r{
    width: 0;
    flex-grow: 1;
    margin-left: 15px;
}
.articlebox article .a-r header{
    font-size: 16px;
    font-weight: 600;
    color: #333;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.articlebox article .a-r p{
    font-size: 14px;
    color: #666;
    margin-top: 10px;
    height: 42px;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    word-wrap: break-word;
    white-space: normal !important;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.articlebox article .a-r footer{
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
}
.articlebox article .a-r footer .addtime{
    color: #999;
    font-size: 14px;
}
.articlebox article .a-r footer .xq{
    font-size: 13px;
    color: #2db5a3;
}
.news>.more{
    width: 1200px;
    /*margin: 0 auto;*/
    text-align: right;
    margin: 20px auto 40px;
}
.news>.more a{
    color: #000;
    font-size: 14px;
}
.news>.more a:hover{
    color: #2db5a3;
}
.news>.more a i{
    font-size: 12px;
}
footer.page{
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 2.5rem auto;
}
footer.page ul{
  display: flex;
}
footer.page ul li:not(:last-child){
  width: 2.0rem;
  height: 2.0rem;
  border: 1px solid #2db5a3;
  margin-left: 0.85rem;
}
footer.page ul li:last-child{
  border: 1px solid #2db5a3;
  margin-left: 0.85rem;
  padding: 0 15px;
}
footer.page ul li a{
  display: block;
  width: 100%;
  height: 100%;
  color: #2db5a3;
  text-align: center;
  line-height: 2.0rem;
  font-size: 14px;
}
footer.page ul li:not(:last-child):hover a{
  background-color: #2db5a3;
  color: #fff;
}
footer.page ul li a.current{
  background-color: #2db5a3;
  color: #fff;
}
footer.page div{
  font-size: 14px;
  height: 2.0rem;
  line-height: 2rem;
  padding: 0 0.45rem;
  border: 1px solid #2db5a3;
  color: #2db5a3;
  margin-left: 17px;
  cursor: pointer;
}
footer.page p{
  color: #2db5a3;
  font-size: 14px;
  margin-left: 0.85rem;
  /*padding: 9px;*/
  /*border: 1px solid #2db5a3;*/
}
footer.page p span{}

.blankbox{
  height: 72px;
}
header.headerActive{
  background-color: #fff;
}
header.headerActive a{
  color: rgb(43,46,46);
}
.nodata{
  text-align: center;
  line-height: 17.5rem;
  width: 100%;
  color: #999;
  font-size: 0.7rem;
}
#mo_aside{
  display: none;
}


@media only screen and (max-width: 640px){
  nav .nav{
    display: none;
  }
  .container{
    width: 96%;
  }
  #aside{
    display: none;
  }
  #footer ul li{
    width: 100%;
    margin-top: 1rem;
  }
  #footer>ul{
    font-size: 0.9rem;
  }
  #footer li h4{
    font-size: 1.2rem;
    line-height: 1.5rem;
  }
  .lianxi li input{
    width: 93%;
  }
  .lianxi li textarea{
    width: 93%;
  }
  .lianxi .btn{
    position: static;
    text-align: right;
  }
  .lianxi .btn .tijiao{
    border: 1px solid rgba(255,255,255,0.56);
    margin-left: auto;
  }
  #footer .ewmbox{
    justify-content: center;
  }
  #footer .footer a.yyzzbox{
    display: none;
  }
  #footer .footer a.jubao{
    display: none;
  }

  /**/
  body{
    padding-bottom: 5rem;
  }
  #tabbar{
    display: block;
  }
  #tabbar ul{
    background-color: #fff;
    padding:0.2rem 0 0.4rem;
    display: flex;
  }
  #tabbar ul li{
    flex: 1;
    text-align: center;
    color: rgb(85,26,139);
  }
  #tabbar ul li a{
    display: block;
    height: 100%;
    color: rgb(85,26,139);
    text-align: center;
  }
  #tabbar ul li a div{
    font-size: 1rem;
    color:#6a6a6a;
    margin-top: 0.25rem;
  }
  #tabbar ul li a span{
    font-size: 2rem;
    color:#666666;
    display: inline-block;
   
  }
  #tabbar ul li.active a span,#tabbar li.active a div{
    color:#2fa4ec;
  }
  #tabbar ul li:hover div{
    color:#2fa4ec;
  }
  #tabbar ul li:hover span{
    color:#2fa4ec;
  }

  .articlebox article{
    width: 100%;
    margin-right: 0;
    margin-top: 1rem;
  }

  #mo_aside{
    display: block;
    position: fixed;
    right: 10px;
    z-index: 999;
    bottom: 7rem;
  }
  #mo_aside ul{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  #mo_aside ul li{
    margin-bottom: 6px;
    width: 44px;
    height: 44px;
    background-color: #fff;
    border-radius: 100%;
    line-height: 44px;
    text-align: center;
    box-shadow: 0 0 5px 0 #d1d1d1;
  }
  #mo_aside .iconfont{
    font-size: 22px;
    color: #666;
   
  }
}