#page_notice {
	margin: 0;
	padding: 0 0 var(--menuHeight) 0;
	box-sizing: border-box;
	background-color: #e6f3ff;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	color: #333;
	line-height: 1.5;
}

.notice_header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	background-color: rgba(255, 255, 255, 0.98);
	height: 24px;
	padding: 40px 15px 25px 15px;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	box-shadow: 0 1px 20px rgba(0, 0, 0, 0.08);
	z-index: 100;
	display: flex;
	align-items: center;
	transition: transform 0.3s ease;
}

.notice_header.notice_hidden {
	transform: translateY(-100%);
}

.notice_back {
	font-size: 20px;
	color: #007AFF;
	text-decoration: none;
	padding: 10px;
	margin-left: -10px;
	opacity: 0.9;
	transition: opacity 0.2s ease;
}

.notice_back:active {
	opacity: 0.6;
}

.notice_title {
	flex: 1;
	text-align: center;
	font-size: 17px;
	font-weight: 600;
	color: #333;
	margin-right: 20px;
}

.notice_container {
	margin-top: 89px;
	padding: 15px;
	max-width: 680px;
	margin-left: auto;
	margin-right: auto;
}

.notice_item {
	background: #fff;
	border-radius: 16px;
	padding: 16px;
	margin-bottom: 15px;
	animation: notice_fadeIn 0.5s ease-out;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
	transform: translateY(0);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.notice_item:active {
	transform: scale(0.985);
	background-color: #fafafa;
}

.notice_item_header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 10px;
}

.notice_item_title_wrapper {
	display: flex;
	align-items: center;
	flex: 1;
	margin-right: 12px;
}

.notice_item_icon {
	width: 24px;
	height: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #007AFF;
	color: #fff;
	border-radius: 8px;
	margin-right: 10px;
	font-size: 12px;
}

.notice_item_title {
	font-size: 16px;
	font-weight: 600;
	color: #333;
}

.notice_item_time {
	font-size: 13px;
	color: #999;
	white-space: nowrap;
}

.notice_item_content {
	font-size: 15px;
	color: #666;
	line-height: 1.6;
	margin-left: 34px;
}

@keyframes notice_fadeIn {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.notice_empty {
	text-align: center;
	padding: 60px 0;
	color: #999;
	font-size: 15px;
	animation: notice_fadeIn 0.5s ease-out;
}

.notice_empty_icon {
	font-size: 48px;
	color: #ccc;
	margin-bottom: 15px;
}

@media (prefers-color-scheme: dark) {
	body {
		background-color: #1a1a1a;
		color: #fff;
	}

	.notice_header {
		background-color: rgba(30, 30, 30, 0.98);
	}

	.notice_title {
		color: #fff;
	}

	.notice_item {
		background: #2c2c2c;
		box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
	}

	.notice_item:active {
		background-color: #333;
	}

	.notice_item_title {
		color: #fff;
	}

	.notice_item_content {
		color: #999;
	}

	.notice_item_time {
		color: #777;
	}
}