body {
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	line-height: 1.6;
	margin: 0;
	padding: 0;
	background: #232931;
	/* 背景颜色 */
	color: #6b7386;
	/* 文本颜色 */
	overflow-x: hidden;
	/* 防止水平滚动条出现 */
	background-image: url('https://t.mwm.moe/pc');
	background-size: cover;
	/* 覆盖整个页面 */
	background-position: center;
	/* 居中显示 */
	background-attachment: fixed;
	/* 固定背景图片，不随滚动条滚动 */
}
body{
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.main-content {
	margin: 20px;
	margin-right: 8vw;
	padding: 15px;
	/*background: #2c3e50bf;*/
	/* 主内容区域背景颜色 */
	border-radius: 8px;
	/* 圆角效果 */
}

.side-content {
	position: fixed;
	/* 固定侧边栏 */
	margin-right: 10px;
	top: 20vh;
	right: 0;
	width: 12vw;
	/* 侧边栏宽度 */
	height: auto;
	/* 侧边栏高度 */
	background: #34495ebf;
	/* 背景颜色 */
	color: #6b7386;
	/* 文本颜色 */
	padding: 10px;
	border: 1px double #FFF;
	border-radius: 8px;
	z-index: 1000;
	/* 确保侧边栏在顶部 */
	box-sizing: border-box;
	/* 边框和内边距包含在宽度内 */
}

a:link,a:visited{
    color: lightgray;
}
a:hover{
    color: black;
    /*font-size: 18px;*/
}

header {
	width: 100%;
	/*background: #232931bf;*/
	/* 背景颜色 */
	color: #fff;
	padding: 15px 0;
	text-align: center;
}

header a {
	color: #6b7386;
	text-decoration: none;
	text-transform: uppercase;
	font-size: 16px;
}

header ul {
	padding: 0;
	list-style: none;
}

header li {
	display: inline;
	padding: 0 15px;
}

header .highlight,
header .current a {
	color: #e8491d;
	font-weight: bold;
}

section#timeline {
	padding: 15px;
	background: #2c3e50bf;
	/* 深灰色背景 */
	border-radius: 8px;
	/* 圆角效果 */
}

.timeline-item {
	margin-bottom: 15px;
	padding: 20px;
	background: #34495ebf;
	/* 较深的灰色背景 */
	border-radius: 8px;
	/* 圆角效果 */
}

h1{
	text-align: center;
	color: lightgray;
}

.timeline-item h2 {
	margin: 0;
	padding-bottom: 10px;
	color: #fff;
	/* 标题颜色 */
}

.timeline-item p {
	margin: 0;
	color: #95a5a6;
	/* 段落文本颜色 */
}

footer {
	background: #232931bf;
	/* 背景颜色 */
	color: #6b7386;
	text-align: center;
	padding: 10px 0;
	width: 100%;
	margin-top: 10px;
}

.side-module {
	/* background: #34495e; */
	color: #95a5a6;
	padding: 20px;
	border-radius: 8px;
	margin-bottom: 20px;
}

.side-module ul {
	list-style: none;
	padding: 0;
}

.side-module li {
	margin-bottom: 10px;
}

/* 移动端适配 */
@media screen and (max-width: 768px) {
	body {
		background-image: url('https://t.mwm.moe/mp'); /* 使用适合移动端的背景图 */
	}
	
	.main-content {
		margin: 10px;
		margin-right: 0;
		padding: 10px;
	}
	
	.side-content {
		position: relative;
		top: 0;
		right: 0;
		width: 100%;
		margin-right: 0;
		margin-top: 20px;
		border-radius: 8px;
	}
	
	.side-module ul {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
	}
	
	.side-module li {
		margin: 5px 10px;
	}
	
	.timeline-item {
		padding: 15px;
	}
	
	.timeline-item h2 {
		font-size: 1.1em;
	}
	
	.timeline-item p {
		font-size: 0.9em;
	}
}

@media screen and (max-width: 480px) {
	.main-content {
		margin: 5px;
		padding: 5px;
	}
	
	.timeline-item {
		padding: 10px;
		margin-bottom: 10px;
	}
	
	.timeline-item h2 {
		font-size: 1em;
		padding-bottom: 5px;
	}
	
	.timeline-item p {
		font-size: 0.85em;
	}
	
	section#timeline {
		padding: 10px;
	}
	
	h1 {
		font-size: 1.5em;
	}
}