@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: none;
}
/* 全局默认样式 */
.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 .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;
	display: none;
}
/* article-list */

/* 十周年纪念特刊 */

#tbch20 {
	margin: 20px 0;
	background-color: #b4031d;
	padding:10px 3px;
}
#tbch20 .gallery-container {
	max-width: 1000px;
	margin: 0 auto;
	padding: 0;
}
#tbch20 h1 {
	text-align: center;
	margin-top:10px;
	margin-bottom: 30px;
	font-size: 28px;  
	color: #c91623; 
	font-size: 24px; 
	color: #fda832; 
	letter-spacing: 1px ;
}
/* 照片组样式 */
#tbch20 .photo-groups { 
	margin:10px 0;
}
#tbch20 .photo-group {
	background: rgb(236,9,12);
	border-radius: 8px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	overflow: hidden;
	margin:20px 0; 
} 
#tbch20 .group-title {
	padding: 8px;
	background-color: rgb(236,9,12);
	color: rgb(241,228,0);
	color:#fda832;
	margin: 0;
	font-weight: bold;
	font-size: 26px;
	text-align: center;
	letter-spacing: 15px;
	margin-top:6px;
}
#tbch20 .photos { 
	padding: 5px 10px; 
}
#tbch20 .photo { 
	padding: 5px; 	
	width: 100%; 
}

#tbch20 .photo img {
	width: 100%;
	/*border-radius: 4px;*/
	border-radius: 6px;
	border: 2px solid #fcfcfc;
}
/* 模态框样式 */
#tbch20 .modal {
	display: none;
	position: fixed;
	z-index: 100;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.9);
	overflow: auto;
}
#tbch20 .close-btn {
	position: absolute;
	top: 20px;
	right: 20px;
	color: #fff;
	font-size: 35px;
	font-weight: bold;
	cursor: pointer;
	transition: color 0.3s;
	z-index: 999999;
	width: 30px;
	height: 30px;
	line-height: 20px;
	text-align: center;/*background-color: #ccc;*/

}
#tbch20 .close-btn:hover {
	color: #ccc;
}
#tbch20 .caption {
	position: absolute;
	bottom: 20px;
	left: 0;
	width: 100%;
	text-align: center;
	color: white;
	font-size: 18px;
	padding: 10px 0;
	background-color: rgba(0, 0, 0, 0.7);
	display: none;
}
#imageContainer {
	transition: transform 0.1s ease; /* 平滑过渡效果 */
	width: 100%;
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden; /* 防止缩放时溢出 */
	background-position: 50% 50%;
	background-repeat: no-repeat;
}
#imageContainer .modal-content {
	max-width: 90%;
	max-height: 90%;
	transition: transform 0.1s ease; /* 平滑缩放效果 */
	transform-origin: center center; /* 默认以中心缩放 */
	display: block;
	will-change: transform;
}  
 
/* 十周年纪念特刊 */

/* 视频报道 #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; 
} 
  /* 隐藏第6条及之后的卡片 */
#spbd .video-lists .video-card:nth-child(n+6) {
    display: none;
  }
#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;*/
	width: 2.8rem;
	height: 1.8rem;
}
#spbd .video-lists .play-icon {
	position: absolute;
	width: 30px;
	height: 30px;
	background: rgba(0,0,0,0.5);
	border-radius: 50%;
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.25rem;
	text-indent: 2px;
	top: 50%;
	left: 50%;
	opacity: 0.8;
	transform: translate(-50%, -50%);
}
#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;
	display: none;
}
#spbd .video-lists .video-info {
	padding: 12px;
	flex: 1; 
}
#spbd .video-lists .video-title {
	font-size: 0.4rem;
	font-weight: 500;
	color: #333; 
	text-align: justify;
	overflow: hidden; 
	line-height: 1.4;
	text-decoration: none;
	margin-left: 0.1rem;
}

/* 视频报道 #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;
}

/* 版权 */
