@charset "utf-8";

/**
 * document.css
 * 该样式表只存放font字体图标引用，不存放其他修改样式或者初始样式
 * -webkit-text-stroke-width: 0.2px; 用长度值指定描边厚度。不允许负值;对应的脚本特性为textStrokeWidth。
 * -webkit-font-smoothing: antialiased;-moz-osx-font-smoothing: grayscale; 两句话的意思同为清除字体图标图片锯齿，通常以上两句放在一起使用
 * -webkit-font-smoothing它有三个属性值：
 * none：对低像素的文本比较好
 * subpixel-antialiased：默认值
 * antialiased：抗锯齿很好
 * -moz-osx-font-smoothing: inherit | grayscale;这个属性也是更清晰的作用。
 */

@font-face {
	font-family: 'iconfont';
	src: url('../images/iconfont.eot');
	src: url('../images/iconfont.eot?#iefix') format('embedded-opentype'),
		 url('../images/iconfont.woff') format('woff'),
		 url('../images/iconfont.ttf') format('truetype'),
		 url('../images/iconfont.svg#iconfont') format('svg');
}

.iconfont {
	font-family: "iconfont" !important;
	font-size: 16px;
	font-style: normal;
	font-weight: normal;
	text-shadow: none;
	-webkit-font-smoothing: antialiased;
	-webkit-text-stroke-width: 0px;
	-moz-osx-font-smoothing: grayscale;
}







.pagess {
    clear: both;
    margin: 20px;
    overflow: hidden;
    margin-left: 0px;
    text-align: center;
}
.pagess ul li {
    display: inline-block;
    border: 1px solid #ccc;
    padding: 2px 9px;
    margin: 0 3px;
    line-height: 20px;
    background: #fff;
    color: #999;
}
.pagess ul li a{ color:#09f}
.pagess ul li.thisclass {
    display: inline-block;
    border: 1px solid #09f;
    padding: 2px 9px;
    margin: 0 3px;
    background: #09f;
    color: #fff;
}
.pagess ul li.thisclass a{color: #fff;}