/*公共类*/
.fl {
    float: left
}
.fr {
    float: right
}
.al {
    text-align: left
}
.ac {
    text-align: center
}
.ar {
    text-align: right
}
.hide {
    display: none
}
.clearfix:after{
    display: block;
    clear: both;
    content: "";
    visibility: hidden;
    height: 0;
}
.clearfix{
    zoom:1;
}
body{
    background-color: #fff;
    margin: 0;
    padding: 0;
}
.layoutSize{
	max-width: 1200px;
	margin: 0 auto;
}

@media screen and (max-width: 1200px) {
    .header{
        display: none;
    }

    /*头部样式*/
    header{
        text-align: center;	
        height: 70px;
        border-bottom: solid 1px rgba(0, 0, 0, 0.2);
    }
    header>div>img{
        height: 24px;
        width: 102px;
        padding: 14px 0;
    }
    header div p{
        margin: 3px auto;
    }
    header div p:last-child{
        font-size: 12px;
    }
    /*头部-导航工具条*/
    header #bar{
        position: relative;
        height: 34px;
        line-height: 34px;
        padding: 0 10px;
        margin-top: 10px;
        border-bottom: solid 1px #ddd;
    }
    header #bar #left{
        float: left;
        font-size: 12px;
    }
    header #bar>span{
        position: absolute;
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
        text-align: center;
        font-size: 14px;
        letter-spacing: 2px;
    }
    header #bar #right{
        float: right;
        font-size: 12px;
    }

    header>div>img{
        height: 54px;
    }

    header nav {
        position: relative;
        top: -85px;
        height: 50px;
        line-height: 50px;
    }
    header nav>a{
        position: absolute;
        display: block;
        right: 10px;
        font-size: 24px;
        font-weight: bold;
        color: #ccc;
        z-index: 5;
    }
    header nav div{
        position: fixed;
        top: 0px;
        left: 100%;
        width: 100%;
        height: 100%;
        padding-top: 40px;
        padding-top: 80px;
        background-color: rgba(99,33,112,.7);
        transition: all 1s;
        -moz-transition: all 1s;
        -webkit-transition: all 1s;
        z-index: 10000;
    }
    header nav div.show_nav{
        transform: translateX(-100%);
        -moz-transform: translateX(-100%);
        -webkit-transform: translateX(-100%);
    }
    header nav div a{
        display: block;
        font-size: 16px;
        color: white;
        padding: 0 40px;
    }
}

@media screen and (max-width: 1600px) and (min-width: 1201px) {
    header{
        display: none;
    }

    .header{
        height: 80px;
    
        box-shadow: 0 0 8px 1px rgba(0, 0, 0, 0.2);
    }
    .header .header_cntent{
        max-width: 1200px;
        margin: 0 auto;
        position: relative;
        top: 0;
    }
    .header .left{
        padding-top: 15px;
        padding-left: 20px;
    }
    .header .right{
        position: absolute;
        right: 0px;
        bottom: 0px;
        top: 35px;
    }
    .header a{
        padding-right: 20px;
    }
}

@media screen and (min-width: 1620px) {
    header{
        display: none;
    }

    .header{
        height: 80px;
    
        box-shadow: 0 0 8px 1px rgba(0, 0, 0, 0.2);
    }
    .header .header_cntent{
        max-width: 1200px;
        margin: 0 auto;
        position: relative;
        top: 0;
    }
    .header .left{
        padding-top: 15px;
        padding-left: 20px;
    }
    .header .right{
        position: absolute;
        right: 0px;
        bottom: 0px;
        top: 35px;
    }
    .header a{
        padding-right: 20px;
    }
}



.main{
    margin-top: 20px;
}

.footer{
    width: 100%;
    background-color: #000;
    height: 80px;
}
.footer .footerContent{
    font-size: 16px;
    color: #ffffff;
}

.footer .footerContent p {
    padding-top: 20px;
    text-align: center;
    margin: 0;
}

@media screen and (max-width: 1200px) {
    .footer .footerContent{
        font-size: 14px;
    }
}

/* 下拉条修改默认样式 */
html::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}
html::-webkit-scrollbar-thumb {
    border: 1px solid #808080;
    border-radius: 10px;
    background-color: #999;
}
html::-webkit-scrollbar-track {
    background: #eeeeee;
    border: 1px #d3d3d3 solid;
    border-radius: 10px;
    box-shadow: 0px 0px 3px #dfdfdf inset;
}

a{
    text-decoration:none;
}