/* 全局基础样式 - 修正版 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Microsoft YaHei", Arial, sans-serif;
    text-decoration: none;
    list-style: none;
    /* 移除全局 color: #333; 避免强制覆盖所有元素颜色 */
}

/* 单独为非链接元素设置默认颜色（不影响链接） */
body, p, span, ul,  h1, h2, h3, h4, h5, h6 {
    color: #333;
}

/* 链接默认颜色单独设置 */
a {
    color: #333;
    text-decoration: none;
}

/* 全局移除所有列表项的默认小圆点 */
ul, ol {
    list-style: none;
    padding-left: 0; /* 可选：同时移除默认左内边距，避免空位 */
}

body {
    min-width: 320px;
}

/* 头部样式 */
.header {
    width: 100%;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 15px;
}

/* 顶部栏 */
.header .container {
    padding: 44px 0;
}

/* Logo样式 */
.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 48px;
}

.logo span {
    font-size: 13px;
    color: #222;
    margin-left: 8px;
    letter-spacing: 2px;
}

/* 搜索框样式（修复放大镜位置，不影响其他布局） */
.search-form {
    flex: 1;
    display: flex;
    justify-content: center;
    padding: 0 20px;
}

.search-box {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 20px;
    padding: 8px 15px;
    width: 380px;
    max-width: 100%;
}

.search-box form {
    display: flex;
    width: 100%;
    align-items: center;
}

.search-box input {
    border: none;
    outline: none;
    flex: 1;
    padding: 5px 0;
    font-size: 16px;
    background: transparent;
}

.search-box button {
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 18px;
    color: #666;
    padding: 0 5px;
    margin-left: 5px;
}

/* 快捷链接 */
.quick-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.quick-links a {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #000;
    font-size: 13px;
    padding: 5px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.quick-links a:hover {
    color: #ff0000;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
}

.quick-links img {
    margin-bottom: 2px;
    transition: all 0.3s ease;
}

/* 主导航 */
.main-nav {
    background-color: #f5f5f7;
    border-top: 3px solid #fb6262;
    border-bottom: 1px solid #ddd;
}

.main-nav-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.main-nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 10px 0;
    margin: 0;
    gap: 37px;
    flex-wrap: wrap;
}

.main-nav a {
    text-decoration: none;
    font-size: 16px;
    color: #333;
}

.main-nav a:hover {
    color: #c00;
}

/* 地区导航 */
.location-nav {
    background-color: #f5f5f7;
    padding: 10px 0;
    overflow-x: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.location-nav::-webkit-scrollbar {
    display: none;
}

.location-nav-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: flex-start;
    gap: 15px;
    padding: 0 15px;
}

.location-nav ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: nowrap;
    gap: 0px;
}

.location-nav a {
    text-decoration: none;
    font-size: 13.5px;
    color: #333;
    padding: 5px 0;
    white-space: nowrap;
}

.location-nav a:hover {
    color: #c00;
}

/* 面包屑导航 */
.sub-nav {
    text-align: center;
    color: #333;
    font-size: 16px;
}

.sub-nav a {
    color: rgb(27, 68, 143);
    text-decoration: none;
    margin: 0 10px;
}

.sub-nav a:hover {
    color: #c00;
    text-decoration: underline;
}

.sub-nav span {
    margin: 0 5px;
    color: #666;
}

/* 主标题 */
.main-title {
    text-align: center;
    padding: 20px 0;
    background-color: #fff;
}

.main-title h1 {
    color: rgb(27, 68, 143);
    font-size: 36px;
    margin-bottom: 15px;
}

.main-title h1 a {
    text-decoration: none;
}

.main-title h1 a:hover {
    color: #c00;
    text-decoration: underline;
}

/* 新闻区 */
.news-section {
    padding: 20px;
    background-color: #fff;
}

.news-container {
    display: flex;
    gap: 20px;
    max-width: 1280px;
    margin: 0 auto;
}

.news-image {
    flex: 2;
    position: relative;
    height: 400px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.image-caption {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 16px;
    z-index: 2;
}

.slider-wrapper {
    position: relative;
    height: 100%;
}

.slider {
    display: flex;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.slider-item {
    position: relative;
    height: 400px;
    min-width: 100%;
}

.slider-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* 轮播导航按钮 */
.slider-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 18px;
    transition: background 0.3s;
}

.slider-nav button:hover {
    background: rgba(0, 0, 0, 0.8);
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

/* 轮播指示器 */
.slider-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background 0.3s;
}

.dot.active {
    background: #fff;
}

.news-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    text-indent: 2em;
    text-align: justify;
}

/* 新闻内容链接样式 */
.news-content a {
    color: #333;
    
}

.news-content a:hover {
    color: #c00;
    text-decoration: underline;
}

.news-title {
    font-size: 20px;
    color: #c00;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.news-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.news-list li {
    font-size: 16px;
    color: #666;
    margin-bottom: 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.news-list li::before {
    position: absolute;
    left: 0;
    color: #999;
}

.news-list a {
    color: #333;
    text-decoration: none;
    font-size: 16px;
    padding-left: 14px;
    background: url(../images/o.jpg) no-repeat 0px 9px;
}

.news-list a:hover {
    color: #c00 !important; /* 强制变红，避免被其他样式覆盖 */
    text-decoration: underline !important;
    text-underline-offset: 2px;
}
/*--------首页右侧焦点----------------------------------------------*/
.news-list-index {
    list-style: none;
    padding: 0;
    margin: 0;
}

.news-list-index li {
    font-size: 16px;
    color: #666;
    margin-bottom: 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.news-list-index li::before {
    position: absolute;
    left: 0;
    color: #999;
}

.news-list-index a {
    color: #333;
    text-decoration: none;
    font-size: 16px;
}
.news-list-index a:hover {
    color: #c00 !important; /* 强制变红，避免被其他样式覆盖 */
    text-decoration: underline !important;
    text-underline-offset: 2px;
}
/* 直播新闻 */
.live-news-section {
    padding: 20px;
    background-color: #fff;
}

.live-news-container {
    display: flex;
    gap: 20px;
    max-width: 1280px;
    margin: 0 auto;
}

.live-news {
    display: flex;
    gap: 20px;
    flex: 2;
}

.live-item {
    position: relative;
    flex: 1;
}

.live-item img {
    width: 98%;
    height: 178px;
    border-radius: 5px;
}

.live-label {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #c00;
    color: #fff;
    padding: 5px 10px;
    font-size: 16px;
    border-radius: 3px;
}

.live-title {
    margin-top: 10px;
    font-size: 16px;
    color: #333;
    text-align: center;
}

.live-title a:hover {
    color: #c00;
    text-decoration: underline;
}

.news-highlight {
    flex: 1;
    background: #fff;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.highlight-title {
    font-size: 16px;
    margin-bottom: 10px;
    padding-left: 10px;
    border-left: 4px solid #d0232b;
}

.highlight-list {
    list-style: none;
    padding: 0;
    margin: 0;
}


/* 轮播图区域 */
.slider-container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto 20px;
    border-radius: 5px;
    overflow: hidden;
    background-color: #fff;
    padding: 15px 0;
}

.slider-container img {
    width: 100%;
    height: auto;
    display: block;
    max-height: 120px;
    object-fit: contain;
}

/* 新闻热点区域 */
.news-hot-section {
    display: flex;
    gap: 20px;
    margin: 20px 0;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 15px;
}

.image-news {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 5px;
}

.image-news img {
    width: 100%;
    height: 111px;
    object-fit: cover;
}

.image-title {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 10px;
    border-radius: 3px;
    font-size: 16px;
    z-index: 2;
}

.image-title a {
    color: #fff;
}

.image-title a:hover {
    color: #c00;
    text-decoration: underline;
}

.news-list-wrap {
    flex: 2;
}

.news-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    background: url(/app/index/view/images/bg.jpg) repeat-x 50px;
}

.news-filter {
    display: flex;
    align-items: center;
    gap: 10px;
}

.news-filter span {
    font-size: 16px;
    color: #666;
}

.news-filter select {
    padding: 5px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

/* 热榜样式 */
.hot-rank {
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 15px;
}

.hot-rank-header {
    margin-bottom: 10px;
}

.hot-rank-header h3 {
    font-size: 18px;
    color: #000;
    margin-bottom: 10px;
    border-left: 4px solid #d0232b;
    padding-left: 10px;
}

.hot-rank-list {
    list-style: none;
    padding: 0;
    margin: 0;
    background: url(../images/ph.jpg) no-repeat left 0px;
}

.hot-rank-item {
    font-size: 16px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    height: 34px;
    padding-left: 40px;
}

.hot-rank-item a {
    text-decoration: none;
    color: #333;
}

.hot-rank-item a:hover {
    color: #c00;
    text-decoration: underline;
}

/* 新闻分类区域 */
.news-categories {
    margin: 20px 0;
    background: #fff;
    width: 100%;
}

.category-row {
    display: flex;
    gap: 20px;
}

.category-column {
    flex: 1;
    padding: 0 10px;
}

.category-header {
    position: relative;
    margin-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
    background: url('/app/index/view/images/bg.jpg') 0px 13px / auto 14px repeat-x;
}

.category-title {
    display: inline-block;
    padding: 0 15px;
    line-height: 40px;
    font-size: 18px;
    font-weight: bold;
    color: #c00;
    position: relative;
    background: #fff;
    margin: 0;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #c00;
}

/* 特色新闻样式 */
.featured-news {
    display: flex;
    gap: 15px;
    background-color: #f6f6f6;
    margin-bottom: 15px;
}

.category-news-image {
    flex: 0 0 160px;
    height: 120px;
    overflow: hidden;
}

.category-news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-title {
    flex: 1;
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
    display: flex;
    align-content: space-around;
    flex-wrap: wrap;
}

.featured-title a:hover {
    color: #c00;
    text-decoration: underline;
}

/* 新闻列表样式补充 */
.news-list-item {
    padding: 10px 0;
    border-bottom: 1px dashed #eee;
}

/* 分类内容模块 */
.page-content {
    width: 100%;
    max-width: 1280px;
    margin: 20px auto;
}

.content-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.column {
    flex: 1;
    min-width: 300px;
    background: #fff;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.column-title {
    font-size: 18px;
    color: #c00;
    padding-bottom: 10px;
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.news-item {
    padding: 5px 0;
    border-bottom: 1px dashed #eee;
}

.news-item:last-child {
    border-bottom: none;
}

.news-item a {
    text-decoration: none;
    color: #333;
    font-size: 16px;
    padding-left: 14px;
    background: url(../images/o.jpg) no-repeat 0px 9px;
}

.news-item a:hover {
    color: #c00;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.news-date {
    font-size: 16px;
    color: #999;
    margin-right: 10px;
}

/* 分类区域 */
.category-column {
    flex: 1;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.category-content {
    padding: 15px;
}

.category-content img {
    width: 100%;
    height: 252px;
    border-radius: 5px;
    margin-bottom: 10px;
}

.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-list li {
    font-size: 16px;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.5;
    padding-left: 14px;
    background: url(../images/o.jpg) no-repeat 0px 9px;
}

.category-list li:last-child {
    margin-bottom: 0;
}

.category-list a:hover {
    color: #c00;
    text-decoration: underline;
}

/* 页脚 */
.footer {
    background: #f5f5f5;
}

.footer-links {
    background: #fff;
    padding: 10px 0;
    border-bottom: 2px solid #fb6262;
}

.footer-links p {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
}

.links-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.links-list a {
    color: #333;
    text-decoration: none;
    font-size: 16px;
}

.links-list a:hover {
    color: #c00;
    text-decoration: underline;
}

.footer-info {
    padding: 10px 0;
}

.info-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-links a {
    color: #333;
    text-decoration: none;
    font-size: 16px;
}

.info-links a:hover {
    color: #c00;
    text-decoration: underline;
}

.copyright {
    font-size: 16px;
    color: #999;
    margin-top: 10px;
}

/* 新闻详情页样式 */
.news-page-container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 20px 20px 20px;
    gap: 20px;
}

.news-main-container {
    flex: 1;
    min-width: 300px;
    background-color: #fff;
    padding: 30px;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.news-headertop {
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.news-title-2 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #000;
}

.news-info {
    display: flex;
    justify-content: space-between;
    color: #666;
    font-size: 14px;
}

.news-source {
    color: #999;
}

.news-font-control {
    display: flex;
    gap: 10px;
}

.news-font-btn {
    cursor: pointer;
    color: #666;
    padding: 2px 8px;
    border-radius: 2px;
    user-select: none;
}

.news-font-btn:hover {
    background-color: #f0f0f0;
    color: #c00;
}

/* 相关新闻样式 */
.news-related {
    width: 280px;
    background-color: #fff;
    padding: 15px;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.news-related h3 {
    font-size: 18px;
    color: #c00;
    margin: 0 0 15px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid #e0e0e0;
}

.news-related-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.news-related-item {
    display: flex;
    flex-direction: row;
    gap: 10px;
    margin-bottom: 15px;
}

.news-related-img {
    width: 120px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
}

.news-related-title {
    flex: 1;
    font-size: 14px;
    color: #333;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.news-related-title a:hover {
    color: #c00;
    text-decoration: underline;
}

/* 分页样式 */
.pages {
    font-size: 12px;
    text-align: center;
    padding: 10px 0;
}

.pages li {
    display: inline-block;
    margin: 3px;
}
.pages a {
    font-size: 14px;
    padding: 6px 0px;
    background: #f5f5f5;
    display: block;
}

.pages a:hover, .pages li.active a {
    background: #01459a;
    color: #fff;
    text-decoration: none;
}

.pages select {
    vertical-align: middle;
    font-size: 8pt;
    padding: 0;
}

.pages b {
    font-weight: 400;
}
.pagination {
	display: inline-block;
	padding-left: 0;
	margin: 20px 0;
	border-radius: 4px
}
.pagination>li>a, .pagination>li>span {
	position: relative;
	float: left;
	padding: 6px 2px;
	margin-left: -1px;
	line-height: 1.42857143;
	color: #337ab7;
	text-decoration: none;
	background-color: #fff;
	border: 1px solid #ddd
}
.pagination>li:first-child>a, .pagination>li:first-child>span {
	margin-left: 0;
	border-top-left-radius: 4px;
	border-bottom-left-radius: 4px
}
.pagination>li:last-child>a, .pagination>li:last-child>span {
	border-top-right-radius: 4px;
	border-bottom-right-radius: 4px
}
.pagination>li>a:focus, .pagination>li>a:hover, .pagination>li>span:focus, .pagination>li>span:hover {
	z-index: 3;
	color: #23527c;
	background-color: #eee;
	border-color: #ddd
}
.pagination>.active>a, .pagination>.active>a:focus, .pagination>.active>a:hover, .pagination>.active>span, .pagination>.active>span:focus, .pagination>.active>span:hover {
	z-index: 2;
	color: #fff;
	cursor: default;
	background-color: #337ab7;
	border-color: #337ab7
}
.pagination>.disabled>a, .pagination>.disabled>a:focus, .pagination>.disabled>a:hover, .pagination>.disabled>span, .pagination>.disabled>span:focus, .pagination>.disabled>span:hover {
	color: #777;
	cursor: not-allowed;
	background-color: #fff;
	border-color: #ddd
}
.pagination-lg>li>a, .pagination-lg>li>span {
	padding: 10px 16px;
	font-size: 18px;
	line-height: 1.3333333
}
.pagination-lg>li:first-child>a, .pagination-lg>li:first-child>span {
	border-top-left-radius: 6px;
	border-bottom-left-radius: 6px
}
.pagination-lg>li:last-child>a, .pagination-lg>li:last-child>span {
	border-top-right-radius: 6px;
	border-bottom-right-radius: 6px
}
.pagination-sm>li>a, .pagination-sm>li>span {
	padding: 5px 10px;
	font-size: 12px;
	line-height: 1.5
}
.pagination-sm>li:first-child>a, .pagination-sm>li:first-child>span {
	border-top-left-radius: 3px;
	border-bottom-left-radius: 3px
}
.pagination-sm>li:last-child>a, .pagination-sm>li:last-child>span {
	border-top-right-radius: 3px;
	border-bottom-right-radius: 3px
}
/* 新闻详情分享功能 */
.fenxiang-nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
}

.fenxiang-nav-left {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 14px;
}

.fenxiang-nav-left a {
    color: #333;
    text-decoration: none;
}

.fenxiang-nav-left a:hover {
    color: #c00;
    text-decoration: underline;
}

.fenxiang-nav-left .fenxiang-home-icon {
    width: 16px;
    height: 16px;
    background-image: url(/app/index/view/images/index_a.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.fenxiang-nav-left .fenxiang-arrow {
    color: #999;
}

.fenxiang-share-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.fenxiang-share-text {
    color: #666;
    font-size: 14px;
}

.fenxiang-share-icons {
    display: flex;
    gap: 10px;
}

.fenxiang-share-icon {
    position: relative;
    width: 24px;
    height: 24px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
}

.fenxiang-wechat {
    background-image: url('/app/index/view/images/weixin.png');
}

.fenxiang-weibo {
    background-image: url('/app/index/view/images/weibo.png');
}

.fenxiang-more {
    background-image: url('/app/index/view/images/gengduo.png');
}

.fenxiang-qrcode-popup {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 10px;
    padding: 10px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.fenxiang-qrcode-popup img {
    width: 120px;
    height: 120px;
}

.fenxiang-qrcode-popup p {
    margin-top: 5px;
    font-size: 12px;
    color: #666;
    text-align: center;
    white-space: nowrap;
}

.fenxiang-share-icon:hover .fenxiang-qrcode-popup {
    display: block;
}

.fenxiang-qrcode-popup::after {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid #fff;
    border-top: none;
}

.fenxiang-more-popup {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.fenxiang-more-popup .fenxiang-more-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
    cursor: pointer;
}

.fenxiang-more-popup .fenxiang-more-item img {
    width: 24px;
    height: 24px;
}

.fenxiang-more-popup .fenxiang-more-item span {
    font-size: 14px;
    color: #333;
}

.fenxiang-share-icon.fenxiang-more:hover .fenxiang-more-popup {
    display: block;
}

.fenxiang-more-popup::after {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid #fff;
    border-top: none;
}

/* 轮播动画 */
.slider {
    display: flex;
    width: 300%;
    animation: slide 15s infinite;
}

.slider-item {
    width: 33.333%;
    position: relative;
}

.slider-item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

@keyframes slide {
    0%, 30% { transform: translateX(0); }
    33%, 63% { transform: translateX(-33.333%); }
    66%, 96% { transform: translateX(-66.666%); }
    100% { transform: translateX(0); }
}

/* 响应式布局调整 */
@media screen and (max-width: 1280px) {
    .container,
    .news-container,
    .live-news-container {
        width: 95%;
    }
}

@media screen and (max-width: 992px) {
    .main-title h1 {
        font-size: 24px;
    }

    .news-container,
    .live-news-container,
    .news-hot-section,
    .category-row {
        flex-direction: column;
    }

    .column,
    .category-column,
    .image-news,
    .news-list-wrap,
    .hot-rank {
        width: 100%;
        margin: 0 auto;
    }

    .hot-rank {
        margin-top: 20px;
    }

    .content-columns {
        gap: 15px;
    }

    .column {
        flex: 0 0 calc(50% - 15px);
    }
}

@media screen and (max-width: 768px) {
    .header .container {
        padding: 20px 0;
        flex-direction: column;
        gap: 15px;
    }

    .search-form {
        width: 100%;
        padding: 0;
    }

    .search-box {
        width: 100%;
        padding: 6px 12px;
    }

    .search-box button {
        font-size: 16px;
    }

    .quick-links {
        display: none;
    }

    .logo {
        margin-bottom: 10px;
    }

    .featured-news {
        flex-direction: column;
    }

    .category-news-image {
        flex: 0 0 auto;
        height: 180px;
    }

    .news-page-container {
        flex-direction: column;
    }

    .news-related {
        width: 100%;
        order: 2;
    }

    .news-main-container {
        order: 1;
    }

    .news-title {
        font-size: 20px;
    }
}

@media screen and (max-width: 480px) {
    .main-title h1 {
        font-size: 20px;
    }

    .sub-nav,
    .news-title,
    .news-list li,
    .live-title,
    .highlight-title,
    .highlight-list li,
    .column-title,
    .news-item {
        font-size: 16px;
    }

    .slider-container {
        padding: 0 5px;
    }

    .slider-container img {
        max-height: 60px;
    }
}
/**首页焦点新闻精选**/
/* 强制修复新闻列表链接悬停样式 */
.news-list-index li a {
    color: #333 !important; /* 确保默认颜色正确 */
    text-decoration: none !important;
}

/* 悬停效果强制生效 */
.news-list-index li a:hover {
    color: #c00 !important; /* 强制变红 */
    text-decoration: underline !important; /* 强制显示下划线 */
    text-underline-offset: 2px !important;
    transition: all 0.2s ease !important; /* 平滑过渡 */
}

/* 确保没有其他样式干扰 */
.news-list-index li:hover {
    color: inherit !important; /* 不影响父元素 */
}

/**首页即时新闻精选**/
/* 即时新闻精选链接样式修复 */
.highlight-news-list a {
    /* 确保链接可点击区域覆盖整个列表项 */
    display: block;
    color: #333 !important; /* 默认文字颜色 */
    text-decoration: none !important; /* 去掉默认下划线 */
    line-height: 1.8; /* 行间距（文字大小的1.8倍，推荐值） */
    padding: 4px 0; /* 上下内边距，增加列表项之间的间距 */
}

/* 悬停时文字变红+下划线 */
.highlight-news-list a:hover {
    color: #c00 !important; /* 强制变红 */
    text-decoration: underline !important; /* 显示下划线 */
    text-underline-offset: 2px !important; /* 下划线与文字间距 */
}

/* 单独保持时间戳颜色不变 */
.highlight-news-list a:hover .time {
    color: #999 !important; /* 时间戳仍为灰色 */
}

