@charset "utf-8";
*{
    margin: 0;
    padding: 0;
	box-sizing: border-box;
	-moz-box-sizing: border-box; /* Firefox */
	-webkit-box-sizing: border-box; /* Safari */
}
body,a,input,button,textarea{
    font-size: 62.5%;
    font-family: Arial, "微软雅黑";
}
body{
	width: 100%;
    min-width: 1200px;
    margin: 0 auto;
    background-color: #79aff9;
}
ul, li{
    list-style: none;
}
header, footer{
    display: block;
}
a{
    text-decoration: none;
}
.clear{
	clear: both;
}
/*滚动条样式*/
::-webkit-scrollbar{
	width: 6px;
	height: 6px;
}
::-webkit-scrollbar-thumb{
	background-color: #ddd;
	border-radius: 3px;
	border: none;
}
::-webkit-scrollbar-track{
	background-color: #f5f5f5;
}

header{
	width: 1200px;
	height: 160px;
	margin: 0 auto;
	padding-top: 29px;
	position: relative;
}
header>h3{
	text-align: center;
	font-size: 34px;
	color: #fff;
	font-weight: normal;
	line-height: 56px;
}
header>a{
	position: absolute;
	font-size: 16px;
	color: #fff;
	bottom: 30px;
	right: 0;
}
header>a:hover{
	text-decoration: underline;
}
.search-box{
	width: 1200px;
	height: 580px;
	background-color: #fff;
	margin: 0 auto;
	padding-top: 165px;
}
.query-results-box{
	width: 1200px;
	background-color: #fff;
	margin: 0 auto;
	padding-top: 30px;
}
.query-guidance-box{
	width: 1200px;
	height: 580px;
	background-color: #fff;
	margin: 0 auto;
	padding-top: 205px;
}
.search-box>.form{
	width: 340px;
	height: auto;
	margin: 0 auto;
}
.query-results-box>.form{
	width: 500px;
	height: auto;
	margin: 0 auto;
}
.query-guidance-box>.form{
	width: 660px;
	height: auto;
	margin: 0 auto;
}
.query-guidance-box>.form>a{
	display: block;
	width: 230px;
	height: 70px;
	float: left;
	text-align: center;
	line-height: 70px;
	border-radius: 4px;
	background-color: #79aff9;
	font-size: 20px;
	color: #fff;
	margin: 0 50px;	
}
.search-box>.form>.form-input{
	width: 100%;
	height: 70px;
	margin-bottom: 20px;
}
.query-results-box>.form>.form-input{
	width: 100%;
	height: 40px;
}
.search-box>.form>.form-input>p{
	width: 140px;
	height: 50px;
	line-height: 50px;
	font-size: 18px;
	color: #333;
	float: left;
	text-align-last: justify; /* 确保最后一行也两端对齐 */
}
.query-results-box>.form>.form-input>p{
	width: 140px;
	height: 40px;
	line-height: 40px;
	font-size: 18px;
	color: #333;
	float: left;
	text-align-last: justify; /* 确保最后一行也两端对齐 */
}
.search-box>.form>.form-input>input{
	width: 200px;
	height: 50px;
	line-height: 50px;
	font-size: 18px;
	padding-left: 8px;
	border: 1px solid #999;
	color: #333;
	float: left;
	border-radius: 4px;
}
.query-results-box>.form>.form-input>input{
	width: 200px;
	height: 40px;
	line-height: 40px;
	font-size: 18px;
	padding-left: 8px;
	border: 1px solid #999;
	color: #333;
	float: left;
	border-radius: 4px;
}
.search-box>.form>.form-input>input:focus,.query-results-box>.form>.form-input>input:focus{
	outline: none;
	border: 1px solid #79aff9;
}
.search-box>.form>button,.query-results-box>.form>button{
	display: block;
	width: 160px;
	height: 50px;
	font-size: 18px;
	color: #fff;
	background-color: #2075ec;
	margin: 80px auto 0 auto;
	border-radius: 4px;
	cursor: pointer;
	border: none;
}
.search-box>.form>button:focus,.query-results-box>.form>button:focus{
	outline: none;
	background-color: #0858c7;
}
.search-box>.form>.form-input>span{
	display: block;
	width: 200px;
	height: 50px;
	line-height: 50px;
	text-align: center;
	font-size: 18px;
	color: #333;
	float: left;
}
.query-results-box>.form>.form-input>span{
	display: block;
	width: 320px;
	height: 40px;
	line-height: 40px;
	text-align: left;
	font-size: 18px;
	color: #333;
	float: left;
}
.query-results-box>.prompt{
	padding: 30px;
}
.query-results-box>.prompt>p{
	font-size: 14px;
	line-height: 21px;
	color: #79aff9;
	text-align: justify;
}
footer{
	padding: 30px 0;
	text-align: center;
	font-size: 16px;
	color: #fff;
	line-height: 28px;
}
footer>p>span{
	margin: 0 8px;
}
footer>p>a{
	font-size: 16px;
	color: #fff;
	margin: 0 8px;
}
footer>p>a:hover{
	text-decoration: underline;
}