.show-con {
	background-color: #f9f9f9;
	border-top: 1px solid #e6e6e6;
	/* margin-top: 50px; */
	padding: 50px 0 100px;
	margin-bottom: -50px;
}

.news-detail-container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 30px 20px;
}

.main-content {
	display: flex;
	justify-content: space-between;
}

.left-column {
	width: 68%;
	background-color: #ffffff;
	padding: 30px 30px 100px;
}

.right-column {
	width: 24%;
}

/* 搜索 */
.search-page {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
}

.search-container {
	width: 100%;
	max-width: 800px;
	margin: 20px 0;
}

.search-form {
	position: relative;
}

.search-group {
	display: flex;
	border-radius: 2px;
	overflow: hidden;
	max-width: 600px;
	margin: 0 auto;
}

.search-input {
	flex: 1;
	padding: 14px 25px;
	border: 1px solid #c1c1c1;
	border-right: none;
	font-size: 16px;
	outline: none;
	transition: all 0.3s;
}

.search-input.error {
	border-color: #ff4d4d;
}

.search-input:focus {
	border-color: #e03434;
}

.search-button {
	padding: 0 35px;
	border: none;
	background: #e03434;
	color: white;
	font-weight: 600;
	font-size: 16px;
	cursor: pointer;
	transition: all 0.3s;
	display: flex;
	align-items: center;
	gap: 8px;
}

.search-button:hover:not(:disabled),
.search-button:active:not(:disabled) {
	background: #b91b1b;
}

.search-button:disabled {
	opacity: 0.8;
	cursor: not-allowed;
}

.icon {
	font-size: 18px;
}

.error-tip {
	position: absolute;
	left: 50%;
	transform: translatex(-50%);
	bottom: -35px;
	color: #ff4d4d;
	font-size: 14px;
	white-space: nowrap;
	animation: shake 0.4s;
}

/* 动画效果 */
.slide-fade-enter-active {
	transition: all 0.3s ease;
}

.slide-fade-leave-active {
	transition: all 0.2s cubic-bezier(1, 0.5, 0.8, 1);
}

.slide-fade-enter-from,
.slide-fade-leave-to {
	opacity: 0;
	transform: translate(-50%, -10px);
}

@keyframes shake {

	0%,
	100% {
		transform: translate(-50%, 0);
	}

	25% {
		transform: translate(-55%, 0);
	}

	75% {
		transform: translate(-45%, 0);
	}
}

/*搜索end */
.lead-container {
	position: relative;
	padding: 15px 0;
	margin: 35px 0 1rem;
	border-bottom: 2px solid #e5e5e5;
}

.lead-text {
	color: #000;
	line-height: 1.3;
	font-size: 20px;
	font-weight: 600;
	letter-spacing: 2px;
	padding-left: 10px;
	border-left: 6px solid #e03434;
}

/*全部新闻列表样式*/
.news-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0;
}

.news-item {
	display: flex;
	gap: 20px;
	margin-bottom: 15px;
	padding: 15px;
	transition: all 0.3s;
	cursor: pointer;
}

.news-item:hover {
	background: #f8f8f8;
}

.news-item:hover .title {
	color: #e03434;
}

.one-pic:hover .news-image {
	transform: scale(1.05);
}

.one-pic .image-container {
	flex: 0 0 25%;
	position: relative;
	overflow: hidden;
	border-radius: 4px;
}

.one-pic .news-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s;
	aspect-ratio: 16/9;
}

.one-pic .content {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	overflow: hidden;
}

.one-pic .title {
	font-size: 18px;
	margin: 0 0 12px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	color: #333;
	transition: color 0.3s;
}

.one-pic .summary {
	flex: 1;
	color: #7e7e7e;
	margin: 0 0 2.2rem;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	line-height: 1.5;
}

.meta {
	display: flex;
	justify-content: space-between;
	align-items: center;
	color: #7e7e7e;
	font-size: 14px;
}

.views {
	display: flex;
	align-items: center;
	gap: 0.3rem;
}

/* 全部新闻end */
/* 多图样式 */
.more-pic {
	margin-bottom: 15px;
	padding: 15px;
	transition: all 0.3s;
	cursor: pointer;
}

.more-pic:hover .title {
	color: #e03434;
}

.more-pic:hover {
	background: #f8f8f8;
}

/* .more-pic:hover .news-image {
  transform: scale(1.05);
} */
.more-pic .title {
	font-size: 18px;
	margin: 0 0 12px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	color: #333;
	transition: color 0.3s;
}

.more-pic .image-row {
	display: flex;
	gap: 25px;
	margin-bottom: 2.2rem;
}

.more-pic .image-container {
	flex: 1;
	position: relative;
	overflow: hidden;
	border-radius: 4px;
	aspect-ratio: 16/9;
	max-width: calc(33.33% - 7px);
}

.more-pic .news-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s;
}

.more-pic .meta-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	color: #7e7e7e;
	font-size: 14px;
}

/* 多图样式end */
/* 播放图标 */
.play-icon {
	position: absolute;
	top: 57%;
	left: 50%;
	transform: translate(-30%, -50%);
	width: 60px;
	height: 60px;
	color: white;
	opacity: 0.9;
	transition: opacity 0.3s;
}

/* 头像 */
.user-card {
	background: #f9f9f9;
	padding: 15px 50px;
	display: flex;
	gap: 25px;
	align-items: center;
	margin-bottom: 50px;
}

.avatar-container {
	flex: 0 0 110px;
}

.avatar {
	width: 100%;
	height: auto;
	aspect-ratio: 1/1;
	border-radius: 50%;
	object-fit: cover;
}

.info-container {
	flex: 1;
	min-width: 0;
	/* 防止内容溢出 */
}

.username {
	margin: 0 0 8px;
	font-weight: 700;
	font-size: 22px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.bio {
	margin: 0;
	color: #7e7e7e;
	line-height: 1.5;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	font-size: 14px;
}

/* 头像end */
/* 右边推荐样式 */
.recommend-title {
	font-size: 1.5rem;
	margin-bottom: 1.5rem;
	padding-bottom: 0.5rem;
	margin-top: 0.4rem;
}

.recommend-item {
	background: #fff;
	/* border-radius: 4px; */
	padding-bottom: 1rem;
	margin-bottom: 2rem;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s;
}

.recommend-cover {
	position: relative;
	padding-bottom: 56.25%;
	margin-bottom: 1rem;
	/* border-radius: 4px; */
	overflow: hidden;
	/* background: #f5f5f5; */
}

.recommend-cover img {
	position: absolute;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.recommend-item:hover img {
	transform: scale(1.05);
}

.recommend-item-title {
	font-size: 1rem;
	color: #333;
	margin-bottom: 0.5rem;
	padding: 0 1rem;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.recommend-item:hover .recommend-item-title {
	color: #ff4d4f;
}

.recommend-date {
	font-size: 0.875rem;
	color: #6f6e73;
	padding: 0 1rem;
}

/* 骨架屏加载动画 */
.lazy-img {
	opacity: 0;
	transition: opacity 0.3s;
}

.lazy-img.loaded {
	opacity: 1;
}

/* 图文播放图标 */
/* .play-icon {
  position: absolute;
    top: 57%;
    left: 50%;
    transform: translate(-30%, -50%);
    width: 60px;
    height: 60px;
    color: white;
    opacity: 0.9;
    transition: opacity 0.3s;
} */
/* 视频 */
.video-list-container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 15px;
}

/* 视频列表布局 */
.video-list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 30px;
}

.video-item {
	text-decoration: none;
	color: inherit;
	transition: transform 0.3s ease;
}

/* 图片容器 */
.video-item .image-container {
	position: relative;
	border-radius: 8px;
	overflow: hidden;
	background: #000;
	padding-top: 56.25%;
	/* 16:9比例 */
}

.video-cover {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

/* 播放图标 */
.video-item .play-icon {
	position: absolute;
	top: 43%;
	left: 50%;
	transform: translate(-43%, -50%);
	width: 60px;
	height: 60px;
	color: white;
	opacity: 0.9;
	transition: opacity 0.3s;
}

/* 信息遮罩层 */
.video-item .info-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 12px 15px;
	background: rgba(0, 0, 0, 0.4);
	color: #fff;
}

.video-title {
	font-size: 16px;
	margin: 0 0 8px 0;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	transition: color 0.3s;
}

.video-meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: 12px;
	opacity: 0.9;
}

/* 悬停效果 */
.video-item:hover .video-cover {
	transform: scale(1.05);
}

.video-item:hover .video-cover {
	opacity: 0.8;
}

.video-item:hover .play-icon {
	opacity: 1;
}

/* 无数据 */
.no-data {
	text-align: center;
	font-size: 14px;
	color: #7e7e7e;
	line-height: 1.5;
	margin-top: 50px;
}

.no-data .iconfont {
	font-size: 80px;
	color: #555555;
}

/* 响应式布局 */
@media (max-width: 1024px) {
	.main-content {
		flex-direction: column;
	}

	.left-column,
	.right-column {
		width: 100%;
	}

	.right-column {
		margin-top: 3rem;
		display: none;
	}

	.search-page {
		padding: 0;
	}
}

@media (max-width: 768px) {
	.lead-container {
		margin: 1rem 0;
	}

	/*搜索 */
	.search-container {
		padding: 0;
	}

	.search-wrapper {
		width: 100%;
	}

	.search-input {
		height: 36px;
		font-size: 14px;
	}

	/* .search-button {
    height: 36px;
    padding: 0 15px;
    font-size: 14px;
  } */

	.text {
		display: none;
	}

	/*搜索end */
	.news-item {
		flex-direction: column;
		gap: 15px;
		margin-bottom: 20px;
		padding: 0;
	}

	.news-container {
		padding: 0;
	}

	.image-container {
		flex: none;
		width: 100%;
	}

	.title {
		font-size: 16px;
	}

	.summary {
		font-size: 14px;
	}

	.meta {
		font-size: 13px;
	}

	.user-card {
		/* padding: 15px 20px;
    gap: 15px; */
		padding: 15px 20px;
		gap: 15px;
		margin: 20px 0;
	}

	.avatar-container {
		flex-basis: 60px;
	}

	.username {
		font-size: 16px;
	}

	.bio {
		font-size: 14px;
		-webkit-line-clamp: 2;
	}

	.show-con {
		background-color: #ffffff;
		border: none;
		/* margin-top: 50px; */
		padding: 0;
		margin-bottom: -50px;
	}

	.left-column {
		padding: 0;
	}

	.video-list {
		grid-template-columns: repeat(1, 1fr);
		gap:40px;
	}

	.more-pic {
		padding: 0;
	}

	.more-pic .image-row {
		gap: 10px;
		margin-bottom: 20px;
	}

	.views .iconfont {
		font-size: 18px;
	}
	.one-pic .summary{
		margin: 0 0 20px;
	}
	.news-itembt{
		margin-bottom: 40px;
	}
}