* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* 全局设置 box-sizing */
}

body {
    background: #fff;
}

.tabbox {
    max-width: 720px;
    margin: 0 auto;
    box-sizing: border-box;
    color: #333;
    padding: 8px 2px;
    font-family: Tahoma, Geneva, sans-serif;
    font-size: 17px;
}

.tabbox a {
    text-decoration: none;
}

.tabbox .font-red {
    color: #f00 !important;
}

.tabbox-tit {
    display: flex;
    align-items: center;
    /* height: 17px; */
    line-height: 17px;
}

.tabbox-tit-m {
    flex: 1;
    text-align: center;
    font-weight: bold;
}

.tabbox-con {
    display: flex;
    margin: 8px 0;
}

.ball {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    text-align: center;
    border-radius: 4px;
    margin-right: 6px;
    box-sizing: border-box;
    flex-direction: column;
}

.ball:last-child {
    margin-right: 0;
}

.ball h2 {
    margin: 0;
    /* padding: 0; */
    color: #fff;
    line-height: 24px;
    font-size: 28px;
    font-weight: 900;
}

.sxwx {
    display: inline-block;
    height: 19px;
    line-height: 19px;
    margin-top: 6px;
    padding: 0 6px;
    color: #333;
    font-size: 14px;
    background: #fff;
}

.add {
    display: flex;
    align-items: center;
    margin-right: 6px;
    font-size: 32px;
    font-weight: bold;
}

.tabbox-foot {
    display: flex;
    align-items: center;
    font-size: 16px;
}

.tabbox-foot-l {
    flex: 1;
}

.tabbox-foot-r-sx {
    /* 移除固定宽度 */
    display: inline-block;
    height: 24px;
    line-height: 24px;
    text-align: center;
    color: #fff;
    border-radius: 2px;
    background: #FF9900;
    cursor: pointer;
    font-size: 14px;
    /* min-width: 36px; */
    /* 添加最小宽度 */
}

@media screen and (max-width:480px) {
    /* .tabbox {
        font-size: 15px;
    } */

    .tabbox-tit {
        font-size: 15px;
    }

    .ball {
        margin-right: 2px;
    }

    .ball h2 {
        font-size: 22px;
    }

    .sxwx {
        margin-top: 4px;
        padding: 0 2px;
        /* 设置合适的 padding 值 */
        font-size: 13px;
    }

    .add {
        font-size: 20px;
        margin-right: 2px;
    }

    .tabbox-foot-r-sx {
        height: 20px;
        line-height: 20px;
        font-size: 12px;
    }

    .tabbox-foot {
        font-size: 14px;
    }
}