/* ===== 列表容器 - 2列 Grid 布局 ===== */
.box20231206160502_list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 30px;
}

/* ===== 单个列表条目 ===== */
.box20231206160502 {
	display: flex;
	flex-direction: row;
	width: 100%;
	padding: 20px;
	border-bottom: 1px solid #f2f3f3;
	box-sizing: border-box;
	transition: box-shadow 0.3s ease;
}

.box20231206160502:hover {
	box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.box20231206160502 > a {
	display: flex;
	flex-direction: row;
	width: 100%;
	text-decoration: none;
	color: inherit;
}

/* ===== 左侧图片区 ===== */
.box20231206160502_leftbox {
	flex: 0 0 40%;
	max-width: 40%;
	overflow: hidden;
	border-radius: 4px;
}

.box20231206160502 .zoomImage {
	width: 100%;
	padding-bottom: 70%;
	background-size: cover !important;
	transition: 0.5s all;
}

.box20231206160502:hover .zoomImage {
	transform: scale(1.2);
}

/* ===== 右侧文字区 ===== */
.box20231206160502_rightbox {
	flex: 1;
	display: flex;
	align-items: stretch;
}

.box20231206160502_right {
	padding: 0 0 0 20px;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	width: 100%;
}

.box20231206160502_right .title {
	font-size: 18px;
	line-height: 1.5;
	margin-bottom: 12px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.box20231206160502_right .time {
	margin-bottom: 12px;
	color: #999;
	font-size: 14px;
}

.box20231206160502_right .content {
	flex: 1;
	overflow: hidden;
	margin-bottom: 16px;
	font-size: 14px;
	line-height: 1.6;
	color: #666;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
}

.box20231206160502_right .more {
	display: inline-block;
	padding: 4px 16px;
	line-height: 28px;
	font-size: 14px;
	background-color: transparent;
	border: 1px solid #e2e2e2;
	color: #666;
	border-radius: 4px;
	transition: all 0.3s ease;
	align-self: flex-start;
}

.box20231206160502_right .more:hover {
	background-color: #f5f5f5;
	border-color: #ccc;
}

/* ===== 平板：仍保持2列，间距缩小 ===== */
@media (max-width: 992px) {
	.box20231206160502_list {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}

	.box20231206160502 {
		padding: 15px;
	}

	.box20231206160502_leftbox {
		flex: 0 0 45%;
		max-width: 45%;
	}

	.box20231206160502_right {
		padding-left: 15px;
	}

	.box20231206160502_right .title {
		font-size: 16px;
	}
}

/* ===== 手机：单列布局 ===== */
@media (max-width: 768px) {
	.box20231206160502_list {
		grid-template-columns: 1fr;
		gap: 0;
	}

	.box20231206160502 {
		padding: 15px 0;
	}

	.box20231206160502_leftbox {
		flex: 0 0 35%;
		max-width: 35%;
	}

	.box20231206160502_right {
		padding-left: 12px;
	}

	.box20231206160502_right .title {
		font-size: 15px;
		margin-bottom: 8px;
	}

	.box20231206160502_right .time {
		font-size: 12px;
		margin-bottom: 8px;
	}

	.box20231206160502_right .content {
		font-size: 13px;
		margin-bottom: 12px;
	}

	.box20231206160502_right .more {
		font-size: 12px;
		padding: 2px 12px;
		line-height: 24px;
	}
}

/* ===== 极小屏 (iPhone SE等) ===== */
@media (max-width: 480px) {
	.box20231206160502 > a {
		flex-direction: column;
	}

	.box20231206160502_leftbox {
		flex: 0 0 auto;
		max-width: 100%;
		margin-bottom: 12px;
	}

	.box20231206160502 .zoomImage {
		padding-bottom: 56%;
	}

	.box20231206160502_right {
		padding-left: 0;
	}
}
