:root {
            --primary: #00BEBD;
            --accent: #FF5A5F;
            --dark: #111827;
            --gray: #6B7280;
            --white: #FFFFFF;
            --bg: #F8FAFC;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { background: var(--bg); font-family: -apple-system, sans-serif; padding-bottom: 90px; }

        /* --- 1. 沉浸式相册 (Hero Gallery) --- */
        .hero-gallery {
            position: relative; height: 300px; background: #000;
            overflow: hidden;
        }
        .hero-gallery img { width: 100%; height: 100%; object-fit: cover; opacity: 0.9; }
        .back-circle {
            position: absolute; top: 15px; left: 15px;
            width: 36px; height: 36px; background: rgba(0,0,0,0.4);
            border-radius: 50%; display: flex; align-items: center; justify-content: center;
            color: #fff; text-decoration: none; z-index: 10;
        }
        .img-counter {
            position: absolute; bottom: 15px; right: 15px;
            background: rgba(0,0,0,0.6); color: #fff;
            padding: 4px 12px; border-radius: 20px; font-size: 0.7rem;
        }

        /* --- 2. 核心信息区 --- */
        .detail-main {
            background: var(--white); border-radius: 24px 24px 0 0;
            margin-top: -24px; position: relative; z-index: 5;
            padding: 25px 20px;
        }
        .price-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 15px; }
        .salary { color: var(--accent); font-size: 1.6rem; font-weight: 900; }
        .salary small { font-size: 0.8rem; font-weight: normal; margin-left: 4px; }
        .views { font-size: 0.75rem; color: var(--gray); }

        .title { font-size: 1.4rem; font-weight: 800; color: var(--dark); margin-bottom: 10px; }
        .location-tag { font-size: 0.85rem; color: var(--gray); display: flex; align-items: center; gap: 5px; margin-bottom: 20px; }

        /* 亮点标签 */
        .highlights { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 25px; }
        .h-tag { 
            background: #F1F5F9; color: #475569; padding: 6px 14px; 
            border-radius: 10px; font-size: 0.8rem; font-weight: 500;
        }
        .h-tag.active { background: rgba(0,190,189,0.1); color: var(--primary); }

        /* --- 3. 内容板块 (Sections) --- */
        .info-block { margin-bottom: 30px; }
        .info-block h3 { font-size: 1.1rem; font-weight: 800; margin-bottom: 15px; display: flex; align-items: center; gap: 8px; }
        .info-block h3::before { content: ""; width: 4px; height: 18px; background: var(--primary); border-radius: 2px; }
        
        .rich-text { color: #444; font-size: 0.95rem; line-height: 1.8; }
        .rich-text ul { padding-left: 18px; }
        .rich-text li { margin-bottom: 8px; list-style-type:none;}

        /* --- 4. 领队直招卡片 (Leader Card) --- */
        .leader-card {
            background: #F8FAFC; border: 1px solid #E2E8F0;
            border-radius: 16px; padding: 15px; display: flex; align-items: center; gap: 15px;
        }
        .leader-avatar { width: 55px; height: 55px; border-radius: 50%; object-fit: cover; border: 2px solid var(--primary); }
        .leader-meta h4 { font-size: 1rem; margin-bottom: 4px; }
        .leader-meta p { font-size: 0.75rem; color: var(--gray); }

        /* --- 5. 底部动作条 (Sticky Footer) --- */
        .footer-action {
            position: fixed; bottom: 0; left: 0; width: 100%;
            background: var(--white); padding: 12px 20px;
            display: flex; gap: 12px; box-shadow: 0 -5px 20px rgba(0,0,0,0.05);
            z-index: 100;
        }
        .btn-side { 
            flex: 1; height: 50px; border-radius: 25px; 
            display: flex; align-items: center; justify-content: center;
            font-weight: bold; font-size: 0.95rem; text-decoration: none;
        }
        .btn-wx { background: #E6F7F7; color: var(--primary); }
        .btn-call { background: var(--primary); color: #fff; box-shadow: 0 4px 12px rgba(0,190,189,0.3); }


/* --- 7. 上一页/下一页 (Pagination) --- */
        .page-nav {
            display: flex;
            justify-content: space-between;
            gap: 15px;
            margin: 20px 0 30px;
        }
        .page-link {
            flex: 1;
            background: var(--white);
            border: 1px solid #E2E8F0;
            padding: 12px 15px;
            border-radius: 12px;
            text-decoration: none;
            display: flex;
            flex-direction: column;
            gap: 4px;
            transition: all 0.2s;
        }
        .page-link:active {
            background: #F1F5F9;
            transform: scale(0.98);
        }
        .page-link span {
            font-size: 0.7rem;
            color: var(--gray);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .page-link p {
            font-size: 0.85rem;
            color: var(--dark);
            font-weight: 600;
            /* 文字溢出省略号 */
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        /* 针对PC端的微调 */
        @media (min-width: 1024px) {
            .page-link:hover {
                border-color: var(--primary);
                box-shadow: 0 4px 12px rgba(0,190,189,0.1);
            }
        }



        /* PC端适配 */
        @media (min-width: 1024px) {
            .container { max-width: 900px; margin: 0 auto; }
            .hero-gallery { height: 450px; border-radius: 20px; margin-top: 20px; }
            .detail-main { margin-top: 20px; border-radius: 20px; border: 1px solid #eee; }
            .footer-action { position: static; margin-top: 30px; background: transparent; padding: 0; box-shadow: none; }
        }