body {
	font-family: MicrosoftYaHei-Bold;
	margin: 0;
	padding: 0;
	background: #FFF9EA !important;
}

:root {
	--theme-color: #6c5ce7;
	/* 主要颜色 */

}

.top_layout,
.search_container {
	height: 14vw;
	/* background-color: var(--theme-color); */
	background-color: #FFF9EA;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 10px;
}

.search_layout {
	position: absolute;
	left: 0;
	top: 0;
	width: 100vw;
	background-color: #FFF9EA;
}

.search_input_layout {
	display: flex;
	flex: 1;
	flex-direction: row;
	align-items: center;
	background-color: #f5f5f5;
	height: 14vw;
	-webkit-border-radius: 15px;
	-moz-border-radius: 15px;
	border-radius: 25px;
	overflow: hidden;
	margin: 0 4vw;
	border: 1px solid #ddd;
}

.search_input_layout input {
	display: flex;
	height: 100%;
	width: 100%;
	font-size: 14px;
	color: #666;
	padding-left: 20px;
	border-width: 0;
	outline: none;
	background-color: #f5f5f5;
}

.search_input_layout a {
	display: flex;
	justify-content: center;
	align-items: center;
}

.close_search_icon {
	width: 7vw;
	height: 7vw;
	margin-left: 3vw;
}

.close_search_icon>img {
	width: 100%;
	height: 100%;
}

.search_btn>img {
	width: 9vw;
	height: 9vw;
	margin-right: 10px;
}

.top_layout .menu_icon {
	width: 8vw;
	height: 8vw;
}

.top_layout .game_title {
	width: 70vw;
	/* height: 14vw;
	line-height: 14vw; */
	text-align: center;
	font-size: 24px;
	/* color: white; */
	font-weight: bold;
	/* background-color: #000; */
	/* border-radius: 15px 25px 25px 15px; */
	position: relative;
}

.top_layout .menu_icon img {
	width: 100%;
	height: 100%;
}

.top_layout .search_icon {
	position: absolute;
	width: 11vw;
	height: 11vw;
	padding: 5px;
	box-sizing: border-box;
	right: 4px;
	top: 50%;
	transform: translateY(-50%);
	background-color: black;
	border-radius: 50%;
	border: 3px solid #fff;
	display: flex;
	justify-content: center;
}

.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: #010000;
	position: relative;
}

.main_item {
	/* background: #F8F4F9; */
	border-radius: 12px;
	overflow: hidden;
	/* box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05); */
	margin: 2vw 1vw;
	padding: 0 1rem;
	box-sizing: border-box;
}

.item_title {
	height: 10vw;
	display: flex;
	justify-content: space-between;
	padding: 0 1vw;
}

.item_title .dashSty {
	width: 60vw;
	height: 2px;
	background: linear-gradient(to right, #C7C3BA 50%, transparent 50%);
	background-size: 10px 2px;
	/* 控制虚线长度和间隔 */
	background-repeat: repeat-x;
	margin: 15px 8px;
}

.item_title img {
	width: 6vw;
	height: 6vw;
}

.item_title h4 {
	/* width: 80vw; */
	width: auto;
	font-family: MicrosoftYaHei-Bold;
	font-weight: bold;
	font-size: 16px;
	padding-left: 5px;
	color: #010000;
}

.item_title a {
	width: 9vw;
	height: 9vw;
}

.table_container {
	/* 标题居中 */
	padding: 0 2vw;
}

.small-images {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	column-gap: 3vw;
}

.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: 25vw;
	height: 25vw;
}

.title {
	margin-top: 5px;
	/* 标题与图片的间距 */
	max-width: 25vw;
	margin-bottom: 5px;
	font-size: 12px;
	color: #28251C;
	white-space: nowrap;
	/* 不换行 */
	overflow: hidden;
	/* 超出部分隐藏 */
	text-overflow: ellipsis;
	/* 超出部分显示省略号 */
}

.top_layout {
	height: 14vw;
	/* background-color: var(--theme-color); */
	display: flex;
	align-items: center;
	padding: 0 2rem;
}

.top_layout .icon_back {
	width: 7vw;
	height: 7vw;
	position: absolute;
	left: 5vw;
}


.rec_layout {
	background: #fff;
	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: #fff;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 5vw 0;
}

.game_header {
	position: relative;
	padding: 0 8vw;
	width: 100%;
	overflow: hidden;
	box-sizing: border-box;
	margin-bottom: 20px;
}

.detail_img {
	/* position: relative; */
	width: 40vw;
	height: 40vw;
	float: left;
	margin-right: 16px;
	/* 图片与文字间距 */
	width: 150px;
	/* 自定义宽度 */
	/* height: auto; */
	border-radius: 10px;
}

.star_row {
	position: absolute;
	top: 30vw;
	left: 8vw;
	width: 40vw;
	padding: 0 10px;
	background-color: rgba(255, 255, 255, 0.7);
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	box-sizing: border-box;
}

.rate_col,
.play_col {
	position: relative;
	/* height: 12vw; */
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.star_row img {
	width: 6vw;
	height: 7vw;
}

.star_row p {
	font-size: 10px;
	line-height: 12px;
	font-weight: bold;
}

.play_button {
	width: 45vw;
	text-align: center;
	/* background-color: var(--theme-color); */
	background-color: #010000;
	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: #fff;
}

.game_img_block {
	width: 20vw;
	height: 20vw;
}

.game_img_block img {
	width: 20vw;
	height: 20vw;
	border-radius: 10px;
	box-shadow: 0 3px 6px #adadad;
	border: 1px solid #010000;
}

.item_text {
	flex: 1;
	margin-left: 20px;
}

.item_name {
	font-weight: 400;
	color: #28251C;
	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); */
	background-color: #010000;
	border-radius: 10px;
	font-size: 16px;
	color: #fff;
	font-weight: 500;
	margin-right: 10px;
}

.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);
	/* 当前点的颜色 */
}