/*初始化样式*/
body, h1, h2, h3, h4, h5, h6, hr, p, blockquote, dl, dt, dd, ul, ol, li, pre, form, fieldset, legend, button, input, textarea, th, td { 
    margin:0; 
    padding:0; 
    font-family: 'Helvetica Neue', Helvetica, 'PingFang SC', 'Hiragino Sans GB','Microsoft YaHei', '微软雅黑', Arial, sans-serif;
} 
body, button, input, select, textarea { font:12px/1.5tahoma, arial, \5b8b\4f53; } 
h1, h2, h3, h4, h5, h6{ font-size:100%; } 
address, cite, dfn, em, var { font-style:normal; } 
code, kbd, pre, samp { font-family:couriernew, courier, monospace; } 
small{ font-size:12px; } 
ul, ol { list-style:none; } 
a { text-decoration:none; } 
a:hover { text-decoration:none; } 
sup { vertical-align:text-top; } 
sub{ vertical-align:text-bottom; } 
legend { color:#000; } 
fieldset, img { border:0; } 
button, input, select, textarea { font-size:100%; } 
table { border-collapse:collapse; border-spacing:0; } 

/*页面全局样式*/
body{
    background-color: #ffffff;
}
.w-box{
    width: 1200px;
    margin: 0 auto;
}
@media(max-width: 768px){
    .w-box{
		width: 100%;
	}
}

/*导航*/
.pc{
    display: block !important;
}
.mobile{
    display: none !important;
}
.header-pc{
    width: 100%;
    height: 60px;
    background-color: rgba(0,0,0,0);
    position: fixed;
    top: 0;
    z-index: 100;
}
.header-pc.active{
    background-color: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    -moz-backdrop-filter: blur(20px);
    -ms-backdrop-filter: blur(20px);
    box-shadow: 1px 1px 10px rgba(0,0,0,0.15);
}
.header-box{
    display: flex;
    flex-flow: row;
    justify-content: space-between;
    align-items: center;
}
.header-box ul{
    display: flex;
}
.header-box ul li{
    margin: 0 24px;
    line-height: 60px;
    font-size: 14px;
}
.header-box ul li a{
    color: #ffffff;
}
.header-box ul li a.active{
    color: #000000;
}
.header-box ul li a:hover{
    color: #00aaa6;
}
.header-mobile{
    width: 100%;
    height: 60px;
    background-color: rgba(255,255,255,1);
    position: fixed;
    top: 0;
    z-index: 100;
}
.header-mobile img{
    position: absolute;
    top: 50%;
    margin-top: -14px;
    margin-left: 16px;
}
.header-mobile #nav{
    position: absolute;
    top: 60px;
    width: 100%;
    display: none;
    background-color: rgba(255,255,255,1);
    border-top: 1px solid rgba(0,0,0,0.05);
}
.header-mobile #nav li{
    line-height: 60px;
    margin: 0 32px;
    font-size: 16px;
}
.header-mobile #nav li a{
    color: #000000;
}
.header-mobile i{
    float: right;
    margin-right: 24px;
    line-height: 60px;
    color: #b6b6b6;
}
.header-mobile #hide{
    display: none;
}
@media(max-width: 768px) {
    .pc{
        display: none !important;
    }
    .mobile{
        display: block !important;
    }
}

/*footer*/
.footer{
	background-color: #141414;
}
.footer .footer-box{
	display: flex;
	flex-flow: row;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
    padding: 24px;
}
.footer .footer-box p, .footer .footer-box p a{
	font-size: 12px;
	line-height: 20px;
	padding: 24px 0;
	color: #6f6f6f;
}
@media(max-width: 768px){
    .footer .footer-box{
        display: inline-block;
        text-align: center;
    }
    .footer .footer-box p{
        padding: 8px 0;
    }
}

/*pagination*/
.pagination {
    display: flex;
    margin-top: 32px;
    padding-bottom: 32px;
}
.pagination a {
    margin: 0 3px;
    width: 40px;
    height: 40px;
    background-color: #ffffff;
    line-height: 40px;
    font-size: 16px;
    color: #333333;
    text-align: center;
    box-sizing: border-box;
}
.pagination a:hover {
    border: none;
    background-color: #f0f2f4;
    color: #333333;
}
.pagination .current {
    color: #ffffff;
    background-color: #333333;
    border: none;
}
.pagination .current:hover {
    color: #ffffff;
    background-color: #333333;
    border: none;
}
