@charset "gb2312";
body {
  font-family: "Microsoft YaHei", Arial, sans-serif;
  font-size: 16px;
  background: #e3e5e7;
  color: #666;
}
html,body,div,h1, h2, h3, h4, h5, h6, p,table,thead,tbody,tfoot,tr,td,ul,ol,li,a,select,input,button {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0;
  font-family: "Microsoft YaHei", Arial, sans-serif;
}
a {
  text-decoration: none;
  color: #666;
  display: inline-block;
}
*:focus {
  outline: none
} 
/*input[type="checkbox"] {
  background: url(../images/icon_unchecked.png);
  background-size: 20px;
  height: 20px;
  width: 20px;
}
input[type="checkbox"]:checked {
  background: url(../images/icon_checked.png);
  background-size: 20px;
}*/
ul, ol, li{
  list-style: none;
}
.form-control {
  height: 38px;
  padding: 6px 12px;
  color: #555;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
  box-shadow: inset 0 1px 1px rgba(0,0,0,.075); 
  -webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s; 
  -o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
  transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
}
.input__middle {
  width: 130px;
}
.btn {
  display: inline-block;
  padding: 6px 12px;
  height: 38px;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 4px;
}
.btn-default {
  color: #666;
  background-color: #fff;
  border-color: #ccc;
}
.select-control {
  padding: 6px 25px 6px 12px;
  /*很关键：将默认的select选择框样式清除*/
  appearance:none;
  -moz-appearance:none;
  -webkit-appearance:none;

  /*在选择框的最右侧中间显示小箭头图片*/
  /*background: #fff url("http://ourjs.github.io/static/2015/arrow.png") no-repeat scroll right center;*/
  background: #fff url("../images/icon_arrowdown.png") no-repeat right 6px center;
  background-size: 12px 12px;
}

/*清除ie的默认选择框样式清除，隐藏下拉箭头*/
select::-ms-expand { display: none; }
.clearfix {
  clear: both;
}