
    /* 全局变量+重置 */
    :root {
      --color-primary: #FF6B81;
      --color-bg-light: #E6F2F8;
      --color-bg-white: #FFFFFF;
      --color-text-main: #333333;
      --color-text-secondary: #666666;
      --color-text-gray: #888888;
      --color-border: #EEEEEE;
      --color-search-bg: #F5F5F5;
      
      --spacing-xs: 8px;
      --spacing-sm: 12px;
      --spacing-md: 20px;
      --spacing-lg: 30px;
      --spacing-xl: 40px;
      
      --font-family: 'Noto Sans SC', "Microsoft YaHei", "PingFang SC", sans-serif;
      --font-weight-light: 300;
      --font-weight-regular: 400;
      --font-weight-bold: 700;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Noto Sans SC', "Microsoft YaHei", "PingFang SC", sans-serif;
      color: #333333;
      background: #FFFFFF;
      line-height: 1.5;
    }


    a{
      color: #000;
      text-decoration: none;
    }
    /* 顶部导航 - 核心修复 */
    .header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 12px 40px;
      border-bottom: 1px solid #EEEEEE;
      /* 防止子元素溢出 */
      flex-wrap: nowrap;
      width: 100%;
      min-height: 60px;
    }

    .logo-container {
      display: flex;
      align-items: center;
      gap: 8px;
      /* 固定logo区域宽度，防止挤压 */
      flex-shrink: 0;
      width: 600px;
    }

    .logo {
      height: 32px;
      width: auto;
    }
    .city-select {
      margin-left: 12px;
      color: #000000;
      cursor: pointer;
      font-size: 1.9rem;
  }

    .nav-links {
      display: flex;
      gap: 20px;
      margin: 0 20px;
      /* 中等屏幕以下隐藏 */
      flex-shrink: 0;
    }

    .nav-links a {
      text-decoration: none;
      color: #333333;
      font-size: 0.95rem;
      white-space: nowrap;
    }

    /* 搜索框 - 修复宽度挤压问题 */
    .search-container {
      display: flex;
      flex: 1;
      max-width: 500px;
      min-width: 200px;
      margin: 0 20px;
    }

    .search-input {
      flex: 1;
      padding: 8px 12px;
      background: #F5F5F5;
      border: none;
      border-radius: 4px 0 0 4px;
      outline: none;
      font-size: 0.9rem;
    }

    .search-btn {
      padding: 0 20px;
      background: #FF6B81;
      color: #FFFFFF;
      border: none;
      border-radius: 0 4px 4px 0;
      cursor: pointer;
      font-weight: 700;
      white-space: nowrap;
    }

    /* 用户操作区 - 修复图标和文字对齐 */
    .user-actions {
      display: flex;

    
      align-items: center;
      flex-shrink: 0;
    }

    .user-actions a {
      text-decoration: none;
      color: #fff;
      height: 30px;
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 0.9rem;
      white-space: nowrap;
    }

    .user-actions i {
      font-size: 1rem;
    }

    /* Banner区域 */
    .banner {
      align-items: center;
      padding: 30px 40px;
      background: #E6F2F8;
      position: relative;

      overflow: hidden;
    }

    .banner-content {
      max-width: 100%;
      z-index: 1;
    }

    .banner-venue {
      font-size: 1.2rem;
      margin-bottom: 8px;
    }

    .banner-date-cn {
      font-size: 1.1rem;
      margin-bottom: 8px;
    }

    .banner-date-en {
      font-size: 2.5rem;
      font-weight: 700;
      margin-bottom: 8px;
    }

    .banner-weekday {
      color: #666666;
      margin-bottom: 8px;
    }

    .banner-time {
      font-size: 1.2rem;
      font-weight: 700;
    }

    .banner-image {
      position: absolute;
      right: 0;
      top: 0;
      height: 100%;
      width: auto;
      object-fit: cover;
    }

    .banner-nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(255,255,255,0.8);
      border: none;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 1;
    }

    .banner-nav.prev { left: 20px; }
    .banner-nav.next { right: 20px; }

    /* 功能导航 */
    .feature-nav {
      display: flex;
      justify-content: space-around;
      padding: 20px 40px;
      border-bottom: 1px solid #EEEEEE;
      flex-wrap: wrap;
      gap: 20px;
    }

    .feature-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      cursor: pointer;
      width: 60px;
    }



    .feature-item img {
      width: 50px;
      height: 50px;
      color: #FF6B81;
    }

    .feature-item span {
      font-size: 0.9rem;
      text-align: center;
    }

    /* 演唱会列表 */
    .concert-section {
      padding: 20px 40px;
    }

    .section-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 20px;
    }

    .section-title {
      font-size: 1.2rem;
      font-weight: 700;
    }

    .view-all {
      color: #888888;
      text-decoration: none;
    }

    .concert-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
      gap: 20px;
    }

    .concert-card {
      border: 1px solid #EEEEEE;
      border-radius: 4px;
      overflow: hidden;
      transition: box-shadow 0.3s;
    }

    .concert-card:hover {
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }

    .card-image {
      width: 100%;
      height: 300px;
      object-fit: cover;
    }

    .card-content {
      padding: 12px;
    }

    .card-title {
      color: #000;
      font-size: 0.95rem;
      font-weight: 700;
      margin-bottom: 8px;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    .card-venue, .card-time {
      font-size: 0.85rem;
      color: #666666;
      margin-bottom: 8px;
    }

    .card-price {
      color: #FF6B81;
      font-weight: 700;
    }

    /* 响应式适配 - 增强导航栏适配 */
    @media (max-width: 1024px) {
      .nav-links { display: none; }
      .search-container { 
        max-width: 300px;
        margin: 0 12px;
      }
      .banner-date-en { font-size: 2rem; }
      .header {
        padding: 12px 20px;
      }
    }

    @media (max-width: 768px) {
      .header { 
        padding: 12px 20px;
        min-height: 50px;
      }
      .logo-container {
        width: 200px;
      }
      .search-container {
        max-width: 200px;
        min-width: 150px;
      }
      .user-actions {
        gap: 12px;
      }
      .banner { height: 220px; padding: 20px; }
      .banner-content { max-width: 70%; }
      .banner-date-en { font-size: 1.8rem; }
      .feature-nav { flex-wrap: wrap; gap: 20px; }
      .concert-grid { grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); }
    }

    /* 超小屏幕适配（手机） */
    @media (max-width: 480px) {
      .search-input::placeholder {
        font-size: 0.8rem;
      }
      .search-btn {
        padding: 0 8px;
        font-size: 0.8rem;
      }
      .city-select {
        font-size: 0.8rem;
      }
      .user-actions a {
        font-size: 0.8rem;
      }
    }


    footer {
      background-color: #121212;
      padding: 80px 0 40px;
      border-top: 1px solid rgba(106, 13, 173, 0.1);
  }

  .container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

.footer-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
  margin-bottom: 60px;
}

.footer-col h5 {
  color: #fff;
  font-size: 16px;
}

.footer-col a {
  color: #fff;
}