@charset "UTF-8";
.displaynone {
    display: none;
}

.item {
    cursor: pointer;
}

.sellbox {
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
}

.sellbox img {
    width: 100%;
}

.sellbox__block {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 80%;
    max-width: 800px;
    height: 80%;
    background: #fff;
    overflow-x: hidden;
}

.sellbox__block .deletearea {
    padding: 0 40px;
}

.sellbox__block-close {
    position: absolute;
    right: 20px;
    top: 10px;
    font-size: 40px;
    cursor: pointer;
    font-weight: 700;
}

.sellbox__block-title {
    width: 100%;
    position: relative;
}

.sellbox__block-title img {
    width: 100%;
}

.sellbox__block-title-word {
    font-size: 40px;
    font-weight: 700;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
    color: #fff;
}

.sellbox__block-main {
    padding: 10px 0;
}

.sellbox__block-main-title {
    padding: 20px;
    font-size: 32px;
    font-weight: 700;
    color: #6d6d6d;
}

.sellbox__block-main-left {
    width: calc((100% / 4) - 10px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.sellbox__block-main-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 20px 20px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    position: relative;
    -webkit-transition: 0.2s;
    transition: 0.2s;
}

.sellbox__block-main-box:hover {
    background: #fff2f9;
}

.sellbox__block-main-box::after {
    position: absolute;
    bottom: 0;
    content: "";
    display: block;
    width: 100%;
    background: #e2e2e2;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    height: 1px;
}

.sellbox__block-main-box a {
    width: calc((100% / 3) - 10px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 24px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.sellbox__block-main-box a:hover {
    text-decoration: none;
    opacity: 0.7;
}

.sellbox__block-main-box .sellbox__link {
    background: #0e8687;
    color: #fff;
}

.sellbox__block-main-box .sellbox__onsale {
    color: #6f8088;
}

@media (max-width: 675px) {
    .sellbox__block {
        padding: 0;
    }
    .sellbox__block-main {
        margin-bottom: 70px;
    }
    .sellbox__block-main-title {
        padding: 0px 20px;
        font-size: 20px;
    }
    .sellbox__block-main-box {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        padding: 20px 20px 0 20ㄌㄣ;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        position: relative;
        -webkit-transition: 0.2s;
        transition: 0.2s;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .sellbox__block-main-left {
        width: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        background: #eeeeee;
        padding: 20px;
    }
    .sellbox__block-main-left img {
        width: 30%;
    }
    .sellbox__block-main a {
        width: 50%;
        padding: 20px 0;
    }
}

@media (max-width: 475px) {
    .sellbox__block-title-word {
        font-size: 28px;
    }
    .sellbox__block-main-box {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        padding: 20px 20px 0 20px;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        position: relative;
        -webkit-transition: 0.2s;
        transition: 0.2s;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .sellbox__block-main-left {
        width: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        background: #eeeeee;
        padding: 20px;
    }
    .sellbox__block-main-left img {
        width: 30%;
    }
    .sellbox__block-main a {
        width: 100%;
        padding: 20px 0;
    }
}


/*# sourceMappingURL=sellbox.css.map */