* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
li {
	list-style: none;
}
a {
	text-decoration: none;
	color: #333;
}

body {
	font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
		Arial, sans-serif;
	line-height: 1.6;
	color: #333;
	background-color: #f8f9fa;
}

.page-wrapper {
	max-width: 1480px;
	margin: 0 auto;
	padding: 24px 30px;
}

.content {
	padding: 0 15px;
}

.module-title {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 1.5rem 0;
	padding: 0 0.5rem 0.6rem;
	border-bottom: 2px solid #f0f0f0;
}

.module-title .title {
	position: relative;
	font-size: 1.5rem;
	font-weight: 600;
	color: #2c3e50;
	padding-left: 1rem;
	letter-spacing: 0.5px;
	transition: all 0.3s ease;
}

/* 标题左侧装饰线 */
.module-title .title::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 3px;
	height: 70%;
	background: #3498db; /* 主题色 */
	border-radius: 2px;
}

.module-title .more {
	padding: 5px 10px;
	text-decoration: none;
	font-size: 0.9rem;
	color: #3498db;
	border-radius: 4px;
	padding: 0.3rem 0.8rem;
	cursor: pointer;
	transition: all 0.3s ease;
	position: relative;
}

/* 悬停动效 */
.module-title .more:hover {
	color: #2980b9;
	background: rgba(52, 152, 219, 0.1);
	transform: translateX(4px);
}

/* 箭头图标 */
.module-title .more::after {
	content: "→";
	margin-left: 0.5rem;
	font-weight: 500;
	transition: transform 0.3s ease;
}

.module-title .more:hover::after {
	transform: translateX(3px);
}
.module-title .title:hover {
	color: #3498db;
}
::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}
 
::-webkit-scrollbar-track {
  background: #f1f1f1; 
  border-radius: 10px;
}
 
::-webkit-scrollbar-thumb {
  background: #2687eb;
  border-radius: 10px;
  border: 2px solid #f1f1f1;
}
 
::-webkit-scrollbar-thumb:hover { 
  background: #357ab8;
}