@charset "utf-8";
/* 全局默认样式 */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box; /* 推荐使用border-box模型 */
	-webkit-tap-highlight-color: transparent; /* 移除移动端点击高亮 */
	list-style: none; /* 移除列表项的默认标记 */
	color: #333; /* 设置默认文本颜色 */
	background-color: transparent; /* 移除默认背景色 */
	border: none; /* 移除默认边框 */
	outline: none; /* 移除焦点轮廓（可选，根据需求决定） */
	text-size-adjust: none;
	-webkit-text-size-adjust: none;
	-webkit-text-size-adjust: 100%; /*解决Iphone下橱窗字体变大问 题*/
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; /* 设置默认字体 系统字体栈 */
}
*::before, *::after {
	box-sizing: inherit; /* 继承父元素的盒模型 */
}
a {
	text-decoration: none; /* 移除链接的下划线 */
	color: inherit; /* 继承父元素的文本颜色 */
}
a:hover {
	text-decoration: underline;
}
/* 全局默认样式 */
.container {
	width: 100%;
	padding: 0;
	max-width: 640px;
	margin: 0 auto;
	background-color: #fff;
}
/* header */
header {
	overflow: hidden;
}
header img {
	width: 100%;
}
/* header */
/*topNews */
.topNews {
	margin-top: 0.2rem;
	font-size: 0.4rem;
}
.topNews .title {
	text-align: center;
	padding: 0.1rem;
	font-size: 0.45rem;
	letter-spacing: 0;
	color: #111;
	opacity: 0.9;
}
.topNews .summary2 {
	color: #666;
	line-height: 0.65rem;
	margin: 0.1rem;
	opacity: 0.8;
	text-indent: 2em;
	height: 2rem;
	overflow: hidden;
}
.topNews .summary2 * {
	font-size: 0.4rem;
	color: #666;
	text-align: justify;
}
.topNews .separator {
	height: 0.1rem;
}
/* topNews */
/* slider-container */
.container #slider-container {
	display: flex;
	width: 100%;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	overflow: hidden;
}
.container #slider-container .main-image {
	width: 100%;
	overflow: hidden;
	position: relative;
}
.container #slider-container .main-image div.main-picture {
	width: 100%;
	margin-top: 0.15rem;
	overflow: hidden;
}
.container #slider-container .main-image img {
	width: 100%;
	object-fit: cover;
}
.container #slider-container .main-image div.main-title {
	display: flex;
	align-content: center;
	align-items: center;
	line-height: 1;
	width: 100%;
	color: #fff;
	padding: 0.08rem;
	font-size: 0.35rem;
	height: 60px;
	background-color: rgb(255, 128, 125, 0.5);
	background: #f1f1f1;
}
.container #slider-container .main-image div.main-title span {
	color: #000;
	display: block;
	width: 100%;
	opacity: 0.9;
	line-height: 1.2;
	text-align: center;
	max-height: 60px;
}
.container #slider-container .thumbnail-container {
	display: none;
}
/* slider-container */
/* article-list */
.article-list {
	margin: 20px auto;
}
.article-list h6 {
	background3: url("./t1.png") no-repeat center center; /* 垂直和水平居中 */
	background-size: 100% 30px; /* 设置背景图的高度为30px */
	width: 100%;
	/*height: 50px;*/
	display: flex; /* 使用 Flexbox 布局 */
	justify-content: center; /* 水平居中 */
	align-items: center; /* 垂直居中 */
	font-size: 0.58rem;
	line-height: 2;
	color: #ce0000;
	letter-spacing: 0.2rem;
	font-weight: bold;
	background-color: #f0f0f0;
	border-bottom: 1px solid #ddd;
	display: none;
}
.article-list .items {
}
.article-list .img-item, .article-list .txt-item {
	display: flex;
	width: 100%;
	background-color: #fff;
	border-bottom: 1px dashed #ccc;
	overflow: hidden;
	margin: 0.2rem auto;
}
.article-list .img-item {
}
.article-list .txt-item {
}
.article-list a:hover {
	color: #888;
}
.article-list .img-item .img-box {
	flex: 0 0 2.8rem; /* 固定图片宽度 */
	overflow: hidden;
	margin: 10px;
}
.article-list .img-item .img-box img {
	width: 100%;
	height: auto;
	display: block;
	border-radius1: 8px;
}
.article-list .img-item .txt-box, .article-list .txt-item .txt-box {
	flex: 1;
	padding: 0.2rem 0 0.2rem 0.2rem;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.article-list .img-item .txt-box {
	padding: 0.2rem 0 0.2rem 0;
}
.article-list .img-item .txt-box .title, .article-list .txt-item .txt-box .title {
	font-size: 0.4rem;
	letter-spacing: 1px;
	text-decoration: none;
	color: #333;
	text-align: justify;
	padding-right: 0.2rem;
	margin-bottom: 5px;
	line-height: 1.4;
}
.article-list .img-item .time, .article-list .txt-item .time {
	font-size: 14px;
	color: #999;
	margin-bottom: 10px;
	display: none;
}
.article-list .img-item .txt-box .desc, .article-list .txt-item .txt-box .desc {
	font-size: 14px;
	color: #666;
	line-height: 1.6;
	flex: 1;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 3; /* 限制行数 */
	-webkit-box-orient: vertical;
	display: none;
}
.article-list .more {
	text-align: right;
	margin-top: 0px;
	font-size: 12px;
	font-weight: normal;
}
/* article-list */
/* tbch */
#tbch {
	/*! display: none; */
	display: none;
	margin-top: 20px;
}
div#tbch-content {
	width: 100%;
	height: 300px;
	margin: 0 auto;
	background-image: url(tbchbz01.jpg);
	background-repeat: no-repeat;
	background-size: 100% 100%;
	display: flex;
	justify-content: center; /* 水平居中 */
	align-items: center; /* 垂直居中 */
}
div#tbch-content .tbch-path {
	border3: 1px solid #111;
	width: 100%;
	height: 300px;
	position: relative;
	margin-left: 50px;/*! display: none; */
}
div#tbch-content .tbch-path .image-wrapper {
	border-radius: 50%;
	opacity: 0.75;
	width: 120px;
	height: 90px;
	z-index: 1;
	position: absolute;
}
div#tbch-content .tbch-path .image-wrapper img {
	border-radius: 50%;
	border: 2px solid rgba(255, 255, 0, 1);
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
div#tbch-content .tbch-path .image-wrapper1 {
	left: 18%;
	top: 8%;
}
div#tbch-content .tbch-path .image-wrapper2 {
	left: 8%;
	top: 60%;
}
div#tbch-content .tbch-path .image-wrapper3 {
	left: 39%;
	top: 43%;
}
div#tbch-content .tbch-path .image-wrapper4 {
	left: 65%;
	top: 16%;
}
div#tbch-content .tbch-path .image-wrapper5 {
	left: 70%;
	top: 60%;
}
/* tbch */

/* 视频报道 #spbd */
#spbd {
}
#spbd h3 {
	width: 100%; 
	overflow: hidden;
}
#spbd h3 img{
	width: 150%;
}
#spbd .video-lists { 
	padding:  0;
}

/* 视频卡片样式 */
#spbd .video-lists .video-card {
	background: #fff; 
	width: 100%;
	overflow: hidden; 
	box-shadow: 0 3px 7px rgba(0,0,0,0.08);
	border: 1px solid #fff; 
	
	margin-bottom: 0.2rem; 
} 
#spbd .video-lists .video-card a {
	text-decoration: none;
	display: block; 
	margin:10px; 
	display: flex;
	margin-top:-10px;
}
#spbd .video-lists .thumbnail-container {
	position: relative;
	width: 2.8rem;
	height: 1.8rem;
	overflow: hidden; 
	margin-top:0.3rem;
}
#spbd .video-lists .thumbnail { 
	height: 1.8rem; 
	object-fit: cover;
}
#spbd .video-lists .play-icon {
	position: absolute;
	bottom:2px;
	left: 2px;
	width: 26px;
	height: 26px;
	background: rgba(0,0,0,0.5);
	border-radius: 50%;
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	text-indent: 2px;
}
#spbd .video-lists .duration {
	position: absolute;
	bottom:0;
	right: 0px;
	background: rgba(0,0,0,0.7);
	color: white;
	padding: 2px 6px;
	border-radius: 3px;
	font-size: 10px;
	opacity: 0.8;
}
#spbd .video-lists .video-info {
	padding: 12px;
	flex: 1; 
}
#spbd .video-lists .video-title {
	font-size: 0.35rem;
	font-weight: 500;
	color: #333; 
	text-align: justify;
	overflow: hidden; 
	line-height: 1.8;
	text-decoration: none;
  letter-spacing: 1px;
	margin-left:0.1rem;
}
#spbd .video-lists .video-title:hover {
	text-decoration: underline;
	text-underline-offset: 0.15rem;
}
/* 视频报道 #spbd */



/*.qrcode-container*/
.qrcode-container {
	display: none;
}
/*.qrcode-container*/
/* 版权 */
footer * {
	text-align: center;
	font-size: 0.3rem;
	color: #fff;
	line-height: 0.6rem
}
footer {
	margin-top: 1rem;
	text-align: center;
	line-height: 1.8rem;
	font-size: 1rem;
	clear: both;
	background: #da1624; /* #187cd1; da1624*/
	padding: 0.4rem 0 0 0;
	color: #fff;
}

/* 版权 */
