.biaozhi ul{
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.5rem;
}

.biaozhi ul li span:first-child{
    display: block;
    padding: 1rem;
    position: relative;
    border: 1px solid #eee;
}

.night .biaozhi ul li span:first-child{
    border: 1px solid #444;
}

.biaozhi ul li span:first-child::before{
    content: "";
    width: 100%;
    padding-bottom: 100%;
    display: block;
}

.biaozhi ul li span img{
    position: absolute;
    left: 10%;
    top: 50%;
    transform: translateY(-50%);
    width: 80%;
}

.biaozhi ul li span:last-child{
    display: block;
    text-align: center;
    height: 1.6rem;
    line-height: 1.6rem;
    border: 1px solid #eee;
    border-top: 0;
}

.night .biaozhi ul li span:last-child{
    border: 1px solid #444;
    border-top: 0;
    color: #bbb;
}

.biaozhi ul li img{
    width: 100%;
}

@media screen and (max-width: 1260px){

    .biaozhi ul{
        grid-template-columns: repeat(6, 1fr);
    }

    .biaozhi ul li span img {
        position: absolute;
        left:5%;
        width: 90%;
    }
}

@media screen and (max-width: 1100px){
    .biaozhi ul{
        grid-template-columns: repeat(5, 1fr);
    }
}

@media screen and (max-width: 1100px){
    .biaozhi ul{
        grid-template-columns: repeat(4, 1fr);
    }
}

@media screen and (max-width: 500px){
    .biaozhi ul{
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 360px){
    .biaozhi ul{
        grid-template-columns: repeat(2, 1fr);
    }
}