/* 整体初始 */
html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
}
article, aside, blockquote, body, button, code, dd, details, dl, dt, fieldset, figcaption, figure, footer, form, h1, h2, h3, h4, h5, h6, header, hgroup, hr, input, legend, li, menu, nav, ol, p, pre, section, td, textarea, th, ul {
    margin: 0;
    padding: 0;
}
body, html {
    background: #fff;
    width: 100%;
}
body, button, input, select, textarea {
    font: 14px/1.5 'microsoft yahei','微软雅黑',arial,'helvetica neue','hiragino sans gb',sans-serif;
    color: #333;
}
a{
    color:#333;
}
a:focus, a:hover {
    color: auto;
    text-decoration: none;
}
/* 整体初始########## */

/* 包裹层 */
.wrap{
    width: 100%;
    overflow: hidden;
}
/* 包裹层 ##########*/

/* 头部导航 */
#header{
    height: 80px;
    position: relative;
    margin-bottom: 2px;
}
/* logo左上 */
.logobox{
    position: absolute;
    left: 55px;
    top: 20px;
    background: url(../imgs/pc/logo.png) no-repeat left center;
    padding-left: 148px;
    height: 42px;
}
.logobox h1{
    font-size: 22px;
    font-weight: 600;
    color:#333;
    padding-left: 4px;
    padding-top: 10px;
}
/* logo左上########### */

/* 头部导航右侧 */
#header .main-nav{
    position: absolute;
    right: 40px;
    top: 0;
}
.main-nav li a{
    display: block;
    padding: 0 16px;
    line-height: 80px;
    text-align: center;
    height: 80px;
    font-size: 18px;
    color: #333;
    position: relative;
}
.main-nav li a i{
    background-color: #00a0ea;
    height: 4px;
    width: 0;
    position: absolute;
    bottom:0;
    left: 0;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    transition: all .5s ease;
}
.main-nav li.active a i{
    width: 100%;
}
.main-nav li a:hover i{
    width: 100%;
}
/* 头部导航右侧########## */

/* 头部导航########### */


/* 页面底部 */
#footer{
    height: 216px;
    background-color: #333;
    display: -webkit-flex;
    display: flex;
    justify-content: space-around;
    padding:30px 50px 0 50px;
}
@media screen and (min-width:1600px){
    #footer{
        height: 216px;
        background-color: #333;
        display: -webkit-flex;
        display: flex;
        justify-content: space-around;
        padding:30px 100px 0 100px;  
    }
}
.footer-infobox{
    padding: 0 30px;
}
@media screen and (max-width:1400px){
    .footer-infobox{
        padding: 0 ;
    }
}
.footer-infotitle{
    padding-left: 32px;
    color: #ababab;
    font-size: 18px;
}
.footer-infotitle:last-child{
    padding-left: 0;
}
.footer-infobox a{
    white-space: nowrap;
    font-size: 14px;
    color: #ababab;
    display: block;
    padding-top: 5px;
}
.footer-infobox a:hover{
    color: #00a0ea;
}

#footer .info-1{
    background: url("../imgs/pc/info1.png") no-repeat left center;
}
#footer .info-2{
    background: url("../imgs/pc/info2.png") no-repeat left center;
}
#footer .info-3{
    background: url("../imgs/pc/info3.png") no-repeat left center;
}
#footer .info-4{
    background: url("../imgs/pc/info4.png") no-repeat left center;
}
#footer .info-5{
    background: url("../imgs/pc/info5.png") no-repeat left center;
}

/* 页面底部############ */


/* 返回顶部和首页 */
#to-box{
    width: 40px;
    height: 90px;
    position: fixed;
    right: 48px;
    bottom: 24px;
    display: none;
}
#to-box div a{
    display: block;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 20px;
    font-size: 14px;
    border-radius: 4px;
    margin-bottom: 5px;
    background-color: #e6e6e6;
    background-position: center;
    background-repeat: no-repeat;
    color: transparent;
    cursor: pointer;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    transition: all .5s ease;
}
#to-box .to-top a{
    background-image: url('../imgs/pc/totop.png');
}
#to-box .to-index a{
    background-image: url('../imgs/pc/toindex.png');
}
#to-box .to-top:hover a,#to-box .to-index:hover a{
    background-color: #00a0ea;
    color: #fff;
    background-image: none;
}


















