.fixed-button {
    position: fixed;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    /* 其他样式 */
}

@media (max-width: 768px) {
    .fixed-button {
        min-width: 100%;
        min-height: 8%;
        text-align: center;
        background: rgb(11, 105, 255);
        color: #fff;
    }
}
@media (min-width: 369px) {
    .fixed-button {
        width: 50%;
        height: 15%;
        max-width: 50%;
        max-height: 8%;
        text-align: center;
        background: rgb(11, 105, 255);
        color: #fff;
    }
}