/* 主色调覆盖 - 青绿深蓝渐变系 */
        :root {
            --acpr-primary: #0a6e6e;        /* 深青绿 - 主色 */
            --acpr-secondary: #1a3f6e;      /* 深蓝 - 辅色 */
            --acpr-accent: #14b8a6;         /* 亮青绿 - 点缀色 */
            --acpr-teal-light: #2dd4bf;     /* 浅青绿 */
            --acpr-gold: #d4a843;           /* 暖金色（赞助商等） */
            --acpr-gradient-start: #0a6e6e; /* 渐变起始 - 深青绿 */
            --acpr-gradient-mid: #1a5f8a;   /* 渐变中段 - 过渡蓝 */
            --acpr-gradient-end: #1a3f6e;   /* 渐变终止 - 深蓝 */
            --acpr-shadow: rgba(10, 110, 110, 0.12);
        }
        
        /* 导航栏自定义样式 */
        .navbar-dark.bg-primary-custom {
            background: linear-gradient(90deg, var(--acpr-primary) 0%, #5b21b6 100%) !important;
            backdrop-filter: blur(10px);
            box-shadow: 0 4px 20px rgba(70, 8, 102, 0.3);
        }
        
        .navbar-dark .navbar-nav .nav-link {
            color: rgba(255, 255, 255, 0.85);
            transition: all 0.3s ease;
            position: relative;
            padding: 0.5rem 1rem;
        }
        
        .navbar-dark .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            /*background: linear-gradient(90deg, #fff, var(--acpr-accent));*/
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        
        .navbar-dark .navbar-nav .nav-link:hover::after {
            width: 80%;
        }
        
        .navbar-dark .navbar-nav .nav-link:hover {
            color: #fff;
        }
        
        .navbar-dark .navbar-brand {
            font-weight: 700;
            letter-spacing: 1px;
            background: linear-gradient(135deg, #fff 0%, var(--acpr-accent) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        /* Hero 区域动态渐变背景 */
        .hero-gradient {
            background: linear-gradient(-45deg, #0a6e6e, #1a5f8a, #1a3f6e, #0d4f5f, #0a6e6e);
            background-size: 400% 400%;
            animation: gradientShift 15s ease infinite;
            min-height: 550px;
            position: relative;
            overflow: hidden;
        }
        
        .hero-gradient::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
            pointer-events: none;
        }
        
        /* 粒子效果容器 */
        .particles-container {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            pointer-events: none;
        }
        
        .particle {
            position: absolute;
            width: 6px;
            height: 6px;
            background: rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            animation: floatParticle 20s infinite;
        }
        
        .particle:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 25s; }
        .particle:nth-child(2) { left: 20%; animation-delay: 2s; animation-duration: 20s; }
        .particle:nth-child(3) { left: 30%; animation-delay: 4s; animation-duration: 28s; }
        .particle:nth-child(4) { left: 40%; animation-delay: 1s; animation-duration: 22s; }
        .particle:nth-child(5) { left: 50%; animation-delay: 3s; animation-duration: 26s; }
        .particle:nth-child(6) { left: 60%; animation-delay: 5s; animation-duration: 24s; }
        .particle:nth-child(7) { left: 70%; animation-delay: 2.5s; animation-duration: 21s; }
        .particle:nth-child(8) { left: 80%; animation-delay: 4.5s; animation-duration: 27s; }
        .particle:nth-child(9) { left: 90%; animation-delay: 1.5s; animation-duration: 23s; }
        .particle:nth-child(10) { left: 15%; animation-delay: 3.5s; animation-duration: 29s; }
        
        /* 几何装饰元素 */
        .hero-decoration {
            position: absolute;
            border: 2px solid rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            animation: pulseRing 4s ease-in-out infinite;
        }
        
        .hero-decoration-1 {
            width: 200px;
            height: 200px;
            top: 10%;
            right: 10%;
        }
        
        .hero-decoration-2 {
            width: 150px;
            height: 150px;
            bottom: 15%;
            left: 5%;
            animation-delay: 1s;
        }
        
        .hero-decoration-3 {
            width: 80px;
            height: 80px;
            top: 60%;
            right: 25%;
            animation-delay: 2s;
        }
        
        @keyframes gradientShift {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }
        
        @keyframes floatParticle {
            0%, 100% {
                transform: translateY(100vh) scale(0);
                opacity: 0;
            }
            10% {
                opacity: 1;
                transform: translateY(90vh) scale(1);
            }
            90% {
                opacity: 1;
                transform: translateY(10vh) scale(1);
            }
            100% {
                transform: translateY(-10vh) scale(0);
                opacity: 0;
            }
        }
        
        @keyframes pulseRing {
            0%, 100% {
                transform: scale(1);
                opacity: 0.3;
            }
            50% {
                transform: scale(1.1);
                opacity: 0.1;
            }
        }
        
        /* Hero 标题样式增强 */
        .hero-title {
            background: linear-gradient(135deg, #ffffff 0%, #e0d4ff 50%, #ffffff 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: none;
            position: relative;
        }
        
        .hero-subtitle {
            background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(200,180,255,0.8) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        /* Hero 徽章样式 */
        .hero-badge {
            background: linear-gradient(135deg, rgba(255,255,255,0.25) 0%, rgba(255,255,255,0.15) 100%);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.2);
            animation: fadeInDown 1s ease;
        }
        
        .hero-info-pill {
            background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.1) 100%);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.15);
            transition: all 0.3s ease;
        }
        
        .hero-info-pill:hover {
            background: linear-gradient(135deg, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0.2) 100%);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        }
        
        /* 主色调文本 */
        .text-primary-custom {
            color: var(--acpr-primary) !important;
        }
        
        /* 主色调背景 */
        .bg-primary-custom {
            background: linear-gradient(135deg, var(--acpr-primary) 0%, var(--acpr-accent) 100%) !important;
        }
        
        .bg-secondary-custom {
            background: linear-gradient(135deg, var(--acpr-secondary) 0%, #1d4ed8 100%) !important;
        }
        
        /* 边框颜色 */
        .border-primary-custom {
            border-color: var(--acpr-primary) !important;
        }
        
        .border-secondary-custom {
            border-color: var(--acpr-secondary) !important;
        }
        
        /* 增强卡片悬停效果 */
        .card-hover {
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
        }
        
        .card-hover::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.5s ease;
            z-index: 0;
        }
        
        .card-hover:hover::before {
            left: 100%;
        }
        
        .card-hover:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: 0 20px 40px var(--acpr-shadow), 0 8px 16px rgba(0,0,0,0.08) !important;
        }
        
        .card-hover .card-body {
            position: relative;
            z-index: 1;
        }
        
        /* 渐变边框卡片 */
        .card-gradient-border {
            position: relative;
            background: #fff;
            border-radius: 16px;
        }
        
        .card-gradient-border::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            border-radius: 16px;
            padding: 2px;
            background: linear-gradient(135deg, var(--acpr-primary), var(--acpr-secondary), var(--acpr-accent));
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
        }
        
        /* About 区域图标增强 */
        .contact-icon {
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 16px;
            background: linear-gradient(135deg, var(--acpr-primary), var(--acpr-accent));
            color: #fff;
            font-size: 1.5rem;
            box-shadow: 0 8px 20px rgba(70, 8, 102, 0.3);
            transition: all 0.4s ease;
        }
        
        .card-hover:hover .contact-icon {
            transform: scale(1.1) rotate(5deg);
            box-shadow: 0 12px 30px rgba(70, 8, 102, 0.4);
        }
        
        /* 时间线样式增强 */
        .timeline {
            position: relative;
            padding-left: 40px;
        }
        
        .timeline::before {
            content: '';
            position: absolute;
            left: 18px;
            top: 0;
            bottom: 0;
            width: 4px;
            background: linear-gradient(180deg, var(--acpr-primary), var(--acpr-secondary), var(--acpr-accent));
            border-radius: 4px;
            box-shadow: 0 0 15px rgba(70, 8, 102, 0.3);
        }
        
        .timeline-item {
            position: relative;
            margin-bottom: 1.5rem;
        }
        
        .timeline-item::before {
            content: '';
            position: absolute;
            left: -29px;
            top: 30px;
            width: 18px;
            height: 18px;
            background: linear-gradient(135deg, var(--acpr-primary), var(--acpr-accent));
            border: 4px solid #fff;
            border-radius: 50%;
            box-shadow: 0 0 0 4px var(--acpr-primary), 0 4px 15px rgba(70, 8, 102, 0.3);
            animation: timelinePulse 2s ease-in-out infinite;
        }
        
        @keyframes timelinePulse {
            0%, 100% {
                box-shadow: 0 0 0 4px var(--acpr-primary), 0 4px 15px rgba(70, 8, 102, 0.3);
            }
            50% {
                box-shadow: 0 0 0 6px rgba(70, 8, 102, 0.2), 0 4px 20px rgba(70, 8, 102, 0.4);
            }
        }
        
        .timeline-card {
            background: #fff;
            border-radius: 12px;
            border: none;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
            overflow: hidden;
        }
        
        .timeline-card:hover {
            transform: translateX(8px);
            box-shadow: 0 8px 25px rgba(70, 8, 102, 0.15);
        }
        
        .timeline .card-body span{
        	background: linear-gradient(135deg, var(--acpr-primary), var(--acpr-accent));
        }
        
        /* 日期徽章样式 */
        .date-badge {
            position: relative;
            padding: 0.6rem 1.2rem;
            border-radius: 30px;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .date-badge::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            border-radius: 30px;
            padding: 2px;
            background: linear-gradient(135deg, currentColor, transparent);
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            opacity: 0.5;
        }
        
        /* 赞助商徽章增强 */
        .sponsor-badge {
            background: linear-gradient(135deg, #fbbf24, #f59e0b);
            color: #1f2937;
            font-weight: 700;
            box-shadow: 0 4px 15px rgba(251, 191, 36, 0.4);
        }
        
        .gold-badge {
            background: linear-gradient(135deg, #fbbf24, #f59e0b);
            color: #1f2937;
            box-shadow: 0 4px 15px rgba(251, 191, 36, 0.4);
        }
        
        .silver-badge {
            background: linear-gradient(135deg, #94a3b8, #64748b);
            color: #fff;
            box-shadow: 0 4px 15px rgba(100, 116, 139, 0.4);
        }
        
        .platinum-badge {
            background: linear-gradient(135deg, #e5e7eb, #9ca3af, #6b7280);
            color: #1f2937;
            box-shadow: 0 4px 15px rgba(107, 114, 128, 0.4);
        }
        
        /* 联系方式卡片 */
        /* (已合并到 contact-icon) */
        
        /* Footer 渐变 */
        .footer-gradient {
            background: linear-gradient(135deg, #0f0a1e 0%, #1a1033 50%, var(--acpr-primary) 100%);
            position: relative;
        }
        
        .footer-gradient::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--acpr-primary), var(--acpr-accent), var(--acpr-secondary));
        }
        
        /* 章节分隔线增强 */
        .section-divider {
            width: 80px;
            height: 5px;
            background: linear-gradient(90deg, var(--acpr-primary), var(--acpr-secondary));
            border-radius: 3px;
            position: relative;
        }
        
        .section-divider::before {
            content: '';
            position: absolute;
            top: -2px;
            left: 50%;
            transform: translateX(-50%);
            width: 30px;
            height: 9px;
            background: linear-gradient(90deg, var(--acpr-accent), var(--acpr-secondary));
            border-radius: 3px;
            animation: dividerShine 2s ease-in-out infinite;
        }
        
        @keyframes dividerShine {
            0%, 100% { opacity: 0.5; }
            50% { opacity: 1; }
        }
        
        /* 按钮渐变样式 */
        .btn-gradient-primary {
            background: linear-gradient(135deg, var(--acpr-primary), var(--acpr-accent));
            border: none;
            color: #fff;
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
        }
        
        .btn-gradient-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: left 0.5s ease;
        }
        
        .btn-gradient-primary:hover::before {
            left: 100%;
        }
        
        .btn-gradient-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(70, 8, 102, 0.4);
            color: #fff;
        }
        
        .btn-gradient-outline {
            background: transparent;
            border: 2px solid rgba(255,255,255,0.5);
            color: #fff;
            backdrop-filter: blur(5px);
            transition: all 0.3s ease;
        }
        
        .btn-gradient-outline:hover {
            background: rgba(255,255,255,0.2);
            border-color: #fff;
            color: #fff;
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.2);
        }
        
        /* 链接下划线动画 */
        .animated-link {
            position: relative;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .animated-link::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--acpr-primary), var(--acpr-secondary));
            transition: width 0.3s ease;
        }
        
        .animated-link:hover::after {
            width: 100%;
        }
        
        .animated-link:hover {
            color: var(--acpr-primary);
        }
        
        /* 入场动画类 */
        .fade-in-up {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }
        
        .fade-in-up.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        .fade-in-left {
            opacity: 0;
            transform: translateX(-30px);
            transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }
        
        .fade-in-left.visible {
            opacity: 1;
            transform: translateX(0);
        }
        
        .fade-in-right {
            opacity: 0;
            transform: translateX(30px);
            transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }
        
        .fade-in-right.visible {
            opacity: 1;
            transform: translateX(0);
        }
        
        /* 背景纹理 */
        .bg-pattern {
            position: relative;
        }
        
        .bg-pattern::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: radial-gradient(circle at 2px 2px, rgba(70, 8, 102, 0.05) 1px, transparent 0);
            background-size: 24px 24px;
            pointer-events: none;
        }
        
        /* 赞助商卡片增强 */
        .sponsor-card {
            background: #fff;
            border-radius: 16px;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border: 2px solid transparent;
        }
        
        .sponsor-card:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }
        
        .sponsor-card.platinum:hover {
            border-color: #e5e7eb;
        }
        
        .sponsor-card.gold:hover {
            border-color: #fbbf24;
            box-shadow: 0 20px 40px rgba(251, 191, 36, 0.15);
        }
        
        .sponsor-card.silver:hover {
            border-color: #94a3b8;
        }
        
        /* 酒店卡片增强 */
        .hotel-card .card-header {
            position: relative;
            overflow: hidden;
        }
        
        /*.hotel-card .card-header::after {*/
        /*    content: '';*/
        /*    position: absolute;*/
        /*    bottom: 0;*/
        /*    left: 0;*/
        /*    right: 0;*/
        /*    height: 4px;*/
        /*    background: linear-gradient(90deg, var(--acpr-primary), var(--acpr-secondary));*/
        /*}*/
        
        /* 社交图标增强 */
        .social-icon {
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            transition: all 0.3s ease;
            border: 1px solid rgba(255,255,255,0.1);
        }
        
        .social-icon:hover {
            background: linear-gradient(135deg, var(--acpr-primary), var(--acpr-accent));
            transform: translateY(-5px) rotate(10deg);
            box-shadow: 0 10px 25px rgba(0,0,0,0.3);
        }
        
        /* 滚动条样式 */
        /*::-webkit-scrollbar {
            width: 10px;
        }
        
        ::-webkit-scrollbar-track {
            background: #f1f1f1;
        }
        
        ::-webkit-scrollbar-thumb {
            background: linear-gradient(180deg, var(--acpr-primary), var(--acpr-accent));
            border-radius: 5px;
        }*/
        
        ::-webkit-scrollbar-thumb:hover {
            background: linear-gradient(180deg, var(--acpr-accent), var(--acpr-secondary));
        }
        
        /* 响应式微调 */
        @media (max-width: 768px) {
            .hero-gradient {
                min-height: 450px;
            }
            
            .display-3 {
                font-size: 2rem !important;
            }
            
            .hero-decoration {
                display: none;
            }
            
            .particle {
                width: 4px;
                height: 4px;
            }
            
            .timeline {
                padding-left: 30px;
            }
            
            .timeline::before {
                left: 11px;
            }
            
            .timeline-item::before {
                left: -24px;
                width: 14px;
                height: 14px;
            }
        }
        
        /* 订阅输入框增强 */
        .subscribe-input {
            background: rgba(255,255,255,0.1);
            border: 1px solid rgba(255,255,255,0.2);
            color: #fff;
            transition: all 0.3s ease;
        }
        
        .subscribe-input:focus {
            background: rgba(255,255,255,0.15);
            border-color: var(--acpr-accent);
            box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.3);
            color: #fff;
        }
        
        .subscribe-input::placeholder {
            color: rgba(255,255,255,0.6);
        }
        
        .btn-subscribe {
            background: linear-gradient(135deg, var(--acpr-primary), var(--acpr-accent));
            border: none;
            color: #fff;
            transition: all 0.3s ease;
        }
        
        .btn-subscribe:hover {
            background: linear-gradient(135deg, var(--acpr-accent), var(--acpr-secondary));
            transform: scale(1.05);
        }
        
        /* 场地图片占位增强 */
        .venue-image-placeholder {
            /*background: linear-gradient(135deg, #e8d5f0 0%, #d4e4ff 50%, #f0e6ff 100%);*/
            position: relative;
            overflow: hidden;
        }
        
        .venue-image-placeholder::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent 40%, rgba(255,255,255,0.3) 50%, transparent 60%);
            animation: shimmer 3s ease-in-out infinite;
        }
        
        @keyframes shimmer {
            0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
            100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
        }
        
        /* 警示框增强 */
        .alert-modern {
            border: none;
            border-radius: 12px;
            position: relative;
            overflow: hidden;
        }
        
        .alert-modern::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
        }
        
        .alert-info.alert-modern::before {
            background: linear-gradient(180deg, var(--acpr-secondary), var(--acpr-accent));
        }
        
        .alert-warning.alert-modern::before {
            background: linear-gradient(180deg, #f59e0b, #d97706);
        }
        
        /* Logo动画 */
        .navbar-brand i {
            animation: logoSpin 10s linear infinite;
        }
        
        @keyframes logoSpin {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }
        




 /* 酒店卡片容器 - 基础布局 */
        .hotel-cards-container {
            display: grid;
            gap: 1.5rem;
        }

        /* 响应式布局 - 不同屏幕尺寸下的列数控制 */
        /* 大屏（≥1140px）：一行4个 */
        @media (min-width: 1140px) {
            .hotel-cards-container {
                grid-template-columns: repeat(4, 1fr);
            }
            /* 大屏默认显示前4个，隐藏5-8个 */
            .hotel-card:nth-child(n+5) {
                display: none;
            }
        }

        /* 平板（768px - 1139px）：一行3个 */
        @media (min-width: 768px) and (max-width: 1139px) {
            .hotel-cards-container {
                grid-template-columns: repeat(3, 1fr);
            }
            /* 平板默认显示前3个，隐藏4-8个 */
            .hotel-card:nth-child(n+4) {
                display: none;
            }
        }

        /* 小屏平板/手机横屏（576px - 767px）：一行2个 */
        @media (min-width: 576px) and (max-width: 767px) {
            .hotel-cards-container {
                grid-template-columns: repeat(2, 1fr);
            }
            /* 小屏默认显示前4个（2行），隐藏5-8个 */
            .hotel-card:nth-child(n+5) {
                display: none;
            }
        }

        /* 手机竖屏（<576px）：一行1个 */
        @media (max-width: 575px) {
            .hotel-cards-container {
                grid-template-columns: 1fr;
            }
            /* 手机默认显示前2个，隐藏3-8个 */
            .hotel-card:nth-child(n+3) {
                display: none;
            }
        }

        /* 显示全部后取消隐藏（通过JS添加的类） */
        .hotel-cards-container.show-all .hotel-card {
            display: block !important;
        }

        /* 酒店卡片样式 */
        .hotel-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .hotel-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
        }

        /* 卡片头部（渐变背景） */
        .hotel-card-header {
            height: 140px;
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    color: white;
    font-size: 2.5rem;
        }

        /* 星级标签 */
        .star-badge {
            position: absolute;
            top: 12px;
            right: 12px;
            background: white;
            color: #666;
            padding: 4px 10px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
        }

        /* 卡片内容区 */
        .hotel-card-body {
            padding: 1.2rem;
        }

        .hotel-name {
            font-size: 1.1rem;
            font-weight: 600;
            color: #2d3748;
            margin-bottom: 0.5rem;
        }

        .hotel-desc {
            font-size: 0.9rem;
            color: #718096;
            margin-bottom: 1rem;
            line-height: 1.4;
        }

        .hotel-price {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--acpr-primary) !important;
        }

.hotel-card > div:first-child {
background-repeat: no-repeat;
    		background-size: cover;
    		    background-position: center;
}

        /* 不同卡片的渐变背景 */
        .gradient-1 {
            /*background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);*/
            background-image: url(../images/jd/1.jpg);
        }

        .gradient-2 {
            /*background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);*/
            background-image: url(../images/jd/2.jpg);
        }

        .gradient-3 {
            /*background: linear-gradient(135deg, #667eea 0%, #9f7aea 100%);*/
           background-image: url(../images/jd/3.jpg);
        }

        .gradient-4 {
            /*background: linear-gradient(135deg, #3f51b5 0%, #5a55ae 100%);*/
            background-image: url(../images/jd/4.jpg);
        }

        .gradient-5 {
            /*background: linear-gradient(135deg, #8e2de2 0%, #4a00e0 100%);*/
           background-image: url(../images/jd/5.jpg);
        }

        .gradient-6 {
            /*background: linear-gradient(135deg, #1a2980 0%, #26d0ce 100%);*/
           background-image: url(../images/jd/6.jpg);
            
        }

        .gradient-7 {
            /*background: linear-gradient(135deg, #7b4397 0%, #dc2430 100%);*/
           background-image: url(../images/jd/7.jpg);
           
        }

        .gradient-8 {
            /*background: linear-gradient(135deg, #00c6ff 0%, #0072ff 100%);*/
           background-image: url(../images/jd/8.jpg);
           
        }

        /* 显示全部按钮样式 */
        .show-all-btn {
            display: block;
            margin: 2rem auto;
            padding: 12px 30px;
            background: linear-gradient(135deg, var(--acpr-primary), var(--acpr-accent));
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 8px rgba(102, 126, 234, 0.3);
        }

        .show-all-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(102, 126, 234, 0.4);
            opacity: 0.95;
        }

        .show-all-btn:active {
            transform: translateY(0);
            box-shadow: 0 2px 4px rgba(102, 126, 234, 0.3);
        }

        /* 按钮隐藏样式 */
        .show-all-btn.hidden {
            display: none;
        }
        
/* 假设你的导航栏高度是 80px，预留多5px避免紧贴 */
:target {
  scroll-margin-top: 85px; 
}

 .footer-gradient {
            background: linear-gradient(135deg, #0a3d4d 0%, #0a6e6e 50%, #1a3f6e 100%);
    }
    .social-icon {
        transition: all 0.3s ease;
    }
    .social-icon:hover {
        background-color: rgba(255, 255, 255, 0.2) !important;
        transform: translateY(-2px);
    }
    .subscribe-input {
        background-color: rgba(255, 255, 255, 0.1) !important;
        border-color: rgba(255, 255, 255, 0.2) !important;
        color: white !important;
    }
    .subscribe-input::placeholder {
        color: rgba(255, 255, 255, 0.5) !important;
    }
    .btn-subscribe {
        background-color: #9f7aea !important;
        color: white !important;
    }
    .btn-subscribe:hover {
        background-color: #805ad5 !important;
    }
    .animated-link {
        transition: opacity 0.3s ease;
    }
    .animated-link:hover {
        opacity: 1 !important;
    }

    /* 二维码悬浮提示样式 - 优化大小 */
    .qr-tooltip {
        cursor: pointer;
    }
    .qr-tooltip:hover .qr-tooltip-content {
        display: block !important;
        opacity: 1;
    }
    .qr-tooltip-content {
        z-index: 9999; /* 确保显示在最上层 */
        transition: opacity 0.2s ease;
        opacity: 0;
        /* 限制tooltip最大宽度，避免溢出 */
        max-width: 120px;
    }
 
.qr-tooltip-content img {
    width: 80px !important;  /* 自定义宽度 */
    height: 80px !important; /* 自定义高度 */
}



.prlb53r3 .btn-gradient-primary:hover{
        transform: unset !important;
    box-shadow: unset !important;
}






/* Hero 左右分栏布局 */
.hero-content-row {
    display: flex;
    align-items: center;
    /*min-height: 500px;*/
}

.hero-left {
    flex: 1;
    padding-right: 2rem;
}

.hero-right {
    flex: 0 0 50%;
    max-width: 50%;
    position: relative;
}

/* Hero 缩写标题 */
.hero-acronym {
    font-size: 5rem;
    font-weight: 800;
    letter-spacing: 2px;
    background: linear-gradient(135deg, #2dd4bf 0%, #14b8a6 40%, #0ea5e9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    line-height: 1.1;
}

/* Hero 全称标题 */
.hero-fullname {
    font-size: 2.6rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 2rem;
    line-height: 1.5;
    opacity: 0.95;
}

/* Hero 信息行 */
.hero-info-row {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.hero-info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
}

.hero-info-item i {
    font-size: 1.1rem;
    color: #2dd4bf;
}

.hero-info-item strong {
    font-weight: 600;
    color: #fff;
}

/* Hero 右侧概念视图 */
.hero-concept-image {
    width: 100%;
    border-radius: 16px;
    /*box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);*/
    position: relative;
    z-index: 2;
    animation: fadeInRight 1s ease;
}

.hero-concept-image-glow {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: radial-gradient(ellipse at center, rgba(20, 184, 166, 0.2) 0%, transparent 70%);
    border-radius: 24px;
    z-index: 1;
    animation: pulseGlow 4s ease-in-out infinite;
}

/* 响应式微调 */
@media (max-width: 991px) {
    .hero-gradient {
        min-height: 500px;
    }
    
    .hero-content-row {
        flex-direction: column;
        min-height: auto;
        padding: 2rem 0;
    }
    
    .hero-left {
        padding-right: 0;
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .hero-right {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .hero-acronym {
        font-size: 4rem;
    }
    
    .hero-fullname {
        font-size: 2rem;
    }
    
    .hero-info-row {
        justify-content: center;
        margin-bottom: 2rem;
    }
    
    .hero-info-item {
        font-size: 0.85rem;
    }
    
    .hero-decoration {
        display: none;
    }
    
    .particle {
        width: 4px;
        height: 4px;
    }
}


/*md以下*/
@media only screen and (max-width: 768px) {
    
        .hero-acronym {
        font-size: 3rem;
    }
    
}


/*.hero-right img {*/
/*    transition: transform 0.15s ease-out;*/
/*    transform-style: preserve-3d;*/
/*    will-change: transform;*/
/*}*/