/* Extracted from app/index/view/my/notice.html for Vue SPA */


        .mc-page {
            min-height: 100vh;
            padding-bottom: calc(var(--app-footer-h, 56px) + 8px);
            background: #FFFFFF;
        }

        .mc-nav {
            position: sticky;
            top: 0;
            z-index: 20;
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 16px;
            background: rgba(255,255,255,.96);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(213,222,228,.65);
        }
        .mc-nav .back {
            width: 36px;
            height: 36px;
            border-radius: 10px;
            background: #F0F2F4;
            color: var(--app-ink, #1C1C1C);
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            font-size: 22px;
            line-height: 1;
            flex-shrink: 0;
        }
        .mc-nav .meta { flex: 1; min-width: 0; }
        .mc-nav .meta .k {
            font-size: 10px;
            letter-spacing: .12em;
            color: #B8860B;
            font-weight: 600;
        }
        .mc-nav .meta .t {
            font-size: 16px;
            font-weight: 800;
            font-family: var(--app-display, sans-serif);
            line-height: 1.2;
            color: var(--app-ink, #1C1C1C);
        }
        .mc-nav .read-all {
            flex-shrink: 0;
            font-size: 12px;
            font-weight: 700;
            color: #8B6914;
            text-decoration: none;
            padding: 6px 10px;
            border-radius: 8px;
            background: rgba(255,209,0,.14);
        }

        .mc-dash {
            margin: 12px 16px 0;
            padding: 16px;
            border-radius: 18px;
            background: linear-gradient(145deg, #1C1C1C 0%, #2A2A2A 55%, #1C1C1C 100%);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            box-shadow: 0 10px 28px rgba(0,0,0,.16);
        }
        .mc-dash-main .k {
            font-size: 11px;
            letter-spacing: .06em;
            color: rgba(255,255,255,.55);
        }
        .mc-dash-main .v {
            margin-top: 4px;
            font-size: 32px;
            font-weight: 800;
            font-family: var(--app-display, sans-serif);
            line-height: 1;
            color: #FFD100;
        }
        .mc-dash-side {
            display: flex;
            gap: 8px;
        }
        .mc-dash-side .cell {
            min-width: 64px;
            padding: 10px 12px;
            border-radius: 12px;
            background: rgba(255,255,255,.08);
            border: 1px solid rgba(255,255,255,.1);
            text-align: center;
        }
        .mc-dash-side .cell .v {
            font-size: 18px;
            font-weight: 800;
            font-family: var(--app-display, sans-serif);
            color: #fff;
            line-height: 1.1;
        }
        .mc-dash-side .cell .k {
            margin-top: 3px;
            font-size: 10px;
            color: rgba(255,255,255,.5);
            letter-spacing: .04em;
        }

        .mc-tabs {
            display: flex;
            gap: 0;
            margin: 16px 16px 0;
            padding: 4px;
            border-radius: 12px;
            background: #F0F2F4;
        }
        .mc-tab {
            flex: 1;
            min-width: 0;
            padding: 8px 4px;
            border: 0;
            border-radius: 9px;
            background: transparent;
            color: var(--app-muted, #999);
            font-size: 12px;
            font-weight: 700;
            cursor: pointer;
            transition: background .2s, color .2s, box-shadow .2s;
        }
        .mc-tab i {
            font-style: normal;
            margin-left: 2px;
            font-size: 10px;
            opacity: .85;
        }
        .mc-tab.is-active {
            background: #fff;
            color: var(--app-ink, #1C1C1C);
            box-shadow: 0 2px 8px rgba(0,0,0,.06);
        }
        .mc-tab:active { opacity: .85; }

        .mc-list {
            padding: 12px 16px 16px;
        }
        .mc-item {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            padding: 14px 0;
            border-bottom: 1px solid rgba(213,222,228,.55);
            cursor: pointer;
            -webkit-tap-highlight-color: transparent;
        }
        .mc-item:last-child { border-bottom: none; }
        .mc-item.is-hidden { display: none; }
        .mc-item-main { flex: 1; min-width: 0; }
        .mc-item-head {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            gap: 10px;
        }
        .mc-item-head .title {
            margin: 0;
            font-size: 15px;
            font-weight: 600;
            font-family: var(--app-display, sans-serif);
            color: var(--app-ink, #1C1C1C);
            line-height: 1.35;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }
        .mc-item.is-unread .title { font-weight: 800; }
        .mc-item-head time {
            flex-shrink: 0;
            font-size: 11px;
            color: var(--app-muted, #999);
            line-height: 1.4;
        }
        .mc-item .preview {
            margin: 5px 0 0;
            font-size: 13px;
            line-height: 1.5;
            color: var(--app-muted, #999);
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .mc-item .dot {
            flex-shrink: 0;
            width: 8px;
            height: 8px;
            margin-top: 6px;
            border-radius: 50%;
            background: #FFD100;
            box-shadow: 0 0 0 3px rgba(255,209,0,.22);
        }

        .mc-empty {
            margin-top: 8px;
            padding: 48px 20px;
            text-align: center;
            border-radius: 16px;
            background: #fff;
            border: 1px solid rgba(213,222,228,.65);
        }
        .mc-empty.is-hidden { display: none; }
        .mc-empty .ico {
            width: 56px;
            height: 56px;
            margin: 0 auto 14px;
            border-radius: 16px;
            background: #F0F2F4;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .mc-empty .ico svg {
            width: 26px;
            height: 26px;
            stroke: #B8860B;
            fill: none;
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
        }
        .mc-empty p {
            margin: 0;
            font-size: 14px;
            font-weight: 700;
            color: var(--app-ink, #1C1C1C);
        }
        .mc-empty span {
            display: block;
            margin-top: 6px;
            font-size: 12px;
            color: var(--app-muted, #999);
        }

        body.mc-detail-open { overflow: hidden; }
        .mc-sheet-mask {
            position: fixed;
            inset: 0;
            z-index: 1200;
            background: rgba(0,0,0,.35);
            backdrop-filter: blur(4px);
            opacity: 0;
            visibility: hidden;
            transition: opacity .28s, visibility .28s;
        }
        .mc-sheet-mask.is-open {
            opacity: 1;
            visibility: visible;
        }
        .mc-detail {
            position: absolute;
            left: 0;
            right: 0;
            bottom: 0;
            max-height: 78vh;
            padding: 8px 18px calc(18px + env(safe-area-inset-bottom));
            background: #fff;
            border-radius: 20px 20px 0 0;
            box-shadow: 0 -8px 32px rgba(0,0,0,.1);
            transform: translateY(100%);
            transition: transform .32s cubic-bezier(0.32, 0.72, 0, 1);
            overflow-y: auto;
        }
        .mc-sheet-mask.is-open .mc-detail { transform: translateY(0); }
        .mc-detail-handle {
            width: 36px;
            height: 4px;
            margin: 4px auto 14px;
            border-radius: 2px;
            background: #E0E0E0;
        }
        .mc-detail-head {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 10px;
            margin-bottom: 8px;
        }
        .mc-detail-tag {
            display: inline-block;
            padding: 3px 8px;
            border-radius: 6px;
            font-size: 10px;
            font-weight: 700;
            background: rgba(255,209,0,.16);
            color: #8B6914;
        }
        .mc-detail-tag--order {
            background: #F0F2F4;
            color: var(--app-sub, #666);
        }
        .mc-detail-tag--promo {
            background: rgba(200,16,46,.08);
            color: #c8102e;
        }
        .mc-detail-close {
            width: 32px;
            height: 32px;
            border: 0;
            border-radius: 10px;
            background: #F0F2F4;
            color: var(--app-muted, #999);
            font-size: 20px;
            line-height: 1;
            cursor: pointer;
        }
        .mc-detail-title {
            margin: 0;
            font-size: 18px;
            font-weight: 800;
            font-family: var(--app-display, sans-serif);
            color: var(--app-ink, #1C1C1C);
            line-height: 1.35;
        }
        .mc-detail-time {
            display: block;
            margin-top: 6px;
            font-size: 12px;
            color: var(--app-muted, #999);
        }
        .mc-detail-body {
            margin-top: 14px;
            font-size: 14px;
            line-height: 1.65;
            color: var(--app-sub, #666);
            white-space: pre-wrap;
            word-break: break-word;
        }
        .mc-detail-foot {
            margin-top: 18px;
            display: flex;
            gap: 10px;
        }
        .mc-detail-btn {
            flex: 1;
            height: 44px;
            border: 0;
            border-radius: 12px;
            font-size: 13px;
            font-weight: 800;
            font-family: var(--app-display, sans-serif);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            background: linear-gradient(135deg, #FFE566 0%, #FFD100 55%, #E6B800 100%);
            color: #1C1C1C;
        }
        .mc-detail-btn.ghost {
            background: #F0F2F4;
            color: var(--app-sub, #666);
        }
        .mc-detail-btn.is-hidden { display: none; }
