* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: "Microsoft YaHei", sans-serif;
}

body {
	background-color: #f5f5f5;
	color: #333;
}
#container_box{
	width: 100%;
	background: url(../../images/cheyouhui/stgz/czsh_xq_bg.jpg) #fff;
}
.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 24px 20px 36px;
}

.hdzx_header {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 20px;
	margin-bottom: 24px;
}

.hdzx_header h1 {
	/* flex: 1; */
	font-size: 32px;
	font-weight: 700;
	line-height: 1.4;
	color: #dc0001;
	width: 68%;
	/* white-space: nowrap; */
	display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.publish-time {
	flex: 0 0 300px;
	margin-top: 8px;
	font-size: 15px;
	color: #7b7b7b;
	white-space: nowrap;
}

.main-content {
	display: flex;
	gap: 50px;
	align-items: flex-start;
}

.left-section {
	flex: 1 1 68%;
	min-width: 320px;
	color: #000;
}
.left-section div p{
	color: #000;
}

.right-sidebar {
	flex: 0 0 300px;
}

/* 去掉正文卡片感，贴近参考图的平铺阅读区 */
.content-block {
	background: transparent;
	padding: 0;
	margin-bottom: 16px;
	border-radius: 0;
	box-shadow: none;
}

.content-block h2 {
	font-size: 18px;
	font-weight: 600;
	color: #000;
	margin-bottom: 8px;
}

.content-block p {
	font-size: 15px;
	line-height: 2;
	color: #000;
}

.image-wrapper {
	margin-bottom: 18px;
	overflow: hidden;
}

.image-wrapper img {
	width: 100%;
	height: auto;
	display: block;
}

.sidebar-block {
	background-color: #ececec;
	padding: 20px;
	margin-bottom: 18px;
	border-radius: 0;
	box-shadow: none;
}

.sidebar-block h3 {
	font-size: 18px;
	color: #333;
	margin-bottom: 10px;
	text-align: center;
	font-weight: 700;
}

.sidebar-block p {
	font-size: 13px;
	color: #666;
	text-align: center;
	margin-bottom: 18px;
	line-height: 1.7;
}

.sidebar-icons {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px 8px;
}

.icon-item {
	text-align: center;
}

.icon-item span {
	position: relative;
	display: inline-block;
	width: 24px;
	height: 24px;
	text-indent: -9999px;
	overflow: hidden;
	white-space: nowrap;
	background-repeat: no-repeat;
	background-position: center;
	background-size: 20px 20px;
}

.icon-item:nth-child(1) span {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 3h7l5 5v13H7z'/%3E%3Cpath d='M14 3v5h5'/%3E%3Cpath d='M10 13h6M10 17h6'/%3E%3C/svg%3E");
}

.icon-item:nth-child(2) span {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Crect x='3' y='6' width='18' height='12' rx='2' fill='none' stroke='%23666' stroke-width='2'/%3E%3Cpath d='M10 9.5v5l4-2.5z' fill='%23666'/%3E%3C/svg%3E");
}

.icon-item:nth-child(3) span {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 21s6-5.4 6-10a6 6 0 1 0-12 0c0 4.6 6 10 6 10Z'/%3E%3Ccircle cx='12' cy='11' r='2'/%3E%3C/svg%3E");
}

.icon-item:nth-child(4) span {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 5h16v11H8l-4 4z'/%3E%3Cpath d='M8 9h8M8 12h6'/%3E%3C/svg%3E");
}

.icon-item p {
	font-size: 12px;
	color: #666;
	margin-top: 8px;
}

.article-list {
	list-style: none;
}

.article-list li {
	padding: 8px 0;
	border-bottom: 1px solid #d9d9d9;
}

.article-list li a {
	color: #2189c9;
	font-size: 13px;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
}

.article-list li:last-child {
	border-bottom: none;
}

.article-link {
	display: block;
	font-size: 14px;
	color: #2189c9;
	text-decoration: none;
	line-height: 1.6;
}

.article-link:hover {
	color: #176e9f;
	text-decoration: underline;
}

@media (max-width: 992px) {
	.hdzx_header{
		display: block;
	}
	.hdzx_header h1 {
		font-size: 24px;
		width: 100%;
		margin-bottom: 15px;
	}

	.main-content {
		flex-direction: column;
	}

	.right-sidebar {
		flex: 1 1 auto;
		width: 100%;
	}
}

@media (max-width: 768px) {
	.container {
		padding: 18px 14px 28px;
	}

	.hdzx_header {
		flex-direction: column;
		gap: 8px;
	}

	.hdzx_header h1 {
		font-size: 20px;
	}

	.publish-time {
		margin-top: 0;
	}
}
