html {
	height: 100%;
}
::-webkit-scrollbar {
	/*改变纵向滚动条宽度*/
	width: 1px;
}

::-webkit-scrollbar-track {
	/*改变滚动条轨道颜色*/
	border-radius: 10px;
	background-color: #f0f0f0;
	-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

::-webkit-scrollbar-thumb {
	/*改变滚动条滑轨相关的样式*/
	border-radius: 10px;
	background-color: #ccc;
}

/* 移入鼠标效果 */

::-webkit-scrollbar-thumb:hover {
	border-radius: 10px;
	background-color: #a3a3a3;
	-webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
}
body {
	margin: 0;
	padding: 0;
	background: #ffe;
	font-size: 14px;
	font-family: "微软雅黑", "宋体", sans-serif;
	color: #231f20;
	overflow: auto;
}
a {
	color: #000;
	font-size: 14px;
}
#main {
	width: 100%;
}
#wrap {
	position: relative;
	margin: 0 auto;
	width: 1100px;
	height: 680px;
	margin-top: 10px;
}
#text {
	width: 400px;
	height: 425px;
	left: 60px;
	top: 80px;
	position: absolute;
}
#code {
	display: none;
	font-size: 16px;
}
#clock-box {
	position: absolute;
	left: 60px;
	top: 550px;
	font-size: 28px;
	display: none;
	font-family: 'Courier New', Courier, monospace;
}
#clock-box a {
	font-size: 28px;
	text-decoration: none;
}
#clock {
	margin-left: 48px;
}
#clock .digit {
	font-size: 64px;
}
#canvas {
	margin: 0 auto;
	width: 1100px;
	height: 680px;
}
#error {
	margin: 0 auto;
	text-align: center;
	margin-top: 60px;
	display: none;
}
.hand {
	cursor: pointer;
}
.say {
	margin-left: 5px;
	font-family: "Sofia", sans-serif;
}
.space {
	margin-right: 150px;
}
.album {
	width: 100%;
	padding: 0;
	margin: 0;
	list-style: none;
	display: flex;
	justify-content: center;
}
.album a {
	text-decoration: none;
	font-size: 24px;
	color: black;
	font-family: 'Courier New', Courier, monospace;
}
