     /* 立即隐藏默认内容，防止显示避暑山庄信息 */
        /* 使用opacity和position来隐藏，保持布局不变 */
        .attraction-name,
        .attraction-level,
        .address-text,
        .distance,
        .intro-content {
            opacity: 0 !important;
            position: relative;
        }
        
        body.content-loaded .attraction-name,
        body.content-loaded .attraction-level,
        body.content-loaded .address-text,
        body.content-loaded .distance,
        body.content-loaded .intro-content {
            opacity: 1 !important;
        }
        
     * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        /* 根元素设置，使用CSS变量便于管理 */
        :root {
            --min-width: 375px;
            --max-width: 430px;
            --min-height: 667px;
            --max-height: 932px;
        }
        
        html {
            width: 100%;
            height: 100%;
            /* 限制宽度范围 */
            min-width: var(--min-width);
            max-width: var(--max-width);
            margin: 0 auto;
            overflow-x: hidden !important;
            position: relative;
        }
        
        body {
          font-family: 'PingFang SC', 'Inter', sans-serif;
          background: white;
          color: #333;
          width: 100%;
          max-width: 100%;
          min-width: var(--min-width);
          max-width: var(--max-width);
          margin: 0 auto;
          position: relative;
          height: auto;
          min-height: 100vh;
          max-height: 100vh;
          overflow-x: hidden !important;
          overflow-y: auto !important;
          /* 确保在指定范围内居中显示 */
          display: flex;
          flex-direction: column;
          /* 防止水平滚动 */
          touch-action: pan-y;
        }

        .scroll-container {
            width: 100%;
            max-width: 100%;
            height: 100vh;
            min-height: var(--min-height);
            max-height: var(--max-height);
            overflow-x: hidden !important;
            overflow-y: auto;
            -webkit-overflow-scrolling: touch;
            /* 确保在宽度范围内 */
            position: relative;
            /* 防止水平滚动 */
            touch-action: pan-y;
        }
        
        /* 响应式调整 - 小屏幕 (375px - 390px) */
        @media screen and (min-width: 375px) and (max-width: 390px) {
            html, body {
                font-size: 14px;
            }
            
            .carousel-container {
                height: 200px;
            }
            
            /* 确保所有元素在范围内 */
            html, body, .scroll-container, .container {
                min-width: 375px;
                max-width: 390px;
            }
        }
        
        /* 响应式调整 - 中等屏幕 (390px - 414px) */
        @media screen and (min-width: 390px) and (max-width: 414px) {
            html, body {
                font-size: 15px;
            }
            
            .carousel-container {
                height: 220px;
            }
            
            html, body, .scroll-container, .container {
                min-width: 390px;
                max-width: 414px;
            }
        }
        
        /* 响应式调整 - 大屏幕 (414px - 430px) */
        @media screen and (min-width: 414px) and (max-width: 430px) {
            html, body {
                font-size: 16px;
            }
            
            .carousel-container {
                height: 232px;
            }
            
            html, body, .scroll-container, .container {
                min-width: 414px;
                max-width: 430px;
            }
        }
        
        /* 高度适配 - 短屏 (667px - 750px) */
        @media screen and (min-height: 667px) and (max-height: 750px) {
            .scroll-container {
                height: 100vh;
                min-height: 667px;
                max-height: 750px;
            }
        }
        
        /* 高度适配 - 中等高度 (750px - 850px) */
        @media screen and (min-height: 750px) and (max-height: 850px) {
            .scroll-container {
                height: 100vh;
                min-height: 750px;
                max-height: 850px;
            }
        }
        
        /* 高度适配 - 高屏 (850px - 932px) */
        @media screen and (min-height: 850px) and (max-height: 932px) {
            .scroll-container {
                height: 100vh;
                min-height: 850px;
                max-height: 932px;
            }
        }
        
        /* 超出范围的设备处理 */
        @media screen and (max-width: 374px) {
            html, body {
                min-width: 375px;
                overflow-x: auto;
            }
        }
        
        @media screen and (min-width: 431px) {
            html, body {
                max-width: 430px;
                margin: 0 auto;
            }
        }
        /* 轮播图区域 */
                /* 轮播图相关样式 */
        .carousel-container {
            width: 100%;
            max-width: 100%;
            height: 232px;
            position: relative;
            overflow: hidden;
            touch-action: pan-y; /* 允许垂直滚动但防止浏览器默认水平滚动 */
        }
        
        .carousel-wrapper {
            width: 500%;
            height: 100%;
            max-width: none; /* 轮播图内部允许超出，但容器会隐藏 */
            display: flex;
            transition: transform 0.3s ease;
            will-change: transform; /* 优化动画性能 */
        }
        
        .carousel-slide {
            width: 20%;
            height: 100%;
            flex-shrink: 0;
        }
        
        .carousel-slide img,
        .carousel-slide video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            pointer-events: none; /* 防止图片干扰滑动事件 */
        }
        
        .carousel-indicators {
            position: absolute;
            bottom: 10px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 6px;
            z-index: 10;
        }
        
        .carousel-indicator {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: background 0.3s ease;
        }
        
        .carousel-indicator.active {
            background: white;
        }
        
        /* 顶部导航按钮区域 - 吸附在顶部 */
        .nav-buttons {
            position: fixed !important;
            top: 0 !important;
            left: 50% !important;
            transform: translateX(-50%) !important;
            width: 100% !important;
            min-width: var(--min-width) !important;
            max-width: var(--max-width) !important;
            padding: 6px 10px !important;
            display: flex !important;
            justify-content: space-between !important;
            align-items: center !important;
            z-index: 10000 !important;
            transition: background-color 0.3s ease, backdrop-filter 0.3s ease !important;
            background-color: transparent !important;
        }
        
        /* 滚动时的背景效果 */
        .nav-buttons.scrolled {
            background-color: rgba(245, 245, 245, 0.95) !important;
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
        }




        
        .nav-buttons-left {
            display: flex;
            gap: 8px;
        }
        
        .nav-buttons-right {
            display: flex;
            gap: 8px;
            align-items: center;
        }
        
        .nav-btn {
            width: 30px;
            height: 30px;
            border-radius: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            position: relative;
            z-index: 10001 !important;
            pointer-events: auto !important;
        }
        
        .back-btn {
            background: #53686D;
            cursor: pointer !important;
            pointer-events: auto !important;
            z-index: 10001 !important;
        }
        
        .back-btn img {
            pointer-events: none !important;
        }
        
        .nav-buttons,
        .nav-buttons-left,
        .nav-buttons-right {
            pointer-events: auto !important;
        }
        
        .menu-btn {
            background: #53686D;
        }
        
        .share-btn {
            background: rgba(0, 0, 0, 0.2);
        }
        
        .favorite-btn {
            background: rgba(2.45, 2.45, 2.45, 0.2);
            transition: background-color 0.3s ease, transform 0.2s ease;
        }
        
        .favorite-btn:active {
            transform: scale(0.95);
        }
        
        .favorite-btn img {
            transition: transform 0.3s ease;
        }
        
        .play-btn {
            width: 30px;
            height: 30px;
            background: rgba(0, 0, 0, 0.5);
            border-radius: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            position: relative;
        }
        
        /* 静音状态样式（图标会动态切换，不再需要斜线） */
        .play-btn.muted::after {
            content: none;
        }
        
        /* 内容区域 */
        .content-area {
    background: white;
    border-radius: 14px;
    margin-top: -8px;
    padding: 13px 9px;
    position: relative;
    z-index: 5;
    /* 移除独立滚动属性 */
    /* height: calc(100% - 232px); */
    /* overflow-y: auto; */
    /* -webkit-overflow-scrolling: touch; */
    
    /* 改为自适应 */
    width: 100%;
    max-width: 100%;
    height: auto;
    min-height: auto;
    overflow-x: hidden !important;
    box-sizing: border-box;
        }

        .content-area::-webkit-scrollbar {
            /*display: none;*/
        }

        body .content-area,
        .container .content-area,
        div.content-area {
          height: auto !important;
          overflow: visible !important;
          overflow-y: visible !important;
          min-height: auto !important;
          max-height: none !important;
        }
        
        /* 景点标题区域 */
        .attraction-header {
            display: flex;
            align-items: center;
            margin-bottom: 10px;
        }
        
        .attraction-name {
            font-size: 20px;
            font-weight: 400;
            color: black;
            /* 默认隐藏，等待JavaScript加载数据后显示 */
            visibility: hidden;
        }
        
        /* 当数据加载完成后，JavaScript会添加这个类来显示内容 */
        .content-loaded .attraction-name {
            visibility: visible;
        }
        
        .attraction-level {
            background: #D3D3D3;
            border-radius: 8px;
            padding: 2px 8px;
            /* 默认隐藏，等待JavaScript加载数据后显示 */
            visibility: hidden;
        }
        
        .content-loaded .attraction-level {
            visibility: visible;
        }
            margin-left: 8px;
            font-size: 16px;
            color: #333333;
        }
        
        .recommend-icon {
            margin-left: 8px;
        }
        
        /* 评分和标签区域 - 水平滚动 */
		 .rating-tags {
            display: flex;
            align-items: center;
            margin-bottom: 10px;
            gap: 8px;
        }
        
        /* 标签组容器 */
        .tag-group-wrapper {
            display: flex;
            flex-direction: column;
            flex-shrink: 0;
        }
        
		.tag-group{
            width: 100%;
            max-width: calc(100vw - 40px);
            min-width: 280px;
            overflow-x: auto;
            overflow-y: hidden;
            white-space: nowrap;
            padding-bottom: 4px;
            -webkit-overflow-scrolling: touch; /* 平滑滚动 */
			display: flex;
            flex-wrap: nowrap;
            gap: 8px;
			}

        
        /* 隐藏滚动条 */
        .tag-group::-webkit-scrollbar {
            display: none;
        }
        
        .tag-group {
            -ms-overflow-style: none;
            scrollbar-width: none;
        }
        
        .stars {
            display: flex;
            gap: 2px;
            flex-shrink: 0;
        }
        
        .rating-score {
            font-size: 15px;
            color: black;
            flex-shrink: 0;
        }
        
        .tag1 {
			width:auto;
			background: #F22E2E;
			border-radius: 8px;
			padding: 4px 8px;
			font-size: 15px;
			color: white;
			white-space: nowrap;
			flex-shrink: 0; /* 防止标签被压缩 */
        }
        
        /* 标签组滑动进度条 */
        .tag-scrollbar {
            width: 100%;
            max-width: calc(100vw - 40px);
            min-width: 280px;
            height: 2px;
            background: rgba(0, 0, 0, 0.08);
            border-radius: 1px;
            margin-top: 4px;
            position: relative;
            overflow: hidden;
        }
        
        .tag-scrollbar-thumb {
            height: 100%;
            background: #F22E2E;
            border-radius: 1px;
            transition: width 0.1s ease, margin-left 0.1s ease;
            width: 30%;
        }
        .tag:last-child {
            margin-right: 0;
}
        /* 营业时间 */
        .opening-hours {
            background: #EEECEC;
            border-radius: 6px;
            padding: 8px;
            margin-bottom: 10px;
        }
        
        .status {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 4px;
            gap: 12px;
        }
        
        .status-left {
            display: flex;
            align-items: center;
            gap: 6px;
            flex: 1;
            min-width: 0;
        }
        
        .status-icon {
            flex-shrink: 0;
            display: flex;
            align-items: center;
        }
        
        .status-text {
            font-size: 14px;
            color: #009E18;
            white-space: nowrap;
            flex-shrink: 0;
        }
        
        .status-text.closed {
            color: #F22E2E;
        }

        .opening-mode-tag {
            padding: 2px 8px;
            border-radius: 12px;
            background: rgba(12, 126, 255, 0.1);
            color: #0C7EFF;
            font-size: 11px;
            line-height: 1.4;
            border: 1px solid rgba(12, 126, 255, 0.35);
            display: none;
            align-items: center;
            white-space: nowrap;
            flex-shrink: 0;
        }

        .closed-status-tag {
            padding: 2px 8px;
            border-radius: 12px;
            background: rgba(242, 46, 46, 0.1);
            color: #F22E2E;
            font-size: 11px;
            line-height: 1.4;
            border: 1px solid rgba(242, 46, 46, 0.35);
            display: none;
            align-items: center;
            white-space: nowrap;
            flex-shrink: 0;
        }
        
        .stop-ticket-time {
            font-size: 12px;
            color: #666;
            white-space: nowrap;
            flex-shrink: 0;
        }
        
        .hours-text {
            font-size: 12px;
            color: black;
        }
        
        /* 地址信息和景区简介 */
        .address-info {
            background: #EEECEC;
            border-radius: 6px;
            padding: 16px 10px;
            margin-bottom: 10px;
        }
        
        .address-section {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 12px;
            flex-wrap: nowrap; /* 防止换行 */
        }
        
        /* 确保地址文本和距离不会换行 */
        .address-text {
            flex: 1;
            min-width: 0; /* 允许文本截断 */
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        
        /* 这些样式在下面有完整定义，这里只是布局相关的补充 */
        
        .intro-content {
            font-size: 14px;
            color: #333;
            line-height: 1.5;
            position: relative;
            padding-right: 60px;
            /* 默认隐藏，等待JavaScript加载数据后显示 */
            opacity: 0;
        }
        
        .content-loaded .intro-content {
            opacity: 1;
        }
        
        .intro-content.collapsed {
            display: inline-block;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            max-width: 100%;
        }
        
        .expand-btn {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            color: #0C7EFF;
            font-size: 14px;
            cursor: pointer;
            margin-left: 4px;
            position: absolute;
            right: 0;
            background: #EEECEC;
            padding-left: 4px;
        }
        
        .expand-icon {
            width: 12px;
            height: 12px;
            transition: transform 0.3s ease;
        }
        
        .attraction-intro.expanded .expand-icon {
            transform: rotate(180deg);
        }
        
        .address-text {
            font-size: 12px;
            color: black;
            flex: 1;
            min-width: 0; /* 允许文本截断 */
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            /* 默认隐藏，等待JavaScript加载数据后显示 */
            opacity: 0;
        }
        
        .content-loaded .address-text {
            opacity: 1;
        }
        
        .distance {
            font-size: 12px;
            color: black;
            margin: 0 20px;
            flex-shrink: 0; /* 防止距离被压缩 */
            white-space: nowrap;
            /* 默认隐藏，等待JavaScript加载数据后显示 */
            opacity: 0;
        }
        
        .content-loaded .distance {
            opacity: 1;
        }
        
        .action-buttons {
            display: flex;
            gap: 12px;
        }
        
        .action-btn {
            display: flex;
            flex-direction: column;
            align-items: center;
            cursor: pointer;
            position: relative;
        }
        
        .action-btn span {
            font-size: 12px;
            color: black;
            margin-top: 4px;
        }
        
        /* 电话弹出菜单样式 */
        .phone-popup {
            position: absolute;
            bottom: 100%;
            left: 50%;
            transform: translateX(-50%);
            margin-bottom: 8px;
            min-width: 160px;
            max-width: calc(100vw - 20px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            border-radius: 6px;
            z-index: 1000;
            animation: phonePopupFadeIn 0.2s ease-out;
        }
        
        @keyframes phonePopupFadeIn {
            from {
                opacity: 0;
                transform: translateX(-50%) translateY(4px);
            }
            to {
                opacity: 1;
                transform: translateX(-50%) translateY(0);
            }
        }
        
        /* 右对齐时的动画 */
        .phone-popup[style*="right: 0"] {
            animation: phonePopupFadeInRight 0.2s ease-out;
        }
        
        @keyframes phonePopupFadeInRight {
            from {
                opacity: 0;
                transform: translateY(4px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* 左对齐时的动画 */
        .phone-popup[style*="left: 0"] {
            animation: phonePopupFadeInLeft 0.2s ease-out;
        }
        
        @keyframes phonePopupFadeInLeft {
            from {
                opacity: 0;
                transform: translateY(4px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .phone-popup .phone-number {
            padding: 8px 12px;
            background-color: #f5f5f5;
            border-radius: 6px 6px 0 0;
            font-size: 14px;
            color: #333;
            text-align: center;
            border-bottom: 1px solid #e0e0e0;
            white-space: nowrap;
        }
        
        .phone-popup .phone-buttons {
            display: flex;
            gap: 8px;
            padding: 8px;
            background-color: #fff;
            border-radius: 0 0 6px 6px;
        }
        
        .phone-popup .phone-action-btn {
            flex: 1;
            padding: 8px 12px;
            border: none;
            border-radius: 4px;
            font-size: 14px;
            cursor: pointer;
            transition: background-color 0.2s, color 0.2s;
            white-space: nowrap;
        }
        
        .phone-popup .phone-action-btn.call-btn {
            background-color: #0C7EFF;
            color: #fff;
        }
        
        .phone-popup .phone-action-btn.call-btn:hover {
            background-color: #0a6dd9;
        }
        
        .phone-popup .phone-action-btn.save-btn {
            background-color: #f5f5f5;
            color: #333;
        }
        
        .phone-popup .phone-action-btn.save-btn:hover {
            background-color: #e0e0e0;
        }
        
        /* 最佳游玩时间 */
        .best-time {
            background: #5DFF75;
            border-radius: 6px;
            padding: 8px 4px;
            margin-bottom: 10px;
            position: relative;
        }
        
        .best-time-header {
            display: flex;
            align-items: center;
            margin-bottom: 4px;
        }
        
        .best-time-icon {
            margin-right: 8px;
        }
        
        .best-time-text {
            font-size: 14px;
            color: #0C7EFF;
        }
        
        .best-time-dates {
            font-size: 13px;
            color: black;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .current-tag {
            border-radius: 6px;
            padding: 2px 8px;
            font-size: 14px;
            color: white;
            white-space: nowrap;
        }
        
        /* 当前在时间段内的标签样式 */
        .current-tag-active {
            background: #2A74FF;
        }
        
        /* 未来时间段的标签样式 */
        .current-tag-future {
            background: #FF9500;
        }
        
        /* 天气预报 */
        .weather-forecast {
            background: #EEECEC;
            border-radius: 6px;
            padding: 10px;
            margin-bottom: 10px;
            overflow: hidden;
        }
        
        .weather-title {
            font-size: 14px;
            color: black;
            margin-bottom: 8px;
            font-family: 'Inter';
        }
        
        .weather-scroll {
            display: flex;
            gap: 23px;
            overflow-x: auto;
            padding-bottom: 10px;
        }
		
				.tag-group{
            width: 100%;
            max-width: calc(100vw - 40px);
            min-width: 280px;
            overflow-x: auto;
            overflow-y: hidden;
            white-space: nowrap;
            padding-bottom: 4px;
            -webkit-overflow-scrolling: touch; /* 平滑滚动 */
			display: flex;
            flex-wrap: nowrap;
            gap: 8px;
			}

        
        /* 隐藏滚动条 */
        .weather-scroll::-webkit-scrollbar {
            display: none;
        }
        
        .weather-scroll {
            -ms-overflow-style: none;
            scrollbar-width: none;
        }
        
        .weather-day {
            min-width: 38px;
            text-align: center;
        }
        
        .day-name {
            font-size: 12px;
            color: black;
            margin-bottom: 8px;
        }
        
        .weather-icon {
            width: 24px;
            height: 24px;
            margin: 0 auto 8px;
        }
        
        .weather-condition {
            font-size: 12px;
            color: black;
            margin-bottom: 4px;
        }
        
        .temperature {
            font-size: 12px;
            color: black;
        }
        
        /* 天气预报滑动进度条 */
        .weather-scrollbar {
            width: 100%;
            height: 2px;
            background: rgba(0, 0, 0, 0.08);
            border-radius: 1px;
            margin-top: 6px;
            position: relative;
            overflow: hidden;
        }
        
        .weather-scrollbar-thumb {
            height: 100%;
            background: #0C7EFF;
            border-radius: 1px;
            transition: width 0.1s ease, margin-left 0.1s ease;
            width: 30%;
        }
         
        /* 隐藏滚动条 */
        .weather-scroll::-webkit-scrollbar {
            display: none;
        }
        
        .weather-scroll {
            -ms-overflow-style: none;
            scrollbar-width: none;
        }
        
        /* 响应式设计 - 已由全局样式和媒体查询处理 */
		
		
 /* 订票区域 */
        /* 基础样式 - 移除重复的body样式定义，使用全局样式 */

        .container {
            width: 100%;
            max-width: 100%;
            min-width: var(--min-width);
            max-width: var(--max-width);
            min-height: calc(100vh - 42px);
            margin: 0 auto;
            padding: 10px;
            overflow-x: hidden !important;
            overflow-y: hidden;
            display: flex;
            flex-direction: column;
            position: sticky;
            top: 42px; /* 导航按钮高度 */
            z-index: 100;
            background: white;
            border-radius: 14px 14px 0 0;
            margin-top: -8px;
            box-sizing: border-box;
        }
		


        .ticket-list {
            width: 100%;
            flex: 1;
            overflow-y: auto;
            -webkit-overflow-scrolling: touch;
            max-height: 600px;
            scrollbar-width: none;
            display: flex;
            flex-direction: column;
            gap: 20px;
            position: relative;
            padding-right: 0px;
        }

        .ticket-list::-webkit-scrollbar {
            display: none;
        }

        .ticket-group {
            display: flex;
            flex-direction: column;
            gap: 15px;
            padding: 30px 0 0 0;
        }

        /* 导航标签样式 */
        .nav-tabs {
            display: flex;
            margin-bottom: 10px;
        }

        .nav-tab {
            padding: 4px 12px;
            background: #E2E2E2;
            border-radius: 8px;
            margin-right: 10px;
            font-size: 20px;
            cursor: pointer;
        }

        .nav-tab.active {
            background: #FFDDDB;
            color: #FF0000;
        }

        /* 门票容器样式 */
        .ticket-container {
            display: flex;
            flex-direction: column;
            margin-bottom: 20px;
        }

        .ticket-main-content {
            display: flex;
            align-items: flex-start;
            gap: 20px;
        }

        .ticket-categories {
            min-width: 80px;
        }

        .ticket-list {
            flex: 1;
            overflow-y: auto;
            max-height: 600px;
        }

        /* 门票类别样式 */
        .ticket-category {
            width: 79px;
            height: 40px;
            line-height: 40px;
            text-align: center;
            background: #F5F5F5;
            border-radius: 6px;
            margin-bottom: 8px;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.2s ease;
            user-select: none;
        }

        .ticket-category.active {
            background: #0C7EFF;
            color: white;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }

        .ticket-category:active {
            transform: scale(0.98);
        }

        /* 门票项样式 */
        .ticket-item {
            position: relative;
            width: 100%;
            padding: 10px;
            margin-bottom: 20px;
            border-bottom: 1px solid #E3E3E3;
            margin-left: -10px;
            display: flex;
            flex-direction: row;
            align-items: flex-start;
            gap: 10px;
        }

        /* 左侧内容区域 */
        .ticket-content-left {
            flex: 1;
            min-width: 0; /* 允许flex项目收缩 */
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .ticket-title {
            font-size: 16px;
            margin-bottom: 0;
            word-wrap: break-word;
            word-break: break-all;
            line-height: 1.4;
            /* 防止标题过长时溢出 */
            overflow: hidden;
            text-overflow: ellipsis;
            display: -webkit-box;
            -webkit-line-clamp: 2; /* 最多显示2行 */
            -webkit-box-orient: vertical;
        }

        .ticket-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 4px;
            align-items: center;
            /* 防止标签过多时溢出 */
            max-width: 100%;
        }

        .ticket-tags .tag {
            font-size: 12px;
            margin-right: 0;
            white-space: nowrap;
            flex-shrink: 0;
        }

        .ticket-tags .official {
            color: #787272;
        }

        .ticket-tags .immediate,
        .ticket-tags .refund {
            color: #0C7EFF;
        }

        .ticket-tags .validity {
            color: #464646;
        }

        .ticket-info {
            font-size: 11px;
            color: #787272;
            margin: 0;
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }

        .ticket-info span {
            white-space: nowrap;
        }

        /* 右侧价格区域 - 固定宽度，不会被挤占 */
        .ticket-price {
            flex-shrink: 0; /* 不允许收缩 */
            width: 90px;
            min-width: 90px;
            text-align: right;
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            justify-content: flex-start;
            gap: 5px;
        }
        
        /* 响应式优化 - 小屏幕下确保价格区域不被挤占 */
        @media screen and (max-width: 390px) {
            .ticket-item {
                gap: 8px;
            }
            
            .ticket-content-left {
                min-width: 0;
                max-width: calc(100% - 98px); /* 确保为价格区域留出空间 */
            }
            
            .ticket-price {
                width: 90px;
                min-width: 90px;
            }
            
            .ticket-title {
                font-size: 15px;
            }
            
            .ticket-tags .tag {
                font-size: 11px;
            }
        }
        
        @media screen and (min-width: 390px) and (max-width: 430px) {
            .ticket-content-left {
                min-width: 0;
                max-width: calc(100% - 100px);
            }
        }

        .price {
            color: #FF3E3B;
            font-size: 18px;
            margin-bottom: 5px;
        }

        .book-btn {
            background: #FC4B4A;
            color: white;
            border: none;
            border-radius: 6px;
            padding: 8px 12px;
            font-size: 16px;
            cursor: pointer;
            width: fit-content;
        }

        /* 评价区域样式 */
        .review-container {
            padding: 5px 10px 10px;
            height: 917px;
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }

        .review-list {
            height: 700px;
            overflow-y: scroll;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
            padding-right: 20px;
            margin-right: -20px;
        }

        .review-list::-webkit-scrollbar {
            display: none;
            width: 0;
        }

        .review-header {
            margin-top: 5px;
            margin-bottom: 10px;
        }

        .review-header h2 {
            font-size: 18px;
            margin-bottom: 10px;
        }

        .review-rating {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 15px;
        }

        .review-rating .stars {
            display: flex;
            gap: 2px;
        }

        .review-rating .score {
            font-size: 20px;
            color: #0C7EFF;
        }

        .review-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 15px;
        }

        .review-tags span {
            background: #D7D7D7;
            border-radius: 10px;
            padding: 3px 8px;
            font-size: 14px;
        }

        .review-item {
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 1px solid #E3E3E3;
        }

        .user-info {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 5px;
        }

        .user-avatar {
            width: 24px;
            height: 24px;
            border-radius: 50%;
        }

        .user-name {
            font-size: 14px;
        }

        .review-content {
            font-size: 14px;
            margin: 10px 0;
            line-height: 1.5;
        }

        .review-images {
            display: flex;
            gap: 10px;
            margin-top: 10px;
            overflow-x: auto;
            overflow-y: hidden;
            user-select: none;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
            -ms-overflow-style: none;
            width: 100%;
            max-width: 100%;
        }
        
        .review-images::-webkit-scrollbar {
            display: none;
        }
        
        /* 评价图片滑动进度条 */
        .review-images-scrollbar {
            width: 100%;
            height: 2px;
            background: rgba(0, 0, 0, 0.08);
            border-radius: 1px;
            margin-top: 6px;
            position: relative;
            overflow: hidden;
        }
        
        .review-images-scrollbar-thumb {
            height: 100%;
            background: #0C7EFF;
            border-radius: 1px;
            transition: width 0.1s ease, margin-left 0.1s ease;
            width: 30%;
        }

        .review-images img {
            width: 130px;
            height: 98px;
            border-radius: 6px;
            object-fit: cover;
            flex-shrink: 0;
        }
        
        .review-images > div {
            flex-shrink: 0;
        }

        /* 评价头部样式 */
        .review-header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 10px;
        }

        .btn-submit-review {
            background: #0C7EFF;
            color: white;
            border: none;
            border-radius: 20px;
            padding: 8px 20px;
            font-size: 14px;
            cursor: pointer;
            transition: background 0.3s;
        }

        .btn-submit-review:hover {
            background: #0a6ed9;
        }

        .btn-submit-review:active {
            background: #095bb3;
        }

        /* 评价操作按钮 */
        .review-actions {
            display: flex;
            gap: 20px;
            margin-top: 12px;
            padding-top: 12px;
        }

        .review-action-btn {
            display: flex;
            align-items: center;
            gap: 6px;
            background: none;
            border: none;
            color: #666;
            font-size: 14px;
            cursor: pointer;
            padding: 4px 8px;
            border-radius: 4px;
            transition: all 0.2s;
        }

        .review-action-btn:hover {
            background: #f5f5f5;
            color: #0C7EFF;
        }

        .review-action-btn .action-icon {
            font-size: 16px;
        }

        .review-action-btn .action-text {
            font-size: 14px;
        }

        .review-action-btn .action-count {
            font-size: 12px;
            color: #999;
        }

        .review-action-btn.active {
            color: #0C7EFF;
        }

        .review-action-btn.active .action-count {
            color: #0C7EFF;
        }

        /* 评价模态框 */
        .review-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .review-modal-content {
            background: white;
            border-radius: 12px;
            width: 100%;
            max-width: 500px;
            max-height: 90vh;
            display: flex;
            flex-direction: column;
            overflow: hidden;
        }

        .review-modal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px;
            border-bottom: 1px solid #E3E3E3;
        }

        .review-modal-header h3 {
            margin: 0;
            font-size: 18px;
            font-weight: 500;
        }

        .review-modal-close {
            background: none;
            border: none;
            font-size: 28px;
            color: #999;
            cursor: pointer;
            line-height: 1;
            padding: 0;
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .review-modal-close:hover {
            color: #333;
        }

        .review-modal-body {
            padding: 20px;
            overflow-y: auto;
            flex: 1;
        }

        .review-modal-footer {
            display: flex;
            gap: 10px;
            padding: 20px;
            border-top: 1px solid #E3E3E3;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-size: 14px;
            color: #333;
            font-weight: 500;
        }

        .form-group textarea,
        .form-group input[type="text"],
        .form-group input[type="date"],
        .form-group select {
            width: 100%;
            padding: 10px;
            border: 1px solid #E3E3E3;
            border-radius: 6px;
            font-size: 14px;
            font-family: inherit;
            box-sizing: border-box;
        }

        .form-group textarea {
            resize: vertical;
            min-height: 100px;
        }

        .form-group textarea:focus,
        .form-group input:focus,
        .form-group select:focus {
            outline: none;
            border-color: #0C7EFF;
        }

        .char-count {
            text-align: right;
            font-size: 12px;
            color: #999;
            margin-top: 4px;
        }

        /* 星级评分 */
        .rating-input {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .star-rating {
            display: flex;
            gap: 4px;
        }

        .star-rating .star {
            font-size: 28px;
            color: #ddd;
            cursor: pointer;
            transition: color 0.2s;
            user-select: none;
        }

        .star-rating .star:hover,
        .star-rating .star.active {
            color: #FFD700;
        }

        .rating-text {
            font-size: 14px;
            color: #666;
        }

        /* 图片上传 */
        .image-upload-area {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .image-upload-btn {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            width: 80px;
            height: 80px;
            border: 2px dashed #E3E3E3;
            border-radius: 6px;
            cursor: pointer;
            transition: all 0.2s;
        }

        .image-upload-btn:hover {
            border-color: #0C7EFF;
            background: #f0f7ff;
        }

        .image-upload-btn span:first-child {
            font-size: 24px;
            color: #999;
        }

        .image-upload-btn span:last-child {
            font-size: 12px;
            color: #666;
            margin-top: 4px;
        }

        .image-preview-list {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .image-preview-item {
            position: relative;
            width: 80px;
            height: 80px;
            border-radius: 6px;
            overflow: hidden;
        }

        .image-preview-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .image-preview-item .remove-image {
            position: absolute;
            top: 4px;
            right: 4px;
            width: 20px;
            height: 20px;
            background: rgba(0, 0, 0, 0.6);
            color: white;
            border: none;
            border-radius: 50%;
            cursor: pointer;
            font-size: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            line-height: 1;
        }

        .btn-cancel,
        .btn-submit {
            flex: 1;
            padding: 12px;
            border: none;
            border-radius: 6px;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.2s;
        }

        .btn-cancel {
            background: #f5f5f5;
            color: #666;
        }

        .btn-cancel:hover {
            background: #e8e8e8;
        }

        .btn-submit {
            background: #0C7EFF;
            color: white;
        }

        .btn-submit:hover {
            background: #0a6ed9;
        }

        .btn-submit:disabled {
            background: #ccc;
            cursor: not-allowed;
        }

        /* 留言模态框 */
        .comment-modal-content {
            max-width: 400px;
        }

        .comment-target-review {
            padding: 12px;
            background: #f5f5f5;
            border-radius: 6px;
            margin-bottom: 15px;
        }

        .comment-target-review .user-name {
            font-size: 14px;
            font-weight: 500;
            margin-bottom: 4px;
        }

        .comment-target-review .review-content {
            font-size: 13px;
            color: #666;
            line-height: 1.5;
        }

        .comment-list {
            max-height: 300px;
            overflow-y: auto;
            margin-bottom: 15px;
        }

        .comment-item {
            padding: 10px 0;
            border-bottom: 1px solid #f0f0f0;
        }

        .comment-item:last-child {
            border-bottom: none;
        }

        .comment-item .comment-user {
            font-size: 13px;
            font-weight: 500;
            margin-bottom: 4px;
        }

        .comment-item .comment-content {
            font-size: 13px;
            color: #666;
            line-height: 1.5;
        }

        .comment-item .comment-time {
            font-size: 11px;
            color: #999;
            margin-top: 4px;
        }

        .comment-input-area {
            display: flex;
            gap: 10px;
        }

        .comment-input-area input {
            flex: 1;
            padding: 10px;
            border: 1px solid #E3E3E3;
            border-radius: 20px;
            font-size: 14px;
        }

        .comment-input-area input:focus {
            outline: none;
            border-color: #0C7EFF;
        }

        .btn-send-comment {
            padding: 10px 20px;
            background: #0C7EFF;
            color: white;
            border: none;
            border-radius: 20px;
            font-size: 14px;
            cursor: pointer;
        }

        .btn-send-comment:hover {
            background: #0a6ed9;
        }

        /* 攻略/游记容器样式 */
        .strategy-container {
            padding: 10px;
            height: 800px;
            overflow-y: auto;
        }

        .strategy-list {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .strategy-item {
            display: flex;
            justify-content: space-between;
            padding: 12px;
            background: #fff;
            border-radius: 8px;
            box-shadow: 0 1px 3px rgba(0,0,0,0.1);
            transition: transform 0.2s ease;
        }

        .strategy-item:hover {
            transform: translateY(-2px);
            box-shadow: 0 2px 8px rgba(0,0,0,0.15);
        }

        .strategy-content {
            flex: 1;
            margin-right: 15px;
        }

        .strategy-title {
            font-size: 16px;
            color: #000;
            margin-bottom: 8px;
            line-height: 1.4;
            font-weight: 500;
        }

        .strategy-meta {
            display: flex;
            gap: 15px;
            font-size: 12px;
            color: #666;
        }

        .strategy-meta span {
            white-space: nowrap;
        }

        .strategy-image {
            width: 100px;
            height: 75px;
            flex-shrink: 0;
        }

        .strategy-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 6px;
        }

        /* 周边内容样式 */
        .peripheral-container {
            padding: 15px;
        }

        .peripheral-item {
            display: flex;
            flex-direction: column;
            margin-bottom: 0;
            background: #fff;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            transition: transform 0.2s, box-shadow 0.2s;
            width: 100%;
        }

        .peripheral-item:active {
            transform: scale(0.98);
            box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
        }

        .peripheral-info {
            flex: 1;
            padding: 12px;
        }

        .peripheral-name {
            font-size: 16px;
            font-weight: bold;
            margin-bottom: 8px;
            color: #333;
            word-wrap: break-word;
            word-break: break-all;
            line-height: 1.4;
        }

        .peripheral-desc {
            font-size: 14px;
            color: #666;
            margin-bottom: 5px;
        }

        .peripheral-distance {
            font-size: 12px;
            color: #999;
        }

        .peripheral-image-wrapper {
            position: relative;
            width: 100%;
            height: 120px;
            border-radius: 8px 8px 0 0;
            overflow: hidden;
            background: #f0f0f0;
        }

        .peripheral-image {
            width: 100%;
            height: 100%;
        }

        .peripheral-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .peripheral-distance {
            position: absolute;
            bottom: 8px;
            left: 8px;
            font-size: 12px;
            color: #fff;
            background: rgba(0, 0, 0, 0.5);
            padding: 4px 8px;
            border-radius: 4px;
            backdrop-filter: blur(4px);
        }

        /* 顶部导航栏 */
        .nav-bar {
            width: 100%;
            height: 44px;
            background: white;
            display: flex;
            justify-content: left;
            align-items: center;
            box-shadow: 0 1px 0 rgba(0,0,0,0.05);
        }

        .nav-item {
            margin: 0 15px;
            font-size: 14px;
            color: #333;
            cursor: pointer;
            position: relative;
            padding-bottom: 8px;
        }

        .nav-item.active {
            color: #2A74FF;
        }

        .nav-item.active:after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: #2A74FF;
        }

        /* 内容区域 */
        .content-area {
            width: 100%;
            height: calc(100vh - 44px - 42px);
            min-height: calc(var(--min-height) - 44px - 42px);
            max-height: calc(var(--max-height) - 44px - 42px);
            position: relative;
            overflow: auto;
        }

        /* 周边内容区域 */
        .peripheral-content {
            width: 100%;
            min-height: 500px;
            max-height: calc(100vh - 150px);
            position: relative;
            overflow-y: auto;
            overflow-x: hidden;
            padding: 15px 10px;
            background: white;
        }
        
        /* 周边内容子区域布局 */
        .peripheral-content > div {
            width: 100%;
            min-height: 280px;
            position: relative;
        }
        
        /* 为周边区域的每个内容块设置合适的高度 */
        #scenic-content,
        #food-content,
        #hotel-content,
        #shopping-content,
        #charging-content {
            min-height: 280px;
            position: relative;
            grid-template-columns: repeat(2, 1fr) !important;
            gap: 12px;
            width: 100%;
        }
        
        /* 当容器显示时，使用grid布局 */
        #scenic-content[style*="block"],
        #food-content[style*="block"],
        #hotel-content[style*="block"],
        #shopping-content[style*="block"],
        #charging-content[style*="block"],
        #scenic-content:not([style*="none"]),
        #food-content:not([style*="none"]),
        #hotel-content:not([style*="none"]),
        #shopping-content:not([style*="none"]),
        #charging-content:not([style*="none"]) {
            display: grid !important;
        }
        
        /* 当容器隐藏时，保持隐藏 */
        #scenic-content[style*="none"],
        #food-content[style*="none"],
        #hotel-content[style*="none"],
        #shopping-content[style*="none"],
        #charging-content[style*="none"] {
            display: none !important;
        }
        
        /* 确保周边卡片在网格中正确显示 */
        #scenic-content .peripheral-item,
        #food-content .peripheral-item,
        #hotel-content .peripheral-item,
        #shopping-content .peripheral-item,
        #charging-content .peripheral-item {
            width: 100% !important;
            margin: 0 !important;
        }
        
        .card {
            width: 180px;
            height: 232px;
            background: #DFDFDF;
            border-radius: 10px;
            position: absolute;
            overflow: hidden;
        }

        .card img {
            width: 100%;
            height: 127px;
            object-fit: cover;
            border-top-left-radius: 10px;
            border-top-right-radius: 10px;
        }

        .card-title {
            position: absolute;
            left: 6px;
            top: 128px;
            font-size: 14px;
            color: black;
        }

        .card-tag {
            width: 96px;
            height: 22px;
            background: #2A74FF;
            border-radius: 4px;
            position: absolute;
            left: 6px;
            top: 149px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .card-tag span {
            color: white;
            font-size: 12px;
        }

        .card-distance {
            position: absolute;
            left: 27px;
            top: 102px;
            font-size: 12px;
            color: white;
        }

        .card-rating {
            position: absolute;
            left: 9px;
            top: 182px;
            font-size: 16px;
            color: #2A74FF;
        }

        .card-reviews {
            position: absolute;
            left: 57px;
            top: 183px;
            font-size: 13px;
            color: #707070;
        }

        .card-price {
            position: absolute;
            left: 8px;
            top: 205px;
            font-size: 13px;
            color: black;
        }

        .card-price span {
            color: #FF0000;
            font-size: 18px;
        }

       
		  /* 强制隐藏所有滚动条 - 最高优先级 */
* {
    scrollbar-width: none !important; /* Firefox */
    -ms-overflow-style: none !important; /* IE 10+ */
}

/* Webkit浏览器滚动条隐藏 */
::-webkit-scrollbar {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
    background: transparent !important;
}

::-webkit-scrollbar-track {
    background: transparent !important;
}

::-webkit-scrollbar-thumb {
    background: transparent !important;
}

::-webkit-scrollbar-thumb:hover {
    background: transparent !important;
}

/* 针对每个具体元素再次确保 */
.content-area,
.ticket-list,
.review-list,
.weather-scroll,
.tag-group,
.container,
.carousel-container,
body,
html {
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
}

.content-area::-webkit-scrollbar,
.ticket-list::-webkit-scrollbar,
.review-list::-webkit-scrollbar,
.weather-scroll::-webkit-scrollbar,
.tag-group::-webkit-scrollbar,
.container::-webkit-scrollbar,
body::-webkit-scrollbar,
html::-webkit-scrollbar {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
}

/* 导航按钮滚动效果 */
.nav-buttons.scrolled {
    background-color: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.1);
    padding: 8px 10px !important;
}

.nav-buttons.scrolled .nav-btn,
.nav-buttons.scrolled .play-btn {
    background: rgba(0, 0, 0, 0.1) !important;
}

.nav-buttons.scrolled .back-btn,
.nav-buttons.scrolled .menu-btn {
    background: rgba(83, 104, 109, 0.9) !important;
}