* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            color: #333;
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* 导航栏样式 */
        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            background-color: rgba(255, 255, 255, 0.9);
            padding: 20px 50px;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        .logo {
            display: flex;
            align-items: center;
        }

        .logo h1 {
            color: #1a73e8;
            font-size: 28px;
            margin-left: 10px;
        }

        .logo i {
            color: #1a73e8;
            font-size: 32px;
        }

        .logo i img {
            max-width: 70px;
            max-height: 70px;
            color: #1a73e8;
        }

        .nav-links {
            display: flex;
            list-style: none;
        }

        .nav-links li {
            margin: 0 15px;
        }

        .nav-links a {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            font-size: 18px;
            transition: color 0.3s;
        }

        .nav-links a:hover {
            color: #1a73e8;
        }

        .cta-button {
            background-color: #1a73e8;
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 16px;
            cursor: pointer;
            transition: background-color 0.3s, transform 0.2s;
        }

        .cta-button:hover {
            background-color: #0d5cb6;
            transform: translateY(-2px);
        }


        /* 页脚样式 */
        .footer {
            background-color: #222;
            color: #ddd;
            padding: 60px 50px 30px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto 40px;
        }

        .footer-column h3 {
            color: white;
            font-size: 1.5rem;
            margin-bottom: 20px;
            position: relative;
        }

        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 50px;
            height: 3px;
            background: #1a73e8;
        }

        .footer-column img{
            width: 30%;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: #aaa;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: #1a73e8;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: #333;
            border-radius: 50%;
            color: white;
            font-size: 1.2rem;
            transition: background 0.3s;
        }

        .social-links img {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: #333;
            border-radius: 50%;
            color: white;
            font-size: 1.2rem;
            transition: background 0.3s;
        }

        .wechat-wrapper img {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: #333;
            border-radius: 5%;
            color: white;
            font-size: 1.2rem;
            transition: background 0.3s;
        }

        .social-links img:hover {
            background: #1a73e8;
        }

        .social-links a:hover {
            background: #1a73e8;
        }

        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #444;
            font-size: 0.9rem;
            color: #888;
        }

        /* 响应式设计 */
        @media (max-width: 768px) {
            .navbar {
                padding: 15px 20px;
            }
            
            .nav-links {
                display: none;
            }
            
            .hero h2 {
                font-size: 2.5rem;
            }
            
            .hero p {
                font-size: 1.2rem;
            }
            
            .hero-buttons {
                flex-direction: column;
                gap: 15px;
            }
            
            .features, .destinations, .testimonials, .subscribe {
                padding: 60px 20px;
            }
            
            .subscribe-form {
                flex-direction: column;
            }
            
            .subscribe-form input {
                border-radius: 30px;
                margin-bottom: 10px;
            }
            
            .subscribe-form button {
                border-radius: 30px;
            }
        }

        /* 微信弹出框样式 */
        .wechat-wrapper {
            position: relative;
            display: inline-block;
        }

        .wechat-popup {
            position: absolute;
            bottom: 100%;
            left: 50%;
            transform: translateX(-50%);
            background: white;
            padding: 15px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
            display: none;
            z-index: 1000;
            width: 180px;
            margin-bottom: 10px;
        }

        .wechat-popup:after {
            content: '';
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%);
            border: 10px solid transparent;
            border-top-color: white;
        }

        .qrcode-content {
            text-align: center;
        }

        .qrcode-content img {
            width: 100%;
            height: 100%;
            margin-bottom: 8px;
        }

        .qrcode-content p {
            font-size: 12px;
            color: #333;
            margin: 0;
        }


        .wechat-popup.active {
            display: block;
        }

        /* 下拉菜单容器 */
        .dropdown {
            position: relative;
        }

        /* 下拉菜单内容 */
        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            background-color: white;
            min-width: 105px;
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
            border-radius: 5px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all 0.3s ease;
            z-index: 1001;
            list-style: none;
            padding: 10px 0;
        }


        /* 新增的下拉菜单样式 */
        .destdropdown-menu {
            width: 800px !important; /* 增加下拉菜单宽度 */
            padding: 15px !important;
            column-count: 3; /* 分为三列 */
            column-gap: 20px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all 0.3s ease;
            position: absolute;
            top: 100%;
            left: 0;
            background-color: white;
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
            border-radius: 5px;
            z-index: 1001;
            list-style: none;
        }

        .destmenu-section {
            break-inside: avoid; /* 防止元素跨列断开 */
            page-break-inside: avoid; /* 兼容旧浏览器 */
            margin-bottom: 15px;
        }

        .destregion-title {
            font-weight: bold;
            color: #333;
            display: block;
            margin-bottom: 5px;
            cursor: default; /* 不可点击 */
            font-size: 16px;
        }

        .destregion-title a {
            font-weight: bold;
            color: #333;
            display: block;
            margin-bottom: 5px;
            font-size: 16px;
        }

        .destsubmenu {
            font-size: 14px;
            margin-bottom: 10px;
        }

        .destsubmenu a {
            color: #7c7c7c;
            font-size: 14px;
            font-weight: bolder;
            text-decoration: none;
            transition: color 0.3s;
            display: inline; /* 确保横向排列 */
        }

        .destsubmenu a:hover {
            color: #1a73e8;
        }

        /* 移除原有的下拉菜单项样式 */
        .destdropdown-menu > li > a {
            display: none;
        }

        .tourDropdown-menu {
            width: 135px !important; /* 增加下拉菜单宽度 */
            padding: 10px !important;
            column-count: 1; /* 分为三列 */
            column-gap: 20px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all 0.3s ease;
            position: absolute;
            top: 100%;
            left: 0;
            background-color: white;
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
            border-radius: 5px;
            z-index: 1001;
            list-style: none;
        }

        .tourDropdown-section {
            break-inside: avoid; /* 防止元素跨列断开 */
            page-break-inside: avoid; /* 兼容旧浏览器 */
            margin-bottom: 15px;
        }

        .tourDropdown-title {
            font-weight: bold;
            color: #333;
            display: block;
            /* margin-bottom: 5px; */
            cursor: default; /* 不可点击 */
            font-size: 16px;
        }

        .tourDropdown-title a {
            font-weight: bold;
            color: #333;
            display: block;
            margin-bottom: 5px;
            font-size: 16px;
            text-align: center;
        }


        .pointdropdown-menu {
            width: 400px !important; /* 增加下拉菜单宽度 */
            padding: 15px !important;
            column-count: 2; /* 分为三列 */
            column-gap: 20px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all 0.3s ease;
            position: absolute;
            top: 100%;
            left: 0;
            background-color: white;
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
            border-radius: 5px;
            z-index: 1001;
            list-style: none;
        }

        .pointdropdown-section {
            break-inside: avoid; /* 防止元素跨列断开 */
            page-break-inside: avoid; /* 兼容旧浏览器 */
            margin-bottom: 15px;
        }

        .pointregion-title {
            font-weight: bold;
            color: #333;
            display: block;
            margin-bottom: 5px;
            cursor: default; /* 不可点击 */
            font-size: 16px;
        }

        .pointsubmenu {
            font-size: 14px;
            margin-bottom: 10px;
        }

        .pointsubmenu a {
            color: #7c7c7c;
            font-size: 14px;
            font-weight: bolder;
            text-decoration: none;
            transition: color 0.3s;
            display: inline; /* 确保横向排列 */
        }

        .pointsubmenu a:hover {
            color: #1a73e8;
        }

        /* 移除原有的下拉菜单项样式 */
        .pointdropdown-menu > li > a {
            display: none;
        }

        /* 鼠标悬停时显示下拉菜单 */
        .dropdown:hover .destdropdown-menu,
        .dropdown:hover .pointdropdown-menu,
        .dropdown:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        /* 导航链接中的下拉图标180度旋转效果 */
        .nav-links .dropdown > a i {
            font-size: 12px;
            margin-left: 5px;
            transition: transform 0.3s ease;
        }

        .dropdown:hover > a i {
            transform: rotate(180deg);
        }

        /* 目的地下拉菜单悬停区域 */
        .dropdown-trigger {
            position: relative;
        }

        .dropdown-trigger:hover .destdropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }



        /* 订阅区域 */
        .sub_content {
            padding: 180px 50px;
            background: linear-gradient(135deg, #1a73e8, #0d5cb6);
            color: white;
            text-align: center;
        }

        .sub_content h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }

        .sub_content p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 30px;
            opacity: 0.9;
        }

        .sub_content-form {
            display: flex;
            max-width: 600px;
            margin: 0 auto;
        }

        .sub_content-form input {
            flex: 1;
            padding: 15px 20px;
            border: none;
            border-radius: 30px 0 0 30px;
            font-size: 1rem;
        }

        .sub_content-form button {
            background: #ff6b00;
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 0 30px 30px 0;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s;
        }

        .sub_content-form button:hover {
            background: #e05a00;
        }

        .whyus{
            max-width: 900px;
            max-height: 100px;
            margin: 0 auto;
            position: relative;
            overflow: hidden;
            box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
        }

        .whyus img{
            width: 100%;
            height: 100%;
            max-width: 900px;
            margin: 0;
            padding: 0;
            object-fit: cover;
        }


        /* 页面内容容器 */
        .container {
            max-width: 1280px;
            margin: 120px auto 0;
            padding: 0 20px;
        }

        /* 标题栏 */
        .page-title {
            display: flex;
            align-items: center;
            /* margin-bottom: 10px; */
            padding: 20px 0;
            /* border-bottom: 2px solid #1a73e8; */
        }

        .title-icon {
            background-color: #1a73e8;
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            font-size: 28px;
        }

        .title-text {
            font-size: 24px;
            font-weight: 700;
            color: #1a73e8;
        }



         /* 轮播图区域 */
        .slider-container {
            width: 100%;
            height: 480px;
            position: relative;
            margin-bottom: 60px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .slider {
            width: 100%;
            height: 100%;
            position: relative;
        }

        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1s ease;
            background-size: cover;
            background-position: center;
        }

        .slide.active {
            opacity: 1;
        }

        .slide-content {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
            color: white;
            padding: 30px;
        }

        .slide-title {
            font-size: 32px;
            margin-bottom: 10px;
        }

        .slide-description {
            font-size: 18px;
            max-width: 70%;
        }

        .slider-nav {
            position: absolute;
            bottom: 20px;
            right: 20px;
            display: flex;
        }

        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.5);
            margin: 0 5px;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .slider-dot.active {
            background-color: white;
        }

        .slider-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background-color: rgba(0, 0, 0, 0.3);
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            cursor: pointer;
            transition: background-color 0.3s;
            z-index: 10;
        }

        .slider-arrow:hover {
            background-color: rgba(0, 0, 0, 0.6);
        }

        .slider-arrow.prev {
            left: 20px;
        }

        .slider-arrow.next {
            right: 20px;
        }

        /* 产品展示区域 */
        .products-section {
            margin-bottom: 80px;
        }

        .section-title {
            font-size: 28px;
            margin-bottom: 30px;
            color: #333;
            position: relative;
            padding-bottom: 10px;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background-color: #1a73e8;
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .product-card {
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }

        .product-image {
            position: relative;
            width: 100%;
            height: 275px;
            overflow: hidden;
        }

        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .product-card:hover .product-image img {
            transform: scale(1.05);
        }

        .image-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s;
            color: white;
            text-align: center;
            padding: 20px;
        }

        .product-card:hover .image-overlay {
            opacity: 1;
        }

        .overlay-text {
            font-size: 14px;
            line-height: 1.6;
            text-align: left;
        }

        .image-tags {
            position: absolute;
            bottom: 15px;
            left: 0;
            width: 100%;
            display: flex;
            justify-content: space-between;
            padding: 0 15px;
            color: white;
            font-size: 14px;
        }

        .location-tag, .duration-tag {
            display: flex;
            align-items: center;
            background-color: rgba(0, 0, 0, 0.5);
            padding: 5px 10px;
            border-radius: 20px;
        }

        .location-tag i, .duration-tag i {
            margin-right: 5px;
            font-size: 12px;
        }

        .product-info {
            padding: 0 20px;
            height: 70px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .product-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 8px;
            /* margin-bottom: 8px; */
        }

        .product-name {
            font-size: 16px;
            font-weight: 600;
            color: #333;
        }

        .product-price {
            font-size: 20px;
            font-weight: 700;
            color: #e74c3c;
        }

        .product-price-word {
            font-size: 15px;
            font-weight: 700;
            color: #e74c3c;
        }
        


        .product-subtitle {
            font-size: 14px;
            color: #777;
            margin-bottom: 8px;
        }

        .product-link {
            text-decoration: none;
            color: inherit;
            display: block;
        }

        .product-link:hover .product-card {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
