  /* 独享CSS - 风险告知页面 */
        
        /* 通用部分样式 */
        section {
            padding: 100px 0;
            position: relative;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-title h2 {
            font-size: 36px;
            color: var(--primary-color);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: linear-gradient(90deg, var(--secondary-color), #ffd700);
            box-shadow: 0 0 8px var(--secondary-color);
        }
        
        .section-title p {
            color: #718096;
            max-width: 700px;
            margin: 0 auto;
            font-size: 18px;
        }
        
        /* 风险提示横幅 */
        .risk-banner {
            background: linear-gradient(135deg, var(--primary-color) 0%, #152642 100%);
            color: white;
            padding: 80px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .risk-banner::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--secondary-color), #ffd700);
        }
        
        .risk-banner h1 {
            font-size: 42px;
            margin-bottom: 20px;
            position: relative;
            z-index: 2;
        }
        
        .risk-banner p {
            font-size: 20px;
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }
        
        .risk-banner .highlight {
            color: var(--secondary-color);
            font-weight: 700;
        }
        
        /* 风险卡片样式 */
        .risk-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-bottom: 60px;
        }
        
        .risk-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0,0,0,0.08);
            transition: var(--transition);
            opacity: 0;
            transform: translateY(30px);
            position: relative;
        }
        
        .risk-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--secondary-color), #ffd700);
        }
        
        .risk-card.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        .risk-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }
        
        .risk-header {
            background: linear-gradient(135deg, var(--primary-color), #152642);
            color: white;
            padding: 25px 20px;
            display: flex;
            align-items: center;
        }
        
        .risk-icon {
            width: 60px;
            height: 60px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            font-size: 24px;
            color: var(--secondary-color);
        }
        
        .risk-title {
            font-size: 22px;
            font-weight: 700;
        }
        
        .risk-content {
            padding: 25px;
        }
        
        .risk-content ul {
            list-style: none;
            margin-bottom: 20px;
        }
        
        .risk-content li {
            margin-bottom: 12px;
            padding-left: 25px;
            position: relative;
        }
        
        .risk-content li::before {
            content: '⚠️';
            position: absolute;
            left: 0;
            top: 0;
        }
        
        .risk-content p {
            margin-bottom: 15px;
            color: #4a5568;
        }
        
        /* 法律条款样式 */
        .legal-section {
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
            border-radius: 12px;
            padding: 40px;
            margin-bottom: 40px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.05);
            position: relative;
            overflow: hidden;
        }
        
        .legal-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--secondary-color), #ffd700);
        }
        
        .legal-title {
            color: var(--primary-color);
            font-size: 24px;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
        }
        
        .legal-title i {
            margin-right: 10px;
            color: var(--secondary-color);
        }
        
        .legal-content {
            background: white;
            padding: 25px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .legal-content p {
            margin-bottom: 15px;
            line-height: 1.8;
        }
        
        .legal-highlight {
            background: rgba(212, 175, 55, 0.1);
            padding: 15px;
            border-left: 4px solid var(--secondary-color);
            margin: 20px 0;
            border-radius: 0 8px 8px 0;
        }
        
        /* 平台保障样式 */
        .guarantee-section {
            background: linear-gradient(135deg, var(--primary-color) 0%, #152642 100%);
            color: white;
            padding: 80px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .guarantee-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--secondary-color), #ffd700);
        }
        
        .guarantee-title {
            font-size: 36px;
            margin-bottom: 20px;
            position: relative;
            z-index: 2;
        }
        
        .guarantee-content {
            max-width: 800px;
            margin: 0 auto 40px;
            font-size: 18px;
            position: relative;
            z-index: 2;
        }
        
        .guarantee-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .guarantee-feature {
            background: rgba(255,255,255,0.1);
            padding: 30px 20px;
            border-radius: 12px;
            backdrop-filter: blur(10px);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }
        
        .guarantee-feature::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--secondary-color), #ffd700);
        }
        
        .guarantee-feature:hover {
            transform: translateY(-10px);
            background: rgba(255,255,255,0.15);
        }
        
        .feature-icon {
            width: 80px;
            height: 80px;
            background: rgba(212, 175, 55, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: var(--secondary-color);
            font-size: 32px;
        }
        
        .feature-title {
            font-size: 20px;
            margin-bottom: 15px;
            color: var(--secondary-color);
        }
        
        /* CTA按钮样式 */
        .cta-section {
            text-align: center;
            padding: 80px 0;
        }
        
        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 30px;
            flex-wrap: wrap;
        }
        
        .btn {
            display: inline-block;
            padding: 14px 35px;
            background: linear-gradient(135deg, var(--secondary-color), #ffd700);
            color: var(--primary-color);
            text-decoration: none;
            border-radius: 30px;
            font-weight: 600;
            transition: var(--transition);
            box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
        }
        
        .btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(212, 175, 55, 0.5);
        }
        
        .btn-outline {
            background: transparent;
            border: 2px solid var(--secondary-color);
            color: var(--secondary-color);
        }
        
        .btn-outline:hover {
            background: var(--secondary-color);
            color: var(--primary-color);
        }
        
        /* 响应式设计 */
        @media (max-width: 992px) {
            .risk-cards {
                grid-template-columns: 1fr;
            }
            
            .guarantee-features {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 768px) {
            .risk-banner h1 {
                font-size: 32px;
            }
            
            .risk-banner p {
                font-size: 18px;
            }
            
            .section-title h2 {
                font-size: 28px;
            }
            
            .guarantee-title {
                font-size: 28px;
            }
            
            .legal-section {
                padding: 30px 20px;
            }
            
            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .btn {
                width: 100%;
                max-width: 300px;
            }
        }