/* /css/member.css */

/* 整体区域更宽 */
.member {
    max-width: 1100px;
    margin: 80px auto;
    padding: 20px;
    background: linear-gradient(135deg, #f9fbfd, #eef6ff);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(2,132,199,0.1);
}

/* 顶部横幅 */
.member-banner {
    text-align: center;
    margin-bottom: 40px;
}
.member-banner h1 {
    font-size: 32px;
    color: #0284c7;
    margin-bottom: 10px;
}
.member-banner p {
    color: #64748b;
    font-size: 17px;
}

/* 两列卡片容器 */
.member-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

/* 卡片基础样式 */
.card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(2,132,199,0.1);
    padding: 30px 26px;
    position: relative;
    transition: transform .3s, box-shadow .3s;
}
.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(2,132,199,0.15);
}

/* 非会员信息 */
.vip-info h2 {
    color: #0284c7;
    font-size: 24px;
}
.vip-sub {
    color: #475569;
    margin: 10px 0 20px;
}
.vip-benefits li {
    background: rgba(2,132,199,0.05);
    border-left: 4px solid #0284c7;
    border-radius: 8px;
    padding: 10px 14px;
    margin-bottom: 8px;
    transition: transform 0.25s;
}
.vip-benefits li:hover {
    transform: translateX(6px);
}
.price {
    color: #0284c7;
    font-size: 22px;
    font-weight: 700;
}
.btn {
    background: linear-gradient(135deg, #0284c7, #38bdf8);
    color: white;
    border: none;
    padding: 12px 22px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(2,132,199,0.25);
    transition: all .3s;
}
.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(2,132,199,0.35);
}

/* 二维码区 */
.qr {
    margin-top: 20px;
    background: linear-gradient(135deg, #e0f2fe, #f0f9ff);
    border-radius: 10px;
    padding: 16px;
}

/* 会员状态卡 */
.vip-status-card h2 {
    color: #059669;
    margin-bottom: 10px;
}
.vip-detail p {
    margin: 10px 0;
    font-size: 16px;
}
.unbind-btn {
    margin-left: 10px;
    background-color: #ef4444;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 6px;
    cursor: pointer;
}
.unbind-btn:hover {
    background-color: #dc2626;
}

/* 右侧提示卡 */
.vip-extra h3, .vip-tips h3 {
    color: #0284c7;
    margin-bottom: 12px;
}
.vip-extra ul {
    list-style: none;
    padding: 0;
    line-height: 1.8;
}
.vip-tips p {
    color: #475569;
    line-height: 1.8;
}

/* footer */
footer {
    text-align: center;
    margin-top: 60px;
    color: #64748b;
    font-size: 14px;
}
