@charset "utf-8";
::-webkit-scrollbar-thumb{
	background:#888888;
    transition: all .2s;
    border-radius: 0.25rem;
}
::-webkit-scrollbar-thumb:hover{
    background:#666;
    border: 0px solid transparent;
}
::-webkit-scrollbar{
	width: 8px;height: 8px;
	background-color: #fcfdfd00;
}
::-webkit-scrollbar-track,
::-webkit-scrollbar-thumb{
	border-radius: 999px;
	border: 0px solid transparent;
}

/* 滚动条总长度 */
::-webkit-scrollbar-track{
	/* box-shadow:1px 1px 5px rgba(0, 17, 29, 0.8) inset; */
}
/* 滚动条滚动的长度 */
::-webkit-scrollbar-thumb{
	min-height: 20px;
	background-clip: content-box;
}
::-webkit-scrollbar-corner{background: transparent;}

*{
	padding:0;
	margin:0;
	list-style: none;
	box-sizing: border-box;
	text-decoration: none;
	font-family: "微软雅黑";
}

html,body{width:100%;height:100%;color:#333;}
img{
    width:100%;
}
.pt50{
    padding-top:50px;
}
.pages{
    padding:20px;
    text-align:center;
    display: flex;
    justify-content: center;
}
.pages a{
    margin:0 3px;
    display:inline-block;
    padding:5px;
    font-size:15px;
    color:#999;
    border-radius: 2px;
    border: 1px solid #ccc;
    width: 30px;
    height: 30px;
    line-height: 18px;
    cursor:pointer;
}
.pages a:hover{
    color:#0551bf;
    border-color:#0551bf;
}
.pages a[class*='fa']{
    font-size:20px;
}

