
    .trust-container {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        width: 100% !important; /* 强制 100% 宽度 */
        margin: 20px 0 !important;
        padding: 30px 10px !important;
        border: 1px solid #eee !important;
        border-radius: 4px !important; /* 配合宽屏改用微圆角更专业 */
        background: #fff !important;
        font-family: sans-serif !important;
        box-sizing: border-box !important;
    }
    .trust-icons {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        flex-wrap: wrap !important;
        gap: 40px !important; /* PC 端间距拉开 */
        width: 100% !important;
    }
    .trust-img {
        height: 50px !important; /* PC 端大尺寸 */
        width: auto !important;
        flex-shrink: 0 !important;
    }
    /* 手机端专项适配 */
    @media (max-width: 768px) {
        .trust-icons { gap: 20px !important; }
        .trust-img { height: 35px !important; } /* 手机端自动缩小 */
        .trust-title { font-size: 14px !important; }
    }
