@charset "UTF-8";

.member {
    max-width: 1500px;
    background: #f3f6f1;
    border-radius: 5px;
    z-index: 10;
    overflow: hidden;
}

.member__inner {
    display: block;
    width: calc(100% - 100px);
    margin: 0 auto;
}

@media screen and (max-width: 991px) {
    .member__inner {
        width: calc(100% - 50px);
    }
}

@media screen and (max-width: 767px) {}

@media screen and (max-width: 575px) {
    .member {
        background: none;
        border-radius: 0;
    }

    .member__inner {
        width: 100%;
    }
}



/****IOS樣式****/
@supports (-webkit-touch-callout: none) {}