@charset "UTF-8";
/*css 初始化 */
html, body, ul, li, ol, dl, dd, dt, p, h1, h2, h3, h4, h5, h6, form, fieldset, legend, img ,div{
    margin: 0;
    padding: 0;
	font-family:'微软雅黑';
}
body{
	background-color:#edeff1;
	}

fieldset, img, input, button { 			/*fieldset组合表单中的相关元素*/
    border: none;
    padding: 0;
    margin: 0;
    outline-style: none;
}

ul, ol {
    list-style: none;				/*清除列表风格*/
}

input {
    padding-top: 0;
    padding-bottom: 0;
    font-family: "SimSun", "宋体";
}

select, input {
    vertical-align: middle;
}

select, input, textarea {
    font-size: 12px;
    margin: 0;
}

textarea {
    resize: none;
}

/*防止多行文本框拖动*/
img {
    border: 0;
    vertical-align: middle;
}

/*  去掉图片低测默认的3像素空白缝隙*/
table {
    border-collapse: collapse;			/*合并外边线*/
}


.clearfix {
     clear: both;
	 float:none;
}

a {
    text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
    text-decoration: none;
    font-weight: normal;
}
/*自定义常用样式*/
.f_l{
	float:left;
	}
.f_r{
	float:right;
	}
.f_x{
	position:fixed;
	}
.button{/*蓝色按钮*/
	display:inline-block;
	box-sizing: border-box;
    font-size: 14px;
    height: 32px;
    width: 80px;
    text-align: center;
    line-height: 32px;
    border-radius: 3px;
    background-color: #2196f3;
    color: #fff;
    cursor: pointer;
	}
.cancel{/*取消按钮*/
	display:inline-block;
	box-sizing: border-box;
    font-size: 14px;
    height: 32px;
    width: 80px;
    text-align: center;
    line-height: 32px;
    border-radius: 3px;
    border:1px solid #2196f3;
    color: #2196f3;
    cursor: pointer;
	}
.alert_box{
	color: #fff;
    border-radius: 4px;
    width: 220px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    position: fixed;
    top: 50%;
    left: 50%;
	z-index:99999;
    margin-top: -30px;
    margin-left: -110px;
    background-color: rgba(0,0,0,0.6);
    display: none;
	}
.xq_box{/*详情框*/
	display:none;
	width:500px;
	height:200px;
	box-shadow:0 0 10px 0 rgba(0,0,0,0.3);
	position:fixed; top:50%; left:50%; z-index:9999;
	margin-top:-100px;
	margin-left:-250px;
	background-color:#fff;
	padding:10px;
	font-size:15px;
	}
.pl{
	cursor:pointer;
	}
.clearfix{
	clear:both;
	float:none;
	}
/*搜索框开始*/
	.all_search{
		width:350px;
		height:32px;
		box-sizing: border-box;
		line-height: 32px;
		box-sizing:border-box;
		}
	.all_search input{
		border: #ccc 1px solid;
		height: 32px;
		width: 290px;
		border-top-left-radius: 2px;
		border-bottom-left-radius: 2px;
		box-sizing: border-box;
		padding-left: 10px;
		float:left;
		border-right:none;
		}
	.all_search span{
		display: inline-block;
		width: 50px;
		height: 32px;
		background-color: #3699FF;
		color: #fff;
		text-align: center;
		line-height: 32px;
		border-top-right-radius: 4px;
		border-bottom-right-radius: 4px;
		float:left;
		font-size:15px;
		cursor:pointer;
		}
/*搜索框结束*/
