/* 全局共用 */

* {
    padding: 0;
    margin: 0;
    touch-action: pan-y;
}

::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-thumb {
    background: #555;
}

::-webkit-scrollbar-track {
    /*滚动条里面轨道*/
    background: #ddd;
}

body,
html {
    width: 100%;
    min-width: 800px;
    height: auto;
    margin: 0;
    padding: 0;
    background: #000;
}

body,
td,
button,
input,
select,
textarea {
    color: #444;
    font: 14px 微软雅黑, Microsoft Yahei;
    line-height: 24px;
    outline: none;
    font-smooth: antialiased;
    -webkit-font-smoothing: antialiased;
    -webkit-overflow-scrolling: touch;
}

a:link,
a:active,
a:visited {
    color: #444;
    text-decoration: none;
}

a:hover,
a:focus {
    text-decoration: underline;
    -moz-transition: background-color, color, 0.3s;
    -o-transition: background-color, color, 0.3s;
    -webkit-transition: background-color, color, 0.3s;
    transition: background-color, color, 0.3s;
    color: #af2b2b;
}

img {
    border: none;
}

form {
    margin: 0px;
    padding: 0px;
}

input:focus,
textarea:focus,
a:focus,
select:focus {
    outline: none;
}

ul,
ol,
li {
    margin: 0px;
    padding: 0px;
    list-style-type: none;
}

.nowrap {
    white-space: nowrap;
    text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
    overflow: hidden;
}

.clear {
    clear: both;
}

.hide {
    display: none;
}

.right {
    float: right;
}

.left {
    float: left;
}

.hand {
    cursor: pointer;
}

.tips {
    height: auto;
    padding: 5px 20px;
    background: #666;
    color: #fff;
    line-height: 18px;
    position: fixed;
    z-index: 1000;
    top: 40%;
    left: 50%;
    FILTER: alpha(opacity=0);
    opacity: 0;
    font-size: 0.75em;
    text-align: center;
    border-radius: 15px;
}

.trans3 {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.trans5 {
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.maskbg {
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    overflow: auto;
}

.coverimg img {
    transition: all 0.5s;
}

.coverimg:hover img {
    transform: scale(1.05);
    -ms-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -o-transform: scale(1.05);
}

.shadow {
    -moz-box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.1);
    box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.1);
}


/* placeholder颜色 */

::-webkit-input-placeholder {
    color: #999;
}

:-moz-placeholder {
    color: #999;
}

::-moz-placeholder {
    color: #999;
}

:-ms-input-placeholder {
    color: #999;
}


/* 头部 */

.head {
    width: 100%;
    min-width: 800px;
    height: 90px;
    background: rgba(255, 255, 255, 0.9);
    position: fixed;
    left: 0;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid #e5e5e5;
}

.logo {
    width: 150px;
    height: 60;
    overflow: hidden;
    margin: 15px 0 0 250px;
    float: left;
}

.logo img {
    height: 100%;
}


/*导航栏*/

.navi,
.navi ul,
.navi ul li,
.navi ul li a {
    margin: 0;
    padding: 0;
    border: 0;
    list-style: none;
    line-height: 1;
    display: block;
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.navi {
    height: 60px;
    float: left;
    padding-top: 15px;
    margin-left: 150px;
}

.navi>ul>li {
    float: left;
    margin: 0 35px;
}

.navi>ul>li:after {
    content: "";
    position: absolute;
    width: 1px;
    height: 1px;
    left: 50%;
    top: 5px;
    z-index: 9;
    background: transparent;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.navi>ul>li:hover,
.navi>ul>li.on {
    color: #af2b2b;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.navi>ul>li:hover:after,
.navi>ul>li.on:after {
    width: 100%;
    left: 0;
    background: #af2b2b;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.navi>ul>li>a {
    font-size: 16px;
    line-height: 65px;
    text-decoration: none;
    text-transform: uppercase;
    -webkit-transition: color .3s ease;
    -moz-transition: color .3s ease;
    -ms-transition: color .3s ease;
    -o-transition: color .3s ease;
    transition: color .3s ease;
}

.navi>ul>li:hover>a,
.navi>ul>li.on>a {
    color: #af2b2b;
}

.navi ul ul {
    width: 160px;
    position: absolute;
    left: -9999px;
    z-index: 1000;
    border-radius: 5px;
    overflow: hidden;
}

.navi li:hover>ul {
    left: -30px;
    -moz-box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.1);
    box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.1);
}

.navi ul ul ul {
    margin-left: 100%;
    top: 0;
}

.navi ul ul li {
    height: 0;
    -webkit-transition: height .3s ease;
    -moz-transition: height .3s ease;
    -ms-transition: height .3s ease;
    -o-transition: height .3s ease;
    transition: height .3s ease;
}

.navi ul ul li:after {
    content: "";
    background: url(/static/images/naviaro.png) left center no-repeat;
    position: absolute;
    width: 0px;
    height: 6px;
    right: 10px;
    top: 22px;
    z-index: 9;
    opacity: .6;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.navi ul li:hover>ul>li {
    height: 45px;
}

.navi ul ul li a {
    padding: 15px 0 15px 30px;
    font-size: 14px;
    background: #151a2f;
    text-decoration: none;
    color: #ccc;
    -webkit-transition: color .3s ease;
    -moz-transition: color .3s ease;
    -ms-transition: color .3s ease;
    -o-transition: color .3s ease;
    transition: color .3s ease;
}

.navi ul ul li:hover>a,
.navi ul ul li a:hover,
.navi ul ul li.on a {
    color: #fff;
    background: #444859;
    font-weight: bold;
}

.navi ul ul li:hover:after,
.navi ul ul li.on:after {
    width: 25px;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.navi ul ul li.on:after {
    width: 0px;
}


/* 页码 */

.page {
    width: 100%;
    height: auto;
    padding: 60px 0 80px 0;
    overflow: hidden;
    text-align: center;
    font-size: 0;
}

.total {
    display: inline-block;
    height: 45px;
    color: #333;
    background: #e9ecf0;
    font-size: 14px;
    line-height: 45px;
    padding: 0 20px;
    vertical-align: top;
}

.page a {
    display: inline-block;
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    color: #333;
    background: #e9ecf0;
    font-size: 14px;
    text-decoration: none;
    vertical-align: top;
    margin-left: 4px;
}

.page a.cur {
    background: #af2b2b;
    color: #fff;
}

.page a img {
    margin-top: 6px;
}

.secpagetz {
    width: 100px;
    height: 43px;
    display: inline-block;
    border: 1px solid #e5e5e5;
    color: #999999;
    line-height: 43px;
    overflow: hidden;
    font-size: 14px;
    vertical-align: top;
    margin-left: 4px;
}

.secpagetz input {
    width: 43px;
    height: 43px;
    line-height: 43px;
    border: 0;
    font-size: 14px;
    padding: 0;
    margin: 0;
    background: none;
}

.secpagebtn {
    width: 45px;
    height: 45px;
    background: #e9ecf0;
    text-align: center;
    line-height: 45px;
    display: inline-block;
    cursor: pointer;
    font-size: 14px;
    vertical-align: top;
}


/* 页脚 */

.footbox {
    width: 100%;
    height: auto;
    overflow: hidden;
    background: #050713;
}

.fbq {
    width: 100%;
    height: 50px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.7);
    color: #aaa;
    text-align: center;
    line-height: 50px;
}

.fbq a {
    color: #ccc;
}

@media screen and (max-width: 1680px) {
    .head {
        height: 85px;
    }
    .logo {
        height: 55px;
        margin: 15px 0 0 150px;
    }
    .navi {
        margin-left: 60px;
    }
}

@media screen and (max-width: 1440px) {
    .head {
        height: 80px;
    }
    .logo {
        height: 50px;
        margin: 15px 0 0 80px;
    }
    .navi>ul>li>a {
        font-size: 14px;
        line-height: 60px;
    }
}

@media screen and (max-width: 1366px) {
    .logo {
        margin: 15px 0 0 60px;
    }
    .navi {
        margin-left: 50px;
    }
    .navi>ul>li {
        margin: 0 30px;
    }
}

@media screen and (max-width: 1280px) {
    .head {
        height: 70px;
    }
    .logo {
        height: 50px;
        margin: 10px 0 0 50px;
    }
    .navi {
        margin-left: 40px;
    }
    .navi>ul>li>a {
        font-size: 12px;
        line-height: 50px;
    }
}

@media screen and (max-width: 1200px) {
    .logo {
        width: 150px;
        height: 50px;
        margin: 10px 0 0 30px;
    }
    .navi {
        margin-left: 10px;
    }
    .navi>ul>li {
        margin: 0 15px;
    }
}
@media screen and (max-width: 800px) {
    .navi {
        margin-left: 0;
    }
    .navi>ul>li {
        margin: 0 10px;
    }
}