.index-shop-out {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(2, 20vw);
}

.index-shop-out .index-shop-out-item {
    width: 100%;
    height: 100%;
    position: relative;
}

.index-shop-out .index-shop-out-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.index-shop-out-item-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #dd8c3233;
    opacity: 0;
    transition: opacity 0.3s;
}

.index-shop-out-item:hover .index-shop-out-item-hover {
    opacity: 1;
}

.index-shop-out .img1 {
    grid-area: 1 / 1 / 2 / 2;
}

.index-shop-out .img2 {
    grid-area: 1 / 2 / 2 / 3;
}

.index-shop-out .img3 {
    grid-area: 2 / 1 / 3 / 2;
}

.index-shop-out .img4 {
    grid-area: 2 / 2 / 3 / 3;
}

.index-shop-out .large {
    grid-area: 1 / 3 / 3 / 5;
}

.index-shop-out .img5 {
    grid-area: 1 / 5 / 2 / 6;
}

.index-shop-out .img6 {
    grid-area: 2 / 5 / 3 / 6;
}

.index-shop-out-item-hover-onclick {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.index-shop-out-item-zezao {
    text-transform: uppercase;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.index-shop-out-item-zezao-icon {
    width: 33.33px !important;
    height: 33.33px !important;
}

.index-shop-out-item-zezao-text {
    color: #fff;
    font-size: 11.2px;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
    margin: 10px;
    font-family: Poppins, sans-serif;
}

.index-shop-out-top {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
}

.index-shop-out-top-title {
    font-size: 24px;
    font-weight: 700;
    color: #000;
    font-family: "Libre Baskerville";
}

.index-shop-out-top-hover {
    position: relative;
    padding: 0 20px;
    z-index: 1;
}

.index-shop-out-top-hover:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 20px;
    left: 0;
    top: 18px;
    background: #fceedc;
    z-index: -1;
}

@media (max-width: 767px) {
    .index-shop-out {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(5, 50vw);
    }

    .index-shop-out .large {
        grid-area: 2 / 1 / 4 / 3;
    }

    .index-shop-out .img1 {
        grid-area: 1 / 1 / 2 / 2;
    }

    .index-shop-out .img2 {
        grid-area: 1 / 2 / 2 / 3;
    }

    .index-shop-out .img3 {
        grid-area: 5 / 1 / 5 / 2;
    }

    .index-shop-out .img4 {
        grid-area: 5 / 2 / 5 / 3;
    }

    .index-shop-out .img5 {
        grid-area: 4 / 1 / 5 / 2;
    }

    .index-shop-out .img6 {
        grid-area: 4 / 2 / 5 / 3;
    }
}

@media (max-width:767px) {
    .index-shop-out-top-title {
        font-size: 20.44px;
    }

    .index-shop-out-top-hover:before {
        content: "";
        position: absolute;
        width: 100%;
        height: 12px;
        left: 0;
        top: 15px;
        background: #fceedc;
        z-index: -1;
    }
}