*::-webkit-scrollbar{ /*滚动条整体样式*/
    width: 8px; /*高宽分别对应横竖滚动条的尺寸*/
    height: 8px;
}
*::-webkit-scrollbar-thumb { /*滚动条里面小方块*/
    border-radius: 4px;
    -webkit-box-shadow: inset 0px 0px 1px 0px #eabc78;
    background: #ffeed6;/*滚动条颜色*/
}
*::-webkit-scrollbar-track { /*滚动条里面轨道*/
    border-radius: 4px;
    -webkit-box-shadow: inset 0px 0px 1px 0px #bbb;
    background: #fff;
}
* {
	margin: 0;
	padding: 0;
	list-style: none;
	outline: none;
	font-style:normal;
	font-family: '宋体';
	font-family: '微软雅黑';
	box-sizing: border-box;
}
body {
	cursor: default;
	font-size: 13px;
}
a.lnk, a[src], .cp {
	color: #108ee9;
	text-decoration: none;
	transition-duration: 0.3s;
}
a.lnk:hover, a[src]:hover, .cp:hover {
	color: #eb642d;
	text-decoration: none;
}
img {
	-ms-interpolation-mode: bicubic;
	border: none;
}
img.m:hover {
	filter: gray;
	filter: Alpha(opacity=50);
	-moz-opacity: 0.5;
	opacity: 0.5;
}
img.h:hover {
filter:progid:DXImageTransform.Microsoft.BasicImage(grayscale=1); -webkit-filter: grayscale(100%); }
table { border-collapse: collapse; }
cite { display:inline-block; font-style:normal; }


.cp { cursor: pointer; }
.ct { cursor: text; }
.clb { clear: both; }
.dn { display: none; }
.dt { display: table; }
.db { display: block; }
.df { display: flex;justify-content: space-between; }
.dib { display: inline-block; }
.oh { overflow: hidden; }
.ohx { overflow-x: hidden; }
.ohy { overflow-y: hidden; }
.oa { overflow: auto; }
.oax { overflow-x: auto; }
.oay { overflow-y: auto; }
.on { outline: none; }
.unresize { resize:none; }
.rows {
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
}
.pf { position: fixed; }
.pa { position: absolute; }
.pr { position: relative; }
.fl { float: left; }
.fr { float: right; }
.tr { text-align: right; }
.tc { text-align: center; }
.tl { text-align: left; }
.vtm { vertical-align: middle; }
.vtt { vertical-align: top; }
.vtt_td td { vertical-align: top; }
.tu { text-transform: uppercase; }
.fsn { font-style: normal; }
.del { text-decoration: line-through; }
/* +----------------------------------------------------------------------+ */

.br3 { border-radius: 3px; }
.br5 { border-radius: 5px; }
.br50p { border-radius: 50%; }

.bz * { box-sizing: border-box; }
