/*自适应半透明黑色底框组件*/
<style>
    /* 自适应页面容器 */
    .adaptive-container {
        width: 100%;
        height: 100%;
        padding: 20px;
        background: linear-gradient(135deg, #6a11cb, #2575fc);
        font-family: 'Segoe UI', system-ui, sans-serif;
    }

    /* 核心样式：自适应半透明黑色底框 */
    .auto-translucent-box {
        background-color: rgba(0, 0, 0, 0.65);
        backdrop-filter: blur(5px);
        border-radius: 12px;
        padding: clamp(20px, 5vw, 40px);
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
        color: white;
        border: 1px solid rgba(255, 255, 255, 0.1);

        /* 自适应尺寸 */
        width: 100%;
        max-width: min(90vw, 800px);
        margin: auto;
    }

    /* 自适应标题 */
    .auto-translucent-box h2 {
        margin-top: 0;
        font-weight: 600;
        font-size: clamp(1.5rem, 5vw, 2.2rem);
        line-height: 1.2;
    }

    /* 自适应内容区域 */
    .content-container {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        margin-top: 20px;
    }

    .content-box {
        flex: 1;
        min-width: 200px;
        width: 200px !important;
        padding: clamp(15px, 3vw, 15px);
        background: rgba(0, 0, 0, 0.5);
        border-radius: 8px;
        transition: all 0.3s ease;
        /* 自适应尺寸 */
        width: 100%;
        max-width: min(90vw, 800px);
        margin: auto;
    }

    .content-box:hover {
        background: rgba(0, 0, 0, 0.6);
        transform: translateY(-3px);
    }

    .content-box h3 {
        font-size: clamp(1.2rem, 3vw, 1.5rem);
        margin-top: 0;
    }

    .content-box p {
        line-height: 1.7;
        opacity: 0.85;
        font-size: clamp(0.9rem, 2vw, 1.1rem);
    }

    /* 媒体查询简化 */
    @media (max-width: 600px) {
        .content-container {
            flex-direction: column;
        }

        .content-box {
            min-width: 100%;
        }
    }
</style>