
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
       a {
            text-decoration: none;
            color: inherit;
        }
        
        a:hover,
        a:active,
        a:visited {
            text-decoration: none;
            color: inherit;
        }
        body {
            font-family: 'Inter', sans-serif;
            background-color: #fffaf7;  /* 暖白底，衬托红色主轴 */
            color: #1a1a1a;
            scroll-behavior: smooth;
        }

        /* 主色调：大气中国红 + 暗金点缀 */
        :root {
            --primary-red: #c52828;
            --deep-red: #a51c1c;
            --gold-accent: #d4af37;
            --dark-bg: #111111;
            --gray-light: #f8f5f2;
            --shadow-md: 0 20px 35px -12px rgba(0, 0, 0, 0.1);
            --shadow-lg: 0 25px 40px -12px rgba(0, 0, 0, 0.2);
        }

        /* 容器通用 */
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 32px;
        }
        .events-section{
            margin-top:25px;
        }
      
     /* ========= 头部 + 导航 ========= */
        .site-header {
            background: #ffffff;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
            position: sticky;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(0px);
            border-bottom: 1px solid rgba(197, 40, 40, 0.15);
        }

        .header-flex {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            padding: 18px 0;
        }

        /* LOGO 区域 */
        .logo-area {
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .logo-icon {
            font-size: 32px;
            width:100px;
            color: var(--primary-red);
        }

        .logo-text {
            font-size: 28px;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #c52828 0%, #8b1a1a 100%);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
        }

        .logo-sub {
            font-size: 12px;
            font-weight: 500;
            color: var(--gold-accent);
            background: rgba(212, 175, 55, 0.15);
            padding: 2px 6px;
            border-radius: 30px;
            margin-left: 6px;
        }

        /* 导航菜单 */
        .nav-menu {
            display: flex;
            gap: 38px;
            list-style: none;
        }

        .nav-menu li a {
            text-decoration: none;
            font-weight: 600;
            font-size: 16px;
            color: #2c2c2c;
            transition: 0.2s;
            letter-spacing: 0.3px;
            position: relative;
        }

        .nav-menu li a:after {
            content: '';
            position: absolute;
            bottom: -6px;
            left: 0;
            width: 0%;
            height: 2.5px;
            background: var(--primary-red);
            border-radius: 2px;
            transition: 0.3s ease;
        }

        .nav-menu li a:hover {
            color: var(--primary-red);
        }

        .nav-menu li a:hover:after {
            width: 100%;
        }

        /* 右侧用户入口 */
        .user-area {
            display: flex;
            gap: 20px;
            align-items: center;
        }

        .user-area i {
            font-size: 20px;
            color: #4a4a4a;
            cursor: pointer;
            transition: color 0.2s;
        }

        .user-area i:hover {
            color: var(--primary-red);
        }

        .btn-outline-red {
            border: 1.5px solid var(--primary-red);
            background: transparent;
            padding: 8px 20px;
            border-radius: 40px;
            font-weight: 600;
            font-size: 14px;
            color: var(--primary-red);
            cursor: pointer;
            transition: all 0.25s;
        }

        .btn-outline-red:hover {
            background: var(--primary-red);
            color: white;
            box-shadow: 0 5px 12px rgba(197, 40, 40, 0.3);
        }

        /* 移动端响应式折叠菜单示意 (简单适配，不做复杂汉堡菜单，但确保flex wrap) */
        @media (max-width: 900px) {
            .header-flex {
                flex-direction: column;
                gap: 20px;
            }
            .nav-menu {
                gap: 24px;
                flex-wrap: wrap;
                justify-content: center;
            }
            .container {
                padding: 0 20px;
            }
        }
          /* 城市选择下拉组件 - 全新精致设计 */
.city-selector {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #fef5f0;
    padding: 6px 16px 6px 14px;
    border-radius: 48px;
    cursor: pointer;
    transition: all 0.2s;
    /*border: 1px solid rgba(197, 40, 40, 0.2);*/
    font-weight: 500;
    position: relative;
}
.city-selector:hover {
    background: #fff0e8;
    border-color: var(--primary-red);
    box-shadow: 0 2px 8px rgba(197,40,40,0.1);
}
.city-icon {
    color: var(--primary-red);
    font-size: 16px;
}
.city-name {
    font-size: 15px;
    font-weight: 600;
    color: #2d2d2d;
    letter-spacing: 0.3px;
}
.chevron-icon {
    font-size: 12px;
    color: #b85c5c;
    transition: transform 0.2s;
}
.city-selector.active .chevron-icon {
    transform: rotate(180deg);
}
/* 下拉菜单面板 */
.city-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    background: white;
    border-radius: 28px;
    box-shadow: 0 20px 35px -8px rgba(0,0,0,0.2);
    width: 240px;
    z-index: 200;
    overflow: hidden;
    backdrop-filter: blur(4px);
    background: rgba(255,255,255,0.98);
    border: 1px solid rgba(197,40,40,0.2);
    transition: 0.2s;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
}
.city-selector.active .city-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.city-dropdown ul {
    list-style: none;
    padding: 12px 0;
    margin: 0;
}
.city-dropdown li {
    padding: 10px 20px;
    font-size: 15px;
    font-weight: 500;
    transition: 0.15s;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #2c2c2c;
}
.city-dropdown li i {
    width: 20px;
    color: var(--primary-red);
    font-size: 14px;
}
.city-dropdown li:hover {
    background: #fef1ec;
    color: var(--primary-red);
}
.city-dropdown li.active-city {
    background: #fff0e8;
    color: var(--primary-red);
    font-weight: 700;
    border-left: 3px solid var(--primary-red);
}
.current-city-badge {
    background: #ffeee8;
    padding: 6px 16px;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-red);
    display: inline-block;
    margin-top: 8px;
}
.current-city-badge i {
    margin-right: 6px;
}  
 

       

        /* ========= HERO BANNER 大气全宽区域 ========= */
        .hero-banner {
            background: linear-gradient(107deg, #1c0b0b 0%, #2f1414 45%, #721c1c 100%);
            margin-top: 0;
            position: relative;
            overflow: hidden;
        }

        .hero-banner:before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('https://images.unsplash.com/photo-1501281668745-f7f57925c3b4?q=80&w=2070&auto=format'); /* 演唱会舞台氛围图 */
            background-size: cover;
            background-position: center 30%;
            opacity: 0.22;
            pointer-events: none;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            padding: 80px 0 90px;
            text-align: center;
            color: white;
        }

        .hero-content h1 {
            font-size: 64px;
            font-weight: 800;
            letter-spacing: -1px;
            line-height: 1.1;
            text-shadow: 0 4px 20px rgba(0,0,0,0.4);
        }

        .hero-content h1 span {
            color: var(--gold-accent);
            border-bottom: 3px solid var(--gold-accent);
            display: inline-block;
            padding-bottom: 4px;
        }

        .hero-tagline {
            font-size: 18px;
            margin-top: 20px;
            opacity: 0.9;
            font-weight: 400;
            letter-spacing: 0.5px;
        }

        /* 搜索框区域 - 融合于banner下方或内嵌，大气设计 */
        .search-wrapper {
            max-width: 720px;
            margin: 38px auto 0;
            background: rgba(255,255,255,0.98);
            border-radius: 80px;
            box-shadow: var(--shadow-lg);
            display: flex;
            align-items: center;
            padding: 6px 6px 6px 24px;
            backdrop-filter: blur(2px);
        }

        .search-wrapper i {
            color: var(--primary-red);
            font-size: 20px;
        }

        .search-wrapper input {
            flex: 1;
            border: none;
            padding: 18px 12px;
            font-size: 16px;
            background: transparent;
            outline: none;
            font-weight: 500;
            color: #1f1f1f;
        }

        .search-wrapper input::placeholder {
            color: #a0a0a0;
            font-weight: 400;
        }

        .search-btn {
            background: var(--primary-red);
            border: none;
            padding: 12px 32px;
            border-radius: 60px;
            color: white;
            font-weight: 700;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.2s;
            letter-spacing: 1px;
        }

        .search-btn:hover {
            background: var(--deep-red);
            transform: scale(0.97);
        }

        /* 热门关键词点缀 */
        .hot-tags {
            margin-top: 24px;
            display: flex;
            justify-content: center;
            gap: 18px;
            flex-wrap: wrap;
        }

        .hot-tags span {
            font-size: 13px;
            background: rgba(255,215,175,0.2);
            backdrop-filter: blur(5px);
            padding: 0px 14px;
            border-radius: 40px;
            color: #fff2e0;
            font-weight: 500;
            line-height: 35px;
            display: flex;
            align-items: center;
            cursor: pointer;
            transition: 0.2s;
        }

        .hot-tags span:hover {
            background: var(--gold-accent);
            color: #2c0f0f;
        }

        /* ========= 演出票列表区域 (层次感网格) ========= */
      
      

        .section-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            flex-wrap: wrap;
            margin-bottom: 44px;
            border-bottom: 2px solid rgba(197,40,40,0.2);
            padding-bottom: 16px;
        }

        .section-header h2 {
            font-size: 36px;
            font-weight: 700;
            letter-spacing: -0.3px;
            background: linear-gradient(135deg, #c52828, #a53131);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
        }

        .section-header p {
            color: #6b6b6b;
            font-weight: 500;
        }

        .view-all {
            color: var(--primary-red);
            font-weight: 600;
            text-decoration: none;
            border-bottom: 1px dashed var(--primary-red);
        }

        /* 卡片网格 */
        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 38px 28px;
        }

        .ticket-card {
            background: white;
            border-radius: 24px;
            overflow: hidden;
            transition: all 0.35s cubic-bezier(0.2, 0, 0, 1);
            box-shadow: 0 15px 30px -12px rgba(0, 0, 0, 0.08);
            position: relative;
            cursor: pointer;
        }

        .ticket-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 30px 40px -16px rgba(197, 40, 40, 0.25);
        }

        .card-img {
            height: 210px;
            background-size: cover;
            background-position: center;
            position: relative;
        }

        /* 标签热度 */
        .card-badge {
            position: absolute;
            top: 16px;
            left: 16px;
            background: var(--primary-red);
            color: white;
            font-weight: 700;
            font-size: 12px;
            padding: 5px 12px;
            border-radius: 40px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            z-index: 2;
        }

        .card-badge.gold {
            background: #c9a03d;
            color: #1e1a0c;
        }

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

        .event-title {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 12px;
            line-height: 1.3;
        }

        .event-info {
            display: flex;
            flex-direction: column;
            gap: 8px;
            margin: 14px 0;
            font-size: 14px;
            color: #4f4f4f;
        }

        .event-info i {
            width: 24px;
            color: var(--primary-red);
        }

        .price-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 18px;
            border-top: 1px solid #f0edea;
            padding-top: 16px;
        }

        .price {
            font-size: 24px;
            font-weight: 800;
            color: var(--primary-red);
        }

        .price small {
            font-size: 14px;
            font-weight: 500;
            color: #7c7c7c;
        }

        .book-btn {
            background: #fef3f0;
            border: none;
            padding: 8px 20px;
            border-radius: 60px;
            font-weight: 600;
            color: var(--primary-red);
            transition: 0.2s;
            cursor: pointer;
            font-size: 14px;
        }

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

        /* 装饰性分割 */
        .divider-light {
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--primary-red), var(--gold-accent), transparent);
            /*margin: 20px 0;*/
        }



        /* 响应式微调 */
        @media (max-width: 640px) {
          
            .hero-content h1 {
                font-size: 40px;
            }
            .search-wrapper {
                flex-direction: column;
                background: white;
                border-radius: 48px;
                padding: 12px;
                gap: 12px;
            }
            .search-btn {
                width: 100%;
            }
            .section-header h2 {
                font-size: 28px;
            }
        }
    
.card-img {
    height: 210px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;  /* 新增，确保图片圆角溢出隐藏 */
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;  /* 保证图片铺满不变形 */
}
/* 轮播图样式 */
.hero-banner {
    position: relative;
    overflow: hidden;
}

.carousel-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.carousel-slides {
    width: 100%;
    height: 100%;
    position: relative;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    z-index: 1;
}

.carousel-slide.active {
    opacity: 1;
    z-index: 2;
}

.slide-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* 遮罩层 */
.hero-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 3;
}

/* 内容区 */
.hero-content {
    position: relative;
    z-index: 10;
    padding: 80px 0 90px;
    text-align: center;
    color: white;
}

/* 轮播控制按钮 */
.carousel-prev,
.carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.3);
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 20;
    color: white;
    font-size: 20px;
    transition: all 0.3s;
}

.carousel-prev:hover,
.carousel-next:hover {
    background: rgba(197, 40, 40, 0.8);
}

.carousel-prev {
    left: 20px;
}

.carousel-next {
    right: 20px;
}

/* 指示点 */
.carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 20;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.carousel-dot.active {
    background: var(--primary-red);
    width: 30px;
    border-radius: 6px;
}

/* 移动端适配 */
@media (max-width: 640px) {
    .carousel-prev,
    .carousel-next {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
    .carousel-dot {
        width: 8px;
        height: 8px;
    }
    .carousel-dot.active {
        width: 20px;
    }
}
   footer {
            background: #111010;
            color: #ddd9d4;
            padding: 48px 0 32px;
            margin-top: 40px;
        }

        .footer-inner {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 32px;
        }

        .footer-copyright {
            text-align: center;
            margin-top: 48px;
            font-size: 13px;
            color: #7a7672;
        }
         @media (max-width: 640px) {
           .footer-inner > div {
                flex: 0 0 calc(50% - 16px);
                width: calc(50% - 16px);
            }
           
        }
    .header-head{background:#333333;}
    .header-head {
    background: #333333;
    color: #999;
    font-size: 12px;
    line-height: 40px;
}

.row-between-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.headerCon {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

.welcome a {
    color: #999;
    text-decoration: none;
}

.welcome a:hover {
    color: var(--primary-red, #c52828);
}

.user {
    display: flex;
    align-items: center;
    gap: 20px;
}

.user .item {
    color: #999;
    text-decoration: none;
    position: relative;
    cursor: pointer;
    padding: 0 5px;
}

.user .item:hover {
    color: var(--primary-red, #c52828);
}

/* 手机商城下拉二维码 */
.mobile-store {
    position: relative;
}

.gzhaocode {
    position: absolute;
    top: 100%;
    right: 0;
    padding-top: 10px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
}

.mobile-store:hover .gzhaocode {
    opacity: 1;
    visibility: visible;
}

.code {
    background: white;
    border-radius: 8px;
    padding: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    min-width: 120px;
}

.code img {
    width: 100px;
    height: 100px;
    display: block;
    margin-bottom: 8px;
}

.code span {
    font-size: 12px;
    color: #333;
    line-height: 1.4;
    display: block;
}
/* 覆盖 ThinkPHP 原生分页样式 */
.pagination {
    margin: 50px 0;
    text-align: center;
}
.pagination ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.pagination li {
    display: inline-block;
}
.pagination li a,
.pagination li span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 6px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    background: #fff;
    border: 1px solid #f1e8e2;
    color: #666;
    transition: all 0.2s;
}
.pagination li.active span {
    background: var(--primary-red);
    border-color: var(--primary-red);
    color: #fff;
}
.pagination li a:hover {
    background: #fdf3f0;
    border-color: #f5d5c7;
    color: var(--primary-red);
}
.pagination li.disabled span {
    color: #ccc;
    cursor: not-allowed;
    background: #faf6f3;
    border-color: #f1e8e2;
}
/* 移动端适配 */
@media (max-width: 640px) {
    .header-head {
        display: none;  /* 移动端可隐藏顶部栏 */
    }
}