.main{
	width: 100%;
	border-bottom: 40px solid #eeeeee;
	
}
.inner{
	width: 1200px;
	height: 570px;
	margin: 0 auto;
	padding-top: 40px;
}
.inp_box{
	width: 100%;
	height: 60px;
	position: relative;
	display: flex;
	align-items: center;
	border: 1px solid #999;
	border-radius: 60px;
	padding-left: 30px;
	margin-bottom: 60px;
	padding-right: 5px;
}
.inp_box .inp{
	width: 100%;
	height: 50px;
	font-size: 18px;
	padding-right: 30px;
	outline: none;
	text-align: center;
	border: none;
	background-color: transparent;
}
.inp_box .bot_box{
	width: 80px;
	height: 50px;
	background-color: #4a8bf4;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50px;
}
.zhanchu{
	width: 100%;
	max-height: 274px;
	background-color: #fff;
	box-shadow: 0px 10px 30px -10px #d7d7d7;
	position: absolute;
	left: 0;
	top: 59px;
	border-radius: 30px;
	padding: 38px;
	display: none;
	overflow: auto;
	z-index: 9;
}
.zhanchu .title{
	font-size: 14px;
	color: #999;
	margin-bottom: 30px;
	display: block;
}
.zhanchu ul{
	height: 100%;
	width:100%;
}
.zhanchu ul li{
	font-size: 18px;
	color: #333;
	margin-bottom: 30px;
	white-space:nowrap;
	float:left;
	margin-right: 100px;
}
.zhanchu ul li a{
	color: #333;
}
.xiafang{
	display: flex;
}
.xiafang_l,.xiafang_r{
	display: flex;
	flex-direction: column;
	width: 600px;
}
.xiafang_l>div{
	margin-bottom: 50px;
}
.xiafang_l .title,.xiafang_r .title{
	font-size: 18px;
	color: #333;
	display: flex;
	align-items: center;
	margin-bottom: 20px;
}
.xiafang_l .title span{
	font-size: 14px;
	color: #999;
 }
.danxu{
	display: flex;
}
.checked_box{
	display: flex;
	align-items: center;
	/*margin-right: 20px;*/
	font-size: 14px;
	color: #333;
}.checked_box:nth-child(2n+0){
	margin-right: 30px;
 }

.checked_box input{
	margin-right: 10px;
	outline: none;
}

.checked_box input[type="radio"]{
	-webkit-appearance: none;
	vertical-align:middle;
	margin-top:0;
	background:#fff;
	border:#3190e8 solid 1px;
	border-radius: 3px;
	min-height: 12px;
	min-width: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.checked_box input[type="radio"]:checked {
	/*background: #3190e8;*/
	position: relative;
}
.checked_box input[type="radio"]:checked::after{
	content: '';
	position: absolute;
	border-top: none;
	border-right: none;
	height: 6px;
	width: 6px;
	background-color: #3190e8;
}
.xiaf_shijian .shuru{
	display: flex;
	align-items: center;
	font-size: 14px;
	color: #999;
 }
.xiaf_shijian .shuru input{
	min-width: 100px;
	height: 30px;
	border: 1px solid #333;
	border-radius: 4px;
	text-align: center;
	margin: 0 10px;
	padding: 0 10px;
	outline: none;
}

/*下拉*/
.select{
	height: 30px;
	width: 130px;
	position: relative;
	cursor: pointer;
	font-size: 14px;
	margin-right: 40px;
	border-radius: 4px;
}
.select_default{
	width:130px;
	height:32px;
	line-height:32px;
	padding:0 10px;
	border:solid 1px #ccc;
	border-radius: 4px;
}
/*这边就是三角形的css代码，使用伪类和定位实现右三角*/
.select_default:after{
	content:"";
	border-left:5px solid transparent;
	border-right:5px solid transparent;
	border-bottom:5px solid #999;
	-webkit-transform-origin:5px 2.5px;
	-moz-transform-origin:5px 2.5px;
	-ms-transform-origin:5px 2.5px;
	-o-transform-origin:5px 2.5px;
	transform-origin:5px 2.5px;
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	-ms-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
	position:absolute;
	right: 14px;
	top:14px;
}
.select_default.rotate:after{
	-webkit-transform:rotate(180deg);
	-moz-transform:rotate(180deg);
	-ms-transform:rotate(180deg);
	-o-transform:rotate(180deg);
	transform:rotate(180deg);
}
.select_item{
	width: 130px;
	margin:0;
	padding:0;
	display:none;
	list-style:none;
	background-color: #fff;
	box-shadow: 0px 2px 30px -10px #c1c1c1;
}
.select_item li{
	width: 130px;
	height:32px;
	line-height:32px;
	padding:0 10px;
	border-top:none;
	background-color: #fff;
}
.select_item li.hover{
	background:#4a8bf4;
	color:#fff;
}

.select_box{
	width: 340px;height:268px;
	outline: none;
}
.select_box option{
	padding: 4px 10px;
}
.select_box .title1{
	font-size: 14px;
	color: #333;
}
.select_box .text1{
	font-size: 12px;
	color: #999;
}
.select_box {
	/*Chrome和Firefox里面的边框是不一样的，所以复写了一下*/
	border: solid 1px #000;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	
	/*!*很关键：将默认的select选择框样式清除*!*/
	/*appearance:none;*/
	/*-moz-appearance:none;*/
	/*-webkit-appearance:none;*/
	
	padding-right: 10px;
}
/*下拉 end*/
/*滚动条*/
.select_box::-webkit-scrollbar
{
	width: 16px;
	height: 16px;
	background-color: rgba(255, 255, 255, 0.2);
	padding: 10px 0;
}
/*定义滚动条轨道 内阴影+圆角*/
.select_box::-webkit-scrollbar-track
{
	border-radius: 2px;
}
/*定义滑块 内阴影+圆角*/
.select_box::-webkit-scrollbar-thumb
{
	border-radius: 10px;
	background-color: #999999;
	cursor: pointer;
}
.select_box::-webkit-scrollbar-thumb:hover{
	background-color: #8C8C8C;
}
/*滚动条end*/

@media (max-width: 1200px) {
	.inner{
		width: 100%;
		height: unset!important;
		padding-bottom: 1.5rem;
	}
	.xiafang{
		padding: 0 20px;
	}
	body{
		background-color: #fff!important;
	}
}
@media (max-width: 992px) {
	body{
		background-color: #efefef!important;
	}
	.xiafang{
		display: flex;
		flex-direction: column;
		align-items: center;
		padding: 30px 0.2rem;
		background-color: #fff;
		width: 7.1rem;
		margin: 0 auto;
		border-radius: 0.2rem;
	}
	.xiafang_l, .xiafang_r{
		width: unset;
	}
	.inp_box{
		height: 0.6rem;
		margin-bottom: 0;
	}
	.inp_box .bot_box{
		height: 0.5rem;
	}
	.inp_box .inp{
		height: 0.5rem;
		font-size: 0.24rem;
	}
	.inner{
		padding-top: 0.2rem;
	}
	.inn_dklq{
		padding: 0.2rem 0;
		margin-bottom: 0.2rem;
		background-color: #fff;
	}
	.xiafang_l .title, .xiafang_r .title{
		font-size: 0.30rem;
	}
	.checked_box:nth-child(2n+0){
		margin-right: 0.3rem;
	}
	.xiaf_shijian .shuru{
		font-size: .24rem;
	}
	.xiaf_shijian .shuru input{
		font-size: 0.22rem;
	}
	.select{
		font-size: 0.26rem;
	}
	.select_box{
		font-size: 0.26rem;
	}
	.select_box{
		width: 4.60rem;
		height: 0.8rem;
	}
}

