@charset "UTF-8";
/* CSS Document */

*{padding: 0px; margin: 0px;}
			.content{
				width: 100%; 
				height: 500px;
				background: #F27729;
			}
			.select{
	width: 165px;
	height: 28px;
	background: #FFFFFF;
	position: relative;
	cursor: pointer;
	float: left;
	border: 1px solid #C6C6C6;
	font-size: 12px;
	line-height: 28px;
			}
		 .select::after{
	content: "";
	display: block;
	width: 10px;
	height: 10px;
	border-left: 1px solid #D0D0D0;
	border-bottom: 1px solid #D0D0D0;
	top: 8px;
	right: 12px;
	position: absolute;
	transform: rotate(-46deg);
	transition: all .3s ease-in;
			}
		.select p{
	width: auto;
	padding: 0px 15px;
	float: left;
	font-size: 14px;
	line-height: 28px;
	font-style: normal;
			}
			.select ul{
	width: 100%;
	display: block;
	font-size: 16px;
	background: #FFFFFF;
	position: absolute;
	top: 40px;
	left: 0px;
	max-height: 0px;
	overflow: hidden;
	transition: max-height .3s ease-in;
	z-index: 9999;
			}
		.select ul li{
	width: 100%;
	height: 30px;
	line-height: 28px;
	padding: 0px 15px;
	list-style: none;
	color: #666666;
	background-color: #FFFFFF;
	font-size: 14px;
	font-style: normal;
			}
		.select ul li.Selected{
				background: #cc283e;
				color: #FFFFFF;
			}
		 .select ul li:hover{
				background: #D0D0D0;
			}
			@-webkit-keyframes slide-down{
				0%{transform: scale(1,0);}
				25%{transform: scale(1,1.2);}
				50%{transform: scale(1,0.85);}
				75%{transform: scale(1,1.05);}
				100%{transform: scale(1,1);}
			}
			
		.select.open ul{
				max-height: 300px;
				transform-origin: 50% 0;
				-webkit-animation: slide-down .5s ease-in;
				transition: max-height .2s ease-in;
			}
		 .select.open::after{
				transform: rotate(134deg);
				transition: all .3s ease-in;
				top: 18px;
				
			}
.txt-box2{
	width: auto;
	line-height: 40px;
	font-size: 14px;
	font-family: "microsoft yahei";
	color: #9C9C9C;
	padding-top: 0px;
	padding-right: 38px;
	padding-left: 15px;
	padding-bottom: 0px;
	float: right;	
}
.txt-box3{
	width: 100%;
	border: 1px solid #C9C9C9;
	clear: both;
	height: 35px;
	line-height: 35px;
	text-align: center;
}
