* { box-sizing: border-box; margin: 0; padding: 0; }
body, html { background: #f0f2f5; }

.mine-page {
    max-width: 640px;
    margin: auto;
    min-height: 100vh;
    background: #f0f2f5;
    padding-bottom: 80px;
}

/* ── 顶部用户信息 ── */
.mine-header {
    background: linear-gradient(135deg, #3a6cf4 0%, #5b8cff 100%);
    padding: 50px 20px 40px;
    position: relative;
    overflow: hidden;
}
.mine-header::after {
    content: '';
    position: absolute;
    right: -40px; bottom: -50px;
    width: 180px; height: 180px;
    border-radius: 50%;
    background: rgba(255,255,255,0.07);
    pointer-events: none;
}
.mine-user {
    display: flex;
    align-items: center;
    gap: 14px;
    position: relative;
    z-index: 1;
}
.mine-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.6);
    object-fit: cover;
    flex-shrink: 0;
}
.mine-username {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
}
.mine-subtitle {
    font-size: 12px;
    color: rgba(255,255,255,0.65);
    margin-top: 4px;
}

/* ── 卡片 ── */
.mine-card {
    background: #fff;
    border-radius: 16px;
    margin: -20px 12px 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    overflow: hidden;
    position: relative;
}
.mine-card + .mine-card {
    margin-top: 10px;
}

/* ── 菜单列表 ── */
.menu-item {
    display: flex;
    align-items: center;
    padding: 15px 16px;
    border-bottom: 1px solid #f5f5f5;
    cursor: pointer;
    transition: background 0.1s;
}
.menu-item:last-child { border-bottom: none; }
.menu-item:active { background: #f9fbff; }

.menu-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    flex-shrink: 0;
}
.menu-icon img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}
.menu-icon.blue   { background: #ebf1ff; }
.menu-icon.green  { background: #e8f8ee; }
.menu-icon.orange { background: #fff4e6; }
.menu-icon.red    { background: #fff0f0; }

.menu-label {
    flex: 1;
    font-size: 15px;
    color: #1e1e2d;
    font-weight: 500;
}
.menu-arrow {
    font-size: 18px;
    color: #c8c8c8;
    line-height: 1;
}
