/*basic*/
* {
	margin: 0;
	padding: 0;
}
body {
	position: relative;
	font-size: 14px;
	font-family: Microsoft Yahei, "微软雅黑", Arial;
	color: #333;
	min-width: 1280px;
}
a {
	color: #2e58ff;
	cursor: pointer;
	text-decoration: none;
}
img {
	border: none;
}
li {
	list-style: none;
}
.center {
	text-align: center;
}
.right {
	text-align: right;
}
.left{
	text-align: left;
}
.clear {
	clear: both;
}
.clearfix:after {
   content: " ";
   display: block;
   clear: both;
}
.font-bold{
	font-weight:bold;
}

.text_ov3{
	text-align: justify;
	display: -webkit-box; 
	-webkit-box-orient: vertical; 
	-webkit-line-clamp: 3; 
	overflow: hidden;
}
.text_ov2{
	text-align: justify;
	display: -webkit-box; 
	-webkit-box-orient: vertical; 
	-webkit-line-clamp: 2; 
	overflow: hidden;
}
.text_ov{
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
input,
textarea {
    appearance: none;
    border: none;
    outline: none;
    background-color: #fff;
    padding: 0;
    margin: 0;
}