   
        .detail-breadcrumb {
            background: linear-gradient(135deg, var(--light-bg) 0%, #ffffff 100%);
            padding: 1rem 1.5rem;
            border-radius: 6px;
            margin-bottom: 2rem;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--border-color);
        }
        
        .detail-breadcrumb a {
            color: var(--primary-blue);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
        }
        
        .detail-breadcrumb a:hover {
            color: var(--accent-gold);
        }
        
        .detail-breadcrumb span {
            color: var(--accent-gold);
            font-weight: 600;
        }
        
        .detail-breadcrumb a + a:before,
        .detail-breadcrumb a + span:before {
            content: "›";
            margin: 0 0.8rem;
            color: #9ca3af;
        }
        
        /* 轮播图区域 */
        .carousel-container {
            overflow: hidden;
        }
        
        .carousel {
            position: relative;
            height: 400px;
            overflow: hidden;
        }
        
        .carousel-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1s ease;
            background-size: cover;
            background-position: center;
        }
        
        .carousel-slide.active {
            opacity: 1;
        }
        
        .carousel-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .carousel-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
            color: white;
            padding: 20px 30px;
        }
        
        .carousel-caption {
            font-size: 16px;
            font-weight: 500;
        }
        
        .carousel-controls {
            position: absolute;
            bottom: 15px;
            right: 15px;
            display: flex;
            gap: 10px;
            z-index: 10;
        }
        
        .carousel-btn {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.9);
            border: none;
            border-radius: 50%;
            color: var(--primary-blue);
            font-size: 14px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .carousel-btn:hover {
            background: white;
            transform: scale(1.1);
            box-shadow: 0 4px 12px rgba(0,0,0,0.2);
        }
        
        .carousel-indicators {
            position: absolute;
            bottom: 15px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            z-index: 10;
        }
        
        .carousel-indicator {
            width: 10px;
            height: 10px;
            background: rgba(255, 255, 255, 0.5);
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .carousel-indicator.active {
            background: white;
            transform: scale(1.2);
        }
        
        /* 节庆活动特色布局 */
        .festival-content-wrapper {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 2rem;
            margin-bottom: 3rem;
        }
        
        .festival-main-content {
            background: var(--card-bg);
            border-radius: 12px;
            box-shadow: var(--shadow-md);
            border: 1px solid var(--border-color);
        }
        
        .festival-sidebar {
            position: sticky;
            top: 100px;
            align-self: start;
        }
        
        /* 内容区域 */
        .content-section {
            padding: 2.5rem;
            border-bottom: 1px solid var(--border-color);
        }
        
        .content-section:last-child {
            border-bottom: none;
        }
        
        .content-section .section-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary-blue);
            margin-bottom: 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 3px solid var(--accent-gold);
            position: relative;
            display: block;
        }
        
        .section-title::after { background: #fff; }
        
        .description {
            font-size: 1.05rem;
            line-height: 1.8;
            color: var(--dark-text);
            background: var(--light-bg);
            padding: 1.5rem;
            border-radius: 8px;
            border-left: 4px solid var(--primary-blue);
        }
        
        .description p {
            margin-bottom: 1.5rem;
        }
        
        .description p:last-child {
            margin-bottom: 0;
        }
        
        /* 节庆活动特色样式 */
        .festival-info-card {
            background: var(--card-bg);
            border-radius: 12px;
            overflow: hidden;
            margin-bottom: 1.5rem;
            box-shadow: var(--shadow-md);
            border: 1px solid var(--border-color);
            position: relative;
        }
        
        .festival-info-card::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, #FF6B6B, #4ECDC4, #45B7D1, #96CEB4, #FFEAA7);
        }
        
        .festival-header {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            padding: 2.5rem;
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .festival-header::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 100%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
        }
        
        .festival-title {
            font-size: 2rem;
            font-weight: 800;
            line-height: 1.3;
            margin-bottom: 1rem;
            color: white;
            position: relative;
            z-index: 1;
        }
        
        .festival-subtitle {
            font-size: 1.1rem;
            opacity: 0.9;
            font-weight: 500;
            position: relative;
            z-index: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.8rem;
        }
        
        .festival-subtitle i {
            color: var(--accent-gold);
        }
        
        .festival-date-badge {
            display: inline-flex;
            align-items: center;
            gap: 1rem;
            background: rgba(255, 255, 255, 0.2);
            padding: 0.8rem 1.5rem;
            border-radius: 50px;
            margin-top: 1rem;
        }
        
        .festival-date-icon {
            font-size: 1.2rem;
        }
        
        .festival-date-text {
            font-size: 1.1rem;
            font-weight: 700;
        }
        
        /* 信息网格 */
        .info-grid {
            padding: 2rem;
        }
        
        .info-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
            border-bottom: 1px solid var(--border-color);
            transition: all 0.3s ease;
        }
        
        .info-item:hover {
            background: var(--light-bg);
            padding-left: 1rem;
            padding-right: 1rem;
            margin: 0 -1rem;
            border-radius: 6px;
        }
        
        .info-item:last-child {
            border-bottom: none;
        }
        
        .info-label {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            color: var(--medium-text);
            font-weight: 600;
            font-size: 0.95rem;
        }
        
        .info-label i {
            color: var(--accent-gold);
            width: 20px;
            text-align: center;
        }
        
        .info-value {
            color: var(--dark-text);
            font-weight: 700;
            text-align: right;
            font-size: 0.95rem;
        }
        
        .rating-stars {
            color: #FFD700;
            font-size: 0.95rem;
            letter-spacing: 2px;
        }
        
        /* 日程安排特殊样式 */
        .schedule-box {
            background: linear-gradient(135deg, var(--light-bg) 0%, #ffffff 100%);
            border-radius: 8px;
            padding: 1.5rem;
            margin: 1.5rem 0;
            border-left: 4px solid var(--primary-blue);
            box-shadow: var(--shadow-sm);
        }
        
        .schedule-day {
            margin-bottom: 2rem;
            padding-bottom: 1.5rem;
            border-bottom: 1px dashed var(--border-color);
        }
        
        .schedule-day:last-child {
            margin-bottom: 0;
            padding-bottom: 0;
            border-bottom: none;
        }
        
        .schedule-day-title {
            color: var(--primary-blue);
            font-weight: 700;
            margin-bottom: 1.2rem;
            font-size: 1.2rem;
            display: flex;
            align-items: center;
            gap: 0.8rem;
        }
        
        .schedule-item {
            display: flex;
            margin-bottom: 1.2rem;
            padding-bottom: 1.2rem;
            border-bottom: 1px solid rgba(0,0,0,0.05);
        }
        
        .schedule-item:last-child {
            margin-bottom: 0;
            padding-bottom: 0;
            border-bottom: none;
        }
        
        .schedule-time {
            min-width: 120px;
            font-weight: 700;
            color: var(--accent-gold);
            font-size: 1rem;
        }
        
        .schedule-content {
            flex: 1;
        }
        
        .schedule-activity {
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: var(--dark-text);
        }
        
        .schedule-desc {
            color: var(--medium-text);
            font-size: 0.95rem;
            line-height: 1.5;
        }
        
        /* 参与指南 */
        .participation-guide {
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(255, 255, 255, 0.1) 100%);
            padding: 1.5rem;
            border-radius: 8px;
            border: 2px dashed var(--accent-gold);
            margin: 1.5rem 0;
        }
        
        /* 温馨提示卡片 - 完善版 */
        .tips-card {
            background: var(--card-bg);
            border-radius: 12px;
            overflow: hidden;
            margin-bottom: 1.5rem;
            box-shadow: var(--shadow-md);
            border: 1px solid var(--border-color);
            position: relative;
        }
        
        .tips-card::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, #4CAF50, #8BC34A, #CDDC39, #FFEB3B);
        }
        
        .tips-header {
            padding: 1.5rem 1.5rem 0.5rem;
        }
        
        .tips-header h3 {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--primary-blue);
            display: flex;
            align-items: center;
            gap: 0.8rem;
        }
        
        .tips-categories {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-top: 1rem;
        }
        
        .tip-category {
            padding: 0.3rem 0.8rem;
            background: rgba(76, 175, 80, 0.1);
            border-radius: 4px;
            font-size: 0.8rem;
            color: #4CAF50;
            font-weight: 600;
        }
        
        .tips-body {
            padding: 1.5rem;
        }
        
        .tip-section {
            margin-bottom: 1.5rem;
            padding-bottom: 1.5rem;
            border-bottom: 1px solid var(--border-color);
        }
        
        .tip-section:last-child {
            margin-bottom: 0;
            padding-bottom: 0;
            border-bottom: none;
        }
        
        .tip-section-title {
            font-size: 1rem;
            font-weight: 700;
            color: var(--primary-blue);
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .tip-list {
            list-style: none;
            padding: 0;
        }
        
        .tip-list li {
            display: flex;
            align-items: flex-start;
            margin-bottom: 0.8rem;
            padding: 0.8rem;
            background: #f8f9fa;
            border-radius: 6px;
            transition: all 0.3s ease;
        }
        
        .tip-list li:hover {
            background: #e9ecef;
            transform: translateX(5px);
        }
        
        .tip-list li:last-child {
            margin-bottom: 0;
        }
        
        .tip-icon {
            color: #4CAF50;
            margin-right: 0.8rem;
            flex-shrink: 0;
            width: 20px;
            text-align: center;
        }
        
        .tip-content {
            flex: 1;
            font-size: 0.95rem;
            line-height: 1.5;
            color: var(--dark-text);
        }
        
        .tip-important {
            color: #dc3545;
            font-weight: 600;
            background: rgba(220, 53, 69, 0.05);
            border-left: 3px solid #dc3545;
        }
        
        /* 其他节庆活动卡片 - 完善版 */
        .other-festivals-card {
            background: var(--card-bg);
            border-radius: 12px;
            overflow: hidden;
            margin-bottom: 1.5rem;
            box-shadow: var(--shadow-md);
            border: 1px solid var(--border-color);
            position: relative;
        }
        
        .other-festivals-card::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, #667eea, #764ba2, #9c27b0, #e91e63);
        }
        
        .festivals-header {
            padding: 1.5rem 1.5rem 0.5rem;
        }
        
        .festivals-header h3 {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--primary-blue);
            display: flex;
            align-items: center;
            gap: 0.8rem;
        }
        
        .festivals-filter {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-top: 1rem;
        }
        
        .filter-btn {
            padding: 0.3rem 0.8rem;
            background: rgba(102, 126, 234, 0.1);
            border: 1px solid rgba(102, 126, 234, 0.2);
            border-radius: 4px;
            font-size: 0.8rem;
            color: #667eea;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .filter-btn.active {
            background: #667eea;
            color: white;
            border-color: #667eea;
        }
        
        .festivals-body {
            padding: 1.5rem;
        }
        
        .festival-type-section {
            margin-bottom: 1.5rem;
        }
        
        .festival-type-title {
            font-size: 1rem;
            font-weight: 700;
            color: var(--primary-blue);
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--border-color);
        }
        
        .festival-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1rem;
        }
        
        .festival-item {
            display: flex;
            align-items: center;
            padding: 1rem;
            background: #f8f9fa;
            border-radius: 8px;
            text-decoration: none;
            color: inherit;
            transition: all 0.3s ease;
            border-left: 4px solid transparent;
        }
        
        .festival-item:hover {
            background: #e9ecef;
            transform: translateY(-3px);
            box-shadow: var(--shadow-sm);
            border-left-color: #667eea;
        }
        
        .festival-date {
            min-width: 60px;
            text-align: center;
            padding: 0.5rem;
            background: white;
            border-radius: 6px;
            margin-right: 1rem;
            box-shadow: var(--shadow-sm);
        }
        
        .festival-month {
            font-size: 0.8rem;
            font-weight: 600;
            color: #667eea;
        }
        
        .festival-day {
            font-size: 1.2rem;
            font-weight: 800;
            color: var(--primary-blue);
        }
        
        .festival-info {
            flex: 1;
        }
        
        .festival-name {
            font-size: 1rem;
            font-weight: 700;
            color: var(--primary-blue);
            margin-bottom: 0.3rem;
        }
        
        .festival-desc {
            font-size: 0.85rem;
            color: var(--medium-text);
            line-height: 1.4;
        }
        
        .festival-tag {
            display: inline-block;
            padding: 0.2rem 0.5rem;
            background: rgba(102, 126, 234, 0.1);
            color: #667eea;
            border-radius: 4px;
            font-size: 0.75rem;
            font-weight: 600;
            margin-top: 0.5rem;
        }
        
        /* 倒计时样式 */
        .countdown-container {
            margin: 1.5rem 0;
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(255, 255, 255, 0.1) 100%);
            border-radius: 8px;
            padding: 1.5rem;
            border: 2px solid var(--accent-gold);
            box-shadow: var(--shadow-sm);
            text-align: center;
        }
        
        .countdown-title {
            color: var(--primary-blue);
            font-weight: 700;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.8rem;
            font-size: 1.1rem;
        }
        
        .countdown-number {
            font-size: 2.5rem;
            font-weight: 900;
            color: var(--accent-red);
            line-height: 1;
            margin-bottom: 0.5rem;
        }
        
        .countdown-unit {
            font-size: 1rem;
            font-weight: 600;
            color: var(--primary-blue);
            display: block;
        }
        
        /* 分享按钮 */
        .share-buttons {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-top: 1.5rem;
        }
        
        .share-btn {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: none;
            color: white;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .share-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        
        /* 浮动动画 */
        .float-animation {
            animation: float 6s ease-in-out infinite;
        }
        
        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
            100% { transform: translateY(0px); }
        }
        
        /* 动画效果 */
        .fade-in {
            animation: fadeIn 0.6s ease;
        }
        
        .slide-up {
            animation: slideUp 0.6s ease;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* 响应式设计 */
        @media (max-width: 1024px) {
            .festival-content-wrapper {
                gap: 2rem;
            }
            
            .carousel {
                height: 350px;
            }
            
            .festival-title {
                font-size: 1.8rem;
            }
        }
        
        @media (max-width: 768px) {
            .festival-content-wrapper {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            
            .festival-sidebar {
                position: static;
            }
            
            .content-section {
                padding: 1.5rem;
            }
            
            .festival-header {
                padding: 1.5rem;
            }
            
            .festival-title {
                font-size: 1.6rem;
            }
            
            .festival-subtitle {
                font-size: 1rem;
            }
            
            .info-grid {
                padding: 1.5rem;
            }
            
            .carousel {
                height: 280px;
            }
            
            .carousel-controls {
                bottom: 10px;
                right: 10px;
            }
            
            .carousel-indicators {
                bottom: 10px;
            }
            
            .carousel-overlay {
                padding: 15px;
            }
            
            .carousel-caption {
                font-size: 14px;
            }
            
            .info-item:hover {
                margin: 0;
                padding-left: 0;
                padding-right: 0;
            }
        }
        
        @media (max-width: 480px) {
            .container {
                padding: 0 15px;
            }
            
            .content-section {
                padding: 1.25rem;
            }
            
            .content-section .section-title {
                font-size: 1.3rem;
            }
            
            .description {
                font-size: 1rem;
                padding: 1rem;
            }
            
            .festival-header {
                padding: 1.25rem;
            }
            
            .festival-title {
                font-size: 1.4rem;
            }
            
            .festival-subtitle {
                font-size: 0.9rem;
            }
            
            .info-item {
                flex-direction: column;
                align-items: flex-start;
                gap: 0.5rem;
            }
            
            .info-value {
                text-align: left;
                width: 100%;
            }
            
            .info-grid {
                padding: 1.25rem;
            }
            
            .festival-item {
                flex-direction: column;
                text-align: center;
            }
            
            .festival-date {
                margin-right: 0;
                margin-bottom: 1rem;
            }
            
            .carousel {
                height: 220px;
            }
            
            .carousel-btn {
                width: 36px;
                height: 36px;
                font-size: 12px;
            }
            
            .carousel-overlay {
                padding: 12px;
            }
            
            .carousel-caption {
                font-size: 12px;
            }
        }
        iframe {
    margin-left: auto;
    margin-right: auto;
}
.description img {       margin-left: auto;     margin-right: auto; }