body {
	font-family: MicrosoftYaHei-Bold;
	margin: 0;
	padding: 0;
	background: #fff !important;
}

:root {
	--theme-color: #6c5ce7;
	/* 主要颜色 */

}

.top_layout,
.search_container {
	height: 14vw;
	background-color: var(--theme-color);
	display: flex;
	justify-content: center;
	align-items: center;
}

.search_layout {
	position: absolute;
	left: 0;
	top: 0;
	width: 100vw;
}

.search_input_layout {
	display: flex;
	flex: 1;
	flex-direction: row;
	align-items: center;
	background-color: #fff;
	height: 9vw;
	-webkit-border-radius: 15px;
	-moz-border-radius: 15px;
	border-radius: 18px;
	overflow: hidden;
	margin: 0 4vw;
}

.search_input_layout input {
	display: flex;
	height: 100%;
	width: 100%;
	font-size: 13px;
	color: #999;
	padding-left: 20px;
	border-width: 0;
	outline: none;
}

.search_input_layout a {
	display: flex;
	justify-content: center;
	align-items: center;
}

.close_search_icon {
	width: 4vw;
	height: 6vw;
	margin-left: 3vw;
}

.close_search_icon>img {
	width: 100%;
	height: 100%;
}

.search_btn>img {
	width: 9vw;
	height: 9vw;
}

.top_layout .menu_icon {
	width: 8vw;
	height: 8vw;
}

.top_layout .game_title {
	width: 76vw;
	text-align: center;
	font-size: 20px;
	color: white;
	font-weight: bold;
}

.top_layout .menu_icon img {
	width: 100%;
	height: 100%;
}

.top_layout .search_icon {
	width: 8vw;
	height: 8vw;
}

.top_layout .search_icon img {
	width: 100%;
	height: 100%;
}

.menu_layout {
	position: fixed;
	top: 0;
	left: 0;
	height: 100vh;
	width: 100vw;
	background-color: rgba(0, 0, 0, .58);
	z-index: 10000
}

.menu_container {
	width: 44vw;
	height: 100%;
	background: #fff;
	display: flex;
	flex-direction: column;
}

.menu_container .close_img {
	width: 9vw;
	height: 9vw;
	margin-left: 1.4rem;
	margin-top: 10vw;
}

.menu_container .close_img img {
	width: 100%;
	height: 100%;
}

.cate_list {
	display: flex;
	flex-direction: column;
	padding: 1.5rem;
}

.cate_list a {
	height: 1.5rem;
	line-height: 1.5rem;
	margin-bottom: 1.5rem;
	font-size: 1.25rem;
	font-weight: 400;
	color: #333;
	position: relative;
}

.cate_list a::after{
	display:block;
	content: '';
	position: absolute;
	left: -16px;
	top: 50%;
	transform: translateY(-50%);
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: linear-gradient(to bottom, #6C5CE7, #8E44AD);
}

.main_item {
	background: #F8F4F9;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
	margin: 2vw 1vw;
}

.item_title {
	height: 10vw;
	display: flex;
	align-items: center;
	padding: 0 1vw;
}

.item_title img {
	width: 7vw;
	height: 7vw;
	margin: 0 0.3125rem;
}

.item_title h4 {
	width: 80vw;
	font-family: MicrosoftYaHei-Bold;
	font-weight: bold;
	font-size: 14px;
	padding-left: 5px;
}

.item_title a {
	width: 9vw;
	height: 9vw;
}

.table_container {
	display: flex;
	text-align: center;
	/* 标题居中 */
	padding: 0 2vw;
}

.small-images {
	display: grid;
	/* 使用网格布局 */
	grid-template-columns: repeat(3, 1fr);
	/* 两列布局 */
	column-gap: 2vw;
	/* 小图之间的间距 */
}

.small-images a {
	display: flex;
	flex-direction: column;
	/* 使小图和标题垂直排列 */
	text-align: center;
	/* 标题居中 */
}

.small-images img {
	width: 100% !important;
	/* 小图宽度占满容器 */
	height: 100% !important;
	/* 固定高度 */
	object-fit: fill;
	/* 保持图像比例，裁剪超出部分 */
	border-radius: 10px;
	/* 添加圆角 */
}

.small-images a .game_img_block {
	width: 30vw;
	height: 30vw;
}

.title {
	margin-top: 1px;
	/* 标题与图片的间距 */
	max-width: 30vw;
	margin-bottom: 5px;
	font-size: 12px;
	color: #363636;
	white-space: nowrap;
	/* 不换行 */
	overflow: hidden;
	/* 超出部分隐藏 */
	text-overflow: ellipsis;
	/* 超出部分显示省略号 */
}

.top_layout {
	height: 14vw;
	background-color: var(--theme-color);
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0 1rem;
}

.top_layout .icon_back {
	width: 4vw;
	height: 6vw;
	position: absolute;
	left: 5vw;
}

.top_layout .game_title {
	font-size: 20px;
	color: white;
	font-weight: bold;
}

.rec_layout {
	background: #F8F4F9;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
	margin-top: 2vw;
}

.game_info {
	position: relative;
	width: 100%;
	background-color: #F8F4F9;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 5vw 0;
}

.detail_img {
	position: relative;
	width: 40vw;
	height: 40vw;
	border-radius: 10px;
}

.star_row {
	display: flex;
	flex-direction: row;
	width: 40vw;
	height: 15vw;
	justify-content: space-between;
	margin-top: 3vw;
}

.rate_col,
.play_col {
	position: relative;
	height: 12vw;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.star_row img {
	width: 5vw;
	height: 5vw;
}

.star_row p {
	font-size: 10px;
	line-height: 12px;
	font-weight: bold;
	margin-top: 5px;
}

.play_button {
	width: 45vw;
	text-align: center;
	background-color: var(--theme-color);
	border-radius: 10px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
	font-size: 20px;
	line-height: 50px;
	font-weight: 500;
	color: rgb(255 255 255);
	display: flex;
	justify-content: center;
	align-items: center;
}

.play_button img {
	width: 8vw;
	height: 8vw;
	margin-right: 5px;
}

.desc_layout {
	padding: 4vw;
	margin-top: 10px;
}

.desc_layout p {
	font-size: 12px;
	line-height: 18px;
	margin-top: 10px;
}

.other_layout {
	padding: 4vw;
}

.list_item {
	width: 100%;
	height: 20vw;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	margin-top: 10px;
	background-color: #F8F4F9;
}

.game_img_block {
	width: 20vw;
	height: 20vw;
}

.game_img_block img {
	width: 20vw;
	height: 20vw;
	border-radius: 5px;
	box-shadow: 0 3px 6px #adadad;
}

.item_text {
	flex: 1;
	margin-left: 20px;
}

.item_name {
	font-weight: 400;
	color: #000;
	line-height: 15px;
	font-size: 12px;
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
}

.item_count {
	font-size: 10px;
	line-height: 15px;
	font-family: PingFangSC-Regular, PingFang SC;
	font-weight: 400;
	color: #ff9c60;
	margin-top: 15px;
}

.btn_play {
	width: 15vw;
	height: 6vw;
	line-height: 6vw;
	text-align: center;
	background-color: var(--theme-color);
	border-radius: 10px;
	font-size: 16px;
	color: #fff;
	font-weight: 500;
}

.search_list {
	height: 100%;
	display: flex;
	align-items: center;
	padding: 10px;
	flex-direction: column;
}

.cate_list_result {
	display: flex;
	flex-direction: column;
	padding: 10px;
}

.carousel {
	position: relative;
	width: 94vw;
	/* 设置轮播图最大宽度 */
	max-width: 94vw;
	margin: auto;
	/* 居中 */
	overflow: hidden;
	/* 隐藏溢出的部分 */
	margin-top: 2vw;
}

.carousel-images {
	display: flex;
	/* 使用 flexbox 布局 */
	transition: transform 0.5s ease;
	/* 添加过渡效果 */
}

.carousel-images img {
	width: 100%;
	/* 图片宽度 */
	height: 50vw;
	/* 图片高度 */
}

.indicators {
	position: absolute;
	/* 绝对定位 */
	bottom: 20px;
	/* 距离底部的距离 */
	left: 50%;
	/* 居中对齐 */
	transform: translateX(-50%);
	/* 调整位置使其真正居中 */
	display: flex;
	/* 使用 flexbox 布局 */
}

.indicator {
	width: 10px;
	/* 点的宽度 */
	height: 10px;
	/* 点的高度 */
	margin: 0 5px;
	/* 点之间的间距 */
	background-color: #ccc;
	/* 默认点颜色 */
	border-radius: 50%;
	/* 圆形 */
	cursor: pointer;
	/* 鼠标指针样式 */
}

.indicator.active {
	background-color: var(--theme-color);
	/* 当前点的颜色 */
}