.footer{height: 280px; background: url(../image/bg_footer.jpg) no-repeat; background-size: 100% 100%; color: #888;}
.footer div{height: 30px; line-height: 30px; border-bottom: 1px solid #e1e1e2;}
.footer span{    padding: 0 9px;}
.footer p{height: 25px; line-height: 25px;}
.footer a:hover{text-decoration: underline;}




/* 悬浮容器基础样式（适配大尺寸内容） */
._wrap_1facf_1 {
    position: fixed; /* 固定定位实现悬浮 */
    right: 40px; /* 右侧距离，适配大尺寸 */
    bottom: 60px; /* 底部距离，适配大尺寸 */
    z-index: 9999; /* 确保悬浮在最上层，不被遮挡 */
    width: 200px; /* 容器宽度，匹配150px二维码+内边距 */
    background-color: #ffffff; /* 白色背景，清晰显影 */
    border-radius: 16px; /* 圆角设计，增强现代感 */
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.18); /* 阴影强化悬浮立体感 */
    overflow: hidden; /* 防止内部元素溢出容器 */
    transition: all 0.3s ease; /* 所有属性过渡，动画更自然 */
}

/* 内容区域样式（适配大尺寸内边距） */
._content_1facf_36 {
    padding: 25px 20px; /* 上下内边距25px，左右20px，保证内容不拥挤 */
    text-align: center; /* 所有内容居中对齐 */
}

/* 二维码区域样式（固定150*150尺寸） */
._scan_1facf_52 {
    width: 150px; /* 二维码容器宽度，固定150px */
    height: 150px; /* 二维码容器高度，固定150px */
    margin: 0 auto 20px; /* 水平居中，底部间距20px，与文字分隔 */
    border-radius: 12px; /* 二维码圆角，与整体风格统一 */
    overflow: hidden; /* 确保二维码图片不溢出容器 */
    background-color: #f8f8f8; /* 浅灰背景，突出二维码 */
    display: flex;
    align-items: center;
    justify-content: center; /* 微信图标在二维码容器中居中 */
}

/* 微信图标样式（适配150px容器） */
._scan_1facf_52 img {
    width: 120px; /* 微信图标宽度，预留容器间距 */
    height: 120px; /* 微信图标高度，保持比例 */
    object-fit: contain; /* 确保图标完整显示，不拉伸 */
}

/* 文字提示样式（适配大尺寸容器） */
._content_1facf_36 p {
    margin: 0 0 25px; /* 底部间距25px，与下载按钮分隔 */
    font-size: 16px; /* 字体放大，提升可读性 */
    color: #222222; /* 文字加深，更醒目 */
    line-height: 1.5; /* 行高优化，防止文字拥挤 */
    font-weight: 500; /* 字体加粗，突出提示 */
}

/* 下载按钮样式（固定100*100尺寸） */
._btnImg_1facf_42 {
    width: 150px; /* 下载图标宽度，固定100px */
    height: 100px; /* 下载图标高度，固定100px */
    margin: 0 12px; /* 左右间距12px，两个按钮互不拥挤 */
    border-radius: 12px; /* 按钮圆角，增强精致感 */
    transition: transform 0.2s ease, box-shadow 0.2s ease; /* 缩放+阴影过渡 */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12); /* 按钮基础阴影 */
    object-fit: contain; /* 确保下载图标完整，不变形 */
}

/* 下载按钮hover效果（增强交互感） */
._btnImg_1facf_42:hover {
    transform: scale(1.05); /* 轻微放大（5%），避免过度夸张 */
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18); /*  hover时加深阴影，突出反馈 */
}

/* 悬浮容器hover效果（整体交互强化） */
._wrap_1facf_1:hover {
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.22); /* 容器阴影加深 */
    transform: translateY(-6px); /* 轻微上浮6px，悬浮感更明显 */
}

/* 响应式调整（小屏幕适配，避免过大） */
@media (max-width: 768px) {
    ._wrap_1facf_1 {
        width: 180px; /* 容器宽度适当缩小 */
        right: 20px;
        bottom: 40px;
    }
    ._scan_1facf_52 {
        width: 130px; /* 二维码缩小至130px */
        height: 130px;
    }
    ._scan_1facf_52 img {
        width: 100px; /* 微信图标同步缩小 */
        height: 100px;
    }
    ._content_1facf_36 p {
        font-size: 14px; /* 文字缩小，适配小容器 */
        margin-bottom: 20px;
    }
    ._btnImg_1facf_42 {
        width: 85px; /* 下载按钮缩小至85px，避免小屏拥挤 */
        height: 85px;
        margin: 0 8px;
    }
}




/* 新闻模块优化样式 */
.news {
    padding: 0;
    background-color: #ffffff;
    overflow: visible;
    margin: 0 !important;
}

.news .wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 彻底消除新闻模块中的所有空白 */
/* 针对HTML结构中的所有嵌套元素使用精确选择器 */
.news,
.news > div,
.news > section,
.news .wrap,
.news .wrap > div,
.news_nav,
.news_nav > *,
section#news,
section#news > *,
.news-box,
.news-box > *,
.news-content,
.news-content > *,
.news-list,
.news-list > * {
    margin: 0 !important;
    padding: 0 !important;
    line-height: normal !important;
    height: auto !important;
}

/* 完全隐藏news_scroll元素，它似乎是空的但占据空间 */
.news_scroll {
    display: none !important;
    height: 0 !important;
    width: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* 确保特定的ID选择器也被覆盖 */
#newsContent,
#newsContent > * {
    margin: 0 !important;
    padding: 0 !important;
}

/* 重置所有可能的默认样式 */
.news * {
    box-sizing: border-box;
}

/* 确保没有任何伪元素导致额外空间 */
.news ::before,
.news ::after {
    margin: 0 !important;
    padding: 0 !important;
}

/* 新闻导航栏样式 */
.news_nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 5px;
    padding: 5px 0;
    background: linear-gradient(135deg, #f5f5f5, #ffffff);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.news_nav a {
    position: relative;
    padding: 5px 0;
    font-size: 16px;
    font-weight: 500;
    color: #666666;
    text-decoration: none;
    transition: all 0.3s ease;
}

.news_nav a:hover {
    color: #ff6b35;
}

.news_nav a.active {
    color: #ff6b35;
    font-weight: 600;
}

.news_nav a.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #ff6b35;
    border-radius: 1px;
}

.news_nav .add {
    margin-left: 20px;
    padding: 0;
}

.news_nav .add img {
    width: 20px;
    height: 20px;
    vertical-align: middle;
    transition: transform 0.3s ease;
}

.news_nav .add:hover img {
    transform: scale(1.1);
}

.news .title {
    font-size: 26px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 5px;
    text-align: left;
    position: relative;
    padding-left: 20px;
}

.news .title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 24px;
    background: linear-gradient(to bottom, #ff6b35, #ff8c5f);
    border-radius: 3px;
}

.news-box {
    margin-top: 0;
}

.news-content {
    position: relative;
}

.news-content .more {
    position: absolute;
    top: 0;
    right: 0;
    color: #666666;
    font-size: 14px;
    text-decoration: none;
    font-weight: 500;
    padding: 5px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    transition: all 0.3s ease;
    background-color: #ffffff;
}

.news-content .more:hover {
    color: #ffffff;
    background-color: #ff6b35;
    border-color: #ff6b35;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.news-list {
    display: block;
    margin-top: 5px;
    list-style: none;
    padding: 0;
}

.news-list li {
    border-bottom: 1px solid #f0f0f0;
    padding: 8px 0;
    transition: all 0.3s ease;
    position: relative;
}

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

.news-list li:hover {
    transform: translateX(5px);
}

.news-list li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    color: #333333;
    transition: color 0.3s ease;
    position: relative;
}

.news-list li a::before {
    content: '•';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    color: #ff6b35;
    font-size: 12px;
    opacity: 0;
    transition: all 0.3s ease;
}

.news-list li:hover a::before {
    opacity: 1;
    left: -10px;
}

.news-list li:hover a {
    color: #ff6b35;
}

/* 隐藏图片和摘要 */
.news-list .pic {
    display: none;
}

.news-list li > a > p {
    display: none;
}

/* 隐藏公告标签 */
.news-list li em {
    display: none;
}

/* 调整标题样式 */
.news-list li > a > strong {
    display: block;
    font-size: 16px;
    font-weight: 500;
    color: inherit;
    padding: 0;
    line-height: 1.6;
    margin-right: 15px;
    flex: 1;
    transition: color 0.3s ease;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* 调整时间样式 */
.news-list li .time {
    display: block;
    font-size: 14px;
    color: #999999;
    padding: 0;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.news-list li:hover .time {
    color: #ff6b35;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .news {
        padding: 30px 0;
    }
    
    .news_nav {
        gap: 15px;
        padding: 8px 0;
        flex-wrap: wrap;
    }
    
    .news_nav a {
        font-size: 14px;
    }
    
    .news_nav .add {
        margin-left: 10px;
    }
    
    .news_nav .add img {
        width: 18px;
        height: 18px;
    }
    
    .news .title {
        font-size: 22px;
        margin-bottom: 20px;
        padding-left: 15px;
    }
    
    .news .title::before {
        width: 5px;
        height: 20px;
    }
    
    .news-content .more {
        position: static;
        margin-bottom: 15px;
        display: block;
        text-align: center;
        padding: 8px 12px;
        font-size: 13px;
    }
    
    .news-list {
        margin-top: 25px;
    }
    
    .news-list li {
        padding: 15px 0;
        padding-left: 10px;
    }
    
    .news-list li:hover {
        transform: translateX(3px);
    }
    
    .news-list li > a > strong {
        font-size: 15px;
        margin-right: 8px;
    }
    
    .news-list li .time {
        font-size: 12px;
    }
    
    .news-list li a::before {
        left: -10px;
    }
    
    .news-list li:hover a::before {
        left: -8px;
    }
}

@media (max-width: 480px) {
    .news {
        padding: 20px 0;
    }
    
    .news .wrap {
        padding: 0 15px;
    }
    
    .news_nav {
        gap: 12px;
    }
    
    .news_nav a {
        font-size: 13px;
    }
    
    .news_nav .add {
        margin-left: 5px;
    }
    
    .news_nav .add img {
        width: 16px;
        height: 16px;
    }
    
    .news .title {
        font-size: 20px;
        padding-left: 12px;
    }
    
    .news-list li {
        padding: 12px 0;
    }
    
    .news-list li > a > strong {
        font-size: 14px;
    }
}

/* 加载动画 */
.lazy_img {
    opacity: 1;
    transition: opacity 0.3s ease;
}

.lazy_img.loading {
    opacity: 0.6;
}




/* 新闻板块整体样式 */
.section.news {
    width: 100%;
    padding: 40px 0;
    background-color: #f9f9f9;
}

/* 内容容器 */
.news .wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 新闻盒子主体 */
.news-box {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

/* 新闻内容区定位基础 */
.news-content .newsList {
    position: relative;
    padding: 24px;
}

/* 新闻标签切换栏 */
.newsTab {
    display: flex;
    gap: 2px;
    margin-bottom: 24px;
    border-bottom: 1px solid #eee;
}

.newsTab a {
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 500;
    color: #666;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.newsTab a.active {
    color: #2563eb;
    border-bottom-color: #2563eb;
}

.newsTab a:hover:not(.active) {
    color: #2563eb;
    background-color: #f0f5ff;
}

/* 更多按钮 */
.btnMore {
    position: absolute;
    top: 24px;
    right: 24px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    font-size: 14px;
    color: #2563eb;
    text-decoration: none;
    border: 1px solid #e1e7f5;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.btnMore:hover {
    background-color: #f0f5ff;
}

.btnMore em {
    display: inline-block;
    width: 16px;
    height: 16px;
    line-height: 16px;
    text-align: center;
    border-radius: 50%;
    background-color: #2563eb;
    color: #fff;
    font-style: normal;
    font-size: 12px;
}

/* 新闻列表容器 */
.newsQueue {
    overflow: hidden;
}

/* 新闻列表显示/隐藏控制 */
.newsQueueList {
    display: none;
}

.newsQueueList.show {
    display: block;
}

/* 单条新闻样式 */
.newsQueueList a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px dashed #eee;
    font-size: 15px;
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.newsQueueList a:last-child {
    border-bottom: none;
}

.newsQueueList a:hover {
    color: #2563eb;
}

.newsQueueList a em {
    font-style: normal;
    color: #999;
    font-size: 14px;
    white-space: nowrap;
}

.newsQueueList a span {
    flex: 1;
    margin: 0 16px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* 响应式适配 */
@media (max-width: 768px) {
    .newsTab a {
        padding: 8px 12px;
        font-size: 14px;
    }
    
    .btnMore {
        top: 18px;
        right: 18px;
        padding: 4px 8px;
        font-size: 12px;
    }
    
    .newsQueueList a {
        padding: 10px 0;
        font-size: 13px;
    }
    
    .newsQueueList a em {
        font-size: 12px;
    }
}