    /* 基础样式重置 */
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: "Microsoft YaHei", "SimHei", sans-serif;
    }

    body {
        /* width: 1200px; */
        margin: 0 auto;
        position: relative;
        z-index: -20;
    }

    a {
        text-decoration: none;
    }

    /* 页头容器 */
    .header-container {
        position: absolute;
        /* 脱离文档流，浮于轮播图上 */
        top: 0;
        left: 0;
        width: 100%;
        /* 铺满宽度 */
        z-index: 10;
        /* 确保在轮播图之上（轮播图z-index需低于10） */
        background-color: rgba(255, 255, 255, 0.5);
    }

    /* 顶部信息栏 */
    .top-bar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 80px;
        /* 固定高度 */
    }

    /* 左侧logo区域 */
    .logo-box {
        display: flex;
        align-items: center;
        width: 33%;
    }

    .company-name {
        font-size: 20px;
        color: #005ea6;
        /* 主色调蓝色 */
        font-weight: bold;
    }

    .english-name {
        font-size: 12px;
        color: #666;
    }

    /* 右侧功能区 */
    .right-function {
        width: 100%;
        display: flex;
        gap: 25px;
        flex-direction: row;
        justify-content: flex-end;
        flex-wrap: wrap;
        align-items: center;
        margin-left: -25px;
    }

    /* 快捷链接 */
    .quick-links {
        display: flex;
        gap: 20px;
    }

    .quick-links a {
        line-height: 2;
        height: 25px;
        padding-left: 20px;
        border-left-width: 1px;
        border-left-style: solid;
        border-left-color: #EEEEEE;
        color: #333;
        text-decoration: none;
        font-size: 14px;
    }

    .quick-links a:hover {
        color: #005ea6;
    }

    /* 搜索框 */
    .search-container {
        display: flex;
        align-items: center;
    }

    .search-input {
        width: 180px;
        height: 30px;
        padding: 0 10px;
        border: 1px solid #ccc;
        border-right: none;
        outline: none;
        font-size: 13px;
    }

    .search-btn {
        height: 30px;
        padding: 0 12px;
        background-color: #005ea6;
        color: white;
        border: none;
        cursor: pointer;
        font-size: 14px;
    }

    /* 主导航栏 */
    .navbar {
        padding: 0;
    }

    .nav-list {
        display: flex;
        list-style: none;
        align-items: center;
    }

    .nav-item {
        position: relative;
    }

    .nav-link {
        display: block;
        padding: 16px 0px;
        color: #333;
        padding-left: 41px;
        text-decoration: none;
        transition: color 0.3s ease;
        position: relative;
        font-family: 'Noto Sans CJK';
        font-size: 16px;
        color: #333;
        font-weight: normal;
        font-style: normal;
    }

    .nav-link:hover {
    }

    .dropdown-menu {
        position: absolute;
        top: 113%;
        left: -3px;
        background-color: #fff;
        min-width: 150px;
        /* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08); */
        border-radius: 0 0 4px 4px;
        visibility: hidden;
        opacity: 0;
        transform: translateY(10px);
        transition: all 0.3s ease;
        z-index: 100;
    }

    .nav-item:hover .dropdown-menu {
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
    }

    /*         
        .dropdown-menu.show {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        } */

    .dropdown-item {
        text-align: center;
        display: block;
        padding: 12px 20px;
        color: #4A4A4A;
        font-size: 14px;
        text-decoration: none;
        transition: all 0.2s ease;
        /* border-bottom: 1px solid #f0f0f0; */
    }

    .dropdown-item:hover {
        background-color: #005AAB;
        color: #f8f9fa;
    }

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

    /* 轮播图样式 */
    .carousel-container {
        position: relative;
        width: 100%;
        height: 645px;
        overflow: hidden;
        z-index: 5;
    }

    .carousel-wrapper {
        position: absolute;
        width: 300%;
        /* 3张图所以是300% */
        height: 100%;
        display: flex;
        transition: transform 0.5s ease-in-out;
    }

    .carousel-item {
        width: 33.333%;
        /* 每张图占1/3宽度 */
        height: 100%;
        position: relative;
    }

    .carousel-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .carousel-caption {
        width: 490px;
        height: 190px;
        position: absolute;
        top: 50%;
        left: 50%;
        /* 关键1：保留初始状态（透明+缩小），和动画 from 一致 */
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.1);
        /* 初始缩小，代替原来的纯 translate */
        text-align: center;
        color: white;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
        /* 关键2：删除这里的 animation 属性！动画移到触发类里 */
    }

    /* 新增：动画触发类（只有添加这个类，才会执行动画） */
    .carousel-caption.animate {
        animation: fadeInCenter 1s ease-out forwards;
    }

    .carousel-caption img {
        width: 100%;
        height: 100%;
    }

    /* 你原有的动画定义不变 */
    @keyframes fadeInCenter {
        from {
            opacity: 0;
            transform: translate(-50%, -50%) scale(0.1);
        }

        to {
            opacity: 1;
            transform: translate(-50%, -50%) scale(1);
        }
    }




    /* 轮播控制按钮 */
    .carousel-control {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 36px;
        height: 60px;
        background-color: rgba(0, 0, 0, 0.3);
        color: white;
        border: none;
        font-size: 24px;
        cursor: pointer;
        transition: background-color 0.3s;
        z-index: 10;
    }

    .carousel-control:hover {
        background-color: rgba(0, 0, 0, 0.5);
    }

    .prev-btn {
        left: 20px;
    }

    .next-btn {
        right: 20px;
    }

    /* 轮播指示器 */
    .carousel-indicators {
        position: absolute;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 10px;
        z-index: 10;
    }

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

    .indicator.active {
        background-color: white;
        width: 30px;
        border-radius: 6px;
    }

    /* 滚动Banner样式 */
    .banner-container {
        overflow: hidden;
        position: relative;
        background: rgb(147, 196, 125);
        height: 48px;
        color: #fff;
        width: 90%;
        margin: auto;
        margin-left: 10%;
    }

    .fbabber {
        width: 100%;
        background: rgb(147, 196, 125);
        position: relative;
    }

    .fbabber-text {
        display: flex;
        color: #fff;
        position: absolute;
        top: 13px;
    }

    .fbabber-text img {
        margin-right: 5px;
    }

    .banner-track {
        display: flex;
        width: 200%;
        animation: scroll 30s linear infinite;
        line-height: 3;
    }
.banner-track .newBlank{
        margin-right: 13px;
    }
    @keyframes scroll {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(-50%);
        }
    }

    .banner-container:hover .banner-track {
        animation-play-state: paused;
    }

    /* 响应式调整 */
    @media (max-width: 768px) {
        .carousel-slide {
            height: 300px;
        }
    }

    .demo {
        width: 100%;
        margin-top: 6px;
        display: flex;
        justify-content: space-evenly;
        height: 128px;
        text-align: center;
        /* padding: 0 20px; */
    }

    .demo span.counter {
        line-height: 80px;
        font-size: 64px;
        font-family: Impact, sans-serif;
        font-weight: bold;
        color: #242865;
    }

    .demo span.jieshao {
        font-family: "Arial";
        font-size: 14px;
        line-height: 50px;
        color: #888888;
    }

    .demo .demo01 {
        width: 259px;
        height: 128px;
        text-align: center;
        padding: 0 15px;
        float: left;
        border-right: 1px solid #dedede;
    }

    .demo .demo02 {
        width: 259px;
        height: 128px;
        text-align: center;
        padding: 0 20px;
        float: left;
        border-right: 1px solid #dedede;
    }

    .demo .demo03 {
        width: 259px;
        height: 128px;
        text-align: center;
        padding: 0 20px;
        float: left;
        border-right: 1px solid #dedede;
    }

    .demo .demo04 {
        width: 259px;
        height: 128px;
        text-align: center;
        padding: 0 20px;
        float: left;
        border-right: 1px solid #dedede;
    }

    /* 标签标题 */
    .about-section {
        margin: -14px 0 30px 0px;
        text-align: center;
        padding: 50px 20px;
        position: relative;
    }
.about-section .to {
margin-top: 35px;
        font-weight: bolder;
    font-family: Arial Black;
    font-size: 78px;
    color: #87b3de;
    }
.about-section .abdesc{
    color:#fff;
}
   .about-section .abtitle {
margin-top: 35px;
        font-family: Source Han Sans, Geneva, sans-serif;
    color: #fff;
    font-weight: bolder;
    font-size: 30px;
    }
    .about-bg {
font-family: Arial Black;
        position: absolute;
        top: 20%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-size: 80px;
        color: #edf2f7;
        font-weight: bold;
        z-index: -1;
    }

    .about-title {
font-family: Source Han Sans, Geneva, sans-serif;
        font-size: 30px;
        font-weight: bold;
        color: #333;
        margin-bottom: 20px;
    }

    .about-desc {
        font-family: Source Han Sans, Geneva, sans-serif;
        font-size: 14px;
        color: #666;
        line-height: 1.6;
        width: 100%;
        margin: 0 auto;
    }

    /* 内容1 */
    /* .neirong{
        display: flex;
    } */
    .neirong .nr_num {
margin-top: -55px;
        margin-left: 15px;
        height: 100%;
        word-wrap: break-word;
        position: relative;
    }

    /* .neirong .img_bg{
        width: 100%;
        height: 100%;
    } */

    /* 容器样式：左右布局 */
    .neirong {
        display: flex;
        /* align-items: center; */
        /* gap: 30px; */
        margin: 0 auto;
        opacity: 0;
        /* 初始隐藏整体，避免未触发时显示 */
    }

    /* 了解更多 */
    .neirong a {
        color: #005AAB;
        font-size: 16px;
        width: 163px;
        display: inline-block;
        border: 1px solid #005AAB;
        height: 45px;
        text-align: center;
        line-height: 2.5;
        position: absolute;
        right: 1px;
        bottom: 75px;
    }

    .neirong a:hover {
        border: 0px solid #ffffff;
        color: #fff;
        background: #005AAB;
transition: box-shadow .3s, border .3s, background-color .3s, color .3s;
    }

    /* 左侧图片区 */
    .img_bg {
    height: 100%;
        flex: 1;
        transform: translateX(-100%);
        /* 初始在左侧视口外 */
        opacity: 0;
        transition: all 0.8s ease-out;
        /* 动画过渡 */
    }

    .img_bg img {
        width: 650px;
        height: 430px;
        border-radius: 8px;
    }

    /* 右侧文字区 */
    .nr_num {
        flex: 1;
        transform: translateX(50%);
        /* 初始在右侧视口外 */
        opacity: 0;    overflow: hidden;
        transition: all 0.8s ease-out 0.2s;
        /* 延迟0.2s，与左侧错开入场 */
        overflow: hidden;
    }

    /* 文字区内图片布局 */
    .nr_num div {
        margin-top: 20px;
        bottom: -86%;
        position: absolute;
        /* display: flex; */
        height: 160px;
        width: 100%;
    }

    .nr_num div img {
        width: 30%;
        height: 100%;
        object-fit: cover;
        border-radius: 4px;
        margin-right: 15px;

    }

    /* 触发动画的类（通过JS添加） */
    .neirong.visible {
        opacity: 1;
        position: relative;
    }

    .neirong.visible .img_bg {
background-color: #000;
        transform: translateX(0);
        height: 410px;
        /* 左侧滑入 */
        opacity: 1;
    }

    .neirong.visible .nr_num {
        transform: translateX(0);
        /* 右侧滑入 */
        opacity: 1;
        overflow: hidden;
    }

    /* 业务体系内容 */
    .yewu {
        display: inline-block
    }

    .yewu .yewu_neirong {
        display: inline-block;
        position: relative;
        padding: 0 5px;
    }

    .yewu .yewu_neirong a img {
        transition: transform 0.3s ease;
        /* 动画时长0.3秒，过渡曲线平滑 */
    }

    .yewu .yewu_neirong:hover a img {
        transform: translateY(-5px);    overflow: hidden;
    }

    .yewu .yewu_neirong a div {
        display: inline-block;
        position: absolute;
        left: 23%;
        bottom: 13px;
        background: #3099dd;
        color: #fff;
        width: 133px;
        height: 36px;
        line-height: 36px;
        text-align: center;
    }

    .yewu .dianji {
        color: #005AAB;
        font-size: 16px;
        width: 192px;
        display: inline-block;
        border: 1px solid #005AAB;
        height: 47px;
        text-align: center;
        line-height: 2.8;
        margin-left: 42%;
        margin-top: 40px;
    }

    .yewu .dianji:hover {
        border: 0px solid #ffffff;
        color: #fff;
        background: #005AAB;
    }

    /* 党建内容 */
    .dangjian {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        position: relative;
        overflow: hidden;
    }

    .dangjian .dj_img a {
        color: #000;
        width: 535px;
        height: 134px;
        display: flex;
        margin-top: 13px;
        border-bottom-color: #ddd;
        border-bottom-width: 2px;
        border-bottom-style: solid;
        position: relative;
        /* 新增：作为图片伪元素的定位父级 */
        overflow: hidden;
    }

    .dangjian .dj_img a img {
      
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
        /* 平滑过渡动画 */
    }

    .dangjian .dj_img a:hover img {
        transform: scale(1.05);
    }

    .dangjian .dj_img a:hover::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
        /* 伪元素在图片上方，不遮挡文字 */
    }

    .dangjian .dj_img .dj_img_num {
        padding: 0 0 0 20px;
        position: relative;
        z-index: 2;
        /* 确保文字在伪元素上方 */
    }

    .dangjian .dj_img .dj_img_num div:first-child {
        line-height: 20px;
    display: block;
    font-family: Tahoma;
    font-size: 14px;
    font-style: normal;
    font-weight: bold;
    color: #404040;
    text-decoration: none;
    transition: text-decoration 0.3s 
ease;
    }

    .dangjian .dj_img .dj_img_num div:first-child:hover {
font-style: normal;
    font-weight: bold;
    color: #222;
    text-decoration: underline;
        /* 下划线 */
        text-decoration: underline;
        text-underline-offset: 2px;
        text-decoration-color: #333;
        text-decoration-thickness: 1px;
    }

    .dangjian .dj_img .dj_img_num span {
        padding: 0;
        margin: 0;
        margin-top: 5px;
        line-height: 18px;
        font-family: Tahoma;
        font-size: 12px;
        font-style: normal;
        font-weight: normal;
        color: #999;
        text-decoration: none;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        word-break: break-all;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .dangjian .dj_img .dj_img_num :last-child {
        font-size: 12px;
        color: #333;
        line-height: 5;
    }

    .dangjian .dj_click {
        color: #005AAB;
        font-size: 16px;
        width: 192px;
        display: inline-block;
        border: 1px solid #005AAB;
        height: 47px;
        text-align: center;
        line-height: 2.8;
        margin-left: 44%;
        margin-top: 30px;
    }

    .dangjian .dj_click:hover {
        border: 0px solid #ffffff;
        color: #fff;
        background: #005AAB;
    }


    /* footer */
    .footer {
        margin-top: 50px;
        /* background-color: #0066cc; */
        color: #fff;
        font-size: 14px;
        padding: 20px 0;
        text-align: center;
    }

    /* 顶部链接区域 */
    .footer-nav {
        background-color: rgb(0, 90, 171);
        line-height: 4;
        font-weight: normal;
        font-style: normal;
        font-family: 'Noto Sans CJK';
    }

    .footer-nav a {
        font-weight: normal;
        font-style: normal;
        font-family: 'Noto Sans CJK';
        color: #fff;
        text-decoration: none;
        margin: 0 12px;
    }

    .footer-nav a:hover {
        text-decoration: underline;
    }

    /* 备案资质区域 */
    .footer-info {
        line-height: 25px;
        background-color: rgb(0, 90, 171);
        margin-bottom: 15px;
        font-weight: normal;
        font-style: normal;
        font-family: 'Noto Sans CJK';
    }

    .footer-info img {
        vertical-align: middle;
        margin-right: 5px;
        width: 14px;
        height: 16px;
    }

    /* 底部IPv6说明 */
    .footer-ipv6 {
        line-height: 2;
        font-weight: normal;
        font-style: normal;
        font-family: 'Noto Sans CJK';
        font-size: 12px;
        color: #999;
    }





    /* 新闻中心 */
/* 轮播图样式 */
.xinwen {
    width: 100%;
    height: 580px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: -10;
    top: -65px;
}
.conterY {
    width: 1200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
}

.conterY .bottom {
    width: 100%;
    height: 450px;
    display: flex;
    margin-top: 20px;
}

.bottomLeft {
    width: 50%;
    height: 100%;
}

.carousel {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
}

.carousel-inner {
    display: flex;
    width: 600%;
    height: 100%;
    transition: transform 0.5s ease;
}

.carousel-items {
    width: 16.666%;
    height: 100%;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.carousel-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 轮播控制按钮 */
.carousel-aw {
    position: absolute;
    top: 40%;
    z-index: 10;
    color: #fff;
    border: none;
    width: 30px;
    height: 50px;
    background-color: rgba(000, 000, 000, .2);
    font-size: 18px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
   transition: background-color 0.3s ease, color 0.3s ease;
}

.carousel-aw.prev {
    left: 20px;
}

.carousel-aw.next {
    right: 20px;
}
.carousel-aw:hover {
    background-color: rgba(000, 000, 000, .4);
    color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
/* 缩略图控制区 */
.carousel-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 25px;
}

.carousel-thumbnails {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-grow: 1;
    margin: 0 20px;
}

.thumbnail {
    width: 75px;
    height: 50px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.7;
    transition: all 0.3s;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
    position: relative;
}

.thumbnail.active {
    opacity: 1;
    transform: scale(1.1);
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumbnail::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.thumbnail.active::after {
    background: transparent;
}


/* 右侧悬浮字 */
.bottomRight {
    width: 50%;
    height: 430px;
    margin-left: 10px;
}

.news-container {
    width: 100%;
    height: 100%;
    background-color: #f5f7fa;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

/* 标签切换区域 */
.news-tabs {
    display: flex;
    background-color: #eef2f7;
    border-bottom: 1px solid #dce3ed;
}

.tab {
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    color: #666;
}

.tab.active {
box-shadow: inset 0 0 6px 4px rgba(0, 0, 0, 0.08);
    }

.tab.active::before {
    content: "";
    position: absolute;
    left: 10px;
    top: 20px;
    width: 4px;
    height: 15px;
    background-color: #539F0D;
}

.tab.active::after {
    content: "";
    position: absolute;
    right: 0px;
    top: 0px;
    width: 4px;
    height: 100%;
    background-color: #4CC2A8;
}

/* 内容区域 */
.news-content {
    padding: 20px 10px;
}

.news-list {
    display: none;
}

.news-list.active {
    display: block;
}

.news-item {
    width: 100%;
    height: 36px;
    border-bottom: 1px dashed #dce3ed;
    display: flex;
    align-items: center;
    font-size: 14px;
    position: relative;
}

.news-item>a {
    color: #666;
}

.news-item>a:hover {
    text-decoration: underline;
}

.news-item>span {
    display: block;
    position: absolute;
    right: 0;
    padding: 0 5px 0 10px;
    margin: 0;
    float: right;
    color: #BBB;
    font-size: 14px;
    font-family: Tahoma;
    font-weight: normal;
    font-style: normal;
    text-decoration: none;
}

.news-item::before {
    content: "•";
    color: #666;
    margin-right: 10px;
}

.news-date {
    color: #888;
    font-size: 14px;
}

 /* 了解更多 */
    .xinwen .lj {
        color: #fff;
        font-size: 16px;
        width: 192px;
        display: inline-block;
        border: 1px solid #fff;
        height: 47px;
        text-align: center;
        line-height: 2.8;
        position: absolute;
        bottom: 0px;
    }

    .xinwen .lj:hover {
        border: 0px solid #ffffff;
        color: #fff;
        background: #005AAB;
       transition: background-color .3s, color .3s;
    }
.fbabbers {
    width: 1200px;
    margin: 0 auto;
}