/* 清除内外边距 */
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;
}

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

}

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

/* 重置文本格式元素 */
a { text-decoration: none; cursor: pointer;}
a:hover { text-decoration: none; }
/*设置页面宽度高度*/
button:focus{
	outline: none;
}
.clear{
	clear: both;
}
html,
body {
  width: 100%;
  height: auto;
  overflow-x:hidden;
  overflow-y:auto;
  background: #d4c6b4;
}
.middle{
  width: 1180px;
  margin: 0 auto;
}
img{
  border: none;
}
#come{

}
.back{
	position: absolute;
	bottom: 30px;
	right: 30px;
	z-index: 99;
}
::-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;
}