    /* 独享CSS - 风险告知页面主体部分 */
        main {
            margin-top: 80px;
        }

        /* 页面标题横幅 */
        .page-banner {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: var(--text-light);
            padding: 60px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .page-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 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,128L48,138.7C96,149,192,171,288,186.7C384,203,480,213,576,202.7C672,192,768,160,864,149.3C960,139,1056,149,1152,160C1248,171,1344,181,1392,186.7L1440,192L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
            background-size: cover;
            background-position: bottom;
        }

        .page-banner-content {
            position: relative;
            z-index: 1;
        }

        .page-banner h1 {
            font-size: 42px;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

        .page-banner p {
            font-size: 18px;
            max-width: 700px;
            margin: 0 auto;
            opacity: 0.9;
        }

        /* 风险内容区域 */
        .section {
            padding: 80px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }

        .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;
            left: 50%;
            bottom: -10px;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: var(--accent-color);
        }

        .section-title p {
            color: #666;
            max-width: 700px;
            margin: 0 auto;
        }

        /* 风险卡片样式 */
        .risk-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
        }

        .risk-card {
            background-color: var(--light-color);
            border-radius: 8px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            border-top: 5px solid var(--accent-color);
        }

        .risk-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }

        .risk-header {
            background-color: var(--primary-color);
            color: var(--text-light);
            padding: 20px;
            display: flex;
            align-items: center;
        }

        .risk-icon {
            font-size: 30px;
            margin-right: 15px;
            color: var(--accent-color);
        }

        .risk-title {
            font-size: 22px;
            font-weight: bold;
        }

        .risk-body {
            padding: 25px;
        }

        .risk-description {
            margin-bottom: 20px;
            font-size: 16px;
            line-height: 1.7;
        }

        .risk-list {
            list-style-type: none;
            margin-bottom: 20px;
        }

        .risk-list li {
            position: relative;
            padding-left: 25px;
            margin-bottom: 10px;
            line-height: 1.6;
        }

        .risk-list li::before {
            content: '\f06a';
            font-family: 'Font Awesome 5 Free';
            font-weight: 900;
            position: absolute;
            left: 0;
            color: #e74c3c;
        }

        /* 法律条款样式 */
        .law-article {
            background-color: #f8f9fa;
            border-left: 4px solid var(--secondary-color);
            padding: 20px;
            margin: 20px 0;
            border-radius: 0 5px 5px 0;
        }

        .law-title {
            font-weight: bold;
            color: var(--primary-color);
            margin-bottom: 10px;
            font-size: 18px;
        }

        .law-content {
            line-height: 1.7;
            color: #555;
        }

        /* 保障措施区域 */
        .guarantee-section {
            background-color: #f5f7fa;
        }

        .guarantee-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .guarantee-card {
            background-color: var(--text-light);
            padding: 30px;
            border-radius: 8px;
            box-shadow: var(--shadow);
            text-align: center;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .guarantee-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background-color: var(--accent-color);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.5s ease;
        }

        .guarantee-card:hover::before {
            transform: scaleX(1);
        }

        .guarantee-card:hover {
            transform: translateY(-10px);
        }

        .guarantee-icon {
            font-size: 40px;
            color: var(--secondary-color);
            margin-bottom: 20px;
        }

        .guarantee-card h3 {
            font-size: 20px;
            margin-bottom: 15px;
            color: var(--primary-color);
        }

        /* 警示框样式 */
        .warning-box {
            background-color: #fff8e1;
            border-left: 5px solid #ffc107;
            padding: 25px;
            margin: 30px 0;
            border-radius: 0 5px 5px 0;
            box-shadow: var(--shadow);
        }

        .warning-title {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            color: #e65100;
            font-weight: bold;
            font-size: 20px;
        }

        .warning-title i {
            margin-right: 10px;
            font-size: 24px;
        }

        /* 联系咨询区域 */
        .consult-section {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: var(--text-light);
            text-align: center;
            padding: 60px 0;
        }

        .consult-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .consult-content h2 {
            font-size: 32px;
            margin-bottom: 20px;
        }

        .consult-content p {
            font-size: 18px;
            margin-bottom: 30px;
            opacity: 0.9;
        }

        .btn {
            display: inline-block;
            background-color: var(--accent-color);
            color: var(--text-color);
            padding: 12px 30px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: bold;
            transition: var(--transition);
            border: none;
            cursor: pointer;
            font-size: 16px;
        }

        .btn:hover {
            background-color: #c19b2a;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }

        .btn-large {
            padding: 15px 40px;
            font-size: 18px;
        }

        /* 响应式调整 */
        @media (max-width: 768px) {
            .page-banner h1 {

                font-size: 32px;
            }
            
            .section-title h2 {
                font-size: 28px;
            }
            
            .risk-grid {
                grid-template-columns: 1fr;
            }
        }