/** 上观号页面样式 */

/* 页面基础样式复用 index.css 和 global.css */

/* 上观号页面特定样式 */

.more-home-news {
	margin-top: 20px;
}

.more-home-news .recommend-head {
	height: 44px;
	padding-left: 14px;
	position: relative;
	overflow: hidden;
	background-color: #f5f5f5;
}

.more-home-news .label-icon {
	display: inline-block;
	margin-top: 10px;
	color: #222643;
	font-size: 16px;
}

.apply-join {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 30px;
	background-color: #fff;
	padding: 10px 0;
	margin: 30px 30px;
	border-radius: 10px;
	cursor: pointer;
}

/* 上观号列表模式：固定题图高度，避免竖图撑高列表项 */
.more-home-news .liebiao-ul .left {
	height: 122px;
	overflow: hidden;
}

.more-home-news .liebiao-ul .left a {
	display: block;
	position: relative;
	height: 100%;
	overflow: hidden;
	border-radius: 5px;
	background-color: #f0f0f0;
}

.more-home-news .liebiao-ul .pic {
	position: relative;
	z-index: 2;
	width: 100%;
	height: 100%;
	border: 0;
	border-radius: 5px;
	object-fit: contain;
}

.video-btn {
	display: none;
}

.banner-title {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}

/* 图片等比完整显示 + 高斯模糊背景填充 */
/* 模糊背景层：与主图同源，cover 填满容器并模糊放大，隐藏边缘 */
.more-home-news .pic-blur {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: blur(20px) saturate(1.1);
	transform: scale(1.15);
	transform-origin: center;
	opacity: 0.85;
	z-index: 1;
}
.more-home-news .video-btn{
	z-index:2
}

/* 容器需为定位上下文，并固定尺寸 */
.more-home-news .kapian-ul .news-pic {
	position: relative;
	display: block;
	overflow: hidden;
	border-radius: 5px;
	background-color: #f0f0f0;
}

/* 卡片模式主图：等比完整显示 */
.more-home-news .kapian-ul .pic {
	position: relative;
	z-index: 2;
	width: 100%;
	height: 148px;
	border: 0;
	border-radius: 5px;
	object-fit: contain;
}


/* 响应式调整 */
@media screen and (max-width: 1200px) {
	.banner-section {
		min-height: auto;
	}
}