.sbanner{
	float: left;
	width: 100%;
}

.ssbanner{
	float: left;
	width: calc(100% - 40px);
	margin: 20px;
}

.serviceList{
	float: left;
	width: 100%;
	margin-top: 20px;
	box-sizing: border-box;
	padding: 0 20px;
}

.serviceList .item{
	float: left;
	width: 100%;
	padding-bottom: 0;
	border-bottom: 1px dashed #E6E6E6;
	margin-bottom: 10px;
	padding-bottom: 10px;
}

.serviceList .item[bindpass] {
	cursor: pointer;
}

.serviceList .item:last-child{
	border-bottom: none;
}

.serviceList .item .tit{
	float: left;
	width: calc(100% - 100px);
	font-size: 14px;
	font-weight: bold;
	color: #333333;
	line-height: 30px;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}
.serviceList .item .time{
	float: left;
	width: 100px;
	font-size: 12px;
	color: #666666;
	line-height: 30px;
	text-align: right;
}

.questionBox{
	float: left;
	width: 100%;
	margin-top: 30px;
}

.questionBox .item{
	float: left;
	width: calc((100% - 120px) / 3);
	height: 120px;
	margin-left: 30px;
	margin-bottom: 30px;
}

.questionBox .item .tit{
	float: left;
	width: 100%;
	line-height: 40px;
	text-align: center;
	background-color: #3d78e3;
	color: #FFFFFF;
}

.questionBox .item:nth-child(0) .tit{background-color: #3d78e3;}
.questionBox .item:nth-child(1) .tit{background-color: #72A7EE;}
.questionBox .item:nth-child(2) .tit{background-color: #007CE6;}
.questionBox .item:nth-child(3) .tit{background-color: #01AAEF;}
.questionBox .item:nth-child(4) .tit{background-color: #1C4587;}
.questionBox .item:nth-child(5) .tit{background-color: #275991;}
.questionBox .item:nth-child(6) .tit{background-color: #005395;}
.questionBox .item:nth-child(7) .tit{background-color: #3d78e3;}

.questionBox .item .val{
	float: left;
	width: 50%;
	box-sizing: border-box;
	padding: 0 10px;
	line-height: 40px;
	text-align: center;
	font-size: 14px;
	text-overflow: ellipsis;
	overflow: hidden;
	color: #666666;
	white-space: nowrap;
}

.mask {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9;

	width: 100vw;
	height: 100vh;
	background-color: rgba(0, 0, 0, .8);

	display: none;
	justify-content: center;
	align-items: center;
}

.passBox{
	max-width: 90vw;
	box-sizing: border-box;
	padding: 15px;
	border-radius: 4px;
	background-color: #FFFFFF;
}

.passBox input[type=password]{
	float: left;
	width: 150px;
	height: 40px;
	box-sizing: border-box;
	background-color: #F2F2F2;
	border: 1px solid #EAEAEA;
	border-radius: 4px;
	font-size: 14px;
	color: #666666;
	padding: 0 15px;
}

.passBox .submit{
	float: left;
	padding: 0 15px;
	margin-left: 15px;
	background-color: #72A7EE;
	border-radius: 4px;
	line-height: 40px;
	font-size: 14px;
	color: #FFFFFF;
	cursor: pointer;
}

.passBox .close{
	float: left;
	padding: 0 15px;
	margin-left: 15px;
	background-color: #FF695E;
	border-radius: 4px;
	line-height: 40px;
	font-size: 14px;
	color: #FFFFFF;
	cursor: pointer;
}

@media (max-width: 480px) {
	.serviceList{
		padding: 0;
	}
	
	.sbanner, .ssbanner{
		display: none;
	}
	
	.questionBox .item{
		float: left;
		width: calc((100% - 15px) / 2);
		margin-left: 15px;
		margin-bottom: 15px;
	}
	
	.questionBox .item:nth-child(2n+1){
		margin-left: 0;
	}
}