html,
body {
	position: relative;
	height: 100%;
	overflow: hidden;
}
:root {
	--base-font-size: 16px;
	font-size: var(--base-font-size);
}
body {

	display: flex;
	flex-direction: column;
	min-width: unset;
}

.home-logo {
	text-align: center;
}
.home-logo img {
	width: 25rem;
}
.boxlist {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-auto-rows: auto;
	gap: 4rem;
	margin-top: 3rem;
}

.boxlist .boxli {
	position: relative;
	text-align: center;
	transition: all 0.5s linear;
	width: 14.0625rem;
	height: 21.125rem;
	overflow: hidden;
	background: url(../img/game-border.png?v2) center no-repeat;
	background-size: 100%;
}
.boxlist .boxli .box-title {
	font-weight: bold;
	color: #fddf6b;
	font-size: 1.1rem;
	height: 2.8rem;
	line-height: 3.5rem;
	overflow: hidden;
	padding: 0.9375rem;
}
.boxlist .boxli .box-title span {
	display: inline-block;
	/* background-image: linear-gradient(
		to bottom,
		rgb(255, 243, 9),
		rgb(255, 243, 9) 50%,
		#fff 50%
	); */
	background-image: -webkit-gradient(
		linear,
		0 0,
		0 bottom,
		from(rgb(255, 255, 255)),
		to(rgb(255, 243, 9))
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
.boxlist .boxli a {
	text-decoration: none;
}
.boxlist .boxli:hover {
	transform: scale(1.05);
}
.boxlist .boxli .box-img img {
	width: 86%;
	border-radius: 15px;
}
.boxlist .boxli .box-content {
	padding: 8px;
	font-size: 1rem;
}
.boxlist .boxli .box-content p {
	font-weight: bold;
	margin: 0px;
}
.boxlist .boxli .box-content p:first-child {
	color: #fddf6b;
	font-size: 1.1rem;
}
.boxlist .boxli .box-content .time {
	color: #fff;
	padding: 0.5rem;
	font-size: 0.8125rem;
	white-space: nowrap;
}
.boxlist .boxli .btn {
	background: url(../img/guide-btn.webp) no-repeat center;
	color: #fff;
	padding: 0.5rem 1.5rem;
	margin: auto;
	margin-top: 0.3125rem;
	width: 8.8125rem;
	display: block;
	height: 2.5625rem;
	border: none;
}
.boxlist .boxli:nth-child(2) .btn {
	background: url(../img/guide-btn-2.webp) no-repeat center;
}
.boxlist .boxli:nth-child(3) .btn {
	background: url(../img/guide-btn-3.webp) no-repeat center;
}
.boxlist .boxli .box-content .btn {
	background-size: cover;
}

.footer {
	text-align: center;
	margin: 0px;
	line-height: 1rem;
	margin-top: 3rem;
	color: #fff;
	text-shadow: 0 0 4px #434343, 0 0 10px rgb(130 130 130);
}
.footer a {
	color: #fddf6b;
}
.home-warp {
	position: relative;
	z-index: 1;max-width: 50rem;	margin: auto;
}

.container {
	flex: 1;
	background: url(../img/guide.webp?v3) no-repeat center bottom;
	background-size: cover;
}

.foot-warp{background-color: #252525;}
.foot-warp .foot {
	padding: 2px;
}

@keyframes yd {
	to {
		transform: translate(-1333px);
	}
}


@media screen and (max-width: 1920px) {
.home-logo img {width: 360px;}
.boxlist {margin-top: 1rem;}
}

@media screen and (max-width: 768px) {
html, body{overflow: auto;}
.boxlist {grid-template-columns: repeat(1, 1fr);  gap: 1rem;margin-top: 1rem;}
.foot-warp{margin-top:1rem}
.boxlist .boxli{margin: auto;}
body {background: url(../img/guide-m.webp) no-repeat center fixed;background-size: cover;}
.home-logo img{width: 16rem;}
}
