/* homeList 竖排通栏广告 */

.home-list-stack {
    align-self: stretch;
    width: 100%;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 18px;
    display: flex;
    box-sizing: border-box;
}

.home-list-stack-banner {
    align-self: stretch;
    width: 100%;
    height: 121px;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    display: block;
    text-decoration: none;
    background: #1A1A1A;
    box-sizing: border-box;
}

.home-list-stack-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 767px) {
    .home-list-stack {
        gap: 10px;
    }

    .home-list-stack-banner {
        height: auto;
        aspect-ratio: 964 / 121;
        border-radius: 6px;
    }
}
