* {
    box-sizing: border-box;
}
html, body{
    margin: 0;
    padding: 0;
}
.app{
    width: 100%;
}
.container{
    display: flex;
    margin: 0 auto;
    align-items: center;
}
.left{
    width: 62px;
    text-align: center;
    height: 50px;
}
.right {
    display: flex;
    flex: 1 auto;
    justify-content: space-evenly;
    height: 50px;
    background-color: #fff;
}
.qishu {
    font-size: 14px;
    font-weight: bold;
    height: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
}
.record {
    background-color: yellow;
    color: red;
    font-size: 14px;
    font-weight: bold;
    height: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.record a {
    color: red;
    cursor: pointer;
    text-decoration: underline;
    font-size: 14px;
    font-weight: bold;
}
.s-container .right {
    display: flex;
    flex: 1 auto;
    justify-content: space-evenly;
    height: 50px;
    background-color: #fff;
}
.item {
    border: 1px solid #ddd;
    width: 100%;
    text-align: center;
    height: 48px;
}
.number {
    border-bottom: 1px solid #ddd;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    height: 24px;
}
.blue {
    background-color: rgb(61, 31, 254);
}
.red {
    background-color: rgb(255, 19, 19);
}
.green {
    background-color: rgb(1,140,27);
}
.xiao {
    font-weight: bold;
    font-size: 14px;
    color: #333;
    height: 24px;
}
.refresh {
    writing-mode: vertical-rl;
    text-orientation: upright;
    color: red;
    background-color: yellow;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    user-select: none;
    font-weight: bold;
}