 /* 基础样式 */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Microsoft YaHei', sans-serif;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            line-height: 1.6;
            color: #333;
            overflow-x: hidden;
        }
        
        a {
            text-decoration: none;
            color: inherit;
        }
        
        ul {
            list-style: none;
        }
        
        img {
            max-width: 100%;
            height: auto;
          /*  display: block;*/
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        .section {
            padding: 60px 0;
        }
        
        .section-title {
            font-size: 28px;
            text-align: center;
            margin-bottom: 40px;
            position: relative;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background-color: #336699;
        }
        
        .btn {
            display: inline-block;
            padding: 10px 20px;
            background-color: #ffffff;
            color: #336699;
            border-radius: 55px;
            transition: background-color 0.3s;
            border: 3px solid #336699;
        }
        
        .btn:hover {
            background-color: #336699;
            color: #ffffff;
        }

        .btn-fa{
            padding-left: 10px;
        }
        
        .more-btn {
            text-align: center;
            margin-top: 30px;
        }
        
        /* 导航栏样式 */
        .navbar {            
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 100;

            /* 半透明白色底色 - 调整alpha值控制透明度 */
            background-color: rgba(255, 255, 255, 0.3);
  
            /* 毛玻璃效果 - 调整模糊度 */
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px); /* Safari 兼容 */
  
            /* 可选效果增强 */
            border: 1px solid rgba(255, 255, 255, 0.3); /* 细边框 */
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* 柔和阴影 */
        }
        
        .navbar .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 70px;
        }
        
        .logo img {
            height: 50px;
          border-radius: 100%;
        }

        .logo{
            display: inline-flex;
            align-items: center;
        }

        .logo span{
            font-size: 16px;
            font-weight: 600;
            padding-left: 10px;
            color: #336699;
        }
        
        .nav-links {
            display: flex;
            gap: 25px;
        }
        
        .nav-links li {
            position: relative;
        }
        
        .nav-links li a {
            font-size: 16px;
            padding: 5px 0;
            transition: color 0.3s;
        }
        
        .nav-links li a:hover {
            color: #336699;
        }
        
        .nav-links li::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: #336699;
            transition: width 0.3s;
        }
        
        .nav-links li:hover::after {
            width: 100%;
        }
        
        .search-icon {
            font-size: 20px;
            cursor: pointer;
            transition: color 0.3s;
        }
        
        .search-icon:hover {
            color: #336699;
        }
        
        /* 移动端导航 */
        .mobile-nav {
            display: none;
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: white;
            box-shadow: 0 -2px 5px rgba(0,0,0,0.1);
            z-index: 100;
        }
        
        .mobile-nav ul {
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
        }
        
        .mobile-nav li {
            text-align: center;
        }
        
        .mobile-nav li a {
            display: flex;
            flex-direction: column;
            align-items: center;
            font-size: 12px;
        }
        
        .mobile-nav li i {
            font-size: 18px;
            margin-bottom: 5px;
        }
        
        /* 搜索框样式 */
        .search-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.8);
            display: none;
            justify-content: center;
            align-items: center;
            z-index: 200;
        }
        
        .search-box {
            width: 80%;
            max-width: 600px;
            position: relative;
        }
        
        .search-input {
            width: 100%;
            padding: 15px;
            font-size: 18px;
            border-radius: 30px;
            border: none;
            outline: none;
        }
        
        .close-search {
            position: absolute;
            top: 15px;
            right: 20px;
            font-size: 24px;
            color: #333;
            cursor: pointer;
        }
        
        /* 幻灯片样式 */
        .slider {
            position: relative;
            height: 768px;
            overflow: hidden;
        }
        
        .slider-container {
            display: flex;
            height: 100%;
            transition: transform 0.5s ease-in-out;
        }
        
        .slide {
            min-width: 100%;
            position: relative;
        }
        
        .slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .slide-content {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 30px;
            background: linear-gradient(to top, rgba(0,0,0,0.3), transparent);
            color: white;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
        }
        
        .slide-title {
            font-size: 28px;
            margin-bottom: 10px;
        }
        
        .slide-desc {
            font-size: 16px;
            max-width: 600px;
        }
        
        .slider-controls {
            position: absolute;
            top: 50%;
            left: 0;
            width: 100%;
            transform: translateY(-50%);
            display: flex;
            justify-content: space-between;
            padding: 0 20px;
            opacity: 0;
            transition: opacity 0.3s;
        }
        
        .slider:hover .slider-controls {
            opacity: 1;
        }
        
        .control-btn {
            background-color: rgba(0,0,0,0.5);
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        
        .control-btn:hover {
            background-color: rgba(0,0,0,0.8);
        }
        
        .slider-indicators {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
        }
        
        .indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: rgba(255,255,255,0.5);
            cursor: pointer;
            transition: background-color 0.3s;
        }
        
        .indicator.active {
            background-color: white;
        }
        
        /* mian样式 */
        .mian {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            box-sizing: border-box; /* 推荐：包含内边距和边框 */
        }

        
        /* 旅游路线产品样式 */
        .tour-products {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }
        
        .tour-item {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .tour-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 20px rgba(0,0,0,0.2);
        }
        
        .tour-cover {
            height: 240px;
            overflow: hidden;
            position: relative;
        }
        
        .tour-cover img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .tour-item:hover .tour-cover img {
            transform: scale(1.1);
        }
        
        .tour-price {
            position: absolute;
            top: 10px;
            right: 10px;
            background-color: #336699;
            color: white;
            padding: 5px 10px;
            border-radius: 5px;
            font-weight: bold;
        }
        
        .tour-info {
            padding: 15px;
        }
        
        .tour-title {
            font-size: 18px;
            margin-bottom: 10px;
           /* white-space: nowrap;*/
            overflow: hidden;
            text-overflow: ellipsis;
            display: -webkit-box;
            -webkit-box-orient: vertical;
            -webkit-line-clamp: 1;
        }
        
        .tour-desc {
            font-size: 14px;
            color: #666;
            margin-bottom: 15px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        
        .tour-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 13px;
            color: #999;
        }
        
        /* 景点信息攻略样式 */
        .attractions {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }
        
        .attraction-item {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .attraction-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 20px rgba(0,0,0,0.2);
        }
        
        .attraction-cover {
            height: 180px;
            overflow: hidden;
        }
        
        .attraction-cover img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .attraction-item:hover .attraction-cover img {
            transform: scale(1.1);
        }
        
        .attraction-info {
            padding: 15px;
        }
        
        .attraction-title {
            font-size: 18px;
            margin-bottom: 10px;
            display: -webkit-box;
            -webkit-box-orient: vertical;
            -webkit-line-clamp: 1;
            overflow: hidden;
        }
        
        .attraction-desc {
            font-size: 14px;
            color: #666;
            margin-bottom: 15px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        
        .attraction-meta {
            display: flex;
            align-items: center;
            font-size: 13px;
            color: #999;
        }
        
        .attraction-meta i {
            margin-right: 5px;
        }
        
        /* 活动回顾相册样式 */
        .gallery {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }
        
        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            height: 200px;
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .gallery-item:hover img {
            transform: scale(1.1);
        }
        
        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.6);
            display: flex;
            justify-content: center;
            align-items: center;
            opacity: 0;
            transition: opacity 0.3s;
        }
        
        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }
        
        .gallery-overlay span {
            color: white;
            font-size: 16px;
            padding: 10px 15px;
            border: 1px solid white;
            border-radius: 5px;
            transform: translateY(20px);
            transition: transform 0.3s;
        }
        
        .gallery-item:hover .gallery-overlay span {
            transform: translateY(0);
        }
        
        /* 关于我们样式 */
        .about-us {
            display: flex;
            gap: 40px;
        }
        
        .about-video {
            flex: 1;
            position: relative;
            border-radius: 10px;
            overflow: hidden;
            height: 460px;
        }
        
        .about-video img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .play-btn {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 80px;
            height: 80px;
            background-color: rgba(51, 102, 153, 0.8);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        
        .play-btn:hover {
            background-color: rgba(51, 102, 153, 1);
        }
        
        .play-btn i {
            color: white;
            font-size: 30px;
            margin-left: 5px;
        }
        
        .about-content {
            flex: 1;
        }
        
        .about-title {
            font-size: 24px;
            margin-bottom: 20px;
        }
        
        .about-desc {
            font-size: 16px;
            color: #666;
            margin-bottom: 30px;
        }
        
        .stats {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }
        
        .stat-item {
            text-align: center;
            padding: 20px;
            border-radius: 10px;
            background-color: #f5f5f5;
        }
        
        .stat-number {
            font-size: 30px;
            font-weight: bold;
            color: #336699;
            margin-bottom: 10px;
        }
        
        .stat-desc {
            font-size: 16px;
            color: #666;
        }
        
        /* 客户列表样式 */
        .clients {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 30px;
        }
        
        .client-item {
            height: 100px;
            display: flex;
            justify-content: center;
            align-items: center;
            border: 1px solid #eee;
            border-radius: 10px;
            padding: 15px;
            transition: transform 0.3s;
        }
        
        .client-item:hover {
            transform: translateY(-5px);
        }
        
        .client-item img {
            max-height: 80px;
            max-width: 100%;
            object-fit: contain;
            filter: grayscale(10%);
            transition: filter 0.3s;
            border-radius: 10px;
        }
        
        .client-item:hover img {
            filter: grayscale(0);
        }
        
        /* 联系我们样式 */
        .contact {
            display: flex;
            gap: 40px;
        }
        
        .contact-info {
            flex: 1;
        }
        
        .contact-title {
            font-size: 24px;
            margin-bottom: 20px;
        }
        
        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }
        
        .contact-icon {
            width: 40px;
            height: 40px;
            background-color: #ffffff;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            color: white;
            margin-right: 15px;
        }
        
        .contact-text {
            font-size: 16px;
        }
        
        .contact-qrcodes {
            flex: 1;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
        }
        
        .qrcode-item {
            text-align: center;
        }
        
        .qrcode-img {
            width: 150px;
            height: 150px;
            margin: 0 auto 15px;
            border: 1px solid #eee;
            border-radius: 10px;
            padding: 10px;
        }
        
        .qrcode-img img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }
        
        .qrcode-desc {
            font-size: 16px;
        }
        
        /* 页脚样式 */
        footer {
            background-color: #333;
            color: white;
            text-align: center;
            padding: 20px 0;
            margin-bottom: 0;
        }
        
        .copyright {
            font-size: 14px;
        }
        
        /* 视频弹窗样式 */
        .video-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.8);
            display: none;
            justify-content: center;
            align-items: center;
            z-index: 300;
        }
        
        .video-container {
            width: 90%;
            max-width: 1000px;
            position: relative;
        }
        
        .close-video {
            position: absolute;
            top: -40px;
            right: 0;
            color: white;
            font-size: 30px;
            cursor: pointer;
        }
        
        video {
            width: 100%;
            height: auto;
            border-radius: 10px;
        }
        
        /* 移动端样式 */
        @media (max-width: 768px) {
            .section {
                padding: 40px 0;
            }
            
            .section-title {
                font-size: 24px;
            }
            
            .navbar .nav-links {
                display: none;
            }
            
            .mobile-nav {
                display: block;
            }
            
            .slider {
                height: 300px;
            }
            
            .slide-content {
                padding: 20px;
            }
            
            .slide-title {
                font-size: 20px;
            }
            
            .slide-desc {
                font-size: 14px;
                display: none;
            }
            
            .tour-products, .attractions, .gallery, .clients {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }
            
            .about-us, .contact {
                flex-direction: column;
            }
            
            .about-video {
                height: 250px;
            }
            
            .stats {
                grid-template-columns: repeat(2, 1fr);
                gap: 15px;
            }
            
            .stat-item {
                padding: 15px;
            }
            
            .stat-number {
                font-size: 24px;
            }
            
            .stat-desc {
                font-size: 14px;
            }
            
            .contact-qrcodes {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }
            
            .qrcode-img {
                width: 120px;
                height: 120px;
            }
            
            footer {
                margin-bottom: 60px;
            }
        }
        
        @media (max-width: 480px) {
            .tour-products, .attractions, .gallery {
                grid-template-columns: 1fr;
            }

            .stats, .contact-qrcodes, .clients {
                grid-template-columns: repeat(2,1fr);
            }
            
            .slider {
                height: 250px;
            }
            
            .slider-controls {
                display: none;
            }
            
            .about-video {
                height: 200px;
            }
            
            .qrcode-img {
                width: 150px;
                height: 150px;
            }
        }
        
        /*****--微信文章--*****/
        a:link {
  text-decoration: none; /* 未访问的链接 */
}

a:hover {
  text-decoration: none; /* 鼠标悬停时显示下划线 */
  color: #336699;
}

     
        :root {
            --primary-color: #336699;
            --primary-light: #4a7eb3;
            --primary-dark: #1e4976;
            --text-color: #333;
            --text-light: #666;
            --bg-light: #f8f9fa;
            --border-color: #e0e0e0;
            --white: #fff;
            --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.15);
            --border-radius: 8px;
        }

        /* 文章容器 */
        .article-container {
            max-width: 740px;
            margin: 0 auto;
            background-color: #fff;
            padding: 30px 25px;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
        }

        /* 文章标题 */
        .article-title {
            font-size: 22px;
            font-weight: 500;
            color: var(--primary-color);
            margin-bottom: 6px;
        }

        /* 文章信息 */
        .article-info {
            color: rgba(0,0,0,.3);
            font-size: 15px;
        }
        
        .article-gg {
            margin: 0 10px 10px 0;
        }

        .original-tag {
            display: inline-block;
            background: rgba(0,0,0,.05);
            color: rgba(0,0,0,.3);
            font-size: 12px;
            padding: 0 5px;
            border-radius: 3px;
            margin-right: 8px;
        }

        .article-author {
            margin-right: 10px;
            color: var(--primary-color);
        }

        .article-date {
            margin-right: 5px;
        }

        .publish-tag {
            margin-right: 10px;
        }

        /* 文章内容 *
        .article-content {
            font-size: 18px;
            line-height: 1.7;
        }

        .article-content p {
            margin-bottom: 20px;
        }

        .article-content img {
            max-width: 100%;
            height: auto;
            display: block;
            margin: 20px auto;
        } */
        
        /* 分隔线 */
        .divider {
            border-top: 1px solid #e5e5e5;
            margin: 5px 0 15px 0;
        }

        /* 作者模块 */
        .author-module {
            display: flex;
            align-items: center;
            padding: 20px;
            background-color: #f9f9f9;
            border-radius: 5px;
            margin-bottom: 15px;
        }

        .author-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            margin-right: 15px;
        }

        .author-info {
            flex: 1;
        }

        .author-name {
            font-size: 18px;
            font-weight: bold;
            color: var(--primary-color);
        }

        .author-desc {
            font-size: 14px;
            color: #8c8c8c;
        }

        .follow-btn {
            background-color: var(--primary-color);
            color: white;
            border: none;
            padding: 5px 15px;
            border-radius: 20px;
            cursor: pointer;
        }

        /* 模态框样式 */
        .modal {
            display: none;
            position: fixed;
            z-index: 1;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            overflow: auto;
            background-color: rgba(0,0,0,0.4);
        }

        .modal-content {
            background-color: #fefefe;
            margin: 20% auto;
            padding: 20px;
            border: 1px solid #888;
            width: 80%;
            max-width: 300px;
            text-align: center;
            border-radius: 10px;
        }

        .close {
            color: #aaa;
           /* float: right;*/
            font-size: 28px;
            font-weight: bold;
        }

        .close:hover,
        .close:focus {
            color: black;
            text-decoration: none;
            cursor: pointer;
        }

        .modal-qrcode {
            width: 200px;
            height: 200px;
            margin: 15px 0;
        }

        /* 点赞和阅读量 */
        .like-read {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin: 30px 0;
            color: #8c8c8c;
        }

        .like-count, .read-count {
            display: flex;
            align-items: center;
        }

        .like-icon, .read-icon {
            font-size: 20px;
            margin-right: 5px;
            color: var(--primary-color);
        }
        
        .like-home a{
            color: #8c8c8c;
        }
        
        .like-home a:hover{
            color: #336699;
        }

        /* 相关推荐模块 */
        .related-articles {
            margin-top: 30px;
        }

        .related-title {
            font-size: 18px;
            font-weight: bold;
            color: var(--primary-color);
            margin-bottom: 20px;
        }

        .related-item {
            display: flex;
            margin-bottom: 15px;
            padding-bottom: 15px;
            border-bottom: 1px solid #e5e5e5;
        }

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

        .related-thumb {
            width: 100px;
            height: 75px;
            margin-right: 15px;
            object-fit: cover;
            border-radius: 3px;
        }

        .related-info {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .related-article-title a{
            font-size: 15px;
            color: #333;
            margin-bottom: 5px;
        }

        .related-article-desc {
            font-size: 12px;
            color: #8c8c8c;
            line-height: 1.5;
            overflow: hidden;
            text-overflow: ellipsis;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
        }

        .related-article-date {
            font-size: 12px;
            color: #8c8c8c;
            margin-top: 5px;
        }

        /* 二维码区域 - 仅在PC端显示 */
        .qr-code-container {
            display: none;
            position: fixed;
            right: 50px;
            top: 50%;
            transform: translateY(-50%);
            width: 180px;
            background-color: #fff;
            padding: 15px;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
            text-align: center;
        }

        .qr-code-img {
            width: 150px;
            height: 150px;
            margin-bottom: 10px;
        }

        .qr-code-text {
            font-size: 14px;
            color: #8c8c8c;
        }

        /* 移动端样式 */
        @media (max-width: 768px) {
            body {
                padding: 0;
                background-color: #fff;
            }

            .article-container {
                padding: 20px 15px;
                box-shadow: none;
            }

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

            .article-info {
                font-size: 15px;
            }

            .article-content {
                font-size: 16px;
            }

            .author-module {
                flex-direction: column;
                text-align: center;
            }

            .author-avatar {
                margin-right: 0;
                margin-bottom: 15px;
            }

            .follow-btn {
                margin-top: 15px;
            }

            .related-thumb {
                width: 80px;
                height: 60px;
            }

            .related-article-title {
                font-size: 14px;
            }

            .related-article-desc {
                -webkit-line-clamp: 1;
            }
        }

        /* 桌面端样式 */
        @media (min-width: 1024px) {
            .qr-code-container {
                display: block;
            }
        }
        
        /*****--product 旅行路线--*****/
        /* 面包屑导航 */
        .breadcrumb {
            background: var(--white);
            padding: 15px 0;
            
        }

        .breadcrumb-inner {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            font-size: 14px;
        }

        .breadcrumb a {
            color: var(--primary-color);
            text-decoration: none;
            transition: color 0.3s;
        }

        .breadcrumb a:hover {
            color: var(--primary-dark);
        }

        .breadcrumb span {
            color: var(--text-light);
            margin: 0 8px;
        }

        /* 主要内容区 */
        .tourcontainer {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 30px;
            align-items: start;
        }

        /* 幻灯片容器 */
        .tourslideshow {
            position: relative;
            overflow: hidden;
            border-radius: 8px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, .1);
            margin-bottom: 20px;
        }

        .tourslideshow-container {
            position: relative;
            width: 100%;
            height: 450px;
        }

        .tourslide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity .5s;
        }

        .tourslide.touractive {
            opacity: 1;
        }

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

        /* 左右箭头 */
        .tourslide-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(0, 0, 0, .5);
            color: #fff;
            border: none;
            padding: 10px 15px;
            font-size: 20px;
            cursor: pointer;
            z-index: 10;
        }

        .tourprev {
           left: 0px; 
            border-radius: 0 5px 5px 0;
        }

        .tournext {
           right: 0px;
            border-radius: 5px 0 0 5px;
        }

        .tourslide-nav:hover {
            background: rgba(0, 0, 0, .8);
        }

        /* 指示点 */
        .tourindicators {
            position: absolute;
            bottom: 15px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 8px;
            z-index: 10;
        }

        .tourdot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, .6);
            cursor: pointer;
        }

        .tourdot.touractive {
            background: #336699;
        }

        /* 响应式 */
        @media(max-width:768px) {
            .tourslideshow-container {
                height: 250px;
            }

            .tourslide-nav {
                padding: 8px 12px;
                font-size: 16px;
            }
        }

        @media(max-width:480px) {
            .tourslideshow-container {
                height: 200px;
            }
        }

        /* 内容区 */
        .content-section {
            background: var(--white);
            padding: 30px;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            margin-bottom: 30px;
        }

        .product-title {
            font-size: 28px;
            color: var(--primary-dark);
            margin-bottom: 15px;
            font-weight: 600;
        }

        .itinerary {
            margin-top: 20px;
        }

        .itinerary h3 {
            color: var(--primary-color);
            margin-bottom: 15px;
            font-size: 20px;
        }

        /* 侧边栏 */
        .sidebar {
            position: sticky;
            top: 98px;
        }

        .booking-card {
            background: var(--white);
            border-radius: var(--border-radius);
            padding: 30px;
            box-shadow: var(--shadow);
            transition: box-shadow 0.3s;
        }

        .booking-card:hover {
            box-shadow: var(--shadow-hover);
        }

        .price {
            font-size: 36px;
            color: var(--primary-color);
            font-weight: bold;
            margin-bottom: 10px;
            text-align: center;
        }

        .price small {
            font-size: 16px;
            color: var(--text-light);
            font-weight: normal;
        }

        .booking-btn {
            width: 100%;
            background: var(--primary-color);
            color: var(--white);
            border: none;
            padding: 15px;
            font-size: 18px;
            border-radius: var(--border-radius);
            cursor: pointer;
            transition: all 0.3s;
            margin-bottom: 20px;
        }

        .booking-btn:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(51, 102, 153, 0.3);
        }

        .contact-info {
            margin-top: 25px;
        }

        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            padding: 10px;
            background: var(--bg-light);
            border-radius: var(--border-radius);
            transition: background 0.3s;
        }

        .contact-item:hover {
            background: #e9ecef;
        }

        .contact-item i {
            font-size: 20px;
            color: var(--primary-color);
           /* margin-right: 10px;*/
            width: 24px;
            text-align: center;
        }
        
        .contact-item span {
            margin-left: 10px;
        }

        .qr-code {
            width: 120px;
            height: 120px;
            margin: 0 auto;
            display: block;
            border: 1px solid var(--border-color);
            border-radius: 4px;
        }

        /* 相关推荐 */
        .related-tours {
            background: var(--white);
            padding: 40px 0;
            margin-top: 50px;
        }

        .related-title {
            text-align: center;
            font-size: 28px;
            color: var(--primary-dark);
            margin-bottom: 30px;
        }

        .tour-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 10px;
        }

        .tour-card {
            background: var(--white);
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: all 0.3s;
            cursor: pointer;
        }

        .tour-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
        }

        .tour-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        .tour-card-content {
            padding: 20px;
        }

        .tour-card h4 {
            color: var(--primary-dark);
            margin-bottom: 10px;
            font-size: 18px;
        }

        .tour-card p {
            color: var(--text-light);
            font-size: 14px;
            margin-bottom: 10px;
            display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
        }

        .tour-card-price {
            color: var(--primary-color);
            font-size: 20px;
            font-weight: bold;
        }

        /* 弹窗 */
        .modal {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
        }

        .modal-content {
            background-color: var(--white);
            margin: 10% auto;
            padding: 40px;
            border-radius: var(--border-radius);
            width: 90%;
            max-width: 400px;
            text-align: center;
            position: relative;
        }

        .close {
            position: absolute;
            right: 15px;
            top: 15px;
            font-size: 28px;
            font-weight: bold;
            cursor: pointer;
            color: var(--text-light);
        }

        .close:hover {
            color: var(--primary-color);
        }

        /* 响应式设计 */
        @media (max-width: 768px) {
            .tourcontainer {
                grid-template-columns: 1fr;
                gap: 20px;
                display: block;
                padding: 0 10px;
            }

            .sidebar {
                position: relative;
                top: 0;
                order: 2;
            }

            .slide-nav {
                opacity: 1;
                padding: 10px 15px;
                font-size: 16px;
            }

            .slideshow-container {
                height: 250px;
            }

            .product-title {
                font-size: 18px;
                padding: 0 10px;
            }

            .price {
                font-size: 28px;
            }
        }

        @media (max-width: 480px) {
            .slideshow-container {
                height: 200px;
            }

            .content-section,
            .booking-card {
                padding: 10px;
            }

            .tour-grid {
                grid-template-columns: 1fr;
            }
        }
        
        
/*------ product-list ------*/
    .container {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }

    /* 产品列表部分 */
    .products {
      margin-top: 30px;
    }

    .products-title {
      text-align: center;
      margin-bottom: 2rem;
    }

    .products-title h2 {
      font-size: 2rem;
      color: var(--dark);
      margin-bottom: 1rem;
    }

    .products-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 2rem;
    }

    .product-card {
      background: white;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      position: relative;
      display: flex;
      flex-direction: column;
      height: 100%;
    }

    .product-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }

    .product-image {
      height: 200px;
      width: 100%;
      background-size: cover;
      background-position: center;
    }

    .product-badge {
      position: absolute;
      top: 15px;
      left: 15px;
      background: var(--accent);
      color: white;
      padding: 5px 10px;
      border-radius: 4px;
      font-size: 0.9rem;
      font-weight: 600;
    }

    .product-content {
      padding: 1.5rem;
      flex: 1;
      display: flex;
      flex-direction: column;
    }

    .product-content h3 {
      font-size: 1.3rem;
      margin-bottom: 0.5rem;
      color: var(--dark);
      display: -webkit-box;
      -webkit-line-clamp: 2; /* 最多2行 */
      -webkit-box-orient: vertical;
      overflow: hidden;
      min-height: 3.5rem; /* 确保2行高度 */
    }
    
    /* 新增描述区域 */
    .product-description {
      font-size: 0.9rem;
      color: var(--gray);
      margin-bottom: 0.8rem;
      display: -webkit-box;
      -webkit-line-clamp: 2; /* 最多2行 */
      -webkit-box-orient: vertical;
      overflow: hidden;
      min-height: 2.8rem; /* 确保2行高度 */
      line-height: 1.5;
    }

    .product-location {
      display: flex;
      align-items: center;
      color: var(--gray);
      margin-bottom: 0.8rem;
    }

    .product-location i {
      margin-right: 5px;
    }

    .product-meta {
      display: flex;
      justify-content: space-between;
      margin-bottom: 1rem;
    }

    .meta-item {
      display: flex;
      align-items: center;
      color: var(--gray);
      font-size: 0.9rem;
    }

    .meta-item i {
      margin-right: 5px;
    }

    .product-price {
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--primary);
      margin-bottom: 1.5rem;
    }

    .product-price span {
      font-size: 0.9rem;
      font-weight: 400;
      color: var(--gray);
    }
    
    /* 查看人数区域 - 已移动至操作按钮区域 */
    
    /* 双按钮布局 */
    .product-actions {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0.8rem;
      margin-top: auto;
    }

    .btn {
      padding: 0.8rem 0.5rem;
      border: none;
      border-radius: 6px;
      cursor: pointer;
      font-weight: 600;
      transition: all 0.3s ease;
      text-align: center;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.9rem;
    }

    .btn-info {
      background: #e0f2fe;
      color: var(--primary);
      border: 1px solid #bae6fd;
    }

    .btn-info:hover {
      background: #bae6fd;
    }

    .btn-primary {
      background: var(--primary);
      color: white;
    }

    .btn-primary:hover {
      background: #2a5480;
    }

    .btn-info i {
      margin-right: 5px;
      font-size: 0.9rem;
    }

    /* 分页样式 */
    /* 分页样式 */
    .pagination {
      display: flex;
      justify-content: center;
      margin-top: 40px;
      padding-bottom: 40px;
      flex-wrap: wrap;
    }

    .pagination .page-buttons {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
    }

    .pagination button {
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 5px;
      min-width: 36px;
      height: 36px;
      border-radius: 50%;
      border: 1px solid #ddd;
      background: var(--pagination-bg);
      color: var(--dark);
      cursor: pointer;
      transition: all 0.3s ease;
      font-size: 0.9rem;
    }

    .pagination button:hover {
      background: var(--primary);
      color: white;
      border-color: var(--primary);
    }

    .pagination button.active {
      background: var(--primary);
      color: white;
      border-color: var(--primary);
    }

    .pagination button.prev-next {
      border-radius: 30px;
      padding: 0 15px;
      min-width: auto;
      height: 36px;
    }

    .pagination button[disabled] {
      opacity: 0.5;
      cursor: not-allowed;
    }

    .pagination .page-dots {
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 5px;
      height: 36px;
      color: var(--gray);
    }

    /* 简化的头部品牌标识 */
    .brand-bar {
      text-align: center;
      margin: 2rem 0;
      padding: 10px 0;      
    }

    .brand-logo {
      font-size: 1.8rem;
      font-weight: 700;
      display: inline-flex;
      align-items: center;
      color: var(--primary);
    }

    .brand-logo i {
      margin-right: 10px;
      font-size: 1.5rem;
    }

    /* 移动响应 */
    @media (max-width: 768px) {
      .products-grid {
        grid-template-columns: 1fr;
      }

      .pagination {
        flex-wrap: wrap;
      }

      .pagination button {
        margin: 5px;
      }

      .pagination button.prev-next {
        padding: 0 15px;
        font-size: 0.9rem;
      }
      
      .product-actions {
        grid-template-columns: 1fr 1fr;
      }
    }
    
    @media (max-width: 480px) {
      .btn-info span:not(.count) {
        display: none;
      }
      
      .btn-info i {
        margin-right: 0;
      }
    }