  /* 独享CSS部分 - 风险告知页面 */
        
        /* 页面头部横幅 */
        .risk-banner {
            background: var(--gradient);
            color: white;
            padding: 180px 0 100px;
            margin-top: 80px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .risk-banner::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(255,255,255,0.1)"/></svg>');
            background-size: cover;
        }

        .risk-banner h1 {
            font-size: 3.5rem;
            margin-bottom: 25px;
            font-weight: 700;
            text-shadow: 0 2px 10px rgba(0,0,0,0.2);
            position: relative;
            z-index: 1;
        }

        .risk-banner p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.8;
            position: relative;
            z-index: 1;
        }

        /* 风险概述 */
        .risk-overview {
            background: var(--light-color);
            position: relative;
        }

        .risk-overview::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(15,43,91,0.03)"/></svg>');
            background-size: cover;
        }

        .risk-overview-content {
            display: flex;
            align-items: center;
            gap: 60px;
            position: relative;
            z-index: 1;
        }

        .risk-overview-text {
            flex: 1;
        }

        .risk-overview-text h2 {
            font-size: 2.2rem;
            margin-bottom: 25px;
            color: var(--primary-color);
            position: relative;
            display: inline-block;
        }

        .risk-overview-text h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 80px;
            height: 4px;
            background: var(--gradient);
            border-radius: 2px;
        }

        .risk-overview-text p {
            margin-bottom: 25px;
            font-size: 1.1rem;
            line-height: 1.8;
        }

        .risk-overview-image {
            flex: 1;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: var(--shadow);
            animation: float 4s ease-in-out infinite;
            position: relative;
        }

        .risk-overview-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--gradient);
            opacity: 0.1;
            z-index: 1;
        }

        .risk-overview-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: var(--transition);
        }

        .risk-overview-image:hover img {
            transform: scale(1.05);
        }

        /* 风险类型 */
        .risk-types {
            position: relative;
        }

        .risk-types::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,100 L100,0 L100,100 Z" fill="rgba(15,43,91,0.03)"/></svg>');
            background-size: cover;
        }

        .risk-types-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 35px;
            position: relative;
            z-index: 1;
        }

        .risk-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            animation: fadeInUp 0.8s ease;
            position: relative;
        }

        .risk-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
        }

        .risk-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--gradient);
        }

        .risk-card-header {
            background: var(--primary-color);
            color: white;
            padding: 20px;
            display: flex;
            align-items: center;
        }

        .risk-card-header i {
            font-size: 2rem;
            margin-right: 15px;
            color: var(--secondary-color);
        }

        .risk-card-header h3 {
            font-size: 1.4rem;
        }

        .risk-card-content {
            padding: 30px;
        }

        .risk-card-content h4 {
            font-size: 1.2rem;
            margin-bottom: 15px;
            color: var(--primary-color);
        }

        .risk-card-content p {
            margin-bottom: 20px;
            line-height: 1.7;
        }

        .risk-list {
            margin-top: 20px;
        }

        .risk-list li {
            position: relative;
            padding-left: 25px;
            margin-bottom: 12px;
        }

        .risk-list li::before {
            content: '•';
            position: absolute;
            left: 0;
            color: var(--secondary-color);
            font-size: 1.5rem;
            line-height: 1;
        }

        /* 法律条款 */
        .legal-terms {
            background: var(--light-color);
            position: relative;
        }

        .legal-terms::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(15,43,91,0.03)"/></svg>');
            background-size: cover;
        }

        .legal-terms-content {
            background: white;
            border-radius: 15px;
            padding: 50px;
            box-shadow: var(--shadow);
            position: relative;
            z-index: 1;
        }

        .legal-terms-content h3 {
            font-size: 1.8rem;
            margin-bottom: 30px;
            color: var(--primary-color);
            text-align: center;
        }

        .legal-article {
            margin-bottom: 40px;
        }

        .legal-article h4 {
            font-size: 1.4rem;
            margin-bottom: 20px;
            color: var(--primary-color);
            position: relative;
            padding-left: 20px;
        }

        .legal-article h4::before {
            content: '';
            position: absolute;
            left: 0;
            top: 5px;
            width: 8px;
            height: 8px;
            background: var(--secondary-color);
            border-radius: 50%;
        }

        .legal-article p {
            margin-bottom: 15px;
            line-height: 1.8;
            padding-left: 20px;
        }

        .legal-highlight {
            background: rgba(212, 175, 55, 0.1);
            border-left: 4px solid var(--secondary-color);
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;

        }

        /* 安全保障 */
        .safety-guarantee {
            position: relative;
        }

        .safety-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 35px;
        }

        .safety-card {
            background: white;
            padding: 35px 25px;
            border-radius: 15px;
            box-shadow: var(--shadow);
            text-align: center;
            transition: var(--transition);
            animation: fadeInUp 0.8s ease;
            position: relative;
            overflow: hidden;
        }

        .safety-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 100%;
            background: var(--gradient);
            transition: var(--transition);
        }

        .safety-card:hover::before {
            width: 100%;
            opacity: 0.1;
        }

        .safety-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        }

        .safety-icon {
            width: 90px;
            height: 90px;
            background: var(--gradient);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 2.2rem;
            transition: var(--transition);
            position: relative;
            z-index: 1;
            box-shadow: 0 5px 15px rgba(15, 43, 91, 0.2);
        }

        .safety-card:hover .safety-icon {
            background: var(--secondary-color);
            color: var(--dark-color);
            transform: rotateY(180deg) scale(1.1);
        }

        .safety-card h3 {
            font-size: 1.4rem;
            margin-bottom: 15px;
            color: var(--primary-color);
            position: relative;
            z-index: 1;
        }

        .safety-card p {
            position: relative;
            z-index: 1;
        }

        /* 行动号召 */
        .cta-section {
            background: var(--gradient);
            color: white;
            padding: 100px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(255,255,255,0.1)"/></svg>');
            background-size: cover;
        }

        .cta-content {
            position: relative;
            z-index: 1;
        }

        .cta-content h2 {
            font-size: 2.8rem;
            margin-bottom: 25px;
            font-weight: 700;
        }

        .cta-content p {
            font-size: 1.3rem;
            margin-bottom: 40px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        /* 动画效果 */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes float {
            0% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-15px);
            }
            100% {
                transform: translateY(0);
            }
        }

        /* 响应式调整 */
        @media (max-width: 992px) {
            .risk-overview-content {
                flex-direction: column;
            }

            .risk-banner h1 {
                font-size: 2.8rem;
            }
        }

        @media (max-width: 768px) {
            .risk-banner {
                padding: 150px 0 80px;
            }

            .risk-banner h1 {
                font-size: 2.3rem;
            }

            .legal-terms-content {
                padding: 30px 20px;
            }

            .cta-content h2 {
                font-size: 2.2rem;
            }
        }