@charset "UTF-8";
/* 清除浮动 */
.clear {
	zoom: 1;
}
.clear:after {
	content: "";
	display: block;
	clear: both;
}
/* 定义盒模型为怪异和模型（宽高不受边框影响） */
.boxSiz {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
	box-sizing: border-box;
}
/* 强制换行 */
.toWrap {
	word-break: break-all;
	/* 只对英文起作用，以字母作为换行依据。 */
	word-wrap: break-word;
	/* 只对英文起作用，以单词作为换行依据。*/
	white-space: pre-wrap;
/* 只对中文起作用，强制换行。*/ }
/* 禁止换行,超出省略号 */
.noWrapEllipsis {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
/* 文字两端对齐 */
.text-justify {
	text-align: justify;
	text-justify: inter-ideograph;
}
a {
	text-decoration: none;
	cursor: pointer;
}
li {
	list-style: none;
}
a {
	text-decoration: none;
	color: #555;
}
a img {
	border: none;
}
a > img {
	vertical-align: bottom;
}
.hidden {
	display: none;
}
/* 页面主代码 */
body {
	font-family: "Microsoft Yahei", Arial, Helvetica, sans-serif;
	overflow-x: hidden;
	margin: 0 auto;
	height: 100%;
	background-color: #fff;
	font-size: 14px;
}
.mainContainer {
	width: 1024px;
	margin: 0 auto;
	padding: 0 1px;
}
em {
	font-style: normal;
}
dfn {
	font-family: Arial;
}

/*# sourceMappingURL=common.css.map */
