.bu-btn {
    display: inline-block;
    font-size: px2rem($btn_font-size);
    color: $btn_color;
    background: $btn_bg;
    line-height: px2rem($btn_height);

    // 激活状态
    &.bu-active {
        background: $btn_bg-active;
    }

    // 失效状态
    &.bu-disable {
        background: $btn_bg-disable;
    }

    // 块级
    &.bu-btn-block {
        display: block;
        width: 100%;
        text-align: center;
    }
}
