 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* ========= 头部 ========= */
        .top-bar {
            background: #ffffff;
            padding: 10px 0;
            border-bottom: 1px solid #e5e9f2;
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo-area {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .logo-icon {
           width: 380px;
            height: 65px;
        }

        .logo-icon img {
            width: 100%;
            height: 100%;
        }

        .site-title h1 {
            font-size: 18px;
            font-weight: bold;
            color: #c82027;
            line-height: 1.2;
        }

        .site-title p {
            font-size: 12px;
            color: #666666;
        }

        /* 搜索框 */
        .search-box {
            display: flex;
            align-items: center;
            gap: 0;
        }

        .search-box input {
            border: 1px solid #d0d7e3;
            border-right: none;
            border-radius: 4px 0 0 4px;
            padding: 6px 12px;
            font-size: 12px;
            width: 220px;
            outline: none;
            font-family: Source Han Sans CN, Source Han Sans CN-Regular;
        }

        .search-box input::placeholder {
            color: #999999;
        }

        .search-box button {
            background: #6495ed;
            border: 1px solid #6495ed;
            border-radius: 0 4px 4px 0;
            color: white;
            padding: 6px 16px;
            font-size: 12px;
            cursor: pointer;
        }

        /* 导航栏 */
        .nav-bar {
            background: #1556B1;
        }

        .nav-links {
            display: flex;
            list-style: none;
            justify-content: center;
            gap: 0;
        }

        .nav-links li a {
            display: inline-block;
            padding: 10px 18px;
            color: #ffffff;
            text-decoration: none;
            transition: background 0.2s;
            font-family: Source Han Sans CN, Source Han Sans CN-Regular;
            font-weight: 400;
            font-size: 16px;
            text-align: left;
            font-style: normal;
            text-transform: none;
        }

        .nav-links li a:hover,
        .nav-links li a.active {
            background: #0442A3;
            color: #ffffff;
        }

        /* 模块通用样式 */
        .section-row {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 20px;
            margin: 20px auto;
            max-width: 1200px;
            position: relative;
            z-index: 2;
        }

        .card {
            background: #ffffff;
            border-radius: 4px;
            overflow: hidden;
            position: relative;
            z-index: 2;
        }

        .card-header {
            background: #EDF3FE;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .card-header h3 {
            width: 147px;
            height: 46px;
            font-family: Source Han Sans CN, Source Han Sans CN;
            font-weight: bold;
            font-size: 20px;
            color: #FFFFFF;
            text-align: center;
            font-style: normal;
            text-transform: none;
            padding: 10px;
            background: url(../img/Rectangle\ 32.png);
        }

        .more-link {
            width: 82px;
            height: 24px;
            font-family: Source Han Sans CN, Source Han Sans CN;
            font-weight: 400;
            font-size: 16px;
            color: #3E88EE;
            text-align: left;
            font-style: normal;
            text-transform: none;
            text-decoration: none;
        }

        .card-content-style {
            padding: 10px 15px;
            background: url(./img/1.png) azure;
            width: 365px;
            margin-left:  14px;
            height: 200px;
            margin-top: 15px;
        }

        /* 工作动态轮播 */
        .banner-slider {
            position: relative;
            width: 100%;
            height: 355px;
            overflow: hidden;
            margin-bottom: 10px;
            padding: 15px 20px;
        }
        .banner-slider .slide {
            position: absolute;
            width: 96%;
            height: 100%;
            opacity: 0;
            transition: opacity 1.2s ease;
        }
        .banner-slider .slide.active {
            opacity: 1;
        }
        .banner-slider img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .news-list {
            list-style: none;
        }

        .news-item {
            display: flex;  
            justify-content: space-between;
            align-items: center;
            padding: 11px 0;
            border-bottom: 1.5px dashed #dddddd;
            cursor: pointer;
        }

        .news-item:last-child {
            border-bottom: none;
        }

        .news-title {
            font-family: "Source Han Sans CN", "Source Han Sans CN-Regular";
            color: #333333;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 6px;
            font-weight: 400;
            font-size: 16px;
                white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 645px;
        }

        .news-title::before {
            content: '·';
            color: #E25C7C;
            font-size: 16px;
        }

        .news-date {
            color: #333333;
        }

        /* ======================
           1. 慈善榜
           ====================== */
        
        .charity-rank{
            background-color: #77A9ED;
        }
        .charity-rank  h3 {
            font-family: Source Han Sans CN, Source Han Sans CN;
            font-weight: bold;
            font-size: 25px;
            color: #FFFFFF;
            text-align: center;
            font-style: normal;
            text-transform: none;
            margin-top: 20px;
        }
        .donation-list {
            list-style: none;
        }

        .donation-item {
            margin: 12px 0px;

            text-align: center;
        }

        .donation-item{
            background: #f8faff;
            height: 155px;
            border-radius: 10px;
        }
        .donor-conent{
            margin: 12px 10px;
            border: 1px solid #E0E0E0;
            position: absolute;
            width: 94%;
            height: 134px;
            border-radius: 10px;
        }
        .donor-name {
            font-size: 17px;
            color: #333333;
            font-weight: bold;
            font-family: Source Han Sans CN, Source Han Sans CN-Medium;
            margin: 15px auto;
        }

        .donation-date {
            font-size: 13px;
            color: #999999;
            margin-bottom: 6px;
            font-family: Source Han Sans CN, Source Han Sans CN-Regular;
        }

        .donation-amount {
            font-size: 21px;
            font-weight: bold;
            color: #CC1616;
            font-family: Source Han Sans CN-Bold;
        }

        /* 第二模块：基金简介 + 汇款方式 */
        .fund-intro .card-content {
            padding: 10px 10px;
        }
       
        .bank-info .card-header-style {
            background: #24D2A1 ;
            justify-content: center;
            height: 280px;
            display: flex;
            flex-direction: column;
        }       

       

        .bank-info p {
            margin: 4px 0;
            color: #1E293B  ;
            font-family: "Source Han Sans CN-Medium";
            font-size: 18px;
            font-weight: 600;
        }

        .bank-info strong {
            color: #8E8E93;
            font-size: 15px;
        }
        .card-header-style p1{
            font-family: Source Han Sans CN, Source Han Sans CN;
            font-weight: bold;
            font-size: 25px;
            color: #ffffff;
        }
        .card-content  p{
            font-family: Source Han Sans CN, Source Han Sans CN;
            font-weight: bold;
            font-size: 18px;
            color: #1E293B;
       }

        /* 第三模块：服务指南 + 表格/文件 */
        .service-guide .card-content,
        .form-download .card-content,
        .gov-docs .card-content {
            padding: 10px 15px;
        }

        .right-stack {
            display: flex;
            flex-direction: column;
            position: relative;
            z-index:2;
            width: 600px;
            gap: 29px;
        }
   
        /* ======================
           3. 表格下载 + 政府文件
           ====================== */
        .form-download .card-header p, .gov-docs .card-header p {
            font-size: 20px;
            color: #5090E9 ;
       }
        .form-download .card-header,
        .gov-docs .card-header {
            background: #EDF3FE ;
            height: 47px;
        }

        .file-list {
            list-style: none;
        }

        .file-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 8px 0;
            border-bottom: 2px dashed #dddddd;
        }

        .file-item:last-child {
            border-bottom: none;
        }
        
        .file-title {
            font-size: 16px;
            color: #333333;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 6px;
                white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 390px;
        }

        .file-date {
            font-size: 12px;
            color: #666666;
            margin-right: 20px;
        }

        /* 底部footer */
        .footer {
            background: #2067c9;
            color: #ffffff;
            padding: 20px 0;
            width: 100%;
            clear: both;
            box-sizing: border-box;
            position: relative;

         /* 核心：自动沉底，不遮挡、不悬浮 */
            margin-top: auto !important;
            flex-shrink: 0;
        }
        html, body {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            margin: 0;
            padding: 0;
        }
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 12px;
        }

        .footer-info p {
            margin: 4px 0;
        }

        .footer-link {
            background: rgba(255,255,250,0.2);
            padding: 6px 16px;
            border-radius: 4px;
            color: #ffffff;
            text-decoration: none;
            font-size: 12px;
        }
        /* 友情链接按钮 */
        .footer-link {
            position: relative;
            cursor: pointer;
        }
        /* 弹出面板 */
        .link-popup {
            display: none;
            position: absolute;
            bottom: 100%;
            right: 0;
            width: 1010px;
            background: #fff;
            border-radius: 6px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.15);
            padding: 15px;
            z-index: 9999;
            margin-bottom: 10px;
        }
        .link-popup.show {
            display: block;
        }
        .link-popup h4 {
            font-size: 17px;
            color: #1556B1;
            margin-bottom: 10px;
            padding-bottom: 5px;
            border-bottom: 1px solid #eee;
        }
        .link-items {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 10px;
        }
        .link-items a {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-decoration: none;
            color: #333;
            font-size: 18px;
            padding: 6px 4px;
            border-radius: 4px;
            font-weight: 600;
            text-align: center;
        }
        .link-items a:hover {
            background: #f0f6ff;
        }
        .link-items img {
            width: 120px;
            height: 32px;
            margin-bottom: 4px;
            object-fit: contain;
        }
        /* 遮罩层 */
        .overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.05);
            z-index: 9998;
        }
        .overlay.show {
            display: block;
        }
        /* 背景 */
        .big-module{
            width:100%;
            padding:20px 0;
            position:relative;
            z-index:1;
        }
        .mod1{background: url(../img/BIG.png) ;height: 690px;}
        .mod2{background:#DCEBFC }
        .mod3{background:#EDF4FE ;}

        /* 响应式 */
        @media (max-width: 900px) {
            .section-row {
                grid-template-columns: 1fr;
            }
        }
.pagination{
  display: flex;
}
.pagination li{
    font-size: 25px;
    width: 55px;
}


        .pagination > li > a, .pagination > li > span {
            position: relative;
            float: left;
            padding: 6px 10px;
            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-radius: 9px;
        }

        .pagination > li:last-child > a, .pagination > li:last-child > span {

        }

        .pagination > li > a:focus, .pagination > li > a:hover, .pagination > li > span:focus, .pagination > li > span:hover {
            z-index: 3;
            color: #60a8ff;;
            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: #60a8ff;
        border-color: #60a8ff;
    }

    .pagination > .disabled > a, .pagination > .disabled > a:focus, .pagination > .disabled > a:hover, .pagination > .disabled > span, .pagination > .disabled > span:focus, .pagination > .disabled > span:hover {
        color: #60a8ff;;
        cursor: not-allowed;
        background-color: #fff;
        border-color: #60a8ff;;
    }

.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;
}



    .pager li {
        display: inline;
    }

        .pager li > a, .pager li > span {
            display: inline-block;
            padding: 5px 14px;
            background-color: #fff;
            border: 1px solid #ddd;
            border-radius: 9px;
        }

            .pager li > a:focus, .pager li > a:hover {
                text-decoration: none;
                background-color: #eee;
            }

    .pager .next > a, .pager .next > span {
        float: right;
    }

    .pager .previous > a, .pager .previous > span {
        float: left;
    }

    .pager .disabled > a, .pager .disabled > a:focus, .pager .disabled > a:hover, .pager .disabled > span {
        color: #777;
        cursor: not-allowed;
        background-color: #fff;
    }
    .text-center{
            margin: 30px auto 30px auto;
    }
    .panel-body{
            width: 750px;
    height: 800px;
    }