      * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Inter', sans-serif;
            background: #fffaf8;
            color: #1f1f1f;
        }
        :root {
            --primary-red: #c52828;
            --deep-red: #9e1f1f;
            --gold-accent: #d9b241;
            --light-bg: #fef6f2;
            --shadow-md: 0 12px 28px rgba(0, 0, 0, 0.08);
            --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.03);
        }
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 32px;
        }
        .breadcrumb {
            margin: 28px 0 20px;
            font-size: 14px;
            color: #7a6a64;
        }
        .breadcrumb a {
            color: #a5452c;
            text-decoration: none;
        }
        .breadcrumb span {
            color: var(--primary-red);
            font-weight: 500;
        }
        .detail-layout {
            display: flex;
            gap: 48px;
            margin: 20px 0 70px;
            flex-wrap: wrap;
        }
        .gallery-col {
            flex: 1.2;
            min-width: 280px;
        }
        .main-poster {
            background: #2b1c18;
            border-radius: 32px;
            overflow: hidden;
            box-shadow: var(--shadow-md);
            aspect-ratio: 4 / 3;
            background-size: cover;
            background-position: center;
            position: relative;
        }
        .badge-stage {
            position: absolute;
            top: 20px;
            left: 20px;
            background: var(--primary-red);
            color: white;
            font-weight: 700;
            padding: 6px 16px;
            border-radius: 60px;
            font-size: 13px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.2);
        }
        .thumb-list {
            display: flex;
            gap: 12px;
            margin-top: 20px;
        }
        .thumb-item {
            width: 80px;
            height: 80px;
            background-size: cover;
            border-radius: 20px;
            cursor: pointer;
            border: 2px solid transparent;
            transition: 0.2s;
        }
        .thumb-item.active {
            border-color: var(--primary-red);
            transform: scale(0.96);
        }
        .info-col {
            flex: 1;
            min-width: 320px;
        }
        .event-title-lg {
            font-size: 36px;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 16px;
        }
        .rating-share {
            display: flex;
            gap: 24px;
            align-items: center;
            margin-bottom: 24px;
        }
        .stars {
            color: var(--gold-accent);
            letter-spacing: 2px;
        }
        .detail-meta-grid {
            background: var(--light-bg);
            padding: 20px 24px;
            border-radius: 28px;
            margin: 20px 0;
            display: flex;
            flex-direction: column;
            gap: 16px;
        }
        .meta-row {
            display: flex;
            align-items: center;
            gap: 18px;
            font-size: 15px;
        }
        .meta-row i {
            width: 28px;
            color: var(--primary-red);
            font-size: 18px;
        }

        /* === 你要的购买区域样式 === */
        .text-wrapper {
            margin-top: 20px;
        }
        .text-wrapper .title {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 12px;
        }
        .money-wrapper {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 16px;
        }
        .price {
            font-size: 26px;
            font-weight: 800;
            color: var(--primary-red);
        }
        del {
            color: #999;
            font-size: 16px;
        }
        .sales {
            color: #666;
            font-size: 13px;
        }
        .attribute {
            margin: 20px 0;
        }
        .size-wrapper {
            display: flex;
            align-items: flex-start;
            margin-bottom: 16px;
            gap: 16px;
        }
        .size-wrapper .label {
            width: 70px;
            font-weight: 600;
            color: #333;
            padding-top: 6px;
        }
        .size-wrapper .list {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        .size-wrapper .item {
            cursor: pointer;
        }
        .size-wrapper .cont {
            border: 1px solid #ddd;
            padding: 6px 14px;
            border-radius: 6px;
            font-size: 14px;
        }
        .size-wrapper .cont.active {
            border-color: var(--primary-red);
            background: #fff2f2;
            color: var(--primary-red);
        }
        .phoneBuy img {
            width: 200px;
            margin-top: 10px;
        }

        .detail-tabs {
            margin: 48px auto;
        }
        .tabs-header {
            display: flex;
            gap: 32px;
            border-bottom: 2px solid #f0e3dd;
        }
        .tab-btn {
            background: none;
            border: none;
            padding: 12px 0;
            font-size: 18px;
            font-weight: 600;
            cursor: pointer;
            color: #6a5c55;
        }
        .tab-btn.active {
            color: var(--primary-red);
            border-bottom: 3px solid var(--primary-red);
        }
        .tab-content {
            padding: 32px 8px;
            background: #fefbf9;
            border-radius: 24px;
            margin-top: 18px;
            line-height: 1.6;
            color: #3a2f2a;
        }
        .tab-pane {
            display: none;
        }
        .tab-pane.active-pane {
            display: block;
        }
        .rec-section {
            margin: 40px  auto;
        }
        .rec-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
            gap: 24px;
            margin-top: 30px;
        }
        .rec-card {
            background: white;
            border-radius: 24px;
            overflow: hidden;
            transition: 0.2s;
            cursor: pointer;
            box-shadow: var(--shadow-sm);
        }
        .rec-img {
            height: 150px;
            background-size: cover;
        }
        .rec-card h4 {
            padding: 12px 16px 4px;
            font-size: 16px;
        }
        .rec-price {
            padding: 0 16px 16px;
            color: var(--primary-red);
            font-weight: 700;
        }
        @media (max-width: 860px) {
            .detail-layout {
                flex-direction: column;
            }
            .event-title-lg {
                font-size: 28px;
            }
        }