@charset "utf-8";
/* CSS Document */


*{ padding:0; margin:0;}
body {height: 100%;font-family:"Microsoft YaHei",Arial,Helvetica,sans-serif;color:#666;font-size:14px;margin:0;padding:0;line-height:24px;background:#ffffff}
ul,dl,li {list-style:none;}
div,span,h1,h2,h3,h4,h5,p,ul,li,dl,dt,dd{margin:0;padding: 0;}
h1,h2,h3,h4,h5{font-family: "Microsoft YaHei",Arial,Helvetica,sans-serif;}
img { border:0 none;}
input{outline:none;}
frame,input{ padding:0; margin:0;}
a{text-decoration:none;color:#666;margin:0;padding:0}
a:hover{color:#71c8fb;text-decoration:none;}
a:active {color:#71c8fb; text-decoration:none;}

/* 自定义滚动条*/
::-webkit-scrollbar {
width:10px;
height:10px;}
::-webkit-scrollbar-thumb {
	-webkit-border-radius: 4px;
	background:#d4d7da;
	height: 14px;}
/*::-webkit-scrollbar-track {
	-webkit-border-radius: 4px;
	background:#566e8c;
	height: 14px;}*/

/*::-webkit-scrollbar{width:14px;}
::-webkit-scrollbar-track{background-color:#bee1eb;}
::-webkit-scrollbar-thumb{background-color:#00aff0;}
::-webkit-scrollbar-thumb:hover {background-color:#9c3}
::-webkit-scrollbar-thumb:active {background-color:#00aff0}
*/

/*input/textarea placeholder*/
input::-webkit-input-placeholder{
color: #ccc;font-family: "微软雅黑";font-size:12px;
}
input::-moz-input-placeholder{
color: #ccc;font-family: "微软雅黑";font-size:12px;
}
input:-moz-input-placeholder{
color: #ccc;font-family: "微软雅黑";font-size:12px;
}
input::-ms-input-placeholder{
color: #ccc;font-family: "微软雅黑";font-size:12px;
}



select {
  /*Chrome和Firefox里面的边框是不一样的，所以复写了一下*/
  border: solid 1px #ddd;
  font-size:12px;
  font-family: "微软雅黑";

  /*很关键：将默认的select选择框样式清除*/
  appearance:none;
  -moz-appearance:none;
  -webkit-appearance:none;

  /*在选择框的最右侧中间显示小箭头图片*/
  background:url(../images/common/icon-scrow.png)  no-repeat scroll right center #fff;


  /*为下拉小箭头留出一点位置，避免被文字覆盖*/
  padding-right: 14px;
}


/*清除ie的默认选择框样式清除，隐藏下拉箭头*/
select::-ms-expand { display: none; }
