/*这就是秦皇岛*/
.zhuanti-banner .main-container {
	padding-top: 30px;
}
.qhd-container {
	padding: 30px 0;
}
.qhd-container .tab {
	display: flex;
	justify-content: center;
	gap: 70px;
	background: #fff;
	border-bottom: 1px solid #EBECED;
}
.qhd-container .tab .item {
	position: relative;
	font-size: 32px;
	font-weight: bold;
	line-height: 84px;
	text-align: center;
	cursor: pointer;
	transition: all .3s;
}
.qhd-container .tab .item:after{
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	display: block;
	width: 0;
	border-bottom: 6px solid;
	opacity: 0;
	transition: all .3s;
	
}
.qhd-container .tab .item.active, .qhd-container .tab .item:hover {
	color: #125DB2;
}
.qhd-container .tab .item.active:after, .qhd-container .tab .item:hover:after {
	width: 80px;
	opacity: 1;
}
/* 秦皇岛 - 列表 */
.qhd-list .qhd-item {
	display: flex;
	padding: 30px;
	margin-bottom: 12px;
	background: #fff;
	overflow: hidden;
	border-bottom: 1px solid #E5E5E5;
	box-shadow: 0 6px 6px  #D4D4D4;
	transition: box-shadow .3s;
}
.qhd-list .qhd-item:hover {
	box-shadow: 0 6px 24px rgba(18,93,178,.12);
}
/* 左侧内容区 */
.qhd-list .item-content {
	position: relative;
	flex: 1;
	display: flex;
	flex-direction: column;
	min-width: 0;
	padding: 20px 50px 20px 120px;
}
/* 日期标签 - 左上角蓝色方块 */
.qhd-list .item-date {
	position: absolute;
	top: 20px;
	left: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 94px;
	height: 94px;
	line-height: 1.4;
	color: #fff;
	text-align: center;
	background: #125DB2;
}
.qhd-list .date-month {
	font-size: 14px;
}
.qhd-list .date-day {
	font-size: 32px;
	font-weight: bold;
}
/* 标题 */
.qhd-list .item-title {
	font-size: 24px;
	color: #333;
	margin: 0 0 10px;
	line-height: 1.4;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
/* 描述 */
.qhd-list .item-desc {
	font-size: 16px;
	color: #666;
	line-height: 1.7;
	margin: 0 auto 0;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
/* 详情按钮 */
.qhd-list .item-more {
	display: inline-flex;
	align-items: center;
	align-self: flex-start;
	gap: 6px;
	padding: 7px 20px;
	margin-top: 30px;
	line-height: 1;
	color: #333;
	border: 1px solid #CCD7E3;
	border-radius: 2px;
	transition: all .25s;
}
.qhd-list .item-more .iconfont {
	font-size: 24px;
}
.qhd-list .item-more:hover {
	color: #125DB2;
	border-color: #125DB2;
}
/* 右侧配图 */
.qhd-list .item-cover {
	width: 300px;
	height: 226px;
	flex-shrink: 0;
	overflow: hidden;
}
.qhd-list .item-cover img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .5s;
}
.qhd-list .qhd-item:hover .item-cover img {
	transform: scale(1.04);
}
/*底部*/
.footer {
	background: #EBEBEB;
}
.footer .site-links, .footer .friend-links {
	display: none;
}
.footer .footer-other .center, .footer .footer-other .footer-links .link{
	color: #333;
}
.footer .footer-other .footer-links .line {
	background: #333;
}
@media (min-width: 992px) {
	.zhuanti-banner {
		height: 596px;
		background: url('/static/index/img/zhuanti/qhd/banner.jpg') no-repeat center top;
	}
}
/* 小屏幕（手机横屏/小平板）  */
@media (max-width: 991px) {
	body {
		padding-top: 0;
	}
	
	/* banner */
	.zhuanti-banner {
		height: 74.6vw;
		background: url('/static/index/img/zhuanti/qhd/banner-mobile.jpg') no-repeat center top/100% auto;
	}
	.zhuanti-banner .logo img {
		width: 186px;
	}
	/*这就是秦皇岛*/
	.zhuanti-banner .main-container {
		padding: 13px 0 0 10px;
	}
	.qhd-container {
		padding: 0;
	}
	.qhd-container .tab {
		gap: 45px;
	}
	.qhd-container .tab .item {
		font-size: 20px;
		line-height: 58px;
	}
	.qhd-container .tab .item:after{
		border-bottom: 3px solid;
		
	}
	.qhd-container .tab .item.active:after, .qhd-container .tab .item:hover:after {
		width: 60px;
	}
	/* 秦皇岛 - 列表 */
	.qhd-list {
		padding: 20px 10px;
	}
	.qhd-list .qhd-item {
		flex-direction: column-reverse;
		padding: 12px;
		margin-bottom: 12px;
	}
	/* 左侧内容区 */
	.qhd-list .item-content {
		padding: 18px 0 20px calc(24% + 10px);
	}
	/* 日期标签 - 左上角蓝色方块 */
	.qhd-list .item-date {
		width: calc(24%);
		height: auto;
		aspect-ratio: 1 / 1;
		line-height: 1.4;
	}
	.qhd-list .date-day {
		font-size: 16px;
	}
	/* 标题 */
	.qhd-list .item-title {
		font-size: 16px;
		margin: 0 0 5px;
	}
	/* 描述 */
	.qhd-list .item-desc {
		line-height: 1.4;
		-webkit-line-clamp: 2;
	}
	/* 详情按钮 */
	.qhd-list .item-more {
		display: inline-flex;
		align-items: center;
		align-self: flex-end;
		gap: 6px;
		padding: 7px 20px;
		margin-top: 14px;
		line-height: 1;
		color: #333;
		border: 1px solid #CCD7E3;
		border-radius: 2px;
		transition: all .25s;
	}
	.qhd-list .item-more .iconfont {
		font-size: 24px;
	}
	/* 右侧配图 */
	.qhd-list .item-cover {
		width: 100%;
		height: calc(74.5%);
	}
}