
        /* 主内容区域 */
        .main-content {
            padding: 40px 0;
            min-height: calc(100vh - 300px);
        }

        .page-title {
            font-size: 2.2rem;
            margin-bottom: 15px;
            font-weight: 700;
            text-align: center;
            color: var(--primary-color);
        }

        .page-subtitle {
            text-align: center;
            margin-bottom: 40px;
            color: var(--text-light);
            font-size: 1.1rem;
        }

        /* 免责声明内容样式 */
        .disclaimer-content {
            background-color: white;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            padding: 40px;
            margin-bottom: 40px;
        }

        .disclaimer-section {
            margin-bottom: 30px;
        }

        .disclaimer-section:last-child {
            margin-bottom: 0;
        }

        .section-title {
            font-size: 1.4rem;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--background-light);
            color: var(--text-color);
        }

        .disclaimer-text {
            color: var(--text-color);
            margin-bottom: 15px;
            line-height: 1.7;
        }

        .disclaimer-list {
            padding-left: 20px;
            margin-bottom: 20px;
        }

        .disclaimer-list li {
            margin-bottom: 10px;
            line-height: 1.7;
        }

        .important-note {
            background-color: #fff8e1;
            border-left: 4px solid #ffc107;
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 var(--radius) var(--radius) 0;
        }

        .important-note h4 {
            color: #e65100;
            margin-bottom: 10px;
        }

        .update-date {
            text-align: right;
            color: var(--text-light);
            font-size: 0.9rem;
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid var(--border-color);
        }