  :root {
            --primary: #2c6e9b;
            --secondary: #d4af37;
            --accent: #dc3545;
            --light: #f8f9fa;
            --dark: #2a3b4d;
            --nature: #5a8f7b;
            --culture: #9c6644;
        }
        .hero-carousel {
            position: relative;
            height: 40vh;
 
            overflow: hidden;
        }
        
        .carousel-inner {
            height: 100%;
          
        }
        
        .carousel-item {
            height: 100%;
            background-position: center;
            background-size: cover;
            position: relative;
        }
        
        .carousel-item::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, rgba(26, 46, 64, 0.9) 0%, rgba(44, 62, 80, 0.7) 100%);
            z-index: 1;
        }
        
        .carousel-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 2;
            text-align: center;
            color: white;
            width: 90%;
            max-width: 900px;
            text-shadow: 0 2px 10px rgba(0,0,0,0.3);
        }
        
        .carousel-indicators-custom {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 10;
            display: flex;
            gap: 10px;
        }
        
        .carousel-indicator {
            width: 60px;
            height: 5px;
            background: rgba(255,255,255,0.4);
            border-radius: 5px;
            cursor: pointer;
            transition: var(--transition);
        }
        
        .carousel-indicator.active {
            background: var(--secondary);
            width: 80px;
        }
        
        .carousel-control {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 60px;
            height: 60px;
            background: rgba(255,255,255,0.15);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10;
            cursor: pointer;
            transition: var(--transition);
            font-size: 1.8rem;
            color: white;
            backdrop-filter: blur(4px);
        }
        
        .carousel-control:hover {
            background: var(--primary);
            transform: translateY(-50%) scale(1.1);
        }
        
        .carousel-control.prev {
            left: 30px;
        }
        
        .carousel-control.next {
            right: 30px;
        }
        
        .slide-title {
            font-size: 3.2rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 20px;
            animation: fadeInUp 0.8s ease;
        }
        
        .slide-subtitle {
            font-size: 1.5rem;
            font-weight: 400;
            margin-bottom: 30px;
            animation: fadeInUp 0.8s ease 0.1s both;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .slide-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 14px 30px;
            font-size: 1.1rem;
            border-radius: 50px;
            transition: var(--transition);
            animation: fadeInUp 0.8s ease 0.2s both;
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @media (max-width: 992px) {
            .hero-carousel {
                height: 40vh;
            }
            
            .slide-title {
                font-size: 2.5rem;
            }
            
            .slide-subtitle {
                font-size: 1.2rem;
            }
        }
        
        @media (max-width: 768px) {
            .hero-carousel {
                height: 40vh;
            }
            
            .slide-title {
                font-size: 2rem;
            }
            
            .carousel-control {
                width: 45px;
                height: 45px;
                font-size: 1.4rem;
            }
        }
        
        
        body {
            font-family: 'Noto Sans TC', 'PingFang TC', sans-serif;
            background-color: #f9fbfd;
            color: #333;
            line-height: 1.7;
        }
        
        /* 导航栏样式 */
        .navbar {
            background: rgba(255, 255, 255, 0.95);
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
        }
        
        .navbar-brand {
            font-weight: 700;
            color: var(--primary) !important;
        }
        
        .navbar-brand span {
            color: var(--secondary);
            font-weight: 800;
        }
        
        .nav-link {
            font-weight: 500;
            position: relative;
            padding: 8px 15px !important;
        }
        
        .nav-link:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 15px;
            right: 15px;
            height: 2px;
            background: var(--secondary);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }
        
        .nav-link:hover:after,
        .nav-link.active:after {
            transform: scaleX(1);
        }
        
        .btn-primary {
            background: linear-gradient(to right, var(--primary), #3d8bc2);
            border: none;
            font-weight: 500;
            transition: all 0.3s;
        }
        
        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 10px rgba(0,0,0,0.15);
        }
        
        .btn-secondary {
            background: var(--secondary);
            border: none;
            font-weight: 500;
        }
        .text-primary{
            --bs-text-opacity: 1;
            color: #fff!important;
            padding: 5px 10px;
            background: linear-gradient(to right, var(--primary), #3d8bc2);
            border-radius: 11px;
            text-decoration: none;
        }

        .hero-section {
            background: linear-gradient(105deg, rgba(0, 33, 64, 0.8) 0%, rgba(26, 76, 114, 0.8) 100%);
            color: white;
            padding: 110px 0 90px;
            position: relative;
        }
        
        .hero-title {
            font-size: 3.2rem;
            font-weight: 800;
            letter-spacing: 0.5px;
            line-height: 1.2;
        }
        
        .hero-highlight {
            color: var(--secondary);
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }
        
        .hero-stats {
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 20px;
            margin-top: 30px;
        }
        
        .stat-num {
            font-size: 2.2rem;
            font-weight: 700;
            margin-bottom: 0;
            color: var(--secondary);
        }
        
        .stat-label {
            font-size: 0.9rem;
            opacity: 0.9;
        }
        
        /* 金牌团队部分 */
        .section-title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 35px;
            text-align: center;
            font-weight: 700;
            color: var(--dark);
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 80px;
            height: 4px;
            background: var(--secondary);
            transform: translateX(-50%);
            border-radius: 2px;
        }
        
        .section-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 50px;
        }
        
        .section-header .subtitle {
            color: var(--primary);
            font-weight: 600;
            font-size: 1.1rem;
        }
        
        .gold-team {
            background: url('/static/travel/images/aaad61436b1b.jpg') center/cover;
            position: relative;
            padding: 90px 0;
        }
        
        .gold-team:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(105deg, rgba(42, 59, 77, 0.85) 0%, rgba(44, 110, 155, 0.9) 100%);
        }
        
        .gold-badge {
            background: linear-gradient(to right, #d4af37, #f5e050);
            color: #fff;
            padding: 5px 15px;
            border-radius: 30px;
            font-weight: 600;
            position: absolute;
            top: 10px;
            right: 10px;
            z-index: 2;
            font-size: 0.85rem;
            box-shadow: 0 4px 8px rgba(0,0,0,0.15);
        }
        
        .guide-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            transition: all 0.4s ease;
            height: 100%;
            position: relative;
        }
        
        .guide-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }
        
        .guide-img {
            height: 260px;
            object-fit: cover;
            width: 100%;
        }
        
        .guide-content {
            padding: 25px;
        }
        
        .guide-name {
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 5px;
        }
        
        .guide-title {
            font-size: 0.95rem;
            color: var(--secondary);
            font-weight: 600;
        }
        
        .guide-stats {
            border-top: 1px solid #eee;
            padding-top: 15px;
            margin-top: 15px;
            display: flex;
            justify-content: space-between;
        }
        
        .stat-item {
            text-align: center;
        }
        
        .stat-num-sm {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--primary);
        }
        
        .stat-label-sm {
            font-size: 0.8rem;
            color: #666;
        }
        
  
        .product-card {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: all 0.3s;
            height: 100%;
        }
        
        .product-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 25px rgba(0,0,0,0.1);
        }
        
        .product-img {
            height: 220px;
            object-fit: cover;
        }
        
        .badge-culture {
            background: var(--culture);
        }
        
        .badge-nature {
            background: var(--nature);
        }
        
        .badge-city {
            background: #5a6c8f;
        }
        
        .price-tag {
            font-weight: 800;
            font-size: 1.5rem;
            color: var(--accent);
        }
        
  
        footer {
            background: linear-gradient(to right, var(--dark), #1a4c72);
            color: rgba(255,255,255,0.8);
            padding: 70px 0 20px;
        }
        
        .footer-links h5 {
            color: white;
            position: relative;
            padding-bottom: 12px;
            margin-bottom: 20px;
        }
        
        .footer-links h5:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background: var(--secondary);
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-link {
            color: rgba(255, 255, 255, 0.8);
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
        }
        
        .footer-link:hover {
            color: var(--secondary);
            transform: translateX(3px);
        }
        
        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 20px;
            text-align: center;
            font-size: 0.9rem;
        }
        
        .social-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            color: white;
            font-size: 1.2rem;
            margin-right: 10px;
            transition: all 0.3s;
        }
        
        .social-icon:hover {
            background: var(--secondary);
            transform: translateY(-3px);
        }
        
  
        .divider {
            height: 3px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            border-radius: 3px;
            width: 80px;
            margin: 25px auto;
        }
        
        .feature-icon {
            width: 80px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(44, 110, 155, 0.08);
            border-radius: 20px;
            margin: 0 auto 25px;
            font-size: 32px;
            color: var(--primary);
        }
        
        .testimonial-card {
            background: white;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            padding: 30px;
            height: 100%;
            position: relative;
        }
        
        .testimonial-card::before {
            content: "";
            font-family: Georgia, serif;
            font-size: 100px;
            position: absolute;
            top: -35px;
            left: 15px;
            color: rgba(212, 175, 55, 0.1);
        }
        
        .client-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: #ddd;
            margin-right: 15px;
        }

         :root {
            --primary: #2c6e9b;
            --secondary: #d4af37;
            --wechat: #07b907;
            --line: #00c300;
            --support: #e74c3c;
            --light: #f8f9fa;
            --dark: #2a3b4d;
        }
        

        
        .fixed-socials {
            position: fixed;
            right: 30px;
            bottom: 100px;
            z-index: 1000;
            display: flex;
            flex-direction: column;
            align-items: flex-end;

        }
        
        .social-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 65px;
            height: 65px;

            box-shadow: 0 8px 25px rgba(0,0,0,0.2);
            position: relative;
            transition: all 0.3s ease;
            cursor: pointer;
            font-size: 28px;
            color: white;
            text-decoration: none;

        }
        
        .social-btn.wechat {
            background: var(--wechat);
        }
        
        .social-btn.line {
            background: var(--line);
        }
        
        .social-btn.support {
            background: var(--support);
        }
        
        .social-btn:hover, .social-btn.active {
            transform: translateY(-8px) scale(1.1);
            box-shadow: 0 12px 30px rgba(0,0,0,0.3);
        }
        
        .qr-box {
            position: absolute;
            right: 80px;
            bottom: 0;
            background: white;
            border-radius: 15px;
            box-shadow: 0 8px 35px rgba(0,0,0,0.15);
            padding: 20px;
            width: 180px;
            transform: translateY(20px);
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s ease;
            z-index: 5;
        }
        
        .qr-box.show {
            transform: translateY(0);
            opacity: 1;
            visibility: visible;
        }
        
        .qr-box::after {
            content: '';
            position: absolute;
            right: -15px;
            top: 50%;
            width: 0;
            height: 0;
            border: 10px solid transparent;
            border-left-color: white;
            transform: translateY(-50%);
        }
        
        .qr-img {
            width: 100%;
            border-radius: 8px;
        }
        
        .qr-label {
            display: block;
            text-align: center;
            margin-top: 10px;
            font-weight: 600;
            color: var(--dark);
            font-size: 14px;
        }
        
        /* 模态框样式 */
        .qr-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.8);
            z-index: 10000;
            display: flex;
            justify-content: center;
            align-items: center;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }
        
        .qr-modal.active {
            opacity: 1;
            visibility: visible;
        }
        
        .qr-container {
            background: white;
            border-radius: 20px;
            max-width: 300px;
            width: 90%;
            padding: 30px;
            text-align: center;
            position: relative;
        }
        
        .close-modal {
            position: absolute;
            top: 15px;
            right: 15px;
            background: none;
            border: none;
            font-size: 28px;
            color: #aaa;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .close-modal:hover {
            color: var(--support);
        }
        
        .qr-title {
            font-size: 1.5rem;
            margin-bottom: 20px;
            color: var(--dark);
            font-weight: 700;
        }
        
        /* 响应式调整 */
        @media (max-width: 768px) {
            .fixed-socials {
                right: 15px;
                bottom: 80px;
            }
            
            .social-btn {
                width: 55px;
                height: 55px;
                font-size: 24px;

            }
            
            .qr-box {
                display: none;
            }
            
            .support-label {
                display: none;
            }
        }