@charset "utf-8";

.finance-home-news {
	background: #f3f5f8;
	padding: 48px 0 56px;
	font-family: "Microsoft YaHei", "PingFang SC", "Hiragino Sans GB", "Noto Sans SC", sans-serif;
}

.finance-home-news__inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 70px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 28px;
	align-items: stretch;
}

.news-panel {
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0, 43, 94, 0.06);
	padding: 24px 26px 28px;
	min-height: 100%;
}

.news-panel__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 20px;
	padding-bottom: 12px;
	border-bottom: 1px solid #eef1f5;
}

.news-panel__title {
	position: relative;
	margin: 0;
	padding-bottom: 10px;
	font-size: 20px;
	font-weight: 700;
	color: #1a6fc4;
	letter-spacing: 0.06em;
}

.news-panel__title::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 48px;
	height: 3px;
	background: #1a6fc4;
	border-radius: 2px;
}

.news-panel__more {
	font-size: 13px;
	color: #999;
	text-decoration: none;
	white-space: nowrap;
}

.news-panel__more:hover {
	color: #1a6fc4;
}

.news-panel__list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.news-panel__list li {
	border-bottom: 1px dashed #e8ebf0;
}

.news-panel__list li:last-child {
	border-bottom: 0;
}

.news-panel__list a {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 14px 0;
	color: inherit;
	text-decoration: none;
	transition: color 0.2s ease;
}

.news-panel__list a:hover .news-panel__text {
	color: #1a6fc4;
}

.news-panel__dot {
	flex: 0 0 0;
	width: 0;
	height: 0;
	border-top: 5px solid transparent;
	border-bottom: 5px solid transparent;
	border-left: 7px solid #1a6fc4;
}

.news-panel__text {
	flex: 1 1 auto;
	min-width: 0;
	font-size: 14px;
	line-height: 1.5;
	color: #333;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.news-panel__date {
	flex: 0 0 auto;
	font-size: 13px;
	color: #999;
	white-space: nowrap;
}

/* 右侧大图 */
.news-feature {
	display: block;
	position: relative;
	border-radius: 10px;
	overflow: hidden;
	margin-bottom: 8px;
	text-decoration: none;
}

.news-feature__img {
	position: relative;
	height: 200px;
	background-color: #2a4a6e;
	overflow: hidden;
}

.news-feature__img img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
	border: 0;
}

.news-feature__overlay {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 16px 18px;
	background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.45));
}

.news-feature__title {
	margin: 0 0 8px;
	max-width: 72%;
	font-size: 15px;
	font-weight: 600;
	line-height: 1.45;
	color: #fff;
}

.news-feature__meta {
	display: flex;
	align-items: center;
	gap: 6px;
	margin: 0;
	font-size: 12px;
	color: rgba(255, 255, 255, 0.9);
}

.news-panel__list--compact a {
	padding: 12px 0;
}

@media (max-width: 1100px) {
	.finance-home-news__inner {
		padding: 0 20px;
		grid-template-columns: 1fr;
	}
}

@media (max-width: 640px) {
	.news-panel {
		padding: 20px 18px 22px;
	}

	.news-panel__text {
		white-space: normal;
		display: -webkit-box;
		-webkit-line-clamp: 2;
		-webkit-box-orient: vertical;
		overflow: hidden;
	}

	.news-feature__title {
		max-width: 100%;
		font-size: 14px;
	}

	.news-feature__img {
		height: 160px;
	}
}
