


#wrapper {
	position: relative;
	margin: 0 auto;
	width: 100%;
	max-width: 500px;
	min-height: 120px;
	text-align: center;
	padding: 20px;
	background: rgba(255, 255, 255, 0.9);
	border-radius: 10px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

#start,
#stop {
	display: inline-block;
	padding: 10px 20px;
	outline: 0;
	border: 3px solid #ddd;
	border-radius: 25px;
	background: rgba(0, 179, 65, 0.8);
	color: #fff;
	vertical-align: middle;
	font-size: 16px;
	font-family: "Microsoft YaHei";
	cursor: pointer;
	transition: .5s;
	-webkit-appearance: none;
	max-width: 200px;
	margin: 0 auto;
}

#start:hover {
	border: 3px solid #ccc;
	background: rgba(0, 140, 49, 0.9)
}

#cfg {
	color: #666;
	font-size: 14px;
	cursor: pointer
}

#cx {
	color: #666;
	text-decoration: none;
	font-size: 14px
}

#cfg:hover {
	color: #00b341
}

#cx:hover {
	color: #00b341
}

#list {
	padding: 5px;
	width: 96%;
	height: 170px;
	border-radius: 3px;
	font-size: 13px;
	font-family: "Microsoft YaHei";
	line-height: 17px
}

.temp {
	position: absolute;
	z-index: -1;
	color: #777
}

#popbox {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	margin: 0;
	padding: 0 10px;
	width: 90%;
	max-width: 300px;
	min-height: 290px;
	border: 0 solid #666;
	-webkit-border-radius: 7px;
	-moz-border-radius: 7px;
	border-radius: 7px;
	background: #fff;
	-webkit-box-shadow: 0 0 22px #ccc;
	-moz-box-shadow: 0 0 22px #ccc;
	box-shadow: 0 0 22px #ccc
}

#ok {
	margin-top: 4px;
	padding: 6px 0;
	width: 100%;
	border: none;
	border-radius: 3px;
	background-color: #00b341;
	color: #fff;
	font-size: 15px;
	cursor: pointer
}

.copyright {
	position: absolute;
	bottom: 0;
	padding: 10px .5%;
	width: 99%;
	background-color: #e9e9e9;
	color: #777;
	text-align: center;
	font-size: 13px
}

.copyright p {
	margin-bottom: 10px;
	padding: 0
}

.copyright span.cp {
	opacity: .65
}

.copyright a {
	color: #777;
	text-decoration: none
}

.copyright a:hover {
	text-decoration: underline
}

/* 响应式设计 - 手机端适配 */
@media (max-width: 768px) {
	#wrapper {
		width: 100%;
		padding: 15px;
		margin: 0 auto;
	}
	
	.main-content {
		padding: 15px;
		margin-top: 70px;
	}
	
	#start,
	#stop {
		padding: 8px 16px;
		font-size: 14px;
		max-width: 180px;
	}
	
	#what {
		font-size: 20px !important;
		margin-bottom: 15px !important;
	}
	
	#cfg {
		font-size: 12px;
	}
	
	#popbox {
		width: 95%;
		max-width: 280px;
		padding: 10px;
	}
	
	#list {
		height: 140px;
		font-size: 12px;
	}
	
	#ok {
		font-size: 14px;
		padding: 8px 0;
	}
}

/* 小屏幕手机适配 */
@media (max-width: 480px) {
	#start,
	#stop {
		padding: 6px 14px;
		font-size: 13px;
		max-width: 160px;
	}
	
	#what {
		font-size: 18px !important;
	}
	
	#popbox {
		max-width: 250px;
	}
}