/* 公告页顶部大图 */
.announce-banner {
	width: 100%;
	min-width: 1400px;
	height: 400px;
	overflow: hidden;
}

.announce-banner img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* 公告列表区域 */
.announce-main {
	padding: 20px 0 50px;
	min-width: 1400px;
	background: #fff;
}

.announce-main .container {
	padding: 0;
}

.announce-list {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

/* 列表项 */
.announce-item {
	display: flex;
	align-items: center;
	gap: 10px;
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
	transition: all 0.3s ease;
	opacity: 0;
	transform: translateY(30px);
}

.announce-item.visible {
	opacity: 1;
	transform: translateY(0);
	transition: all 0.6s ease-out;
}

.announce-item:hover {
	box-shadow: 0 6px 24px rgba(8, 119, 168, 0.12);
	transform: translateY(-2px);
}

.announce-img {
	flex-shrink: 0;
	width: 200px;
	height: 130px;
	border-radius: 8px 0 0 8px;
	overflow: hidden;
}

.announce-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.announce-item:hover .announce-img img {
	transform: scale(1.06);
}

.announce-content {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 16px;
	padding: 20px;
}

.announce-title {
	font-size: 20px;
	font-weight: 600;
	color: #002647;
	line-height: 1.4;
	margin: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.announce-item:hover .announce-title {
	color: #0877A8;
}

.announce-meta {
	display: flex;
	gap: 30px;
}

.meta-item {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 13px;
	color: #999;
}

.meta-item img {
	width: 14px;
	height: 14px;
	opacity: 0.7;
}

/* 了解更多按钮 */
.announce-more {
	flex-shrink: 0;
	padding: 8px 22px;
	background: var(--pria);
	color: #fff;
	font-size: 14px;
	border-radius: 20px;
	transition: all 0.3s ease;
	white-space: nowrap;
	margin-right: 20px;
}

.announce-item:hover .announce-more {
	background: var(--prib);
}
