body {
	margin: 0;
	font-family: "Segoe UI", sans-serif;
	background: url("https://img-baofun.zhhainiao.com/fs/e4c4bafe42da9973487259e1fab07592.jpg")
		no-repeat center center fixed;
	background-size: cover;
	color: #1e293b;
	position: relative;
	min-height: 100vh;
	padding-bottom: 60px;
	/* 为页脚留空间 */
}

body::before {
	content: "";
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.2);
	pointer-events: none;
	z-index: 0;
}

.container {
	max-width: 800px;
	margin: 0 auto;
	padding: 2rem;
	position: relative;
	z-index: 1;
}

h1 {
	text-align: center;
	font-size: 2rem;
	margin-bottom: 2rem;
	color: #f0f9ff;
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7);
}

/* 公告提示警告卡片样式 */
.notice-card {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 1rem 1.5rem;
	border-radius: 0.75rem;
	margin-bottom: 1rem;
	font-weight: 600;
	color: white;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}

.notice-card svg {
	flex-shrink: 0;
	width: 24px;
	height: 24px;
}

.notice-info {
	background-color: #0284c7;
	/* 蓝色公告 */
}

.notice-tip {
	background-color: #059669;
	/* 绿色提示 */
}

.notice-warning {
	background-color: #dc2626;
	/* 红色警告 */
}

/* 软件卡片 */
.card {
	background-color: #ffffffcc;
	border-radius: 1rem;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
	padding: 1.5rem;
	margin-bottom: 1.5rem;
	transition: transform 0.3s ease, box-shadow 0.3s ease,
		border-color 0.3s ease;
	color: #1e293b;
	border: 1px solid #cbd5e1;
}

.card:hover {
	transform: scale(1.03);
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
	border-color: #0284c7;
	cursor: pointer;
}

.card-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.badge {
	background-color: #0284c7;
	color: white;
	padding: 0.25rem 0.5rem;
	border-radius: 9999px;
	font-size: 0.875rem;
	font-weight: 600;
}

.changelog-wrapper {
	overflow: hidden;
	transition: height 0.5s ease;
	height: 0;
}

pre.changelog {
	background-color: #f1f5f9;
	padding: 1rem;
	border-radius: 0.5rem;
	margin: 0;
	white-space: pre-wrap;
	font-size: 0.9rem;
	color: #334155;
	box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.05);
}

.btn {
	background-color: #0284c7;
	color: white;
	padding: 0.5rem 1rem;
	border: none;
	border-radius: 0.5rem;
	cursor: pointer;
	margin-top: 1rem;
	margin-right: 0.5rem;
	font-weight: 600;
	transition: background-color 0.3s ease;
}

.btn:hover {
	background-color: #0369a1;
}

.btn-group {
	margin-top: 1rem;
}

/* 页脚样式 */
footer {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 50px;
	background: rgba(0, 0, 0, 0.6);
	color: #f0f9ff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.9rem;
	z-index: 10;
	user-select: none;
	box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.4);
}

a {
	color: white;
	background-color: #ea580c;
	text-decoration: none;
	transition: color 0.3s ease, text-decoration 0.3s ease,
		background-color 0.3s ease;
}

a:hover {
	background-color: #d94600;
	text-decoration: none;
}
