body {
	background: rgb(255, 255, 238); margin: 0px; padding: 0px; color: rgb(35, 31, 32); overflow: auto; font-family: "΢���ź�","����",sans-serif; font-size: 14px;
}
a {
	color: rgb(0, 0, 0); font-size: 14px;
}
#main {
	width: 100%;
}
#wrap {
	margin: 10px auto 0px; width: 1100px; height: 680px; position: relative;
}
#text {
	left: 60px; top: 80px; width: 400px; height: 425px; position: absolute;
}
#code {
	font-size: 16px; display: none;
}
#clock-box {
	left: 60px; top: 550px; font-size: 28px; display: none; position: absolute;
}
#clock-box a {
	font-size: 28px; text-decoration: none;
}
#clock {
	margin-left: 48px;
}
#clock .digit {
	font-size: 64px;
}
#canvas {
	margin: 0px auto; width: 1100px; height: 680px;
}
#error {
	margin: 60px auto 0px; text-align: center; display: none;
}
.hand {
	cursor: pointer;
}
.say {
	margin-left: 5px;
}
.space {
	margin-right: 150px;
}
#tap-hint {
	display: none;
}

/* ===== 手机端适配 ===== */
@media screen and (max-width: 1100px) {
	body {
		font-size: 13px;
	}
	#wrap {
		width: 100%;
		height: auto;
		margin: 0 auto;
		display: flex;
		flex-direction: column;
		background-size: 100% auto !important;
		background-repeat: no-repeat !important;
		background-position: top center !important;
	}
	#canvas {
		order: 1;
		width: 100%;
		height: auto;
		margin: 0 auto;
		display: block;
	}
	#tap-hint {
		order: 2;
		display: block;
		margin: 8px 16px 0;
		text-align: center;
		font-size: 14px;
		color: rgb(190, 26, 37);
		letter-spacing: 2px;
		animation: hint-blink 1.6s ease-in-out infinite;
	}
	#text {
		order: 3;
		position: static;
		width: auto;
		height: auto;
		margin: 12px 16px 0;
	}
	#code {
		font-size: 13px;
		line-height: 1.7;
		text-align: center;
	}
	#clock-box {
		order: 4;
		position: static;
		margin: 10px 16px 28px;
		font-size: 15px;
		text-align: center;
	}
	#clock-box a {
		font-size: 15px;
	}
	#clock {
		margin-left: 0;
	}
	#clock .digit {
		font-size: 22px;
	}
	#error {
		margin: 20px 16px;
	}
}
@keyframes hint-blink {
	0%, 100% { opacity: 1; }
	50% { opacity: 0.35; }
}
