/* 清除内外边距 */
body, h1, h2, h3, h4, h5, h6, hr, p, blockquote, /* structural elements 结构元素 */
dl, dt, dd, ul, ol, li, /* list elements 列表元素 */
pre, /* text formatting elements 文本格式元素 */
fieldset, lengend, button, input, textarea, /* form elements 表单元素 */
th, td { /* table elements 表格元素 */
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-user-select:none; -moz-user-select:none; -ms-user-select:none; user-select:none;
}
/* 设置默认字体 */
@font-face { 
	font-family: "方正宋刻本秀楷简体";src:url(../font/方正宋刻本秀楷简体.TTF)format('truetype');
	font-family: "方正清刻本悦宋简体";src:url(../font/方正清刻本悦宋简体.TTF)format('truetype');
	font-family: "方正大黑简体";src:url(../font/FZZDHJW.TTF)format('truetype');

}
body,
button, input, select, textarea { /* for ie */
  /*font: 12px/1 Tahoma, Helvetica, Arial, "宋体", sans-serif;*/
  font: 12px/1 "微软雅黑"; /* 用 ascii 字符表示，使得在任何编码下都无问题 */

}
html{
	background: #fff;
}
/* 重置列表元素 */
ul, ol { list-style: none; }

/* 重置文本格式元素 */
a { text-decoration: none; color: white; cursor: pointer;}
a:hover { text-decoration: none; }
/*设置页面宽度高度*/
html,
body {
  width: 100%;
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  background: #f5f2e8;
}
.middle{
	width: 1080px;
	margin: 0 auto;
}
::-webkit-scrollbar {
	width: 5px;
	height: 5px;
	background-color: #e9e9e9;
}


/*定义滚动条轨道 内阴影+圆角*/

::-webkit-scrollbar-track {
	border-radius: 10px;
	-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
	background-color: #ebebeb;
}


/*定义滑块 内阴影+圆角*/

::-webkit-scrollbar-thumb {
	border-radius: 10px;
	-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
	background-color: #989898;
}