.goods {
    width: calc(100% / 3);
    cursor: pointer;
    position: relative;
}

.goods__img {
    width: 100%;
    height: calc(100vw / 3);
}

.goods__title {
    line-height: 5.42vw;
    font-size: 1.82vw;
    box-sizing: border-box;
    padding: 0 1.82vw;
    font-family: Montserrat-Black;
    background: #f2f0f0;
}

/* 
.goods__title--black:hover {
    background: #000000;
    color: white;
} */

.goods__mask {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 1;
    padding: 8.28vw 3.33vw 0;
    box-sizing: border-box;
    display: none;
}

.goods:nth-of-type(3n+1) .goods__mask {
    background: rgba(56, 255, 163, .4);
}

.goods:nth-of-type(3n+2) .goods__mask {
    background: rgba(56, 255, 163, .6);
}

.goods:nth-of-type(3n+3) .goods__mask {
    background: rgba(56, 255, 163, .8);
}

.goods__mask span {
    width: 100%;
    height: 100%;
    overflow-y: scroll;
    font-size: 1.1vw;
    line-height: 1.3vw;
    font-family: Montserrat-SemiBold;
}

.goods__mask span::-webkit-scrollbar {
    display: none;
    /* Chrome Safari */
}

.qrcode {
    width: 7.24vw;
    height: 7.24vw;
    margin-top: 1.72vw;
}

.goods__mask__close {
    width: 2.6vw;
    height: 2.6vw;
    position: absolute;
    top: 2.6vw;
    right: 2.6vw;
    cursor: pointer;
}

.goods__mask__close::before,
.goods__mask__close::after {
    content: "";
    width: 3.61vw;
    height: 1.5px;
    background-color: black;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}

.goods__mask__close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}