@charset "utf-8";

/* 防止用户自定义背景颜色对网页的影响 */
html{
  color:#333333;background:#fff;
}
/* 内外边距重置 */
*{
  margin:0;padding:0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
body,html{
  font-family:Arial,'Microsoft Yahei', '微软雅黑';
  font-size: 14px;
  word-wrap: break-word;
  color: #333333;
  line-height: 1.5;
}
.green{
	color: #049973!important;
}
.blue{
	color: #3972B8!important;
}
.grey{
	color: #909090!important;
}

.container{
	padding: 0 15px;
	margin: 0 auto;
	width: 1260px;
}
/*@media screen and (max-width: 1260px) {*/
	.container{
		width: 100%;
	}
/*}*/
.full-screen{
	width: 100%;
	height: 100vh;
	overflow: hidden;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

.header{
	height: 100px;
	background: #fff;
	padding: 20px 0;
}
.header a:hover{
	color: #333;
}
.header .logo{
	display: flex;
	display: -webkit-flex;
	-ms-align-items: center;
	align-items: center;
}
.header .logo-img{
	display: inline-block;
	position: relative;
	padding-right: 30px;
	margin-right: 30px;
}
.header .logo-img:after{
	content: "";
	position: absolute;
	right: 0;
	top: 10px;
	bottom: 10px;
	width: 2px;
	background: #dcdcdc;
}
.header .logo-img img{
	height: 60px;
}

.header span{
	font-size: 30px;
}

.footer{
	position: absolute;
	bottom: 80px;
	left: 0;
	right: 0;
}
.footer ul{
	display: flex;
	display: -webkit-flex;
	justify-content: center;
	align-items: center;
}
.footer ul li:nth-of-type(2){
	padding: 0 70px;
	margin: 0 70px;
	position: relative;
}
.footer ul li:nth-of-type(2):before,.footer ul li:nth-of-type(2):after{
	content: "";
	position: absolute;
	left: -1px;
	top: 8px;
	bottom: 8px;
	width: 2px;
	background: #fff;
}
.footer ul li:nth-of-type(2):after{
	left: auto;
	right: -1px;
}
.footer ul>li img{
	width: 175px;
}

.footer ul>li span{
	display: inline-block;
	padding-left: 20px;
	font-size: 16px;
	color: #fff;
	font-weight: bold;
}
.query{
	position: absolute;
	left: 0;
	right: 0;
	top: 100px;
	bottom: 100px;
	display: flex;
	display: -webkit-flex;
	-ms-align-items: center;
	align-items: center;
}
.query-container{
	width: 520px;
	background: rgba(255,255,255,.85);
	padding: 50px 40px;
	border-radius: 10px;
	float: right;
	margin-right: 30px;
}
.query-container .query-title{
	font-size: 30px;
	font-weight: bold;
	margin-bottom: 50px;
}
.query-container .input-block{
	position: relative;
}
.query-container .layui-input{
	height: 60px;
	padding-left: 60px;
	border: 0;
	border-radius: 5px;
	font-size: 18px;
}
.query-container .form-label{
	text-align: center;
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 60px;
	display: flex;
	display: -webkit-flex;
	-ms-align-items: center;
	align-items: center;
	justify-content: center;
}
.query-container .form-label .fa{
	color: #1C91FF;
	font-size: 30px;
}

.query-container .layui-btn{
	width: 100%;
	height: 60px;
	line-height: 60px;
	font-size: 20px;
	font-weight: bold;
	letter-spacing: 4px;
	border-radius: 5px;
	margin-top: 20px;
}

.results-query-title-container{
	margin-top: 40px;
}
.results-query-title{
	height: 50px;
	line-height: 50px;
	background: #fff;
	border-radius: 5px;
	margin-bottom: 20px;
}
.results-query-title span{
	display: block;
	font-size: 18px;
	padding-left: 20px;
	position: relative;
}
.results-query-title span:after{
	content: "";
	position: absolute;
	left: 0;
	top: 10px;
	bottom: 10px;
	width: 4px;
	background: #4aa2ec
}

.results-query{
	position: absolute;
	left: 0;
	right: 0;
	top: 210px;
	bottom: 60px;
	overflow: hidden;
	display: flex;
	-ms-align-items: stretch;
	align-items: stretch;
}
.results-query .container{
	position: relative;
}
.results-query-container{
	background: #fff;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 15px;
	right: 15px;
	padding: 20px 0;
}
.results-query-container .scroll-box{
	position: absolute;
	top: 20px;
	bottom: 20px;
	left: 8px;
	right: 8px;
	padding: 0 17px;
}

.results-query .layui-table{
	margin: 20px 0;
}
.results-query .layui-table:first-child,.results-query .layui-table:last-child{
	margin: 0;
}
.layui-table td, .layui-table th{
	text-align: center;
}
.layui-table th{
	color: #333;
}

.layui-table thead tr{
	background: #fff;
}

/*@media screen and (max-width: 1400px) {*/
	.header{
		height: 60px;
		padding: 10px 0;
	}
	.header .logo-img img{
		height: 40px;
	}
	.header span{
		font-size: 22px;
	}
	.footer{
		bottom: 30px;
	}
	.footer ul>li img{
		width: 120px;
	}
	.footer ul li:nth-of-type(2){
		padding: 0 50px;
		margin: 0 50px;
	}
	.query-container{
		width: 400px;
		padding: 30px;
	}
	.query-container .query-title{
		font-size: 24px;
		margin-bottom: 30px;
	}
	.query-container .layui-input{
		height: 45px;
		padding-left: 45px;
		font-size: 14px;
	}
	.query-container .form-label{
		width: 45px;
	}
	.query-container .form-label .fa{
		font-size: 20px;
	}
	.query-container .layui-btn{
		height: 45px;
		line-height: 45px;
		font-size: 16px;
		/*background-color: #0362E2;*/
	}
	.query{
		top: 60px;
		bottom: 60px;
	}
	.results-query{
		top: 170px;
		bottom: 40px;
	}
/*}*/

.nicescroll-cursors{
	cursor: pointer;
}
.layui-form-label{
	width: 180px !important;
}
.layui-input-block{
	margin-left: 180px;
}
@media screen and (max-width: 991px) and (min-width: 768px){
	.footer ul li:nth-of-type(2){
		padding: 0 30px;
		margin: 0 30px;
	}
}
@media screen and (max-width: 767px){
	.query{
		bottom: 100px;
	}
	.query-container{
		width: 100%;
		margin-right: 0;
		margin: 0 auto;
		float: none;
	}
	.footer ul{
		flex-wrap: nowrap;
	}
	.footer ul li{
		width: 33.33333%;
		text-align: center;
	}
	.footer ul>li img{
		width: 100px;
	}
	.footer ul>li span{
		padding-left: 0;
		font-size: 14px;
		text-align: center;
		display: block;
		margin-top: 10px;
	}
	.footer ul li:nth-of-type(2):before, .footer ul li:nth-of-type(2):after{
		top: 5px;
		bottom: 5px;
		width: 1px;
	}
	.header span{
		display: none;
	}
	.header .logo-img{
		margin-right: 0;
		text-align: center;
		padding-right: 0;
		width: 100%;
	}
	.header .logo-img:after{
		background: none;
	}
	.query-container .query-title{
		font-size: 20px;
	}
	.query-container .layui-btn{
		margin-top: 0;
	}
	.footer ul li:nth-of-type(2){
		margin: 0;
		padding: 0;
	}
}