/* PC 阅读页会员开通卡片 */
.pc-member-card {
    position: fixed;
    right: 24px;
    top: 55%;
    z-index: 27;
    width: 360px;
    box-sizing: border-box;
    padding: 24px;
    border: 1px solid #e8b64e;
    border-radius: 8px;
    background: #fffdf7;
    box-shadow: 0 10px 28px rgba(85, 55, 20, .24);
    color: #463719;
}

.pc-member-card__close {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 24px;
    height: 24px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: transparent;
    color: #907343;
    font-size: 18px;
    line-height: 24px;
    cursor: pointer;
}

.pc-member-card__close:hover {
    background: #f6ead0;
    color: #5f481f;
}

.pc-member-card__title {
    margin: 0 30px 8px 0;
    color: #795316;
    font-size: 20px;
    font-weight: 700;
    line-height: 28px;
}

.pc-member-card__intro {
    margin: 0 0 12px;
    color: #7e6741;
    font-size: 14px;
    line-height: 21px;
}

.pc-member-card__benefits {
    display: grid;
    gap: 7px;
    margin: 0 0 16px;
    padding: 0;
    list-style: none;
}

.pc-member-card__benefit {
    position: relative;
    padding-left: 18px;
    color: #5e4b2b;
    font-size: 13px;
    line-height: 19px;
}

.pc-member-card__benefit::before {
    position: absolute;
    left: 0;
    color: #c78a18;
    content: "✓";
    font-weight: 700;
}

.pc-member-card__action {
    display: block;
    box-sizing: border-box;
    width: 100%;
    height: 48px;
    border: 1px solid #b97a11;
    border-radius: 6px;
    background: #d99a28;
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    line-height: 46px;
    text-align: center;
    text-decoration: none;
}

.pc-member-card__action:hover {
    background: #bd7d15;
    color: #fff;
    text-decoration: none;
}

.pc-member-card.is-hidden {
    display: none;
}

@media screen and (max-width: 1280px) {
    .pc-member-card {
        right: 14px;
        top: 57%;
        width: 330px;
        padding: 20px;
    }
}

@media screen and (max-width: 1000px) {
    .pc-member-card {
        display: none;
    }
}
