@charset "utf-8";
/* 全局默认样式 */

* {
	margin: 0;          /* 移除所有元素的外边距 */
	padding: 0;         /* 移除所有元素的内边距 */
	box-sizing: border-box; /* 设置盒模型为border-box，便于计算元素尺寸 */
	font-size: 16px;    /* 设置默认字体大小 */
	line-height: 1.5;   /* 设置默认行高 */
	color: #333;        /* 设置默认文本颜色 */
	background-color: transparent; /* 移除默认背景色 */
	border: none;       /* 移除默认边框 */
	outline: none;      /* 移除焦点轮廓（可选，根据需求决定） */
	font-style: normal;
	font-weight: normal;
	text-decoration: none;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; /* 设置默认字体 系统字体栈 */
}
*::before, *::after {
	box-sizing: inherit; /* 继承父元素的盒模型 */
}
/* 针对列表的默认样式重置 */

ul, ol {
	list-style: none;   /* 移除列表项的默认标记 */
}
/* 针对链接的默认样式重置 */

a {
	text-decoration: none; /* 移除链接的下划线 */
	color: inherit;     /* 继承父元素的文本颜色 */
}
a:hover {
	color: #ff4455;
	text-decoration: underline;
}
/* 针对图片的默认样式重置 */

img {
	display: block;     /* 移除图片底部的默认间隙 */
	max-width: 100%;    /* 确保图片不超过容器宽度 */
	height: auto;       /* 保持图片比例 */
}
/* 针对按钮的默认样式重置 */


body {
	margin: 0;
	padding: 0 10px; /* 设置页面左右两侧的留白 */
	background-image: url('./33.jpg');
	background-position: center top;
	background-repeat: no-repeat;
}
html {
	background-image: url('./rbsa.jpg')
}
.container {
	width: 1000px;
	margin: 0 auto;
	background-color4: #f0f0f0;
}
/* header */
header {
	height: 300px;
}
header img {
	width: 100%;
	height: auto;
	display: none;
}
/* header */
/* topNews */
.topNews {
	margin-top: 15px;
}
.topNews .title {
	text-align: center;
	padding: 8px;
	font-size: 22px;
	letter-spacing: 0px;
	color: #111;
	opacity: 0.9;
}
.topNews .summary2 {
	color: #999;
	text-indent: 0em;
	line-height: 26px;
	font-size: 15px;
	margin: 10px;
	opacity: 0.8;
	text-indent: 2em;
	letter-spacing: 0.2px;
	text-align: justify;
}
/* topNews */
/* slider-container */
.container #slider-container {
	display: flex;
	width: 1000px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	overflow: hidden;
	margin: 0 auto;
	margin-bottom: 10px;
	background-color: #fcfcf0;
	margin-top: 20px;
}
.container #slider-container .main-image {
	height: 445px;
	overflow: hidden;
	position: relative;
	padding-left: 15px;
	padding-bottom: 15px;
}
.container #slider-container .main-image div.main-picture {
	width: 815px;
	height: 413px;
	margin-top: 15px;
	overflow: hidden;
}
.container #slider-container .main-image img {
	width: 815px;
	height: 413px;
	object-fit: cover;
}
.container #slider-container .main-image div.main-title {
	position: absolute;
	line-height: 30px;
	bottom: 18px;
	width: 815px;
	color: #fff;
	text-align: center;
	padding: 10px;
	background-color: rgb(0, 0, 0, 0.5);
}
.container #slider-container .main-image div.main-title span {
	color: #fff;
	opacity: 0.9;
}
.container #slider-container .main-image div.main-title span:hover {
	text-decoration: underline;
	text-underline-offset: 0.3rem;
}
.container #slider-container .thumbnail-container {
	flex: 0 0 150px;
	display: flex;
	flex-direction: column;
	gap: 11px;
	padding: 15px;
}
.container #slider-container .thumbnail-container .thumbnail {
	width: 138px;
	height: 74px;
	cursor: pointer;
	border: 2px solid transparent;
	border-radius: 4px;
	transition: border-color 0.3s;
}
.container #slider-container .thumbnail-container .thumbnail img {
	width: 138px;
	height: 70px;
	object-fit: cover;
	opacity: 0.5;
	transition: opacity 0.3s, transform 0.3s;
}
.container #slider-container .thumbnail-container .active img {
	opacity: 1;
}
.container #slider-container .thumbnail-container .thumbnail:hover, .container #slider-container .thumbnail-container .thumbnail.active {
	border-color: #ff9800;
	border-color: #2196F3;
	border-width: 2px;
	transform: scale(1.00);
	position: relative;
}
.container #slider-container .thumbnail-container .active:before {
	content: '';
	position: absolute;
	top: 25px;
	left: -10px;
	background4: #2196F3;
	width: 0;
	height: 0;
	border-top: 10px solid transparent;
	border-bottom: 10px solid transparent;
	border-right: 10px solid #3498db; /* 三角形的颜色 */
	border-right: 10px solid #2196F3; /* 三角形的颜色 */
}
/* slider-container */
/* article-list */
.article-list {
	margin: 20px auto;
	background-color: #fff;
}
.article-list h6 {
	background: url("./t1.png") no-repeat center center; /* 垂直和水平居中 */
	background-size: 1000px 30px; /* 设置背景图的高度为30px */
	width: 1000px;
	height: 50px;
	display: flex; /* 使用 Flexbox 布局 */
	justify-content: center; /* 水平居中 */
	align-items: center; /* 垂直居中 */
	font-size: 24px;
	color: #ce0000;
	letter-spacing: 11px;
	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: 1000px;
	border-bottom: 1px dashed #ccc;
	overflow: hidden;
	margin: 10px auto;
	box-shadow3: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.article-list .img-item {
}
.article-list .txt-item {
}
.article-list a:hover {
	color: #888;
	text-underline-offset: 0.3em;
}
.article-list .img-item .img-box {
	flex: 0 0 150px;
	overflow: hidden;
	margin: 10px;
	box-shadow: 0 0 6px rgba(0, 0, 0, 0.5);/*border-radius:30% / 50%;*/
}
.article-list .img-item .img-box img {
	width: 100%;
	height: auto;
	display: block;
}
.article-list .img-item .txt-box, .article-list .txt-item .txt-box {
	flex: 1;
	padding: 15px 0 15px 15px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.article-list .img-item .txt-box .title, .article-list .txt-item .txt-box .title {
	font-size: 18px;
	letter-spacing: 1px;
	color: #333;
	/*font-weight: bold;*/
	margin-bottom: 5px;
	line-height: 1.4;
}
.article-list .img-item .txt-box .title {
	padding-top: 0;
}
.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;
	margin-top: 20px;
}
div#tbch-content {
	width: 1000px;
	height: 400px;
	margin: 0 auto;
	background-image: url(tbchbz01.jpg);
	background-repeat: no-repeat;
	display: flex;
	justify-content: center; /* 水平居中 */
	align-items: center; /* 垂直居中 */
}
div#tbch-content .tbch-path {
	border3: 1px solid #111;
	width: 820px;
	height: 360px;
	position: relative;
	margin-left: 120px;
	display: none;
}
div#tbch-content .tbch-path .image-wrapper {
	border-radius: 50%;
	opacity: 0.75;
	width: 180px;
	height: 130px;
	z-index: 1;
	position: absolute;
}
div#tbch-content .tbch-path .image-wrapper img {
	border-radius: 50%;
	padding: 2px;
	/*border3:2px solid rgba(255, 255, 0, 1);*/
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
	background-color: #ccc;
}
div#tbch-content .tbch-path .image-wrapper1 {
	left: 370px;
	top: 139px;
}
div#tbch-content .tbch-path .image-wrapper2 {
	left: 44px;
	top: 214px;
}
div#tbch-content .tbch-path .image-wrapper3 {
	left: 122px;
	top: 22px;
}
div#tbch-content .tbch-path .image-wrapper4 {
	left: 615px;
	top: 20px;
}
div#tbch-content .tbch-path .image-wrapper5 {
	left: 598px;
	top: 207px;
}
/* tbch */
      /* 视频报道 #spbd */
#spbd {
}
#spbd h3 {
	width: 1000px;
	height: 60px;
	overflow: hidden;
	margin-top: 20px;
}
#spbd .video-lists {
	width: 1000px;
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 24px;
	padding: 10px 0;
}
/* 视频卡片样式 */
#spbd .video-lists .video-card {
	background: #fff;
	border-radius: 5px;
	overflow: hidden;
	transition: transform 0.2s;
	box-shadow: 0 8px 10px rgba(0,0,0,0.08);
	border: 1px solid #fff;
	margin-bottom: 10px;
	cursor: pointer;
}
#spbd .video-lists .video-card:hover {
	border: 1px solid #007bff;
}
#spbd .video-lists .thumbnail-container {
	position: relative;
	width: 100%;
	aspect-ratio: 16/9;
	background: #f5f5f5;
	padding:3px;
}
#spbd .video-lists .thumbnail {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
#spbd .video-lists .play-icon {
	position: absolute;
	top: 145px;
	left: 5px;
	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: 8px;
	right: 8px;
	background: rgba(0,0,0,0.7);
	color: white;
	padding: 2px 6px;
	border-radius: 3px;
	font-size: 12px;
	opacity: 0.8;
}
#spbd .video-lists .video-info {
	padding: 12px;
}
#spbd .video-lists .video-title {
	font-size: 15px;
	font-weight: 500;
	color: #333;
	margin: 0;
	text-align: justify;
	overflow: hidden;
	height: 41px;
	line-height: 20px;
	text-decoration: none;
}
#spbd .video-lists .video-title:hover {
	text-decoration: underline;
	text-underline-offset: 0.15rem;
}
#spbd .video-lists a {
	text-decoration: none;
}
/* 视频报道 #spbd */
/*.qrcode-container*/
.qrcode-container {
	text-align: center;
	margin: 50px;
}
.qrcode-container .wrapper {
	display: inline-block;
	text-align: center;
	padding: 5px;
	background-color: #fff;
	border: 1px solid #aaa;
	border-radius: 8px; /* 圆角 */
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05); /* 极浅阴影，增加层次感 */
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; /* 系统默认字体 */
	max-width: 240px; /* 限制容器宽度，避免过大 */
	margin: 0 auto; /* 居中 */
	margin-top: 20px;
}
.qrcode-container img {
	width: 160px; /* 固定二维码尺寸 */
	height: 160px;
	margin: 0 auto; /* 居中 */
	object-fit: contain; /* 确保图片比例正常 */
}
.qrcode-container .hint {
	font-size: 16px;
	color: #333; /* 深灰色文字 */
	font-weight: 500; /* 中等粗细 */
	margin: 0 0 8px 0;
	line-height: 1.4;
}
.qrcode-container .sub-hint {
	font-size: 18px;
	color: #666; /* 浅灰色辅助文字 */
	margin: 0;
	line-height: 1.3;
	margin-top: 10px;
	margin-bottom: 30px;
}
/*.qrcode-container*/
/* 版权 */
footer * {
	text-align: center;
	font-size: 18px;
	line-height: 36px;
	color: #666;
}
footer {
	margin-top: 25px;
	padding: 20px 0 0 0;
	border-top: 2px solid #61baf6;
	background-color: #fff;
	text-align: center;
	clear: both;
	margin-bottom: -20px;
}
/* 版权 */
.titbox h2 span {
	display: inline-block;
	position: relative;
	line-height: 32px;
	font-size: 28px;
	font-weight: bold;
	text-align: left;
	color: #ce0000;
	padding-right: 6px;
	float: left;
}
