body {
	background-image: url(../pic/bg.jpg);
	background-repeat: no-repeat;
	min-height: 100vh;
	position: relative;
	overflow: hidden;
}
* {
	margin: 0;
	padding: 0;
}
button,
input,
textarea,
select,
a:focus {
	outline: none;
}
/* 查询页面 */
.box {
	width: 380px;
	/* height: 218px; */
	border-radius: 20px;
	background-color: #fff;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateX(-50%) translateY(-50%);
	padding: 25px 30px;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
}
.title {
	color: #333;
	font-size: 18px;
	text-align: center;
	margin-bottom: 25px;
}

.input {
	width: 100%;
	height: 46px;
	border-radius: 12px;
	border-color: #eee;
	box-sizing: border-box;
	border-style: solid;
	outline: none;
	font-size: inherit;
	margin-bottom: 25px;
	border: 1px solid #eee;
	text-indent: 1em;
}
.btn {
	height: 48px;
	background-color: #fb7299;
	border-color: #fb7299;
	cursor: pointer;
	border: 1px solid transparent;
	border-radius: 12px;
	font-size: 16px;
	color: #fff;
	width: 100%;
	font-weight: bold;
}

/* 查询结果页面 */
.res > div {
	/* height: 291px; */
	margin-bottom: 10px;
	height: 38px;
	padding-left: 30px;
}
/* 游戏截图 */
.picture {
	width: 95%;
	max-height: 80vh;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateX(-50%) translateY(-50%);
	background-color: #f5f7f9;
	border-radius: 0 0 20px 20px;
	overflow-y: scroll;
	padding: 0 10px;
	padding-top: 51px;
}

.tl {
	width: 100%;
	text-align: center;
	height: 51px;
	background-color: #fff;
	line-height: 51px;
	color: #333;
	font-size: 17px;
	font-weight: 400;
	position: absolute;
	top: 0;
	left: 0;
}

.back {
	display: block;
	position: absolute;
	top: 0;
	right: 20px;
	cursor: pointer;
	height: 51px;
	line-height: 51px;
	font-size: 16px;
}

.itembox {
	box-sizing: border-box;
	border-radius: 10px;
	border: 1px solid #ccc;
	overflow: hidden;
	background-color: #fff;
	/* margin: 0 20px 0; */
}

.itembox > div {
	width: 90%;
	margin: 10px auto;
}
.itemtl {
	font-size: 18px;
	color: #333;
	margin-bottom: 12px;
}
.time {
	color: #999;
	font-size: 12px;
}

.item {
	padding: 15px;
}

.change {
	float: right;
	margin-top: 20px;
	cursor: pointer;
}
