/* ... existing code ... */

/* 当屏幕宽度小于 750px 时应用的样式 */
@media (max-width: 749px) {
    /* 这里添加屏幕宽度小于等于 750px 时的样式 */
    .nine_wrap{
        width:100%;
        height:2.33rem;
        position: fixed;
        bottom:0;
        left:0;
        background-color: #0D0D12;
    }
    /* 可以继续添加其他选择器和样式 */
}

/* 当屏幕宽度大于等于 750px 时应用的样式 */
@media (min-width: 750px) {
    /* 这里添加屏幕宽度大于 750px 时的样式 */
    body {
        margin: 0 auto;
        width: 375px;
    }
    .nine_wrap{
        height:2.33rem;
        position: fixed;
        bottom:0;
        left:50%;
        transform: translateX(-50%);
        background-color: #0D0D12;
    }
    /* 可以继续添加其他选择器和样式 */
}

/* ... existing code ... */