@charset "UTF-8";

.memberHead {
    display: block;
    width: calc(100% - 60px);
    max-width: 1500px;
    margin: 265px auto 40px auto;
}

/****文字訊息****/
.memberHead__content {
    margin: 0 auto 85px auto;
}

/****選單****/
.memberHead__nav {
    display: block;
    width: 100%;
}

.memberHead__nav::before,
.memberHead__nav::after {
    content: '';
    position: absolute;
    top: 0;
    display: block;
    width: 30px;
    height: calc(100% - 3px);
    z-index: 10;
}

.memberHead__nav::before {
    left: 0;
    background: linear-gradient(to right, #fff 0%, rgba(255, 255, 255, 0) 100%);
}

.memberHead__nav::after {
    right: 0;
    background: linear-gradient(to left, #fff 0%, rgba(255, 255, 255, 0) 100%);
}

.memberHead__nav__list {
    display: flex;
    align-items: stretch;
    align-content: stretch;
    justify-items: flex-start;
    justify-content: flex-start;
    width: 100%;
}

.memberHead__nav__list::after {
    content: '';
    position: absolute;
    bottom: 1px;
    left: 0;
    display: block;
    width: 100%;
    height: 1px;
    border-bottom: 1px solid rgba(0, 0, 0, .2);
}

.memberHead__nav__list__item {
    display: flex;
    align-items: stretch;
    align-content: stretch;
    justify-items: flex-start;
    justify-content: flex-start;
    width: auto;
    max-width: 100%;
    height: auto;
    flex: 0 0 auto;
}

.memberHead__nav__list__item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 3px;
    background: #0e3305;
    opacity: 0;
    transition: opacity .4s ease-in-out;
}

.memberHead__nav__list__item.active::after,
.memberHead__nav__list__item:hover::after {
    opacity: 1;
}

.memberHead__nav__list__item__link {
    display: flex;
    align-items: center;
    align-content: center;
    justify-items: center;
    justify-content: center;
    width: 100%;
    height: auto;
    padding: 40px 50px;
    font-size: 18px;
    line-height: 1;
    color: #373332;
    font-family: 'NotoSansTC-M';
}

.memberHead__nav__list__item__link__logout {
    font-size: inherit;
    line-height: inherit;
    color: #71a74f;
    font-family: inherit;
}

.memberHead__nav__list__item__link__logout::after {
    content: '';
    position: relative;
    display: inline-block;
    width: 15px;
    height: 15px;
    margin: 0 0 0 10px;
    background: url(../images/common/icon_logout_green.svg) center no-repeat;
    background-size: contain;
}

@media screen and (max-width: 991px) {
    .memberHead {
        margin: 190px auto 40px auto;
    }

    /****文字訊息****/
    .memberHead__content {
        margin: 0 auto 40px auto;
    }

    /****選單****/
    .memberHead__nav__list__item__link {
        padding: 30px 50px;
        font-size: 16px;
    }
}

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

@media screen and (max-width: 575px) {
    .memberHead {
        width: calc(100% - 40px);
        margin: 115px auto 20px auto;
    }

    /****文字訊息****/
    .memberHead__content {
        margin: 0 auto 20px auto;
    }

    /****選單****/
    .memberHead__nav__list__item__link {
        padding: 20px 15px;
        font-size: 15px;
    }

    .memberHead__nav__list__item__link__logout::after {
        width: 12px;
        height: 12px;
        margin: 0 0 0 5px;
    }
}



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