.numInfo {
    display: flex;
    justify-content: end;
    align-items: center;
    padding: 0 0.5rem;
    width: 100%;
    /* height: 2rem; */
    /* background-color: rgb(0, 162, 255); */
}

.numILeft {
    display: flex;
    align-items: center;
    padding: 0.2rem;
    width: fit-content;
    height: 100%;
    border: 1px solid #000;
    border-radius: 5px;
    background-color: #ffffff;
}

.numILeft .numIcon {
    width: 1rem;
    height: 1rem;
    /* background-color: #00ff0d; */
}

/* .numILeft .numIcon img {
    max-width: 120%;
} */

.numILeft .addIcon {
    width: 0.7rem;
    height: 0.7rem;
    /* background-color: #00ff0d; */
}

.numILeft .addIcon img {
    max-width: 100%;
}

.numILeft p {
    margin: 0 0.2rem;
    color: black;
}

.numIRight {
    /* background-color: #ff0000; */
}

.numIRight .numRIcon {
    width: 1.2rem;
    height: 1.2rem;
    /* background-color: #00ff0d; */
}

.numIRight .numRIcon img {
    max-width: 100%;
}

.storageBox {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    /* background-color: cadetblue; */
}

.storageBox .smallBox {
    display: flex;
    justify-content: space-around;
    align-items: center;
    --n: 2;
    --gap: calc((100% - 49% * var(--n)) / (var(--n) / 2));
    margin: 0.5%;
    width: 49%;
    height: 3rem;
    border-radius: 5px;
    background-color: rgb(255, 255, 255);
    box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
}

.storageBox .smallBox .smallBleft,
.smallBright {
    display: flex;
    align-items: center;
    text-align: center;
    /* background-color: bisque; */
}

.storageBox .smallBox .smallBleft {
    width: 1.5rem;
    height: 1.5rem;
}

.storageBox .smallBox .smallBright {
    font-size: 1rem;
    font-weight: 700;
}

.storageBox .smallBox .num {
    display: flex;
    align-items: center;
    /* width: 1.5rem; */
    /* height: 1.5rem; */
    text-align: center;
    font-size: 1.6rem;
    font-weight: 700;
    /* background-color: bisque; */
}

.OnStatus {
    color: green;
    border: 1px solid green;
}

.OffStatus {
    color: #979797;
    border: 1px solid #979797;
}

.FailStatus {
    color: red;
    border: 1px solid red;
}