*{
	margin: 0;
	padding: 0;
}
body {
	background: #f1f2f3;
	width: 100%;
}
.container{
	width: 1200px;
	margin: 20px auto;
}
.title {
	font-size: 28px;
	color: rgba(9, 109, 222, 1);
	text-align: center;
	margin: 30px auto;
}

/*输入查询*/
.box {
	height: 60px;
	width: 100%;
	overflow: hidden;
}
.box input {
	box-sizing: border-box;
	float: left;
	width: 80%;
	height: 100%;
	padding: 0 20px;
	font-size: 14px;
	background: #fff;
	border: 1px solid #B7DFFF;
	border-top-left-radius: 5px;
	border-bottom-left-radius: 5px;
	outline: none;
}
.box button {
	float: left;
	width: 20%;
	height: 100%;
	background: #096DDE;
	font-size: 18px;
	font-weight: bold;
	color: #fff;
	border: 0 none;
	cursor: pointer;
	border-top-right-radius: 5px;
	border-bottom-right-radius: 5px;
}
.box button:hover {
	background: #526C7B;
}
/*查询结果*/
#result{
	height: 50px;
	line-height: 50px;
}
#result i{
	display: inline-block;
	width: 16px;
	height: 16px;
	background: #5cb85c;
	border-radius: 50%;
	margin-right: 6px;
	float: left;
	position: relative;
	top: 15px;
}
#result p{
	color: #5cb85c;
	font-size: 16px;
	font-weight: bold;
}
#result .code_202 i{
	background: #F56C6C;
}
#result .code_202 span{
	color: #F56C6C;
}
#result .code_201 i{
	background: #909399;
}
#result .code_201 span{
	color: #909399;
}
.examp {
	margin: 20px 0;
}
.examp h3 {
	margin-bottom: 10px;
	color: #333;
}
.examp p {
	margin-bottom: 10px;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	background: #ffffff;
	padding: 15px;
	font-size: 13px;
	color: #555;
	line-height: 24px;
}
.foot {
	width: 100%;
	font-size: 12px;
	padding: 10px 0;
	color: #666;
	text-align: center;
}
.foot p {
	margin: 0;
}
