/*@charset "UTF-8"*/
* { margin-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; }
html,body, h1, h2, h3, h4, h5, h6, dl, dt, dd, ul, ol, li, th, td, p, blockquote, pre, form, fieldset, legend, input, button, textarea, hr, select {margin:0;padding:0;}
html,body{font-family:"微软雅黑",Arial,Helvetica,sans-serif;-webkit-text-size-adjust:100%;color:#333;margin:0;padding:0;}
table {border-collapse:collapse; border-spacing:0;}
ol, ul, li {list-style:none;}
fieldset, img {border:0;}
q:before, q:after {content:'';}
a:focus, input, textarea {outline-style:none;}/*对ie7+有效*/
input:focus{
	outline: 1px solid #0E7AF4;
}
input[type="text"], input[type="password"], textarea {outline-style:none;-webkit-appearance:none;}
textarea {resize:none}
address, caption, cite, code, dfn, em, i, th, var, b {font-style:normal;font-weight:normal;}
abbr, acronym {border:0;font-variant:normal;}
a {text-decoration:none; color: #333;}
a:hover {text-decoration:none;}
img{border:0;vertical-align:middle;}
select {
	outline: none;
	/*Chrome和Firefox里面的边框是不一样的，所以复写了�?�?*/
	border: 1px solid #d8d8d8;
	/*很关键：将默认的select选择框样式清�?*/
	appearance:none;
	-moz-appearance:none;
	-webkit-appearance:none;
	/*在�?�择框的�?右侧中间显示小箭头图�?*/
	background: url("../images/down.png") no-repeat scroll right center transparent;
	/*为下拉小箭头留出�?点位置，避免被文字覆�?*/
	padding-right: 14px;
}
/*清除ie的默认�?�择框样式清除，隐藏下拉箭头*/
select::-ms-expand { display: none; }

.fl{float: left;}
.fr{float: right;}
.clearfix:after {display:block;clear:both;content:"";visibility:hidden;height:0}
.clearfix {zoom:1}
.text-line-1 {
	white-space:nowrap;/*强制文本在一行内显示*/
	text-overflow:ellipsis; /*溢出省略号，支持ie、safari（webkit�?*/
	-o-text-overflow:ellipsis; /*溢出省略号，支持opera*/
	overflow:hidden;/*溢出隐藏*/
	-moz-binding:url('../images/ellipsis.xml');/*溢出省略号，支持firefox*/
}

.text-line-2 {
	display: -webkit-box;
	word-break: break-all;
	/*超出文字用省略号代替*/
	text-overflow: ellipsis;
	/*竖直方向的超出和隐藏*/
	-webkit-box-orient: vertical;
	/*设定行数�?2*/
	-webkit-line-clamp: 2;
	/*多出部分隐藏*/
	overflow: hidden;
}
