
@media (min-width: 768px) {
}

.master-manage-shop-list {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.75);
    display: none;
}

.master-manage-shop-list-content {
    background: #fff;
    width: 90%;
    margin-left: 5%;
    border-radius: calc(10px * var(--device));
    opacity: 0;
    transform: scale(0.7);
    overflow: hidden;
}

.master-manage-shop-list.atc .master-manage-shop-list-content {
    opacity: 1;
    transform: scale(1);
}

.master-manage-shop-list-content .item {
    padding: calc(20px * var(--device));
    border-bottom: 1px #ddd solid;
    background: #fff;
}

    .master-manage-shop-list-content .item .img,
    .master-manage-shop-list-content .item .img img {
        width: calc(160px * var(--device));
        height: calc(120px * var(--device));
    }

    .master-manage-shop-list-content .item .main {
        padding: 0 calc(20px * var(--device));
    }

    .master-manage-shop-list-content .item .ritbtn {
        position: relative;
        width: calc(40px * var(--device));
        height: calc(40px * var(--device));
        border: calc(2px * var(--device)) #ddd solid;
        border-radius: 50%;
    }

        .master-manage-shop-list-content .item .ritbtn:before {
            position: absolute;
            content: "";
            top: calc(6px * var(--device));
            bottom: calc(6px * var(--device));
            left: calc(6px * var(--device));
            right: calc(6px * var(--device));
            background: var(--white);
            border-radius: 50%;
        }

    .master-manage-shop-list-content .item.on {
        background: var(--blue-light)
    }

        .master-manage-shop-list-content .item.on .ritbtn {
            border-color: var(--blue);
        }

            .master-manage-shop-list-content .item.on .ritbtn:before {
                background: var(--blue);
            }

.master-manage-shop-list .czbtn {
    padding: calc(20px * var(--device));
}

    .master-manage-shop-list .czbtn .submit-btn {
        padding: calc(15px * var(--device)) calc(30px * var(--device));
        border-radius: calc(10px * var(--device));
    }
