
/* Header样式 */
.header {
    position: relative;
    padding: 10px;
    display: flex;
    align-items: center;
    width: 100%;
}

/* 左侧80x80框 */
.header-left-box {
    width: 80px;
    height: 80px;
    background-color: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    padding: 2px;
    margin-right: 10px;
    flex-shrink: 0; /* 确保左侧框不被压缩 */
    box-sizing: border-box;
}

/* 上部分图片样式 */
.header-top-image {
    width: 100%;
    height: 36px;
    display: block;
    border-radius: 3px;
    overflow: hidden;
}



/* 横线分割 */
.divider-horizontal {
    width: 100%;
    height: 1px;
    background-color: #e0e0e0;
    margin: 2px 0;
}

/* 下部分容器 */
.header-bottom-container {
    display: flex;
    width: 100%;
    height: 34px;
    gap: 2px;
}

/* 底部左右图片样式 */
.header-bottom-left,
.header-bottom-right {
    flex: 1;
    display: block;
    border-radius: 3px;
    overflow: hidden;
}

.header-bottom-left img,
.header-bottom-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 竖线分割 */
.divider-vertical {
    width: 1px;
    background-color: #e0e0e0;
}

/* 右侧区域基础样式 - 所有设备都支持滚动 */
.header-slide-container {
    flex: 1;
    height: 85px;
    overflow-x: auto; /* 启用水平滚动 */
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch; /* 优化移动端触摸滚动体验 */
}

/* 隐藏滚动条 */
.header-slide-container::-webkit-scrollbar {
    display: none;
}

/* 内容包装器 - 确保宽度足够容纳所有项目 */
.header-slide-wrapper {
    display: flex;
    height: 100%;
    width: max-content; /* 关键：确保容器宽度足够容纳所有项目 */
}

.header-slide-item {
    width: 80px;
    height: 80px;
    margin-right: 10px;
    flex-shrink: 0; /* 关键：确保每个项目保持固定大小 */
}

.header-slide-item a {
display: block;
width: 100%;
height: 100%;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
border-radius: 8px;
overflow: hidden;
}

.header-slide-item img {
width: 100%;
height: 100%;
object-fit: cover;
}

/* 主体内容样式 */
.main-content {
	padding: 10px;
	box-sizing: border-box;
	max-width: 100%;
	/* 默认情况下一排显示两个大框 */
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 15px;
}

/* 游戏分类大框 */
.game-category-box {
	background-color: #fff;
	border-radius: 10px;
	padding: 15px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

/* 手机端布局 - 一排显示一个大框，且只显示第一个大元素 */
@media (max-width: 480px) {
	.main-content {
		grid-template-columns: 1fr;
		gap: 10px;
		padding: 5px;
	}
	/* 移动端游戏项保持网格布局 */
	.game-item {
		/* 保持grid布局，不设置固定宽高 */
		box-sizing: border-box;
	}
	/* 调整移动端网格布局 */
	.game-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 5px;
	}
}

/* 游戏网格布局 - 每个大框最多9个小元素 */
.game-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
}

/* 游戏项大小设置类 - 只保留两种规格：占4个格子和占9个格子 */
.game-item.size-4 {
	grid-column: span 2;
	grid-row: span 2;
	/* 占4个小格子 (2x2) */
}

.game-item.size-9 {
	grid-column: span 3;
	grid-row: span 3;
	/* 占9个小格子 (3x3) - 最大尺寸 */
}

/* 游戏介绍区域 - 占满屏幕宽度 */
.game-description {
	width: 100%;
	max-width: 100%;
	margin: 0;
	padding: 15px;
	box-sizing: border-box;
	background-color: #fff;
	border-radius: 8px;
	margin-bottom: 15px;
	/* 在grid布局中跨越多列，确保占满整个屏幕宽度 */
	grid-column: 1 / -1;
}

.game-title {
	display: block;
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 10px;
	color: #333;
}

.rich-text-content {
	font-size: 14px;
	line-height: 1.6;
	color: #666;
}

/* 游戏项 - 基础样式 */
.game-item {
	box-sizing: border-box;
	/* 不设置固定width和height，让grid布局自动计算尺寸 */
}

.game-item a {
	display: block;
	width: 100%;
	height: 100%;
	border-radius: 8px;
	overflow: hidden;
	transition: transform 0.2s ease;
}

.game-item a:hover {
	transform: translateY(-2px);
}

.game-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 8px;
}

/* 删除了旧的九宫格大框样式，已被.game-item.size-9替代 */




/* 响应式设计已整合到上面的媒体查询中，此部分冗余已删除 */
/* 注：.main-content 默认已是块级元素，无需额外设置 display: block; */