:root {
    --main-color: #D1008D;
    --second-color: #702283;
    --main-color-shallow: rgba(209, 0, 141, .1);
    --gray-color: #f0f4f5;
}

a, a:hover {
    color: #000;
    text-decoration: none;
}
.header {
    top: 0;
    position: fixed;
    width: 100%;
}
.header .btn-icon img {
    width: 24px;
    height: 24px;
}
.wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100vh;
}
.wrapper.register {
    max-width: 587px;
}
.wrapper.register .box {
    max-width: 587px;
    min-width: auto;
}
.left-0 {
    left: 0!important;
}
.top-0 {
    top: 0!important;
}
.pt-70 {
    padding-top: 70px;
}

/* 我的 */
.tag {
    display: block;
    width: 80px;
    height: 0;
    padding-bottom: 45%;
}
.tag-friend {
    background: url(../images/friends/tag-friend.svg) no-repeat center/contain ;
}
.tag-member {
    background: url(../images/friends/tag-member.svg) no-repeat center/contain ;
}
.tag-vip {
    background: url(../images/friends/tag-vip.svg) no-repeat center/contain ;
}

.bg-secondary .btn-icon {
    opacity: 1;
}
.member-func-wrapper {
    width: 100%;
    justify-content: space-between;
}
.member-func-wrapper img {
    display: block;
    width: 24px;
    height: 24px;
    object-fit: contain;
    margin: 0 auto;
}
.icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
}
.pattern-earn {
    border: 1px solid #f0f4f5;
    border-bottom: 0;
    border-radius: 4px 4px 0 0;
    color: #888;
    display: inline-flex;
    position: relative;
    top: 1px;
    padding: 3px 20px;
    background: #fff;
}
.pattern-earn .icon {
    margin: 0;
}
.btn-outline-main:hover {
    margin: 0 auto;
}
.btn-outline-main {
    max-width: 155px;
    margin: 0 auto;
}
.paper-earn {
    transition: .3s;
    max-height: 0;
    overflow: hidden;
}
.paper-earn.active {
    max-height: 1000px;
}

/* 會員分級與權益 */
.accordion-wrapper label {
    display: flex;
    width: 100%;
    padding: 6px 15px;
    background: var(--gray-color);
    color: #444;
    align-items: center;
    margin-bottom: ㄢ;
    justify-content: space-between;
}
.accordion-wrapper p .icon {
    width: 30px;
    height: 30px;
}
.radio-check + label > .icon {
    transform: rotate(-180deg);
    transition: .3s;
}
.radio-check:checked + label > .icon {
    transform: rotate(0deg);
}
.radio-check ~ .accordion-body {
    display: none;
}
.radio-check:checked ~ .accordion-body {
    display: block;
}
.text-14px {
    font-size: 14px;
}
.w-94px {
    width: 94px;
}
.btn-wrapper {
    padding: 20px 15px;
    min-height: 120px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #FFFFFF 81.77%);
    display: flex;
    box-sizing: border-box;
    position: fixed;
    bottom: 0;
    z-index: 98;
    width: 100%;
    left: 0;
    text-align: center;
    justify-content: center;
    align-items: flex-end;
}
@media screen and (min-width: 980px) {
    .btn-wrapper {
        width: calc(100% - 200px);
        left: 200px;
    }
}