.reszip{
    padding: 0.25rem;
    border: 1px solid #eee;
    margin-top: 0.75rem;
    border-radius: 3px;
    display: none;
}

.night .reszip{
    border: 1px solid #444;
}

.reszip li{
    width: calc(100% / 5);
    overflow: hidden;
    float: left;
    padding: 0.25rem;
}

.reszip li>div{
    border: 1px solid #eee;
    border-radius: 3px;
}

.night .reszip li>div{
    border: 1px solid #444;
}

.reszip li>div div:first-child{
    height: 8rem;
    background-color: #f6f7fa;
}

.night .reszip li>div div:first-child{
    background-color: #181a1b;
}

.reszip li>div div:first-child img{
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}

.reszip li>div div:last-child{
    font-size: 0.6rem;
    line-height: 1.2rem;
    padding: 0.5rem;
    border-top: 1px solid #eee;
}

.night .reszip li>div div:last-child{
    border-top: 1px solid #444;
}

.reszip li>div div:last-child span{
    width: 100%;
    display: inline-block;
    background-color: #ff7503;
    text-align: center;
    color: #fff;
    border-radius: 3px;
    margin-top: 0.25rem;
    cursor: pointer;
}

.reszip .successdiv{
    display: none;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.25rem;
}

.reszip .successdiv span:nth-child(1){
    background-color: #05b672;
}

.reszip .successdiv span:nth-child(2){
    background-color: #607D8B;
}

.reszip li>div div:last-child i{
    font-style: normal;
}

.reszip li .name{
    word-break: keep-all;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}


@media screen and (max-width: 1480px){
    .reszip li {
        width: calc(100% / 4);
    }
}

@media screen and (max-width: 1280px){
    .reszip li {
        width: calc(100% / 3);
    }
}

@media screen and (max-width: 1130px){
    .reszip li {
        width: calc(100% / 2);
    }
}

@media screen and (max-width: 500px){
    .reszip li {
        width: calc(100% / 1);
    }
}

.resqrcodes{
    color: #FF9800;
}

.resqrcodes.loads{
    color: #ff7502;
}

.resqrcodes.err{
    color: red;
}

.resqrcodes.success{
    color: #05b672;
}