
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "PingFang SC", "Microsoft YaHei", sans-serif;
            min-height: 100vh;
            background: linear-gradient(135deg, #ff672b 0%, #ff8c4a 50%, #ffd100 100%);
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 20px 16px;
            padding-bottom: 40px;
        }

        /* 主容器 */
        .page-wrapper {
            width: 100%;
            max-width: 400px;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        /* 主卡片 */
        .main-card {
            width: 100%;
            background: #fff;
            border-radius: 24px;
            padding: 28px 24px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
            position: relative;
            overflow: hidden;
        }

        .main-card::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 6px;
            background: linear-gradient(90deg, #ff672b, #ffd100);
        }

        /* 装饰圆点 */
        .deco-dot {
            position: absolute;
            border-radius: 50%;
            opacity: 0.1;
        }

        .deco-dot-1 {
            width: 120px;
            height: 120px;
            background: #ff672b;
            top: -40px;
            right: -40px;
        }

        .deco-dot-2 {
            width: 80px;
            height: 80px;
            background: #ffd100;
            bottom: 60px;
            left: -30px;
        }

        /* 头部标题 */
        .card-header {
            text-align: center;
            margin-bottom: 24px;
            position: relative;
            z-index: 1;
        }

        .card-title-container {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            margin-bottom: 16px;
        }
        
        .card-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #ff672b 0%, #ffd100 100%);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0;
            box-shadow: 0 8px 24px rgba(255, 103, 43, 0.35);
        }

        .card-icon img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 16px;
        }

        .card-title {
            font-size: 24px;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 8px;
        }

        .card-subtitle {
            font-size: 14px;
            color: #888;
        }

        /* 进度条 */
        .progress-container {
            margin-bottom: 24px;
            position: relative;
            z-index: 1;
        }

        .progress-bar {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            padding: 0 4px;
        }

        .progress-step {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            flex: 0 0 auto;
            width: 60px;
        }

        .step-icon {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: #f5f5f5;
            border: 2px solid #e0e0e0;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.4s ease;
            position: relative;
            z-index: 1;
        }

        .step-icon svg {
            width: 16px;
            height: 16px;
            stroke: #bbb;
            transition: all 0.4s ease;
        }

        .step-text {
            font-size: 11px;
            color: #999;
            font-weight: 500;
            text-align: center;
            transition: all 0.3s ease;
        }

        .progress-line {
            flex: 1;
            height: 3px;
            background: #e8e8e8;
            margin: 17px 6px 0;
            border-radius: 2px;
            overflow: hidden;
        }

        .line-fill {
            width: 0%;
            height: 100%;
            background: linear-gradient(90deg, #ff672b, #ffd100);
            border-radius: 2px;
            transition: width 0.5s ease;
        }

        /* 进度步骤状态 */
        .progress-step.active .step-icon {
            background: #fff5f0;
            border-color: #ff672b;
            box-shadow: 0 0 0 4px rgba(255, 103, 43, 0.12);
        }

        .progress-step.active .step-icon svg {
            stroke: #ff672b;
        }

        .progress-step.active .step-text {
            color: #ff672b;
            font-weight: 600;
        }

        .progress-step.completed .step-icon {
            background: linear-gradient(135deg, #ff672b, #ff8c4a);
            border-color: #ff672b;
            box-shadow: 0 4px 12px rgba(255, 103, 43, 0.3);
        }

        .progress-step.completed .step-icon svg {
            stroke: #fff;
        }

        .progress-step.completed .step-text {
            color: #333;
        }

        /* 输入区域 */
        .input-section {
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
        }
         
        .paste-input {
            width: 100%;
            padding: 16px;
            border: 2px solid #eee;
            border-radius: 14px;
            font-size: 15px;
            resize: none;
            transition: all 0.3s ease;
            font-family: inherit;
            background: #fafafa;
            min-height: 90px;
        }

        .paste-input:focus {
            outline: none;
            border-color: #ff672b;
            background: #fff;
            box-shadow: 0 0 0 4px rgba(255, 103, 43, 0.1);
        }

        .paste-input::placeholder {
            color: #bbb;
        }

        /* 备注名称输入框（保存时由接口回填店名；失败/空名时提示手动输入） */
        .remark-input {
            width: 100%;
            margin-top: 10px;
            padding: 12px 14px;
            border: 2px solid #eee;
            border-radius: 12px;
            font-size: 14px;
            font-family: inherit;
            background: #fafafa;
            transition: all 0.3s ease;
        }

        .remark-input:focus {
            outline: none;
            border-color: #ff672b;
            background: #fff;
            box-shadow: 0 0 0 4px rgba(255, 103, 43, 0.1);
        }

        .remark-input::placeholder {
            color: #bbb;
        }

        /* 按钮组 */
        .btn-row {
            display: flex;
            gap: 10px;
            margin-bottom: 16px;
            position: relative;
            z-index: 1;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            padding: 12px 16px;
            border: none;
            border-radius: 12px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.25s ease;
            font-family: inherit;
            flex: 1;
        }

        .btn:active {
            transform: scale(0.96);
        }

        .btn:disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }

        .btn-icon {
            width: 18px;
            height: 18px;
        }

        .btn-secondary {
            background: #f5f5f5;
            color: #333;
            border: 1px solid #e5e5e5;
        }

        .btn-secondary:hover {
            background: #eee;
        }

        .btn-outline {
            background: transparent;
            color: #666;
            border: 1.5px solid #ddd;
        }

        .btn-outline:hover {
            background: #f9f9f9;
            border-color: #ccc;
        }

        /* Go 按钮 */
        /* 领券按钮行（领商家券 + 二次领取） */
        .go-row {
            display: flex;
            gap: 12px;
            position: relative;
            z-index: 1;
        }

        .btn-go {
            width: 100%;
            padding: 12px 20px;
            background: linear-gradient(135deg, #ff672b 0%, #ff8c4a 100%);
            color: #fff;
            font-size: 15px;
            font-weight: 700;
            border-radius: 14px;
            box-shadow: 0 4px 14px rgba(255, 103, 43, 0.22);
            position: relative;
            z-index: 1;
        }

        .go-row .btn-go {
            width: auto;
        }

        /* 左:右 = 6:4 */
        .go-row #goBtn {
            flex: 6;
        }

        .go-row #recallBtn {
            flex: 4;
        }

        /* 领券按钮行内图标放大 + 间距 */
        .go-row .btn-go .btn-icon {
            width: 22px;
            height: 22px;
        }

        .go-row .btn-go {
            gap: 8px;
        }

        /* 二次领取：描边次要样式，与领商家券区分 */
        .btn-go.btn-go-secondary {
            background: #fff;
            color: #ff672b;
            border: 2px solid #ff672b;
            box-shadow: 0 4px 14px rgba(255, 103, 43, 0.12);
        }

        .btn-go:hover {
            box-shadow: 0 8px 22px rgba(255, 103, 43, 0.3);
            transform: translateY(-2px);
        }

        .btn-go.btn-go-secondary:hover {
            background: #fff6f1;
        }

        /* 二次领取禁用态（查询失败 / 暂无商家券）：显示但不可点击 */
        .btn-go.btn-disabled {
            background: #f4f4f5;
            color: #bdbdbd;
            border: 2px solid #e6e6e8;
            box-shadow: none;
            cursor: not-allowed;
            opacity: 1;
        }

        .btn-go.btn-disabled:hover {
            background: #f4f4f5;
            box-shadow: none;
            transform: none;
        }

        /* 领商家券按钮处于「查询失败 点我重查」态：橙底不变，仅文案提示 */
        .btn-go.btn-go-retry {
            background: linear-gradient(135deg, #ff4d2e 0%, #ff7a3a 100%);
        }

        .btn-go:active {
            transform: scale(0.98);
        }

        /* 快捷入口 */
        .quick-section {
            margin-top: 24px;
            padding-top: 20px;
            border-top: 1px solid #f0f0f0;
            position: relative;
            z-index: 1;
        }

        .quick-title {
            font-size: 13px;
            color: #999;
            text-align: center;
            margin-bottom: 14px;
        }

        .quick-btns {
            display: flex;
            gap: 12px;
        }

        .btn-quick {
            flex: 1;
            flex-direction: column;
            gap: 8px;
            padding: 16px 12px;
            background: linear-gradient(135deg, #fff8f5 0%, #fff 100%);
            border: 1.5px solid #ffe8e0;
            border-radius: 14px;
            color: #333;
        }

        .btn-quick:hover {
            border-color: #ff672b;
            background: #fff5f0;
            box-shadow: 0 4px 16px rgba(255, 103, 43, 0.15);
        }

        .btn-quick svg {
            width: 24px;
            height: 24px;
            stroke: #ff672b;
        }

        .btn-quick span {
            font-size: 12px;
            color: #666;
        }

        /* 使用说明卡片 */
        .help-card {
            width: 100%;
            background: rgba(255, 255, 255, 0.95);
            border-radius: 20px;
            padding: 24px;
            margin-top: 20px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        }

        .help-title-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 16px;
        }

        .help-title {
            font-size: 16px;
            font-weight: 600;
            color: #333;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .help-title::before {
            content: "";
            width: 4px;
            height: 16px;
            background: linear-gradient(180deg, #ff672b, #ffd100);
            border-radius: 2px;
        }

        .help-list {
            list-style: none;
            padding: 0;
            counter-reset: step;
        }

        .help-list li {
            font-size: 13px;
            color: #666;
            margin-bottom: 12px;
            padding-left: 28px;
            position: relative;
            line-height: 1.6;
        }

        .help-list li::before {
            content: counter(step);
            counter-increment: step;
            position: absolute;
            left: 0;
            top: 0;
            width: 20px;
            height: 20px;
            background: linear-gradient(135deg, #ff672b, #ffd100);
            color: #fff;
            font-size: 11px;
            font-weight: 600;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .help-list li:last-child {
            margin-bottom: 0;
        }

        /* 图文教程按钮（使用说明标题右侧） */
        .btn-tutorial {
            padding: 5px 14px;
            font-size: 13px;
            font-weight: 600;
            color: #ff672b;
            background: #fff6f1;
            border: 1px solid rgba(255, 103, 43, 0.35);
            border-radius: 16px;
            cursor: pointer;
            transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
            white-space: nowrap;
        }

        .btn-tutorial:hover {
            background: #ffe9df;
            box-shadow: 0 4px 12px rgba(255, 103, 43, 0.18);
        }

        .btn-tutorial:active {
            transform: scale(0.96);
        }

        /* 图文教程弹窗 */
        .tutorial-modal {
            max-width: 420px;
            padding: 0;
            overflow: hidden;
        }

        .tutorial-modal-body {
            padding: 16px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .tutorial-img {
            width: 100%;
            height: auto;
            border-radius: 10px;
            display: block;
        }

        .tutorial-err {
            color: #999;
            font-size: 14px;
            text-align: center;
            padding: 20px;
        }

        /* 底部标语轮播 */
        .slogan-container {
            position: relative;
            height: 30px;
            margin-top: 28px;
            cursor: pointer;
            width: 100%;
        }

        .slogan-item {
            position: absolute;
            left: 0;
            right: 0;
            text-align: center;
            color: rgba(255, 255, 255, 0.95);
            font-size: 18px;
            letter-spacing: 3px;
            font-weight: 500;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
            opacity: 0;
            animation: sloganFloat 8s ease-in-out infinite;
            white-space: nowrap;
        }

        .slogan-item:nth-child(1) {
            animation-delay: 0s;
        }

        .slogan-item:nth-child(2) {
            animation-delay: 4s;
        }

        @keyframes sloganFloat {
            0% {
                opacity: 0;
                transform: translateY(10px);
            }

            10% {
                opacity: 1;
                transform: translateY(0);
            }

            40% {
                opacity: 1;
                transform: translateY(0);
            }

            50% {
                opacity: 0;
                transform: translateY(-10px);
            }

            100% {
                opacity: 0;
            }
        }

        /* 备案号 */
        .icp-footer {
            text-align: center;
            color: rgba(255, 255, 255, 0.6);
            font-size: 12px;
            margin-top: 16px;
        }

        /* 弹窗通用样式 */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.6);
            backdrop-filter: blur(4px);
            z-index: 9998;
            display: none;
            align-items: center;
            justify-content: center;
            animation: fadeIn 0.2s ease;
        }

        .modal-overlay.show {
            display: flex;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }

            to {
                opacity: 1;
            }
        }

        .modal-content {
            background: #fff;
            border-radius: 20px;
            width: 92%;
            max-width: 440px;
            max-height: 80vh;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            animation: slideUp 0.3s ease;
            position: relative;
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .close-button {
            position: absolute;
            top: 14px;
            right: 14px;
            width: 30px;
            height: 30px;
            background: #f2f3f5;
            border: none;
            border-radius: 50%;
            font-size: 18px;
            line-height: 1;
            color: #999;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.2s, color 0.2s, transform 0.18s ease;
            z-index: 10;
        }

        .close-button:hover {
            background: rgba(255, 103, 43, 0.12);
            color: #ff5a1f;
            transform: rotate(90deg);
        }

        .close-button:active {
            transform: rotate(90deg) scale(0.92);
        }

        /* 公众号弹窗 */
        #gzhModal .modal-content {
            padding: 24px;
            text-align: center;
        }

        #gzhModal img {
            max-width: 260px;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        }

        /* 商家列表弹窗 */
        .modal-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 18px 20px;
            border-bottom: 1px solid #f0f0f0;
        }

        .modal-header h3 {
            font-size: 17px;
            font-weight: 600;
            color: #333;
            line-height: 1.4;
            margin: 0;
        }

        .modal-title-wrap {
            display: flex;
            align-items: baseline;
            gap: 10px;
            min-width: 0;
            flex-wrap: nowrap;
        }

        .cache-badge {
            display: none;
            flex-shrink: 0;
            padding: 3px 8px;
            border-radius: 999px;
            background: #fff3eb;
            color: #ff672b;
            font-size: 12px;
            font-weight: 600;
            border: 1px solid #ffd9c7;
        }

        .cache-badge.show {
            display: inline-flex;
        }

        .modal-body {
            padding: 16px 20px;
            max-height: calc(80vh - 70px);
            overflow-y: auto;
        }

        .shop-list {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        
        .empty-tip {
            text-align: center;
            padding: 40px 20px;
            color: #999;
            font-size: 16px;
        }

        .shop-item {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 10px 16px;
            background: linear-gradient(135deg, #fff8f5 0%, #fff 100%);
            border: 1px solid #ffe8e0;
            border-radius: 12px;
            transition: all 0.2s;
            cursor: pointer;
        }

        .shop-avatar {
            width: 58px;
            height: 58px;
            min-width: 58px;
            border-radius: 6px;
            object-fit: cover;
            background: #fff3eb;
            margin-right: 10px;
        }

        .shop-avatar-rebtn {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            width: 58px;
            height: 58px;
            min-width: 58px;
            padding: 0;
            border: none;
            border-radius: 6px;
            margin-right: 10px;
            background: linear-gradient(135deg, #ff672b 0%, #ff8c4a 100%);
            color: #fff;
            font-size: 13px;
            font-weight: 700;
            line-height: 1.25;
            cursor: pointer;
            transition: opacity 0.2s, transform 0.15s;
        }

        .shop-avatar-rebtn:hover {
            opacity: 0.9;
        }

        .shop-avatar-rebtn:active {
            transform: scale(0.96);
        }

        .shop-item:hover {
            border-color: #ff672b;
            box-shadow: 0 4px 16px rgba(255, 103, 43, 0.12);
        }

        .shop-info {
            flex: 1;
            min-width: 0;
        }

        .shop-name {
            font-size: 15px;
            font-weight: 500;
            color: #333;
            display: block;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }

        .shop-date {
            font-size: 12px;
            font-weight: 700;
            color: #999;
            margin-top: 0;
            display: block;
        }

        /* 已保存商家：标题与日期之间间距加大 */
        .shop-info > .shop-date {
            margin-top: 6px;
        }

        .shop-meta {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-top: 4px;
        }

        .shop-actions {
            display: flex;
            gap: 8px;
            flex-shrink: 0;
            margin-left: 12px;
        }

        .btn-small {
            padding: 8px 14px;
            font-size: 13px;
            border-radius: 8px;
        }

        .btn-primary {
            background: linear-gradient(135deg, #ff672b, #ff8c4a);
            color: #fff;
            border: none;
            min-width: 60px;
        }

        /* 今日查询：顶部日期 + 券额徽标 + 底部说明 */
        .modal-date {
            font-size: 14px;
            font-weight: 700;
            color: #ff8c4a;
            line-height: 1.4;
            white-space: nowrap;
        }

        .btn-clear-today {
            padding: 3px 10px;
            font-size: 12px;
            color: #999;
            background: #f5f5f5;
            border: 1px solid #eee;
            border-radius: 6px;
            cursor: pointer;
            transition: all 0.2s;
            white-space: nowrap;
        }

        .btn-clear-today:hover {
            color: #ff5a1f;
            border-color: #ffd9c7;
            background: #fff8f5;
        }

        .today-tip {
            font-size: 12px;
            color: #999;
            text-align: center;
            margin: 12px 0 0;
        }

        .coupon-amount {
            display: inline-flex;
            align-items: center;
            padding: 4px 10px;
            font-size: 13px;
            font-weight: 700;
            color: #ff5a1f;
            background: rgba(255, 90, 31, 0.1);
            border-radius: 20px;
            white-space: nowrap;
            letter-spacing: 1px;
        }

        .coupon-amount .c-limit {
            font-size: 14px;
            margin: 0 3px;
        }

        .coupon-amount .c-amt {
            font-size: 16px;
            margin-left: 3px;
        }

        /* 领商家券按钮上的券额文案：文字与数字间加间隙，数字略放大 */
        .btn-go .c-limit {
            font-size: 16px;
            margin: 0 3px;
        }

        .btn-go .c-amt {
            font-size: 18px;
            margin-left: 3px;
        }

        /* 今日查询：日期 / 时间 / 券额数字统一用等宽字体（与详情商家ID一致） */
        .modal-date,
        .shop-meta .shop-date,
        .coupon-amount {
            font-family: "SF Mono", "Cascadia Code", Consolas, "Courier New", monospace;
        }

        .pagination {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 14px 20px 4px;
        }

        .pagination-btn {
            padding: 7px 12px;
            border: 1px solid #ddd;
            border-radius: 8px;
            background: #f7f7f7;
            color: #666;
            font-size: 13px;
            cursor: pointer;
            transition: all 0.2s;
        }

        .pagination-btn:hover {
            background: #ff672b;
            color: #fff;
            border-color: #ff672b;
        }

        .pagination-btn:disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }

        .pagination-btn:disabled:hover {
            background: #f7f7f7;
            color: #666;
            border-color: #ddd;
        }

        .pagination-info {
            color: #888;
            font-size: 13px;
        }

        /* 商家详情弹窗样式 */
        .shop-detail-info {
            margin-bottom: 20px;
        }

        .detail-row {
            display: flex;
            align-items: center;
            margin-bottom: 16px;
            padding: 12px 16px;
            background: #f8f8f8;
            border-radius: 12px;
        }

        .detail-label {
            font-size: 14px;
            color: #666;
            font-weight: 500;
            min-width: 80px;
            margin-right: 12px;
        }

        .detail-value {
            font-size: 14px;
            color: #333;
            flex: 1;
            word-break: break-all;
        }

        .edit-name-input {
            flex: 1;
            padding: 8px 12px;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-size: 14px;
            outline: none;
        }

        .edit-name-input:focus {
            border-color: #ff672b;
            box-shadow: 0 0 0 2px rgba(255, 103, 43, 0.1);
        }

        /* 名称：标题式编辑区（标签在上，输入框 + 保存按钮同行） */
        .detail-field {
            margin-bottom: 18px;
        }

        .detail-name-row {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .detail-name-row .edit-name-input {
            flex: 1;
            min-width: 0;
            padding: 11px 14px;
            border: 1.5px solid #e3e3e6;
            border-radius: 10px;
            font-size: 15px;
            font-family: inherit;
            background: #fafafa;
            transition: all 0.2s ease;
        }

        .detail-name-row .edit-name-input:focus {
            outline: none;
            border-color: #ff672b;
            background: #fff;
            box-shadow: 0 0 0 3px rgba(255, 103, 43, 0.12);
        }

        .detail-name-row .btn {
            flex: 0 0 auto;
        }

        .detail-name-row .btn-primary {
            padding: 11px 20px;
        }

        /* 只读信息收进灰底卡片（创建时间 / 商家ID） */
        .detail-meta-card {
            background: #f7f8fa;
            border: 1px solid #eef0f3;
            border-radius: 12px;
            padding: 2px 16px;
            margin-bottom: 0;
        }

        .detail-meta-row {
            display: flex;
            align-items: baseline;
            gap: 12px;
            padding: 11px 0;
            border-bottom: 1px solid #eceef1;
        }

        .detail-meta-row:last-child {
            border-bottom: none;
        }

        .detail-meta-key {
            font-size: 13px;
            color: #9aa0a6;
            min-width: 64px;
            flex-shrink: 0;
        }

        .detail-meta-val {
            font-size: 13px;
            color: #333;
            flex: 1;
            word-break: break-all;
            line-height: 1.5;
        }

        .detail-meta-val.mono {
            font-family: "SF Mono", "Cascadia Code", Consolas, "Courier New", monospace;
            font-size: 12px;
            color: #555;
        }

        /* 底部操作：分享（占比稍大）+ 删除（红描边危险样式） */
        .btn-share {
            background: linear-gradient(135deg, #ff672b, #ff8c4a);
            color: #fff;
            border: none;
        }

        .btn-share:hover {
            box-shadow: 0 6px 18px rgba(255, 103, 43, 0.35);
        }

        .btn-share:active {
            transform: scale(0.97);
        }

        .btn-danger-outline {
            background: #fff;
            color: #ff4d4f;
            border: 1.5px solid #ff4d4f;
        }

        .btn-danger-outline:hover {
            background: #fff1f0;
            border-color: #ff7875;
        }

        .btn-danger-outline:active {
            transform: scale(0.97);
        }

        .detail-actions {
            display: flex;
            gap: 12px;
            padding-top: 16px;
            border-top: 1px solid #f0f0f0;
        }

        .detail-actions .btn {
            flex: 1;
        }

        .detail-actions .btn-share {
            flex: 6;
        }

        .detail-actions .btn-danger-outline {
            flex: 5;
        }

        /* 微信提示 */
        .wx-tip {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.8);
            z-index: 9999;
        }

        .wx-tip-content {
            position: absolute;
            top: 60px;
            right: 20px;
            background: #fff;
            padding: 16px 20px;
            border-radius: 12px;
            font-size: 14px;
            color: #333;
            max-width: 240px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
        }

        .wx-tip-content::before {
            content: "";
            position: absolute;
            top: -8px;
            right: 30px;
            border-left: 10px solid transparent;
            border-right: 10px solid transparent;
            border-bottom: 10px solid #fff;
        }

        /* 响应式 */
        @media (max-width: 360px) {
            body {
                padding: 16px 12px;
            }

            .main-card {
                padding: 24px 18px;
            }

            .card-title {
                font-size: 22px;
            }

            .progress-step {
                width: 54px;
            }

            .step-text {
                font-size: 10px;
            }
        }
    