	/* 视频卡片 - 纯文字 + 按钮 */
.video-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 30px 20px;
	margin-top: 30px;
}
.video-card {
	background: #f9fafb;
	border-radius: 12px;
	padding: 28px 22px 22px;
	box-shadow: 0 4px 12px rgba(0,0,0,0.05);
	transition: transform 0.2s, box-shadow 0.2s;
	border-left: 4px solid #2d8cf0;
	display: flex;
	flex-direction: column;
}
.video-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 28px rgba(0,0,0,0.08);
}
.video-card .video-title {
	font-size: 18px;
	font-weight: 600;
	color: #1f2f3d;
	margin: 0 0 12px 0;
	line-height: 1.4;
}
.video-card .video-title a {
	color: #1f2f3d;
	text-decoration: none;
}
.video-card .video-title a:hover {
	color: #2d8cf0;
}
/* 按钮样式 */
.video-card .btn-watch {
	display: inline-block;
	background: #2d8cf0;
	color: #fff;
	padding: 8px 24px;
	border-radius: 30px;
	font-size: 14px;
	font-weight: 500;
	text-decoration: none;
	align-self: flex-start;
	margin-top: 8px;
	transition: background 0.2s, transform 0.1s;
	border: none;
	cursor: pointer;
	letter-spacing: 0.5px;
}
.video-card .btn-watch:hover {
	background: #1a6ec9;
	transform: scale(1.02);
}
.video-card .btn-watch i {
	margin-right: 6px;
}
/* 去除旧图片相关 */
.honor-image {
	display: none;
}
.honor-info {
	width: 100% !important;
	padding: 0 !important;
}
.honor-item {
	background: transparent !important;
	box-shadow: none !important;
	padding: 0 !important;
}
.honor-grid {
	display: block !important;
}
.products-pagination {
	margin-top: 40px;
	text-align: center;
}
.page-title .page-subtitle {
	max-width: 1000px;
	margin: 0 auto;
}
.norecord {
	padding: 60px 0;
	text-align: center;
	font-size: 16px;
	color: #999;
}
@media (max-width: 640px) {
	.video-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}
}
/* 视频卡片底部元数据 (可保留或隐藏, 这里保留但轻量) */
.video-card .video-meta {
	font-size: 13px;
	color: #99a9b5;
	border-top: 1px solid #e9edf2;
	padding-top: 14px;
	margin-top: 14px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.video-card .video-meta .tag {
	background: #e8f0fe;
	color: #2d8cf0;
	padding: 2px 14px;
	border-radius: 20px;
	font-size: 12px;
}
.video-card .video-meta .date {
	font-size: 12px;
}
/* 去掉简介占位 */
.video-card .video-desc {
	display: none;
}
