/** 首页整体布局 */
::-ms-clear,::-ms-reveal{
  display: none;
}
*{
  margin: 0;
  padding: 0;
}
body {
  overflow: hidden;
}
ul {
  list-style: none; /* 取消原样式 */
}
a {
  text-decoration: none; /* 取消下划线 */
}
html, body {
  height: 100%;
  width: 100%;
  font-size: 13px;
  /*color: #333;*/
  font-family: 'Microsoft Yahei', 'Avenir', '微软雅黑', "黑体", "宋体", Helvetica, Arial, sans-serif;
}

/* 去掉textarea在ie浏览器上默认的样式，右边的箭头 */
textarea {
  border: 0px;
  list-style: none;
  outline: none;
  resize: none;
  overflow: hidden
}
/* 去掉input在ie10,11浏览器上默认的样式，自动删除的功能 */
input::-ms-clear {
  display: none;
}

.show {
  display: block !important;
}
.hide {
  display: none;
}
/*清除浮动*/
.clearfix {
  zoom: 1;
}
.clearfix:before, .clearfix:after {
  content: "";
  display: block;
  clear: both;
}

/* 滚动条整体样式。高宽分别对应横竖滚动条的尺寸 */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

/* 滚动条里面小方块 */
::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 1px 1px 1px rgba(0, 0, 0, .1);
  background: rgba(0, 0, 0, .05);
}

/* 滚动条里面小方块，鼠标移入时 */
:hover::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 1px 1px 1px rgba(0, 0, 0, .1);
  background: rgba(0, 0, 0, .08);
}

/* 滚动条里面轨道 */
::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0);
  background: #efefef;
  margin: 0;
  padding: 0;
}
::-webkit-scrollbar-button {
  display: inline-block;
  width: 10px;
  height: 10px;
  cursor: pointer;
}/*滚动条两端的按钮*/
::-webkit-scrollbar-button:vertical:single-button:start{/*//垂直方向向上的箭头*/
  display: inline-block;
  width: 10px;
  height: 10px;
 background: url("./images/top_a.png") no-repeat center center;
  background-size: 100% 100%;
}
::-webkit-scrollbar-button:vertical:single-button:start:hover{
  background: url("./images/top_b.png") no-repeat center center;
  background-size: 100% 100%;
}
::-webkit-scrollbar-button:vertical:single-button:end{/*//垂直方向向下的箭头*/
  display: inline-block;
  width: 10px;
  height: 12px;
  background: url("./images/top_a.png") no-repeat center center;
  background-size: 100% 100%;
}
::-webkit-scrollbar-button:vertical:single-button:end:hover{/*//垂直方向向下的箭头*/
  background: url("./images/end_b.png") no-repeat center center;
  background-size: 100% 100%;
}
::-webkit-scrollbar-button:horizontal:single-button:start{/*//水平方向向左的箭头*/
  display: inline-block;
  width: 12px;
  height: 10px;
  background: url("./images/left_a.png") no-repeat center center;
  background-size: 100% 100%;
}
::-webkit-scrollbar-button:horizontal:single-button:start:hover{/*//水平方向向左的箭头*/
  background: url("./images/left_b.png") no-repeat center center;
  background-size: 100% 100%;
}
::-webkit-scrollbar-button:horizontal:single-button:end{/*水平方向向右的箭头*/
  display: inline-block;
  width: 12px;
  height: 10px;
  background: url("./images/right_a.png") no-repeat center center;
  background-size: 100% 100%;
}
::-webkit-scrollbar-button:horizontal:single-button:end:hover{/*水平方向向右的箭头*/
  background: url("./images/right_b.png") no-repeat center center;
  background-size: 100% 100%;
}
::-webkit-scrollbar-button:horizontal:start:increment {/*//横向 开始端 增量按钮*/
  display:none;
}
::-webkit-scrollbar-button:horizontal:end:decrement {/*//横向 末尾端 减量按钮*/
  display:none;
}
::-webkit-scrollbar-button:vertical:start:increment {/*//横向 开始端 增量按钮*/
  display:none;
}
::-webkit-scrollbar-button:vertical:end:decrement {/*//横向 末尾端 减量按钮*/
  display:none;
}
