 /* --- 基础重置 --- */
        * { box-sizing: border-box; -webkit-tap-highlight-color: transparent; margin: 0; padding: 0; }
        body { font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Helvetica Neue", Arial, sans-serif; background-color: #f2f4f6; color: #333; line-height: 1.5; }
        a { text-decoration: none; color: inherit; }
        ul, li { list-style: none; }
        img { display: block; max-width: 100%; height: auto; }

        :root {
            --primary-color: #009688;
            --text-dark: #333;
            --bg-gray: #f5f5f5;
            --header-height: 50px;
        }

        /* --- 640px 容器限制 --- */
        .app-container {
            max-width: 640px; 
            margin: 0 auto; 
            background-color: #fff;
            min-height: 100vh;
            position: relative;
            padding-bottom: 60px; /* 为底部固定栏留出空间 */
            box-shadow: 0 0 20px rgba(0,0,0,0.05);
        }

        /* --- 顶部 Header (吸顶悬浮) --- */
        .header {
            position: fixed; 
            top: 0; 
            left: 0; 
            right: 0;
            margin: 0 auto;
            max-width: 640px; 
            width: 100%;
            height: 44px;
            z-index: 1000; 
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 15px;
            background: linear-gradient(180deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 100%);
            transition: all 0.3s ease;
        }

        .header.scrolled {
            background: #009688;
            box-shadow: 0 1px 5px rgba(0,0,0,0.05);
        }
        
        .header.scrolled .header-title { color: #fff; text-shadow: none; }
        .header.scrolled .header-icon { color: #fff; }

        .header-left { display: flex; align-items: center; gap: 20px; z-index: 2; }
        
        .header-icon { 
            display: flex; align-items: center; justify-content: center; 
            color: #fff; cursor: pointer; width: 24px; height: 24px; 
            transition: color 0.3s; 
        }
        
        .header-title { 
            position: absolute; 
            left: 50%; 
            transform: translateX(-50%); 
            color: #fff; 
            font-size: 16px; 
            font-weight: bold; 
            white-space: nowrap; 
            overflow: hidden; 
            text-overflow: ellipsis; 
            max-width: 50%; 
            text-align: center; 
            text-shadow: 0 1px 2px rgba(0,0,0,0.3); 
            z-index: 1;
            transition: color 0.3s;
        }

        /* --- 顶部 Banner --- */
        .banner { 
            position: relative; 
            width: 100%; 
            height: 0; 
            padding-bottom: 56.25%; 
            overflow: hidden; 
            background: #eee; 
        }
        
        .hero-banner { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
        .hero-slides-wrapper { position: relative; width: 100%; height: 100%; }
        .hero-slide { 
            position: absolute; top: 0; left: 0; width: 100%; height: 100%; 
            opacity: 0; transition: opacity 0.8s ease-in-out; z-index: 1; 
        }
        .hero-slide.active { opacity: 1; z-index: 2; }
        .hero-slide img { width: 100%; height: 100%; object-fit: cover; }
        .hero-indicators {
            position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%); 
            z-index: 11; display: flex; gap: 6px;
        }
        .indicator { 
            width: 6px; height: 6px; border-radius: 50%; 
            background: rgba(255,255,255,0.6); cursor: pointer; transition: all 0.3s; 
        }
        .indicator.active { background: var(--primary-color); width: 14px; border-radius: 4px; }

        .banner-tag { position: absolute; bottom: 15px; left: 15px; background: rgba(0,0,0,0.6); color: #fff; padding: 2px 8px; font-size: 12px; border-radius: 4px; z-index: 12; }

        /* --- 核心信息区 --- */
        .info-card { padding: 15px; background: #fff; margin-bottom: 10px; }
        
        .product-title { 
            font-size: 16px; 
            line-height: 1.4; 
            color: #666; 
            margin-bottom: 12px; 
            letter-spacing: 0.5px; 
            text-align: justify;    
        }

        .price-row { display: flex; align-items: baseline; margin-bottom: 10px; }
        .price-symbol { color: #ff4d4f; font-size: 14px; }
        .price-num { color: #ff4d4f; font-size: 28px; font-weight: 800; }
        .price-unit { color: #999; font-size: 12px; margin-left: 5px; }
        .sold-count { margin-left: auto; color: #999; font-size: 12px; }
        .tags-row { display: flex; gap: 8px; flex-wrap: wrap; }
        
        .tags-row .tag {
            display: inline-block;
            padding: 2px 6px;
            margin-right: 5px;
            border-radius: 4px;
            font-size: 12px;
            color: #15803d;
            background: #dcfce7;
            border: 1px solid #bbf7d0;
        }
        .tags-row .tag.orange { color: #c2410c; background: #ffedd5; border-color: #fed7aa; }
        .tags-row .tag.blue { color: #1d4ed8; background: #dbeafe; border-color: #bfdbfe; }
        .tags-row .tag.red { color: #b91c1c; background: #fee2e2; border-color: #fecaca; }

        /* --- 图文列表样式 --- */
        .scenic-list-item {
            display: flex;
            background-color: #F5F7FA;
            border: 1px solid #E5E5E5;
            border-radius: 4px;
            padding: 10px;
            margin-bottom: 10px;
            overflow: hidden;
        }
        .scenic-list-item .pic {
            width: 105px;
            height: 90px;
            flex-shrink: 0;
            margin-right: 10px;
            border-radius: 4px;
            overflow: hidden;
            position: relative;
        }
        .scenic-list-item .pic img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        .scenic-list-item .txt {
            flex: 1;
            display: flex;          
            flex-direction: column; 
            justify-content: space-between; 
            min-width: 0;           
            overflow: hidden;
        }
        .scenic-list-item .item-title {
            font-size: 14px;
            color: #666;
            font-weight: bold;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            display: block;
            margin-bottom: 5px;
            text-decoration: none;
        }
        .scenic-list-item .item-desc {
            font-size: 13px;       
            color: #666;
            line-height: 1.5;
            margin: 0;
            display: -webkit-box;
            -webkit-line-clamp: 3; 
            -webkit-box-orient: vertical;
            overflow: hidden;
            text-align: justify;
            white-space: normal;   
        }

        /* --- 参数组整体容器 --- */
        .tour-param-group {
            background: #fff;
            border-radius: 0;
            margin-top: 10px;
            padding: 0 15px 15px 15px;
        }

        .param-grid {
            display: grid;
            grid-template-columns: 1fr 1fr; 
            gap: 10px 10px; 
            margin-bottom: 10px;
            border-bottom: 1px dashed #eee;
            padding-bottom: 10px;
        }

        .grid-item { display: flex; align-items: center; }

        .grid-icon {
            width: 36px;
            height: 36px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 10px;
            flex-shrink: 0;
        }
        .grid-icon svg { width: 20px; height: 20px; }
        .icon-blue { background: #e6f7ff; color: #1890ff; }
        .icon-orange { background: #fff7e6; color: #fa8c16; }
        .icon-green { background: #f6ffed; color: #52c41a; }
        .icon-purple { background: #f9f0ff; color: #722ed1; }

        .grid-text { flex: 1; overflow: hidden; }
        .g-label { font-size: 11px; color: #999; margin-bottom: 2px; }
        .g-value { font-size: 13px; color: #333; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

        .address-box { display: flex; align-items: flex-start; padding: 5px 0 0 0; }
        .addr-icon {
            width: 36px;
            height: 36px; 
            display: flex; align-items: center; justify-content: center;
            margin-right: 10px; color: #999; flex-shrink: 0;
        }
        .addr-icon svg { width: 22px; height: 22px; }
        .addr-text { flex: 1; }
        .addr-label { font-size: 11px; color: #999; margin-bottom: 2px; }
        .addr-value { font-size: 13px; color: #333; line-height: 1.5; text-align: justify; }

        .date-trigger-bar {
            background: #fff;
            padding: 15px;          
            margin-bottom: 0px;
            cursor: pointer;
            display: flex;
            align-items: center;
            position: relative;
            transition: background-color 0.2s;
            border-top: 1px solid #f5f5f5; 
        }
        .date-trigger-bar:active { background-color: #f9f9f9; }
        
        .arrow-right { color: #ccc; font-family: "SimSun"; font-weight: bold; font-size: 16px; margin-left: 10px; }

        /* --- Tab 切换 --- */
        .sticky-tabs { position: sticky; top: 44px; background: #fff; z-index: 90; display: flex; border-bottom: 1px solid #eee; box-shadow: 0 2px 6px rgba(0,0,0,0.03); }
        .tab-item-nav { flex: 1; text-align: center; height: 44px; line-height: 44px; font-size: 14px; color: #666; position: relative; cursor: pointer; }
        .tab-item-nav.active { color: #1890ff; font-weight: bold; }
        .tab-item-nav.active::after { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 20px; height: 3px; background: #1890ff; border-radius: 2px; }

        /* --- 内容区块 --- */
        .section-block {
            background: #fff;
            margin-bottom: 10px;
            padding-top: 20px;
            padding-right: 20px;
            padding-bottom: 0px;
            padding-left: 20px;
        }
        .section-title { font-size: 17px; font-weight: bold; margin-bottom: 15px; padding-left: 10px; border-left: 4px solid #1890ff; line-height: 1; }
        
        .highlight-content-box {
            font-size: 15px;       
            color: #444;           
            line-height: 1.8;      
            text-align: justify;
            overflow: hidden;
            transition: max-height 0.3s;
        }
        .highlight-content-box p { margin: 0 0 10px 0; }
        .highlight-content-box.collapsed {
            display: -webkit-box;
            -webkit-box-orient: vertical;
            -webkit-line-clamp: 5; 
            overflow: hidden;
            max-height: 140px;      
        }

        /* --- 行程 --- */
        .timeline { padding-left: 10px; }
        .day-box { position: relative; border-left: 1px dashed #ddd; padding-left: 10px; }
        .day-box:last-child { border-left: none; }
        .day-badge { position: absolute; left: -20px; top: 0; width: 22px; height: 22px; background: #1890ff; color: #fff; border-radius: 50%; text-align: center; line-height: 22px; font-size: 12px; z-index: 2; box-shadow: 0 0 0 3px #fff; }
        .day-title { font-size: 14px; font-weight: bold; color: #666; margin-bottom: 8px; display: flex; align-items: center; }
        
        .day-icon-row { display: flex; align-items: center; margin-bottom: 15px; font-size: 12px; color: #333; font-weight: 500; }
        .day-icon { 
            display: inline-block; 
            width: 25px;            
            height: 25px;            
            background: #C7EDCC; 
            color: #333;            
            text-align: center; 
            line-height: 25px;      
            font-size: 14px;        
            border-radius: 4px; 
            margin-right: 10px; 
        }

        .day-text-wrapper { position: relative; padding-bottom: 0px; }
        .day-text-box {
            font-size: 15px;
            color: #444;
            line-height: 1.8;
            text-align: justify;
            letter-spacing: 0.5px;
            overflow: hidden;
            transition: max-height 0.3s;
        }
        .day-text-box p { margin: 0 0 12px 0; }
        
        .spot-highlight { color: #000; font-weight: bold; background: linear-gradient(180deg, transparent 65%, rgba(255, 193, 7, 0.25) 0); padding: 0 2px; }
        .food-title { color: #ff9800; font-weight: bold; font-size: 15px; display: inline-block; margin-top: 5px; }
        .hotel-highlight { font-size: 12px; font-weight: normal; color: #333; }
        .info-separator { margin: 0 12px; color: #e0e0e0; }

        .day-text-box.collapsed {
            display: -webkit-box;
            -webkit-box-orient: vertical;
            -webkit-line-clamp: 3; 
            overflow: hidden;
            max-height: 110px; 
        }

        .toggle-btn-box { text-align: center; display: none; margin-top: 5px; } 
        .toggle-btn { display: inline-flex; align-items: center; justify-content: center; font-size: 13px; color: #1890ff; cursor: pointer; padding: 5px 10px; background: rgba(24, 144, 255, 0.05); border-radius: 15px; transition: all 0.2s; }
        .toggle-btn:active { background: rgba(24, 144, 255, 0.15); }
        .toggle-arrow { font-size: 10px; margin-left: 4px; transition: transform 0.3s; }
        .toggle-btn.is-expanded .toggle-arrow { transform: rotate(180deg); }
        .day-img-grid { margin-top: 15px; }

        /* --- 费用与说明样式 --- */
        .fee-wrapper { padding: 5px 0; }
        .fee-item { 
            position: relative;
            background: #f9fbfd; 
            padding: 12px 15px; 
            border-radius: 6px; 
            margin-bottom: 0; 
            font-size: 14px; 
            color: #444; 
            line-height: 1.8; 
            text-align: justify;
            border: 1px solid #f0f0f0;
        }
        .fee-item p { margin: 0 0 8px 0; }
        .fee-item p:last-child { margin-bottom: 0; }
        .fee-item.type-include { background-color: #f6ffed; border: 1px solid #b7eb8f; border-left: 4px solid #52c41a; color: #333; }
        .fee-item.type-exclude { background-color: #fff2f0; border: 1px solid #ffccc7; border-left: 4px solid #ff4d4f; color: #333; }
        .fee-item.type-note { background-color: #e6f7ff; border: 1px solid #91d5ff; border-left: 4px solid #1890ff; color: #555; font-size: 13.5px; }
        .fee-item ul, .fee-item ol { padding-left: 20px; margin: 5px 0; }
        .fee-item li { margin-bottom: 4px; list-style-type: disc; }

        /* --- 底部导航 --- */
        .bottom-nav { 
            position: fixed; bottom: 0; width: 100%; max-width: 640px; left: 0; right: 0; margin: 0 auto; 
            background: #fff; height: 60px; border-top: 1px solid #eee; display: flex; align-items: center; 
            z-index: 9999; padding-bottom: constant(safe-area-inset-bottom); padding-bottom: env(safe-area-inset-bottom); 
            box-sizing: content-box; 
        }
        .tab-item { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; color: var(--text-light); font-size: 10px; height: 100%; user-select: none; text-decoration: none; }
        .tab-item.active { color: var(--primary-color); }
        .tab-icon { height: 24px; width: 24px; display: flex; align-items: center; justify-content: center; margin-bottom: 2px; }
        .action-btn { flex: 1.5; height: 100%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 15px; font-weight: bold; text-decoration: none; padding: 0 5px; white-space: nowrap; }
        .btn-orange { background-color: #ff9800; }
        .btn-red { background-color: #ff5722; }

        /* --- 弹窗组件 --- */
        .chat-mask { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.6); z-index: 2000; display: none; align-items: center; justify-content: center; backdrop-filter: blur(2px); }
        .chat-card { background: #ffffff; width: 85%; max-width: 360px; border-radius: 16px; box-shadow: 0 10px 25px rgba(0,0,0,0.2); overflow: hidden; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); padding-bottom: 20px; animation: popIn 0.3s ease forwards; }
        .chat-header { text-align: center; padding: 20px 20px 10px 20px; background: #fff; }
        .chat-logo { max-width: 100%; height: auto; display: block; margin: 0 auto; }
        .chat-body { padding: 0 15px; max-height: 70vh; overflow-y: auto; }
        .group-label { font-size: 12px; color: #999; margin: 15px 0 8px 5px; font-weight: 600; letter-spacing: 0.5px; }
        .contact-btn { display: flex; justify-content: space-between; align-items: center; background-color: #f7f8fa; padding: 5px 15px; border-radius: 10px; margin-bottom: 10px; text-decoration: none; color: #333; transition: all 0.2s; border: 1px solid transparent; }
        .contact-btn:active { background-color: #eef0f4; transform: scale(0.98); }
        .contact-btn.highlight { background-color: #ebf5ff; border: 1px solid #d1e9ff; }
        .contact-btn.highlight .phone-num { color: #0066cc; font-weight: bold; }
        .btn-left { display: flex; align-items: center; font-size: 14px; color: #555; }
        .btn-left svg { margin-right: 8px; color: #666; }
        .phone-num { font-size: 15px; font-weight: 600; color: #333; }
        
        #action-sheet-mask { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); z-index: 11000; display: none; }
        
        /* 【修改】底部操作栏 - 增加安全区域适配 */
        .action-sheet { 
            position: absolute; 
            bottom: 0; 
            left: 0; 
            width: 100%; 
            background: #f0f0f0; 
            border-top-left-radius: 12px; 
            border-top-right-radius: 12px; 
            overflow: hidden; 
            animation: slideUp 0.3s; 
            /* 适配 iPhone 底部小黑条 */
            padding-bottom: calc(20px + constant(safe-area-inset-bottom)); 
            padding-bottom: calc(20px + env(safe-area-inset-bottom)); 
        }

        .action-title { padding: 15px; text-align: center; font-size: 14px; color: #999; background: #fff; border-bottom: 1px solid #eee; }
        .action-btn-sheet { display: block; width: 100%; padding: 15px; text-align: center; background: #fff; font-size: 18px; border: none; border-bottom: 1px solid #eee; color: #333; }
        .action-btn-sheet:active { background: #f9f9f9; }
        .action-cancel { margin-top: 6px; border-bottom: none; }
        #toast { position: fixed; left: 50%; top: 50%; transform: translate(-50%, -50%); background: rgba(0,0,0,0.8); color: white; padding: 15px 25px; border-radius: 8px; font-size: 16px; z-index: 12000; display: none; text-align: center; line-height: 1.5; }

        /* --- 搜索弹窗与热门分类 --- */
        .m_header_search { position: fixed; top: 0; bottom: 0; left: 0; right: 0; margin: 0 auto; width: 100%; max-width: 640px; background-color: #f7f8fa; z-index: 5000; display: none; overflow: hidden; border-top: 1px solid #eee; overscroll-behavior: none; }
        .m_header_search.hide { display: none; }
        .m_header_search .search_bar { display: flex; align-items: center; padding: 8px 15px; background-color: #009688; border-bottom: 1px solid #f0f0f0; height: 50px; flex-shrink: 0; position: absolute; top: 0; left: 0; width: 100%; z-index: 10; box-sizing: border-box; }
        .m_header_search .search_cancel { font-size: 15px; color: #fff; margin-right: 12px; cursor: pointer; white-space: nowrap; flex-shrink: 0; }
        .m_header_search .search_main { flex: 1; display: flex; align-items: center; background-color: #ffffff; border-radius: 20px; padding: 0 12px; height: 36px; width: 100%; position: relative; }
        .m_header_search .search_lanmu { font-size: 14px; color: #333; padding-right: 10px; border-right: 1px solid #ddd; margin-right: 10px; white-space: nowrap; font-weight: 500; }
        .m_header_search .J_hs-input { flex: 1; border: none; background: transparent; outline: none; font-size: 14px; color: #333; height: 24px; min-width: 0; width: 100%; }
        .m_header_search .search_button button { border: none; background: none; font-size: 18px; color: var(--primary-color); padding: 0; margin-left: 5px; display: flex; align-items: center; }
        .search_lanmu_area { background: #fff; padding: 15px; margin-bottom: 10px; }
        .search_lanmu_area .title { font-size: 15px; font-weight: bold; color: #333; margin-top: 5px; margin-bottom: 12px; padding-left: 8px; border-left: 4px solid var(--primary-color); line-height: 1; }
        .search_lanmu_list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 5px; }
        .search_lanmu_list li { background: #fff; text-align: center; padding: 8px 0; border-radius: 6px; font-size: 13px; color: #555; cursor: pointer; border: 1px solid #f0f0f0; transition: all 0.2s; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
        .search_lanmu_list li.active { background: rgba(0, 150, 136, 0.08); color: var(--primary-color); border-color: var(--primary-color); font-weight: bold; }
        .m_header_search .gundong { position: absolute; top: 50px; bottom: 0; left: 0; width: 100%; overflow-y: auto; -webkit-overflow-scrolling: touch; padding-bottom: 90px; }
        .search-result .list { padding: 0 10px; }
        
        /* --- [START] 搜索联想样式 (全屏垂直列表版) --- */
        .search-suggestions {
            position: fixed; /* 固定定位铺满下方 */
            top: 50px; 
            left: 0;
            right: 0;
            bottom: 0;
            background: #ffffff;
            z-index: 6000;
            padding: 0;
            display: block; 
            overflow-y: auto; /* 允许滚动 */
            max-width: 640px; /* 限制最大宽度 */
            margin: 0 auto; /* 居中 */
            border-top: 1px solid #eee;
        }
        .search-suggestions.hide { display: none; }
        
        /* 联想词单项样式 */
        .suggestion-item {
            width: 100%;
            height: 48px;
            margin: 0;
            padding: 0 15px;
            
            background: #fff;
            border-radius: 0; 
            border-bottom: 1px solid #f5f5f5;
            
            font-size: 15px;
            color: #333;
            text-align: left; /* 文字靠左 */
            
            cursor: pointer;
            display: flex;
            align-items: center; 
            justify-content: space-between; 
            transition: background-color 0.2s;
        }

        .suggestion-item:active {
            background-color: #f2f2f2;
        }
        
        .sugg-left {
            display: flex;
            align-items: center;
            overflow: hidden;
            flex: 1;
        }

        .sugg-icon {
            margin-right: 12px;
            color: #999;
            display: flex;
            align-items: center;
        }
        .sugg-icon svg {
            width: 16px;
            height: 16px;
        }

        .sugg-text {
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            width: 100%;
        }

        .sugg-arrow {
            color: #ccc;
            display: flex;
            align-items: center;
            margin-left: 10px;
        }
        .sugg-arrow svg {
            width: 14px;
            height: 14px;
        }

        /* 去掉第一条特殊样式，保持列表统一 */
        .suggestion-item:first-child {
            background-color: #fff;
            color: #333;
            font-weight: normal;
            border: none;
            border-bottom: 1px solid #f5f5f5;
        }
        /* --- [END] 搜索联想样式 --- */

        /* --- 搜索结果卡片 --- */
        .m-product-item { background: #fff; border-radius: 8px; overflow: hidden; margin-bottom: 15px; box-shadow: 0 2px 8px rgba(0,0,0,0.04); display: flex; flex-direction: column; position: relative; }
        .m-product-item > a { display: block; width: 100%; text-decoration: none; }
        .item-top { position: relative; width: 100%; height: 0; padding-bottom: 56.25%; overflow: hidden; }
        .item-top img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; }
        .item-top::after { content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 40%; background: linear-gradient(to top, rgba(0,0,0,0.6), transparent); pointer-events: none; z-index: 1; }
        .sati-peo { position: absolute; top: 10px; left: 10px; z-index: 2; display: flex; gap: 5px; }
        .sati-peo div { background: rgba(0, 0, 0, 0.5); color: #fff; font-size: 10px; padding: 2px 6px; border-radius: 4px; backdrop-filter: blur(2px); }
        .product-extra { position: absolute; bottom: 45px; left: 10px; z-index: 2; color: #fff; font-size: 11px; display: flex; align-items: center; text-shadow: 0 1px 2px rgba(0,0,0,0.5); }
        .product-price { position: absolute; bottom: 8px; left: 10px; z-index: 2; }
        .product-price-now { font-size: 12px; color: #fff; font-weight: bold; background: #ff5722; padding: 2px 10px; border-radius: 12px; display: inline-block; box-shadow: 0 2px 4px rgba(0,0,0,0.2); }
        .product-price-now em { font-size: 18px; font-style: normal; margin: 0 2px; }
        .item-bottom { padding: 12px; background: #fff; }
        .m-product-item .product-title { font-size: 16px; color: #333; font-weight: normal; line-height: 1.4; margin: 0 0 6px 0; height: auto; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
        .product-describe { font-size: 12px; color: #666; line-height: 1.5; margin: 0 0 8px 0; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
        .m-product-item .product-tags { height: auto; margin: 0; }
        .m-product-item .product-tags .label { font-size: 10px; color: #009688; border: 1px solid rgba(0, 150, 136, 0.3); padding: 1px 5px; border-radius: 3px; margin-right: 4px; display: inline-block; }

        .back-to-top-btn { position: fixed; bottom: 150px; right: 5px; width: 45px; height: 45px; background-color: rgba(255, 255, 255, 0.95); border-radius: 50%; box-shadow: 0 4px 15px rgba(0,0,0,0.25); text-align: center; line-height: 45px; z-index: 2147483647; cursor: pointer; border: 1px solid #ddd; display: none; }

        /* --- 分类弹窗 --- */
        #category-popup { position: fixed; top: 0; left: 50%; transform: translateX(-50%) translateY(-150%); width: 100%; max-width: 640px; background: #fff; z-index: 1200; box-shadow: 0 5px 15px rgba(0,0,0,0.1); transition: transform 0.4s ease-in-out; max-height: 80vh; overflow-y: auto; }
        #category-popup.show { transform: translateX(-50%) translateY(0); }
        #category-mask { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); z-index: 1100; display: none; }
        .menu-list { padding: 15px 10px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; text-align: center; }
        .menu-list li a { display: block; background: #f8f8f8; border-radius: 4px; padding: 8px 0; color: #333; }
        .menu-list li a h3 { margin: 0; font-size: 14px; font-weight: normal; }

        @keyframes popIn { from { transform: translate(-50%, -40%); opacity: 0; } to { transform: translate(-50%, -50%); opacity: 1; } }
        @keyframes slideUp { from { transform: translateY(100%); } to { transform: translateY(0); } }
        .hide { display: none !important; }
        #lim_mobile_chat { display: none !important; }
        #InviteWindow { display: none !important; }

        /* --- 上下篇翻页 --- */
        .pagination-block { background: #fff; margin-bottom: 10px; padding: 0 15px; }
        .pagination-item { display: flex; align-items: center; padding: 10px 0; border-bottom: 1px solid #f5f5f5; position: relative; transition: background-color 0.2s; }
        .pagination-item:last-child { border-bottom: none; }
        .pagination-item:active { background-color: #fafafa; }
        .pagination-tag { font-size: 11px; padding: 3px 8px; border-radius: 10px; margin-right: 12px; white-space: nowrap; flex-shrink: 0; font-weight: 500; }
        .tag-prev { background: #f0f2f5; color: #999; }
        .tag-next { background: rgba(0, 150, 136, 0.1); color: #009688; }
        .pagination-link { flex: 1; overflow: hidden; margin-right: 10px; }
        .pagination-link a { display: block; font-size: 14px; color: #333; text-decoration: none; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; line-height: 1.4; }
        .pagination-arrow { width: 14px; height: 14px; color: #ccc; flex-shrink: 0; }
        
        /* --- 底部页脚 --- */
        .site-footer { text-align: center; padding: 20px 10px; padding-bottom: 80px; color: #999; font-size: 12px; background-color: #f2f4f6; clear: both; }
        .site-footer p { margin: 5px 0; line-height: 1.6; }
        .gongan-link { display: inline-flex; align-items: center; justify-content: center; text-decoration: none; color: #999; }
        .gongan-link img { width: 20px; height: 20px; margin-right: 5px; flex-shrink: 0; display: inline-block; }
        
        /* --- 推荐线路 --- */
        .rec-section { background: #fff; margin-bottom: 10px; padding-bottom: 15px; }
        .channel_title { padding: 15px 15px 10px; font-size: 18px; font-weight: 800; color: #333; display: flex; align-items: center; line-height: 1; }
        .channel_title::before { content: ''; display: inline-block; width: 4px; height: 18px; background: #ffd000; margin-right: 8px; border-radius: 2px; }
        .channel_title i, .channel_title span { display: none; }
        .special ul { display: flex; flex-wrap: wrap; padding: 0 5px; }
        .special a.clearfix { display: block; width: 50% !important; padding: 5px; box-sizing: border-box; float: none !important; text-decoration: none; }
        .special li { width: 100%; height: 100%; display: flex; flex-direction: column; transition: opacity 0.2s; }
        .special a.clearfix:active { opacity: 0.8; }
        .special .img { position: relative; width: 100%; height: 0; padding-bottom: 60%; overflow: hidden; border-radius: 6px; background: #f5f5f5; }
        .special .img img { position: absolute; top: 0; left: 0; width: 100% !important; height: 100% !important; object-fit: cover; }
        .special .p_title { font-size: 14px; color: #333; line-height: 1.4; height: 20px; margin-top: 8px; font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; display: block; }
        .special .tip { font-size: 11px; color: #999; margin: 4px 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .special .infos { display: flex; justify-content: space-between; align-items: center; margin-top: auto; padding-top: 4px; }
        .special .type { font-size: 10px; color: #009688; border: 1px solid rgba(0,150,136,0.3); padding: 0 3px; border-radius: 2px; }
        .special .price { color: #ff5722; font-size: 12px; }
        .special .price strong { font-size: 16px; font-weight: bold; margin-right: 1px; }
        
        /* --- 弹窗公司名称样式 --- */
        .popup-company-name {
            font-size: 16px;          
            font-weight: bold;        
            color: #333;              
            margin-top: 10px;         
            text-align: center;       
            letter-spacing: 1px;      
        }

        /* --- 加载更多按钮样式 --- */
        .search-load-btn {
            display: none; 
            margin: 15px 10px 25px 10px;
            padding: 10px;
            background-color: #fff;
            color: #666;
            text-align: center;
            border-radius: 6px;
            font-size: 14px;
            cursor: pointer;
            box-shadow: 0 1px 3px rgba(0,0,0,0.1);
        }
        .search-load-btn:active { background-color: #f0f0f0; }
        #schpage { display: none !important; }