 /* ===== 独享CSS ===== */
        /* 风险告知页面独享样式 */
        .risk-hero {
            height: 60vh;
            position: relative;
            overflow: hidden;
            margin-top: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('/template/jia/images/6.jpg');
            background-size: cover;
            background-position: center;
            text-align: center;
            color: var(--white);
        }

        .risk-hero-content h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            animation: fadeInDown 1s ease;
        }

        .risk-hero-content p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto;
            animation: fadeInUp 1s ease 0.3s both;
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* 风险内容部分 */
        .risk-content {
            background-color: var(--white);
        }

        .risk-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
        }

        .risk-card {
            background-color: var(--white);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            transform: translateY(20px);
            opacity: 0;
            position: relative;
        }

        .risk-card.animate {
            transform: translateY(0);
            opacity: 1;
        }

        .risk-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }

        .risk-card.warning {
            border-top: 5px solid #ff6b6b;
        }

        .risk-card.info {
            border-top: 5px solid #4dabf7;
        }

        .risk-card.success {
            border-top: 5px solid #51cf66;
        }

        .risk-header {
            padding: 20px;
            display: flex;
            align-items: center;
            border-bottom: 1px solid #eee;
        }

        .risk-icon {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            font-size: 1.5rem;
            color: var(--white);
        }

        .risk-icon.warning {
            background-color: #ff6b6b;
            animation: pulseWarning 2s infinite;
        }

        .risk-icon.info {
            background-color: #4dabf7;
            animation: pulseInfo 2s infinite;
        }

        .risk-icon.success {
            background-color: #51cf66;
            animation: pulseSuccess 2s infinite;
        }

        @keyframes pulseWarning {
            0% { box-shadow: 0 0 0 0 rgba(255, 107, 107, 0.7); }
            70% { box-shadow: 0 0 0 10px rgba(255, 107, 107, 0); }
            100% { box-shadow: 0 0 0 0 rgba(255, 107, 107, 0); }
        }

        @keyframes pulseInfo {
            0% { box-shadow: 0 0 0 0 rgba(77, 171, 247, 0.7); }
            70% { box-shadow: 0 0 0 10px rgba(77, 171, 247, 0); }
            100% { box-shadow: 0 0 0 0 rgba(77, 171, 247, 0); }
        }

        @keyframes pulseSuccess {
            0% { box-shadow: 0 0 0 0 rgba(81, 207, 102, 0.7); }
            70% { box-shadow: 0 0 0 10px rgba(81, 207, 102, 0); }
            100% { box-shadow: 0 0 0 0 rgba(81, 207, 102, 0); }
        }

        .risk-header h3 {
            font-size: 1.3rem;
            color: var(--primary-color);
        }

        .risk-body {
            padding: 20px;
        }

        .risk-body p {
            margin-bottom: 15px;
            color: var(--text-light);
        }

        .risk-list {
            margin: 15px 0;
            padding-left: 20px;
        }

        .risk-list li {
            margin-bottom: 8px;
            position: relative;
            padding-left: 25px;
            color: var(--text-light);
        }

        .risk-list li::before {
            content: '•';
            position: absolute;
            left: 0;
            color: var(--secondary-color);
            font-size: 1.2rem;
        }

        .law-article {
            background-color: #f8f9fa;
            border-left: 4px solid var(--primary-color);
            padding: 15px;
            margin: 20px 0;
            border-radius: 0 5px 5px 0;
        }

        .law-article h4 {
            color: var(--primary-color);
            margin-bottom: 10px;
        }

        .law-article p {
            font-style: italic;
            color: var(--text-light);
        }

        /* 保障措施部分 */
        .guarantee-section {
            background-color: #f8f9fa;
        }

        .guarantee-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .guarantee-card {
            background-color: var(--white);
            padding: 30px;
            border-radius: 10px;
            box-shadow: var(--shadow);
            text-align: center;
            transition: var(--transition);
            transform: translateY(20px);
            opacity: 0;
            position: relative;
            overflow: hidden;
        }

        .guarantee-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 5px;
            background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
            transition: var(--transition);
        }

        .guarantee-card:hover::before {
            left: 0;
        }

        .guarantee-card.animate {
            transform: translateY(0);
            opacity: 1;
        }

        .guarantee-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }

        .guarantee-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 20px;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 2rem;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(26, 95, 122, 0.7); }
            70% { box-shadow: 0 0 0 15px rgba(26, 95, 122, 0); }
            100% { box-shadow: 0 0 0 0 rgba(26, 95, 122, 0); }
        }

        .guarantee-card h3 {
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: var(--primary-color);
        }

        /* 响应式设计 */
        @media (max-width: 992px) {
            .footer-container {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .risk-grid, .guarantee-cards {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .nav-menu {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 80%;
                height: calc(100vh - 80px);
                background-color: var(--white);
                flex-direction: column;
                padding: 30px;
                box-shadow: var(--shadow);
                transition: var(--transition);
            }
            
            .nav-menu.active {
                left: 0;
            }
            
            .nav-menu li {
                margin: 15px 0;
            }
            
            .mobile-toggle {
                display: block;
            }
            
            .risk-hero-content h1 {
                font-size: 2.2rem;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
        }

        @media (max-width: 576px) {
            .footer-container {
                grid-template-columns: 1fr;
            }
            
            .risk-hero-content h1 {
                font-size: 1.8rem;
            }
        }