/* 日期卡片样式 */
.day-cards {
	display: flex;
	flex-direction: column;
	gap: 25px;
	margin-bottom: 90px;
	width: 50%;
	height: 80%;
	margin-left: auto; /* 自动左外边距 */
	margin-right: auto; /* 自动右外边距 */
}

.day-card {
	background: rgba(20, 20, 35, 0.7);
	border: 1px solid rgba(230, 200, 145, 0.2);
	border-radius: 10px;
	padding: 25px;
	transition: transform 0.3s, box-shadow 0.3s;
}

	.day-card:hover {
		transform: translateY(-5px);
		box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
		border-color: #e6c891;
	}

.day-news {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 20px;
	padding-bottom: 15px;
	border-bottom: 1px solid rgba(230, 200, 145, 0.3);
}

.day-date {
	color: #C72C41;
	font-weight: bold;
	font-size: 1.2rem;
}

.day-update-count {
	background: rgba(230, 200, 145, 0.2);
	color: #e6c891;
	padding: 3px 10px;
	border-radius: 15px;
	font-size: 0.9rem;
}

.updates-container {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.update-item {
	display: flex;
	gap: 15px;
	padding: 5px;
	border-radius: 8px;
	text-align: left;
}

.update-icon {
	font-size: 1.5rem;
	color: #e6c891;
	flex-shrink: 0;
}

.update-content {
	flex-grow: 1;
}

.update-category {
	display: inline-block;
	background: rgba(230, 200, 145, 0.05);
	color: #e6c891;
	padding: 3px 17px;
	border-radius: 9px;
	font-size: 0.9rem;
}

.update-text {
	color: #ffffff;
	line-height: 1.6;
}
