﻿* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	-webkit-tap-highlight-color: transparent;
}
table, th, td {
    border: 1px solid black;
    border-collapse: collapse;
  }
td {
  word-break: break-word;
}
body {
	font-family: "Microsoft YaHei", Arial, sans-serif;
	font-size: 14px;
	line-height: 1.4;
	color: #333;
	background-color: #fff;
	width: 100%;
	max-width: 540px;
	margin: 0 auto;
	min-height: 100vh;
	overflow-x: hidden;
	touch-action: pan-y;
}

/* 顶部区域 */
.header {
	background-color: #1a4a9a;
	color: white;
	padding: 10px 15px;
	font-size: 18px;
	font-weight: bold;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: relative;
	z-index: 101;
}

.header div{
	text-align:center;
	width: 100%;
}

.menu-button {
	background: none;
	border: none;
	color: white;
	font-size: 24px;
	cursor: pointer;
	padding: 5px;
	-webkit-appearance: none;
}

/* 侧边导航 */
.sidebar-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 102;
	display: none;
}


.sidebar {
    width: 280px;
    background: #fff;
    position: fixed;
    left: -280px;
    top: 0;
    bottom: 0;
    z-index: 1001;
    box-shadow: 2px 0 10px rgba(0,0,0,0.1);
    transition: left 0.3s ease;
    overflow-y: auto;
}

.sidebar.active {
    left: 0;
}

.sidebar-header {
    padding: 20px 15px;
    background: #1a4a9a;
    color: white;
    font-size: 18px;
    font-weight: bold;
    border-bottom: 1px solid #1a4a9a;
}

.sidebar-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-nav > li {
    border-bottom: 1px solid #eee;
}

.sidebar-nav a {
    display: block;
    padding: 15px 20px;
    color: #333;
    text-decoration: none;
    font-size: 16px;
    position: relative;
    transition: all 0.3s;
}

.sidebar-nav a:hover {
    background: #f5f5f5;
    color: #2c3e50;
}

/* 多级菜单箭头 */
.has-children > a {
    padding-right: 40px !important;
}

.has-children > a::after {
    content: '›';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%) rotate(0deg);
    transition: transform 0.3s ease;
    font-size: 20px;
    color: #999;
}

.has-children.active > a::after {
    transform: translateY(-50%) rotate(90deg);
}

/* 子菜单样式 */
.submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: #f9f9f9;
}

.has-children.active > .submenu {
    max-height: 800px; /* 足够大的值以容纳所有子项 */
}

.submenu li {
    border-bottom: none;
}

.submenu a {
    padding-left: 40px !important;
    font-size: 15px;
    color: #666;
}

/* 三级菜单 */
.submenu .submenu a {
    padding-left: 60px !important;
    font-size: 14px;
    color: #888;
}

.submenu .has-children > a::after {
    right: 20px;
    font-size: 18px;
}

/* 遮罩层 */
.sidebar-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
}

/* 轮播区域 */
.carousel-section {
	margin: 10px;
	border-radius: 8px;
	overflow: hidden;
	position: relative;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	touch-action: pan-y;
}

.carousel-container {
	width: 100%;
	height: 220px;
	position: relative;
	overflow: hidden;
}

.carousel-track {
	display: flex;
	transition: transform 0.3s ease;
	height: 100%;
}

.carousel-slide {
	flex: 0 0 100%;
	height: 100%;
	background-color: #1a4a9a;
	position: relative;
	background-size:100% 100% !important; 
	background-position:center !important;
}

.carousel-slide a{
	width:100%;
	height:100%;
	display:block
}

.slide-title {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: rgba(0, 0, 0, 0.7);
	color: white;
	padding: 10px 15px;
	font-size: 14px;
	font-weight: bold;
}

.carousel-dots {
	position: absolute;
	bottom: 15px;
	left: 0;
	right: 10px;
	display: flex;
	justify-content: flex-end;
	gap: 8px;
}

.carousel-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background-color: rgba(255, 255, 255, 0.5);
	cursor: pointer;
	transition: background-color 0.3s;
}

.carousel-dot.active {
	background-color: white;
}

/* 主内容区 */
.content {
	padding: 0 10px;
}

/* 切换标签 */
.tab-section {
	/* margin-bottom: 15px;*/
	background-color: white;
	border-radius: 8px;
	overflow: hidden;
   /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);*/
	touch-action: pan-y;
}

.tab-header {
	display: flex;
	background-color: #ffffff;
	border-bottom: 1px solid #e0e0e0;
}

.tab-button {
	flex: 1;
	padding: 12px 0;
	text-align: center;
	font-size: 1.27em;
	font-weight: bold;
	color: #000;
	border: none;
	background: none;
	cursor: pointer;
	-webkit-appearance: none;
}

.tab-button.active {
	color: #1a4a9a;
	background-color: white;
	border-bottom: 2px solid #1a4a9a;
}

.tab-content-container {
	position: relative;
	overflow: hidden;
	min-height: 250px;
}

.tab-content-wrapper {
	display: flex;
	transition: transform 0.3s ease;
	height: 100%;
}

.tab-content {
	flex: 0 0 100%;
	height: 100%;
	padding: 15px 0px;
	overflow-y: auto;
}

/* 新闻列表 */
.news-list {
	margin-bottom: 0;
}

.news-item {
	display: flex;
	justify-content: space-between;
	padding: 8px 0;
   
}

.news-item:last-child {
	border-bottom: none;
}

.news-content {
	flex: 1;
	display: flex;
	align-items: flex-start;
}

.news-bullet {
	display: inline-block;
	width: 20px;
	text-align: center;
	margin-right: 5px;
	font-size: 20px;
	color: #1a4a9a;
	line-height:1;
}

.news-text {
	flex: 1;
	font-size: 14px;
	line-height: 1.5;
	color: #333;
}

.news-date {
	color: #999;
	font-size: 12px;
	white-space: nowrap;
	margin-left: 8px;
	margin-right: 8px;
}

.copyright-icon {
	color: #333;
	font-weight: bold;
	font-size: 14px;
}

/* 新闻发布会图片 */
.press-image {
	width: 100%;
	height: 160px;
	background-color: #e0e0e0;
	border-radius: 6px;
	margin: 10px 0;
	display: flex;
	/*align-items: center;*/
	justify-content: center;
	color: #666;
	font-weight: bold;
	font-size: 18px;
}

.press-image img{width:100%;}

/* 法官风采 */
.judge-gallery {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-top: 10px;
}

.judge-item {
	width: 48%;
	margin-bottom: 15px;
	text-align: center;
}

.judge-photo {
	width: 100%;
	height: 100px;
	background-color: #e0e0e0;
	border-radius: 6px;
	margin-bottom: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #666;
	font-size: 14px;
}
.judge-photo img{
	width: auto;
	height: 100%;
}

.judge-name {
	font-size: 14px;
	color: #333;
	font-weight: bold;
}

.judge-title {
	font-size: 12px;
	color: #999;
}

/* 诉讼服务区域 */
.services-section {
	margin: 20px 0;
	background-color: white;
	border-radius: 8px;
	padding: 15px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
	background: linear-gradient(to bottom, #A0C1FD 0%, #ffffff 100%);
}

.services-title{
	border-bottom: 2px solid #faf7f77a !important;
	padding: 0px 0px 8px !important;
}

.services-grid {
	display: flex;
	justify-content: space-between;
	margin-top: 10px;
	background: #fff;
	padding: 0 0 10px 0;
}

.service-item {
	text-align: center;
	width: 23%;
}

.service-icon {
	width: 45px;
	height: 40px;
	margin: 8px auto 0;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 20px;
	font-weight: bold;
}

.service-icon .fas{
	font-weight:900;
	color: #2C5BBB;
}

.service-name {
	font-size: 13px;
	color: #333;
}

/* 全媒体矩阵视频 */
.media-video {
	position: relative; /* 添加相对定位 */
	width: 100%;
	height: 260px;
	background-color: #000;
	border-radius: 6px;
	margin: 10px 0;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-weight: bold;
	font-size: 18px;
	overflow: hidden;
}

.media-video a {
	width: 100%;
	height: 100%;
	display: block;
}

.media-video a img {
	width: 100%;
	height: 100%;
	object-fit: cover; /* 让图片覆盖整个区域，保持比例 */
	display: block;
}

.media-video .far {
	position: absolute; /* 绝对定位 */
	top: 50%; /* 垂直居中 */
	left: 50%; /* 水平居中 */
	transform: translate(-50%, -50%); /* 通过偏移使其真正居中 */
	font-size: 60px; /* 设置图标大小 */
	color: rgba(255, 255, 255, 0.9); /* 半透明白色 */
	z-index: 2; /* 确保图标在图片上方 */
	cursor: pointer; /* 鼠标指针样式 */
	transition: all 0.3s ease; /* 添加过渡效果 */
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5); /* 添加阴影增强可见性 */
}

/* 鼠标悬停效果 */
.media-video .far:hover {
	color: #fff;
	transform: translate(-50%, -50%) scale(1.1); /* 悬浮时放大 */
	text-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
}

/* 单独标题样式 */
.section-title {
	font-size: 16px;
	font-weight: bold;
	color: #1a4a9a;
	padding: 12px 0 8px;
	border-bottom: 2px solid #1a4a9a;
	margin-bottom: 5px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.more-link {
	float: right;
	color: #1a4a9a;
	font-size: 13px;
	text-decoration: none;
	font-weight: normal;
}

.singleTitle{
	border-bottom: 1px solid #e0e0e0;
	padding: 0 !important;
}
.singleTitle span{
	border-bottom: 2px solid #1a4a9a;
	padding: 12px 0;
	display: block;
	width: 50%;
	text-align: center;
}

.back-button {
	background: none;
	border: none;
	color: white;
	font-size: 20px;
	cursor: pointer;
	padding: 5px;
	-webkit-appearance: none;
}

/* 页面标题 */
.page-title {
	font-size: 20px;
	font-weight: bold;
	color: #1a4a9a;
	padding: 20px 15px 15px;
	border-bottom: 2px solid #1a4a9a;
	margin: 0 10px 15px;
	background-color: white;
	border-radius: 8px 8px 0 0;
	/* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05); */
}

/* 新闻列表 */
.news-list-container {
	margin: 0 10px 15px;
	background-color: white;
	border-radius: 0 0 8px 8px;
	/* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05); */
}

.news-item {
	display: flex;
	justify-content: space-between;
	padding: 7px 0;
	text-decoration: none;
	color: #333;
	transition: background-color 0.2s;
}

.news-item:hover {
	background-color: #f9f9f9;
}

.news-item:last-child {
	border-bottom: none;
}

.news-content {
	flex: 1;
	display: flex;
	align-items: flex-start;
}

/* .news-bullet {
	display: inline-block;
	width: 16px;
	text-align: center;
	margin-right: 8px;
	font-size: 16px;
	color: #1a4a9a;
	flex-shrink: 0;
}
 */
.news-text,.news-text a {
	flex: 1;
	font-size: 15px;
	line-height: 1.5;
	color: #333;
	text-decoration:none;
}

.news-date {
	color: #999;
	font-size: 12px;
	white-space: nowrap;
	margin-left: 10px;
	flex-shrink: 0;
}

.copyright-icon {
	color: #333;
	font-weight: bold;
	font-size: 14px;
}

/* 分页 */
/* 手机版分页样式 */
.pagination {
    margin: 20px 0;
    padding: 0 10px;
}

#setpage {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    font-size: 0; /* 移除原始中括号的间隔 */
}

#setpage a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 70px;
    height: 36px;
    padding: 0 12px;
    background-color: #ffffff;
    border: 1px solid #e4e7ed;
    border-radius: 18px;
    color: #606266;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

#setpage a:hover {
    background-color: #f5f7fa;
    border-color: #409eff;
    color: #409eff;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(64, 158, 255, 0.1);
}

#setpage a:active {
    transform: translateY(0);
}

/* 当前页/禁用状态 */
#setpage span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 70px;
    height: 36px;
    padding: 0 12px;
    background-color: #f5f7fa;
    border: 1px solid #e4e7ed;
    border-radius: 18px;
    color: #c0c4cc;
    font-size: 14px;
    cursor: not-allowed;
    user-select: none;
}

/* 移除中括号 */
#setpage [href]::before,
#setpage [href]::after,
#setpage span::before,
#setpage span::after {
    display: none;
}

/* 添加图标 */
#setpage a:nth-child(1)::before {
    content: "« ";
    margin-right: 2px;
}

#setpage a:nth-child(2)::before {
    content: "‹ ";
    margin-right: 2px;
}

#setpage a:nth-child(3)::after {
    content: " ›";
    margin-left: 2px;
}

#setpage a:nth-child(4)::after {
    content: " »";
    margin-left: 2px;
}


/* 文章内容 */
.article-container {
	margin: 10px;
	background-color: white;
	border-radius: 8px;
	/* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05); */
	padding: 20px 15px;
}

.article-header {
	border-bottom: 1px solid #eee;
	padding-bottom: 15px;
	margin-bottom: 20px;
}

.article-title {
	font-size: 20px;
	font-weight: bold;
	color: #1a4a9a;
	line-height: 1.4;
	margin-bottom: 10px;
}

.article-meta {
	display: flex;
	justify-content: space-between;
	color: #666;
	font-size: 13px;
}

.article-date, .article-source {
	color: #999;
}

.article-content {
	font-size: 16px;
	line-height: 1.8;
	color: #333;
}
.article-content table{}

#video1{width:100% !important;height:auto !important}

.article-content p {
	margin-bottom: 15px;
	text-indent: 2em;
}
.article-content table td p{
    text-indent: 0;
    margin-bottom: 0;
}

.article-content img {
	max-width: 100%;
	height: auto !important;
	display: block;
	margin: 15px auto;
	border-radius: 6px;
}

.article-quote {
	background-color: #f5f7fa;
	border-left: 4px solid #1a4a9a;
	padding: 15px;
	margin: 20px 0;
	font-style: italic;
	color: #555;
}

.article-section {
	margin-top: 25px;
}

.section-title {
	font-size: 1.27em;
	font-weight: bold;
	color: #1a4a9a;
	margin-bottom: 15px;
	padding-bottom: 8px;
	border-bottom: 1px solid #eee;
}

/* 相关新闻 */
.related-news {
	margin: 15px 10px;
	background-color: white;
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
	padding: 15px;
}

.related-title {
	font-size: 16px;
	font-weight: bold;
	color: #1a4a9a;
	margin-bottom: 15px;
	padding-bottom: 8px;
	border-bottom: 1px solid #eee;
}

.related-item {
	display: block;
	padding: 10px 0;
	border-bottom: 1px solid #f0f0f0;
	text-decoration: none;
	color: #333;
}

.related-item:last-child {
	border-bottom: none;
}

.related-item:hover {
	color: #1a4a9a;
}

/* 导航按钮 */
.article-nav {
	display: flex;
	justify-content: space-between;
	margin: 20px 10px;
}

.nav-button {
	background-color: #1a4a9a;
	color: white;
	border: none;
	padding: 10px 15px;
	border-radius: 4px;
	cursor: pointer;
	font-size: 14px;
	text-decoration: none;
	display: inline-block;
}

.nav-button:disabled {
	background-color: #ccc;
	cursor: not-allowed;
}


/* 频道页标题 */
.channel-header {
	background-color: white;
	padding: 20px 15px;
	margin: 0 10px 15px;
	border-radius: 8px 8px 0 0;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.channel-title {
	font-size: 22px;
	font-weight: bold;
	color: #003366;
	margin-bottom: 10px;
	padding-bottom: 10px;
	border-bottom: 2px solid #003366;
}

.channel-desc {
	font-size: 14px;
	color: #666;
	line-height: 1.6;
}

/* 子栏目切换 - 类似首页的tab切换 */
/* .tab-section {
	margin: 0 10px 15px;
	background-color: white;
	border-radius: 0 0 8px 8px;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.tab-header {
	display: flex;
	background-color: #f5f5f5;
	border-bottom: 1px solid #e0e0e0;
}

.tab-button {
	flex: 1;
	padding: 12px 0;
	text-align: center;
	font-size: 15px;
	font-weight: bold;
	color: #666;
	border: none;
	background: none;
	cursor: pointer;
	-webkit-appearance: none;
}

.tab-button.active {
	color: #003366;
	background-color: white;
	border-bottom: 2px solid #003366;
}

.tab-content-container {
	position: relative;
	overflow: hidden;
	height: 460px;
}

.tab-content-wrapper {
	display: flex;
	transition: transform 0.3s ease;
	height: 100%;
}

.tab-content {
	flex: 0 0 100%;
	height: 100%;
	padding: 0;
	overflow-y: auto;
} */

/* 滑动提示 */
.swipe-hint {
	text-align: center;
	color: #999;
	font-size: 12px;
	padding: 5px 0;
	background-color: #f9f9f9;
	border-bottom: 1px solid #eee;
}

/* 新闻列表 */
.media-list {
	padding: 0;
}

.media-item {
	display: flex;
	padding: 15px;
	border-bottom: 1px solid #eee;
	text-decoration: none;
	color: #333;
	transition: background-color 0.2s;
}

.media-item:hover {
	background-color: #f9f9f9;
}

.media-item:last-child {
	border-bottom: none;
}

.media-icon {
	width: 60px;
	height: 60px;
	background-color: #003366;
	border-radius: 6px;
	margin-right: 15px;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 24px;
	font-weight: bold;
}

.media-content {
	flex: 1;
}

.media-title {
	font-size: 15px;
	font-weight: bold;
	color: #333;
	margin-bottom: 8px;
	line-height: 1.4;
}

.media-info {
	font-size: 12px;
	color: #999;
	display: flex;
	justify-content: space-between;
}

/* 视频列表 */
.video-item {
	padding: 15px;
	border-bottom: 1px solid #eee;
	text-decoration: none;
	color: #333;
	display: block;
}

.video-item:last-child {
	border-bottom: none;
}

.video-thumbnail {
	width: 100%;
	height: 180px;
	background-color: #e0e0e0;
	border-radius: 6px;
	margin-bottom: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #666;
	font-weight: bold;
	position: relative;
}
.video-thumbnail img{width: 100%;
	height: 180px;}

.video-play {
	position: absolute;
	width: 50px;
	height: 50px;
	background-color: rgba(0, 51, 102, 0.8);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 20px;
}

.video-title {
	font-size: 15px;
	font-weight: bold;
	color: #333;
	margin-bottom: 5px;
	line-height: 1.4;
}

.video-duration {
	font-size: 12px;
	color: #999;
}

/* 媒体报道列表 */
.report-item {
	padding: 15px;
	border-bottom: 1px solid #eee;
	text-decoration: none;
	color: #333;
	display: block;
}

.report-item:last-child {
	border-bottom: none;
}

.report-source {
	font-size: 13px;
	color: #003366;
	font-weight: bold;
	margin-bottom: 5px;
}

.report-title {
	font-size: 15px;
	font-weight: bold;
	color: #333;
	margin-bottom: 8px;
	line-height: 1.4;
}

.report-date {
	font-size: 12px;
	color: #999;
}

/* 查看更多 */
.view-more {
	display: block;
	padding: 15px;
	text-align: center;
	color: #003366;
	font-weight: bold;
	text-decoration: none;
	border-top: 1px solid #eee;
}


/* 底部信息 */
.footer {
	background-color: #ffffff;
	color: black;
	padding: 20px 15px;
	font-size: 12px;
	line-height: 1.6;
	text-align: center;
	margin-top: 20px;
	border-top: 4px solid #1a4a9a;
}

.footer-line {
	margin: 5px 0;
}

.footer-link {
	color: black;
	text-decoration: none;
}
.footer img{height: 45px;}


/* 公告公示滚动容器样式 (无缝垂直滚动) */
.scroll-announce {
	background-color: white;
	border-radius: 8px;
	padding: 0;
	margin-bottom: 20px;
	overflow: hidden;           /* 关键：隐藏溢出内容 */
	height: 280px;              /* 固定高度，大约显示5条新闻(每条约47px)，留一点边距 */
	position: relative;
	/* box-shadow: 0 2px 6px rgba(0,0,0,0.05); */
}
.scroll-announce .news-list {
	margin: 0;
	padding: 4px 0;
	background: transparent;
	border-radius: 0;
	/* 通过动画向上滚动 */
	animation: scrollUp 16s linear infinite;
	/* 鼠标悬停暂停滚动 */
	transition: animation-play-state 0.2s;
}
.scroll-announce:hover .news-list {
	animation-play-state: paused;
}
/* 定义滚动动画：从顶部滚动到底部 (根据实际条目数量调整Y值，共6条，每条约47px，6条总高约282px) */
@keyframes scrollUp {
	0% {
		transform: translateY(0);
	}
	100% {
		transform: translateY(calc(-100% + 280px)); /* 移动整个列表高度减去容器高度，实现最后一条停底后再快速复位? 但无缝需要复制内容 */
	}
}
/* 为了让滚动更顺滑且实现无缝衔接，需要复制一份新闻列表 */
.scroll-announce .scroll-wrapper {
	height: 100%;
	overflow: hidden;
}
.scroll-announce .double-list {
	display: flex;
	flex-direction: column;
	animation: scrollUpDouble 22s linear infinite;
}
.scroll-announce:hover .double-list {
	animation-play-state: paused;
}
/* 双份滚动：两份内容首尾相接 */
@keyframes scrollUpDouble {
	0% {
		transform: translateY(0);
	}
	100% {
		transform: translateY(-50%); /* 移动一半高度(即一份列表的高度) */
	}
}
/* 公告公示原始样式微调 */
.scroll-announce .news-item {
	padding: 8px 12px;
	height: auto;
	border-bottom: 1px solid #f0f0f0;
}
.scroll-announce .news-item:last-child {
	border-bottom: none;
}
/* 移除可能的多余背景 */
.scroll-announce .news-list {
	background: transparent;
}
/* 保证标题和日期在一行 */
.scroll-announce .news-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.scroll-announce .news-content {
	flex: 1;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	min-width: 0;
}
.scroll-announce .news-date {
	flex-shrink: 0;
	margin-left: 12px;
	color: #999;
	font-size: 0.85rem;
}
/* 修复section-title可能带来的影响 */
.singleTitle {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
/* 确保原来的背景不干扰 */
.news-list {
	background-color: transparent;
}