@charset "gb2312";
* {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}
body {
	/*font-size: 62.5%;*/
	font-size: 14px;
	color: #333;
	background-color: #FFF;
}
body, header, div, section, footer, p, ul, li, h1, h2, h3, h4, h5, h6, table, tr, td, th, a {
	list-style: none;
	margin: 0px;
	padding: 0px;
	font-family: Helvetica, Tahoma, Arial, "Microsoft YaHei", "微软雅黑", SimSun, "宋体", STXihei, "华文细黑", Heiti, "黑体", sans-serif;
}
a {
	text-decoration: none;
	color: #333;
}
input, button, select, textarea, img {
	padding: 0px;
	margin: 0px;
	border: none;
	outline: none;
	font-family: Helvetica, Tahoma, Arial, "Microsoft YaHei", "微软雅黑", SimSun, "宋体", STXihei, "华文细黑", Heiti, "黑体", sans-serif;
}
textarea {
	resize: none;
}
select {
	/*Chrome和Firefox里面的边框是不一样的，所以复写了一下*/
	border: 0px;
	/*很关键：将默认的select选择框样式清除*/
	appearance: none;
	-moz-appearance: none;
	-webkit-appearance: none;
	background-repeat: no-repeat;
	background-position: right center;
	background-image: url(../img/ui/select-arrow.png);
	background-color: transparent;
	background-attachment: scroll;
	/*为下拉小箭头留出一点位置，避免被文字覆盖*/
	padding-right: 18px!important;
}
/*清除ie的默认选择框样式清除，隐藏下拉箭头*/
select::-ms-expand {
	display: none;
}
/*定义表单placeholder的样式*/
input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
	color: #CCC;
	font-size: 14px;
	line-height: 20px;
}
input:-moz-placeholder, textarea:-moz-placeholder {
	color: #CCC;
	font-size: 14px;
	line-height: 20px;
}
input::-moz-placeholder, textarea::-moz-placeholder {
	color: #CCC;
	font-size: 14px;
	line-height: 20px;
}
input:-ms-input-placeholder, textarea:-ms-input-placeholder {
	color: #CCC;
	font-size: 14px;
	line-height: 20px;
}
.clear {
	visibility: hidden;
	display: block;
	font-size: 0;
	content: " ";
	clear: both;
	height: 0;
}
.clear-fix {
	overflow: auto;
	zoom: 1;
}
.page-size {
	width: 100%;
	min-width: 1380px;
}
.safe-size {
	width: 1380px;
	margin: 0 auto;
}
.fl {
	float: left;
}
.fr {
	float: right;
}
.show {
    display: block;
}
.hide {
    display: none;
}
.no-data {
	width: 100%;
	padding: 30px;
	text-align: center;
	color: #999;
}
.no-data:after {
	content: "亲，你找的东西被外星人抢跑了！！！";
}
/*------------------关键词高亮------------------*/
.keywords-link {
	color: #007FFF;
}
/*------------------图片缩放------------------*/
.imgEffect i {
	transition: all 0.6s;
	-moz-transition: all 0.6s; /* Firefox 4 */
	-webkit-transition: all 0.6s; /* Safari 和 Chrome */
	-o-transition: all 0.6s; /* Opera */
}
.imgEffect:hover i {
	transform: scale(1.3);
	-ms-transform: scale(1.3); 	/* IE 9 */
	-moz-transform: scale(1.3); 	/* Firefox */
	-webkit-transform: scale(1.3); /* Safari 和 Chrome */
	-o-transform: scale(1.3); 	/* Opera */
}