/* Ê±´úJava - https://NowJava.com */
html, body {
	margin: 0;
	padding: 0;
	height: 100%;
}
.btn {
	display: inline-block;
	background: #6089fb;
	padding: 10px 17px;
	color: #fff;
	border-radius: 5px;
	cursor: pointer;
	margin: 80px;
}
.modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(238, 238, 238, 0.5);
	display: table;
	z-index: 100;
}
.modal .modal-content {
	font-family: 'Microsoft YaHei', sans-serif;
	display: table-cell;
	vertical-align: middle;
	text-align: center;
}
.modal .modal-content .check-box {
	display: inline-block;
	background: #fff;
	border: 1px solid #e0e0e0;
	box-shadow: 0 2px 15px #c4c4c4;
	padding: 60px;
	min-width: 400px;
	box-sizing: border-box;
}
.modal .modal-content .check-box .check-list {
	list-style: none;
	margin: 0;
	padding: 0;
}
.modal .modal-content .check-box .check-list li {
	padding: 0 50px;
	margin-bottom: 30px;
	font-size: 14px;
	line-height: 22px;
	color: #999;
	text-align: left;
}
.modal .modal-content .check-box .check-list li .check-icon {
	width: 22px;
	height: 22px;
	background: url("../images/unchecked.png") no-repeat center;
	color: #fff;
	display: block;
	float: left;
	margin-right: 23px;
	text-align: center;
}
.modal .modal-content .check-box .check-list li.checking {
	color: #ff8c00;
}
.modal .modal-content .check-box .check-list li.checking .check-icon {
	background: url("../images/checking.png") no-repeat left center;
}
.modal .modal-content .check-box .check-list li.checked {
	color: #666;
}
.modal .modal-content .check-box .check-list li.checked .check-icon {
	background: url("../images/checked.png") no-repeat left center;
}
.modal .modal-content .check-box .check-list li .check-text {
	max-width: 300px;
	white-space: normal;
	overflow: hidden;
	display: block;
	word-break: break-all;
}
.modal .modal-content .check-box .check-bottom {
	padding-top: 12px;
}
.modal .modal-content .check-box .check-bottom .check-btn {
	display: inline-block;
	width: 100%;
	height: 36px;
	line-height: 36px;
	background: #e5e5e5;
	font-size: 16px;
	color: #aaa;
	text-align: center;
	border-radius: 5px;
	cursor: not-allowed;
}
.modal .modal-content .check-box .check-bottom .check-btn.active {
	background: #6089fb;
	color: #fff;
	cursor: pointer;
}