        /* 重置和基础样式 */
        .funding-container * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;

        }

        .funding-container {
            --primary-color: #0d6efd;
            --secondary-color: #6c757d;
            --accent-color: #ffc107;
            --light-bg: #f8f9fa;
            --dark-bg: #212529;
            --success-color: #198754;

            /*font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;*/
            color: #333;
            line-height: 1.6;
            padding: 0;
            margin: 0;
            display: flex;
            justify-content: center;
        }

        .funding-container .container {
            display: flex;
            justify-content: center;
            flex-direction: column;
            align-items: center;
            /*margin-top: 5rem;*/
        }

        .funding-container .rows {
            width: 100%;
            display: flex;
            justify-content: center;

        }

        /* 英雄区域 */
        .funding-hero {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1532094349884-543bc11b234d?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 100px 0;
            margin-bottom: 40px;
            text-align: center;
        }

        .funding-hero h1 {
            font-size: 2.8rem;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .funding-hero p {
            font-size: 1.2rem;
            margin-bottom: 30px;
        }

        /* 通用部分样式 */
        .funding-section {
            margin-bottom: 50px;
        }

        .funding-section-title {
            border-bottom: 3px solid var(--primary-color);
            padding-bottom: 12px;
            margin-bottom: 30px;
            font-weight: 700;
            position: relative;
            font-size: 2rem;
        }

        .funding-section-title:after {
            content: '';
            position: absolute;
            bottom: -3px;
            left: 0;
            width: 60px;
            height: 3px;
            background-color: var(--accent-color);
        }

        /* 卡片样式 */
        .funding-card {
            border: none;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            transition: all 0.3s;
            margin-bottom: 20px;
            overflow: hidden;
        }

        .funding-card:hover {
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
        }

        .funding-card .card-header {
            background-color: var(--primary-color);
            color: white;
            font-weight: 600;
            border-bottom: none;
            height: auto;
        }

        .funding-card .card-body {
            padding: 25px;
        }

        /* 目标卡片 */
        .objective-card {
            height: 100%;
            transition: transform 0.3s;
        }

        .objective-card:hover {
            transform: translateY(-8px);
        }

        .objective-card .card-icon {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 20px;
            text-align: center;
        }

        /* 列表样式 */
        .criteria-list {
            list-style: none;
            padding-left: 0;
        }

        .criteria-list li {
            padding-left: 35px;
            margin-bottom: 15px;
            position: relative;
        }

        .criteria-list li:before {
            content: "\f058";
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            color: var(--primary-color);
            position: absolute;
            left: 0;
            top: 2px;
            font-size: 1.2rem;
        }

        .requirement-list {
            list-style: none;
            padding-left: 0;
        }

        .requirement-list li {
            padding-left: 35px;
            margin-bottom: 20px;
            position: relative;
        }

        .requirement-list li:before {
            content: "\f05d";
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            color: var(--primary-color);
            position: absolute;
            left: 0;
            top: 3px;
            font-size: 1.2rem;
        }

        /* 特殊卡片 */
        .value-card {
            border-left: 4px solid var(--primary-color);
            background-color: var(--light-bg);
        }

        /* 按钮样式 */
        .apply-btn {
            padding: 15px 40px;
            font-size: 1.3rem;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s;
            background-color: var(--primary-color);
            border: none;
            color: white;
            display: inline-block;
            text-decoration: none;
            box-shadow: 0 5px 15px rgba(13, 110, 253, 0.3);
        }

        .apply-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(13, 110, 253, 0.4);
            color: white;
            background-color: #0b5ed7;
        }

        /* 导航样式 */
        .funding-nav .nav-link {
            color: var(--secondary-color);
            font-weight: 500;
            border-radius: 5px;
            margin-bottom: 5px;
            padding: 10px 15px;
        }

        .funding-nav .nav-link.active {
            background-color: var(--primary-color);
            color: white;
        }

        /* 粘性侧边栏 */
        .sticky-sidebar {
            position: sticky;
            top: 20px;
        }

        /* 返回顶部按钮 */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 1000;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: var(--primary-color);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
            opacity: 0;
            transition: all 0.4s;
            text-decoration: none;
        }

        .back-to-top.show {
            opacity: 1;
        }

        /* 页脚样式 */
        .funding-footer {
            background-color: var(--dark-bg);
            color: white;
            padding: 50px 0 20px;
        }

        .funding-footer h5 {
            font-weight: 600;
            margin-bottom: 20px;
        }

        .funding-footer a {
            color: white;
            text-decoration: none;
        }

        .funding-footer .social-links a {
            font-size: 1.2rem;
            margin-right: 15px;
        }

        /* 响应式调整 */
        @media (max-width: 768px) {
            .funding-container {
                padding: 1rem;
            }

            .funding-hero {
                padding: 70px 0;
            }

            .funding-hero h1 {
                font-size: 2.2rem;
            }

            .funding-section-title {
                font-size: 1.8rem;
            }

            .apply-btn {
                padding: 12px 30px;
                font-size: 1.1rem;
            }

            .sticky-sidebar {
                position: relative;
                top: 0;
                margin-bottom: 30px;
            }
        }


        /* 使用独特前缀确保样式隔离，避免冲突 */
        .nassg-faq-container {
            max-width: 900px;
            margin: 0 auto;
            padding: 0 15px;
        }

        .nassg-faq-page {
            padding: 4rem 0 6rem;
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
        }

        .nassg-faq-backlink {
            display: inline-flex;
            align-items: center;
            color: #165DFF;
            text-decoration: none;
            font-weight: 500;
            margin-bottom: 2.5rem;
            transition: all 0.3s ease;
        }

        .nassg-faq-backlink:hover {
            color: #0E42D2;
            transform: translateX(-3px);
        }

        .nassg-faq-backlink i {
            margin-right: 8px;
        }

        .nassg-faq-title {
            font-size: 2.25rem;
            font-weight: 700;
            margin-bottom: 1.25rem;
            color: #1D2129;
        }

        .nassg-faq-subtitle {
            font-size: 1.15rem;
            color: #252728;
            margin-bottom: 3rem;
            max-width: 700px;
        }

        .nassg-faq-list {
            margin-bottom: 3rem;
        }

        .nassg-faq-item {
            background: white;
            border-radius: 12px;
            padding: 1.5rem;
            margin-bottom: 1.5rem;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
        }

        .nassg-faq-question {
            font-size: 1.1rem;
            font-weight: 600;
            color: #165DFF;
            margin-bottom: 0.75rem;
        }

        .nassg-faq-answer {
            color: #252728;
            font-size: 1rem;
        }

        .nassg-faq-answer a {
            color: #165DFF;
            font-weight: 500;
            text-decoration: none;
        }

        .nassg-faq-answer a:hover {
            text-decoration: underline;
        }

        .nassg-faq-contact {
            background: white;
            border-radius: 12px;
            padding: 2.5rem;
            text-align: center;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
            border-top: 4px solid #165DFF;
        }

        .nassg-faq-contact h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: #1D2129;
        }

        .nassg-faq-contact p {
            color: #86909C;
            margin-bottom: 1.5rem;
        }

        .nassg-faq-email {
            display: inline-flex;
            align-items: center;
            background-color: #165DFF;
            color: white;
            padding: 0.75rem 1.5rem;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .nassg-faq-email:hover {
            background-color: #0E42D2;
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(22, 93, 255, 0.25);
        }

        .nassg-faq-email i {
            margin-right: 8px;
        }

        @media (max-width: 768px) {
            .nassg-faq-page {
                padding: 2.5rem 0 4rem;
            }

            .nassg-faq-title {
                font-size: 1.8rem;
            }

            .nassg-faq-contact {
                padding: 1.75rem;
            }
        }