.item {
    z-index: 1;
    position: relative;
    display: flex;
    flex-direction: column;
    width: 23rem;
    height: 33rem;
    box-sizing: border-box;
    gap: 0;
    cursor: pointer;
}


.item .update-time {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.6rem 0.6rem 0.6rem 2rem;
    z-index: 10;
    font-size: 1.4rem;
    height: 2rem;
    background-color: #00D0FF;
    color: #ffffff;
    top: 0;
    border-radius: 10px 0 10px 0;
    background-image: url("/asset/reload.svg");
    background-repeat: no-repeat;
    background-size: 1.4rem 1.4rem;
    background-position: 0.4rem center;
}
.item .tags {
    display: flex;
    gap: 0.5rem;
    overflow-x: hidden;
    white-space: nowrap;
}
.item .tags span{
    font-size: 1.6rem;
    padding: 0.2rem;
    border-radius: 3px;
    border: none;
    align-content: center;
}
.item .item-img {
    width: 100%;
    height: 28rem;
    border-radius: 10px;
}
.item .item-des {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    padding: 1rem 0;

}
@media (max-width: 1024px) {
    .item {
        width: 18rem;
        height: 30rem;
    }
}

@media (max-width: 768px) {
    .slider-description {
        display: none;
    }
    .item {
        width: 15rem;
        height: 26rem;
    }
}
