/* ===== 我的 (个人中心) ===== */
.my-page {
    background: #f4f5f7;
    min-height: calc(100vh - 70px);
}
.my-page[hidden] { display: none; }

.my-header {
    position: relative;
    background: #ff5a4c;
    padding: 20px 0 0;
    border-bottom-left-radius: 40% 26px;
    border-bottom-right-radius: 40% 26px;
    color: #fff;
    text-align: center;
}
.my-settings {
    position: absolute;
    right: 14px;
    top: 12px;
    width: 36px;
    height: 36px;
    border: 0;
    background: transparent;
    cursor: pointer;
    padding: 0;
}
.my-settings svg { width: 24px; height: 24px; }

.my-avatar-wrap {
    display: flex;
    justify-content: center;
    margin-top: 6px;
}
.my-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 4px solid rgba(255,255,255,0.4);
    background: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.my-avatar svg { width: 84px; height: 84px; }

.my-id {
    margin-top: 12px;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
}
.my-name {
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    padding-bottom: 32px;
}

/* 账户/信用 信息条 */
.my-info {
    background: #fff;
    display: flex;
    align-items: stretch;
    padding: 18px 0 20px;
}
.my-info-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 0 14px;
}
.my-info-divider {
    width: 1px;
    background: #efefef;
}
.my-info-label {
    font-size: 14px;
    color: #666;
}
.my-info-label .red,
.my-info-label b.red {
    color: #ff4d4f;
    font-weight: 700;
    margin-left: 2px;
}
.my-info-value {
    font-size: 16px;
    color: #333;
    margin-bottom: 4px;
}
.my-info-btn {
    margin-top: 6px;
    width: 140px;
    height: 38px;
    background: #ff5a4c;
    color: #fff;
    border: 0;
    border-radius: 4px;
    font-size: 15px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.my-info-btn svg { width: 18px; height: 18px; }
.my-info-btn:active { background: #e64a3d; }

/* 横幅 */
.my-banner {
    margin: 10px 12px 4px;
    height: 80px;
    border-radius: 6px;
    background:
        linear-gradient(120deg, #0a2750 0%, #143b6b 50%, #0e2544 100%),
        radial-gradient(circle at 80% 50%, rgba(255,100,100,0.3), transparent 60%);
    background-blend-mode: screen;
    position: relative;
    overflow: hidden;
    color: #fff;
    display: flex;
    align-items: center;
    padding: 0 22px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}
.my-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(
            90deg,
            rgba(255,255,255,0.04) 0 1px,
            transparent 1px 14px
        );
    pointer-events: none;
}
.my-banner-text p {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 1.35;
    text-shadow: 0 1px 2px rgba(0,0,0,0.4);
}

/* 9 宫格 */
.my-grid {
    background: #fff;
    margin-top: 10px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}
.my-grid-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 18px 6px;
    border-right: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
    color: #444;
    font-size: 13px;
    transition: background 0.15s ease;
}
.my-grid-item:nth-child(3n) { border-right: 0; }
.my-grid-item:active { background: #f8f8f8; }

.my-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.06);
}
.my-icon svg { width: 24px; height: 24px; }

.my-icon.i-orange  { background: radial-gradient(circle at 30% 30%, #ffb58a, #ff8a3d 80%); }
.my-icon.i-purple  { background: radial-gradient(circle at 30% 30%, #dcc7ff, #b18fe6 80%); }
.my-icon.i-blue    { background: radial-gradient(circle at 30% 30%, #c0dfff, #7fb5ee 80%); }
.my-icon.i-pink    { background: radial-gradient(circle at 30% 30%, #ffd0d8, #ef9ca8 80%); }
.my-icon.i-teal    { background: radial-gradient(circle at 30% 30%, #b2e6ed, #5fc4d0 80%); }
.my-icon.i-skyblue { background: radial-gradient(circle at 30% 30%, #c9e2ff, #9abde0 80%); }
.my-icon.i-coral   { background: radial-gradient(circle at 30% 30%, #ffc8be, #ef988a 80%); }
.my-icon.i-lilac   { background: radial-gradient(circle at 30% 30%, #d8c9ef, #b19ddc 80%); }
.my-icon.i-gold    { background: radial-gradient(circle at 30% 30%, #ffe7a8, #e7b24a 80%); }
