
        /* 风险告知页面独享样式 */
        
        /* 页面标题区域 */
        .page-hero {
            background: linear-gradient(rgba(10, 36, 99, 0.85), rgba(10, 36, 99, 0.85)), url('/template/jia/images/4.jpg') center/cover;
            color: white;
            padding: 180px 0 100px;
            text-align: center;
            margin-top: 70px;
        }
        
        .page-hero h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
        }
        
        .page-hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto;
            text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
        }
        
        /* 风险板块样式 */
        .risk-section {
            padding: 80px 0;
        }
        
        .risk-section:nth-child(even) {
            background: #f8f9fa;
        }
        
        .risk-card {
            background: white;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            padding: 30px;
            margin-bottom: 30px;
            border-left: 5px solid var(--danger-color);
            transition: all 0.3s ease;
            opacity: 0;
            transform: translateY(30px);
        }
        
        .risk-card.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        .risk-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        
        .risk-header {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }
        
        .risk-icon {
            width: 60px;
            height: 60px;
            background: var(--danger-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            margin-right: 20px;
        }
        
        .risk-title {
            font-size: 1.8rem;
            color: var(--primary-color);
        }
        
        .risk-content {
            margin-bottom: 20px;
        }
        
        .risk-content p {
            margin-bottom: 15px;
        }
        
        .risk-list {
            margin: 20px 0;
            padding-left: 20px;
        }
        
        .risk-list li {
            margin-bottom: 10px;
            position: relative;
            padding-left: 25px;
        }
        
        .risk-list li::before {
            content: '•';
            color: var(--danger-color);
            font-weight: bold;
            position: absolute;
            left: 0;
            font-size: 1.2rem;
        }
        
        .law-article {
            background: #f8f9fa;
            border-left: 4px solid var(--primary-color);
            padding: 20px;
            margin: 20px 0;
            font-style: italic;
        }
        
        .law-article h4 {
            color: var(--primary-color);
            margin-bottom: 10px;
        }
        
        /* 保障措施样式 */
        .guarantee-section {
            background: var(--primary-color);
            color: white;
            padding: 80px 0;
        }
        
        .guarantee-section .section-title h2,
        .guarantee-section .section-title p {
            color: white;
        }
        
        .guarantee-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .guarantee-card {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            padding: 30px;
            text-align: center;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            opacity: 0;
            transform: translateY(30px);
        }
        
        .guarantee-card.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        .guarantee-card:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.15);
        }
        
        .guarantee-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 20px;
            background: var(--secondary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 2rem;
        }
        
        .guarantee-card h3 {
            font-size: 1.4rem;
            margin-bottom: 15px;
        }
        
        /* 底部样式 */
        footer {
            background: var(--primary-color);
            color: white;
            padding: 70px 0 20px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-bottom: 50px;
        }
        
        .footer-column h3 {
            font-size: 1.3rem;
            margin-bottom: 20px;
            color: var(--secondary-color);
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 2px;
            background: var(--secondary-color);
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-links a:hover {
            color: var(--secondary-color);
        }
        
        .contact-info {
            list-style: none;
        }
        
        .contact-info li {
            margin-bottom: 15px;
            display: flex;
            align-items: flex-start;
        }
        
        .contact-info i {
            margin-right: 10px;
            color: var(--secondary-color);
            margin-top: 5px;
        }
        
        .qr-code {
            text-align: center;
        }
        
        .qr-code img {
            max-width: 150px;
            margin-bottom: 10px;
        }
        
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 20px;
            text-align: center;
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
        }
        
        .friend-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 15px;
            margin-top: 15px;
        }
        
        .friend-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .friend-links a:hover {
            color: var(--secondary-color);
        }
        
        /* 响应式设计 */
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }
            
            .nav-links {
                position: fixed;
                top: 70px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 70px);
                background: var(--primary-color);
                flex-direction: column;
                align-items: center;
                justify-content: flex-start;
                padding-top: 50px;
                transition: left 0.3s ease;
            }
            
            .nav-links.active {
                left: 0;
            }
            
            .nav-links li {
                margin: 15px 0;
            }
            
            .page-hero h1 {
                font-size: 2.5rem;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .risk-header {
                flex-direction: column;
                text-align: center;
            }
            
            .risk-icon {
                margin-right: 0;
                margin-bottom: 15px;
            }
        }