/* 新闻列表模板 - 首条大图特色 + 其余2列网格 */
.box20260625175134 {
	padding-top: 20px;
	padding-bottom: 40px;
}
.box20260625175134_ctitle{
	display: flex;
	align-items: center;
	margin-bottom: 20px;
}
.box20260625175134_ctitle1{
	font-size: 32px;
	width: 300px;
}
.box20260625175134_ctitle2{
	font-size: 16px;
}

/* ========== 第一条：大图特色展示 ========== */
.box20260625175134_featured {
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin-bottom: 36px;
	padding-bottom: 32px;
	border-bottom: 1px solid #e8e8e8;
}


.box20260625175134_featured_pic {
	width: 100%;
	overflow: hidden;
	background: #f0f0f0;
	border-radius: 4px;
}

.box20260625175134_featured_pic .zoomImage {
    padding-bottom: 100% !important;
	background-size:cover !important;
	transition: 0.5s all; /*动画时间0.5秒*/
}
.box20260625175134_featured_pic img {
	width: 100%;
	height: auto;
	display: block;
	transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.box20260625175134_featured:hover .box20260625175134_featured_pic img {
	transform: scale(1.03);
}

.box20260625175134_featured_info {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.box20260625175134_featured_title {
	font-size: 20px;
	font-weight: 700;
	line-height: 1.4;
	color: #1a1a1a;
}

.box20260625175134_featured_title a {
	color: #1a1a1a;
	text-decoration: none;
	transition: color 0.25s ease;
}

.box20260625175134_featured_title a:hover {
	color: #c8a000;
}

.box20260625175134_desc {
	font-size: 14px;
	color: #555;
	line-height: 1.75;
}

.box20260625175134_readmore {
	margin-top: 6px;
}

.box20260625175134_readmore a {
	display: inline-block;
	padding: 8px 20px;
	background: #fe8800;
	color: #fff;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	border-radius: 3px;
	transition: background 0.25s ease, transform 0.2s ease;
}

.box20260625175134_readmore a:hover {
	background: #fe8800;
	transform: translateY(-1px);
}

/* ========== 日期元数据 ========== */
.box20260625175134_meta {
	display: flex;
	align-items: center;
	gap: 5px;
	font-size: 13px;
	color: #999;
}

.box20260625175134_date_icon {
	font-size: 13px;
}

/* ========== 其余条目：2列网格 ========== */
.box20260625175134_grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 20px;
}

.box20260625175134_card {
	display: flex;
	flex-direction: row;
	gap: 12px;
	align-items: flex-start;
	padding-bottom: 20px;
	border-bottom: 1px solid #f0f0f0;
	transition: transform 0.3s ease;
}

.box20260625175134_card:hover {
	transform: translateY(-2px);
}

/* 缩略图 */
.box20260625175134_pic {
	flex-shrink: 0;
	width: 90px;
	height: 68px;
	overflow: hidden;
	background: #f0f0f0;
	border-radius: 3px;
}

.box20260625175134_pic img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.box20260625175134_card:hover .box20260625175134_pic img {
	transform: scale(1.08);
}

/* 文字信息 */
.box20260625175134_info {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 6px;
	min-width: 0;
}

.box20260625175134_title {
	font-size: 14px;
	font-weight: 600;
	line-height: 1.45;
	color: #1a1a1a;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.box20260625175134_title a {
	color: #1a1a1a;
	text-decoration: none;
	transition: color 0.25s ease;
}

.box20260625175134_card:hover .box20260625175134_title a {
	color: #fe8800;
}

/* ========== 平板：2列网格 ========== */
@media (min-width: 768px) {
	.box20260625175134_featured {
		flex-direction: row;
		gap: 28px;
		align-items: flex-start;
	}
	.box20260625175134_featured_pic {
		width: 45%;
		flex-shrink: 0;
	}
	.box20260625175134_featured_info {
		flex: 1;
	}
	.box20260625175134_featured_title {
		font-size: 22px;
	}
	.box20260625175134_grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 24px;
	}
	.box20260625175134_pic {
		width: 100px;
		height: 76px;
	}
}

/* ========== 桌面 ========== */
@media (min-width: 992px) {
	.box20260625175134_featured_pic {
		width: 42%;
	}
	.box20260625175134_featured_title {
		font-size: 24px;
	}
	.box20260625175134_desc {
		font-size: 15px;
	}
	.box20260625175134_grid {
		gap: 28px;
	}
	.box20260625175134_pic {
		width: 110px;
		height: 82px;
	}
	.box20260625175134_title {
		font-size: 15px;
	}
}

/* ========== 大屏 ========== */
@media (min-width: 1200px) {
	.box20260625175134_featured_title {
		font-size: 26px;
	}
	.box20260625175134_grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 32px;
	}
	.box20260625175134_pic {
		width: 120px;
		height: 90px;
	}
}
