body {
  background-color: #faf9fb;
  color: #333647;
  line-height: 1.6;
}

/* 全局容器 - 适配会展官网宽度 */
.container {
  width: 100%;
  max-width: 15.25rem;
  margin: 0 auto;
  padding: 0 0.3rem;
}

/* 颜色系统 - 主色调 #ff0874 */
:root {
  --primary: #ff0874;
  --primary-light: linear-gradient(to right, rgb(33 12 207 / 72%), rgb(255 8 116 / 65%));
  --primary-opacity-10: rgba(196, 88, 168, 0.1);
  --primary-opacity-20: rgba(196, 88, 168, 0.2);
  --primary-gradient: linear-gradient(135deg, #ff0874 0%, #210ccf 100%);
  --gray-100: #f7f5f8;
  --gray-200: #ede9f0;
  --gray-300: #e2d9e8;
  --gray-600: #7b7583;
  --gray-800: #333647;
  --white: #ffffff;
  --shadow-sm: 0 0.02rem 0.08rem rgba(0, 0, 0, 0.03);
  --shadow-md: 0 0.08rem 0.24rem rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 0.12rem 0.32rem rgba(196, 88, 168, 0.1);
  --radius-sm: 0.08rem;
  --radius-md: 0.12rem;
  --radius-lg: 0.16rem;
  --transition-normal: 0.3s ease;
}

/* 页面主体样式 */
.audience-center {
  padding: 1rem 0;
}

/* 标题区域样式 */
.page-header {
  text-align: center;
  margin-bottom: 0.8rem;
  position: relative;
}

.page-subtitle {
  font-size: 0.14rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.02rem;
  margin-bottom: 0.12rem;
  display: inline-block;
}

.page-title {
  font-size: 0.42rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 0.16rem;
  line-height: 1.2;
}

.page-desc {
  font-size: 0.16rem;
  color: var(--gray-600);
  max-width: 6rem;
  margin: 0 auto;
  line-height: 1.8;
}

/* 内容板块布局 */
.content-section {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 0.5rem;
  margin-bottom: 0.6rem;
}

/* 通用卡片样式 */
.info-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  padding: 0.5rem;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
  transition: var(--transition-normal);
}

.info-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-0.05rem);
}

.info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0.04rem;
  height: 100%;
  background: var(--primary-gradient);
}

.card-header {
  display: flex;
  align-items: center;
  margin-bottom: 0.35rem;
}

.card-icon {
  width: 0.56rem;
  height: 0.56rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-light);
  color: var(--primary);
  border-radius: 50%;
  margin-right: 0.2rem;
  flex-shrink: 0;
  font-size: 0.24rem;
  box-shadow: 0 0.04rem 0.12rem var(--primary-opacity-10);
}

.card-title {
  font-size: 0.26rem;
  font-weight: 700;
  color: var(--gray-800);
}

/* 参观时间板块样式 */
.time-content {
  background-color: var(--primary-light);
  border-radius: var(--radius-md);
  padding: 0.3rem;
  text-align: center;
}

.date-display {
  font-size: 0.32rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.12rem;
  line-height: 1.3;
}

.week-display {
  font-size: 0.18rem;
  color: var(--gray-800);
  font-weight: 500;
}

/* 展馆交通板块样式 */
.traffic-list {
  list-style: none;
  space-y: 0.3rem;
}

.traffic-item {
  position: relative;
  padding-bottom: 0.3rem;
  border-bottom: 0.01rem solid var(--gray-200);
}

.traffic-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.traffic-title {
  font-size: 0.2rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.15rem;
  display: flex;
  align-items: center;
}

.traffic-title i {
  margin-right: 0.1rem;
  font-size: 0.22rem;
}

.traffic-details {
  padding-left: 0.32rem;
}

.traffic-option {
  margin-bottom: 0.12rem;
  color: var(--gray-800);
  font-size: 0.16rem;
}

.traffic-option:last-child {
  margin-bottom: 0;
}

.traffic-option strong {
  color: var(--gray-800);
  font-weight: 600;
}

.bus-routes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.08rem;
  margin-top: 0.08rem;
}

.bus-route {
  background-color: var(--primary-light);
  color: var(--primary);
  padding: 0.04rem 0.12rem;
  border-radius: 0.2rem;
  font-size: 0.14rem;
  font-weight: 500;
}

/* 装饰元素 */
.decor-dot {
  position: absolute;
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 50%;
  background-color: var(--primary-opacity-10);
  z-index: 0;
  filter: blur(0.5rem);
}

.dot-1 {
  top: -0.4rem;
  right: -0.4rem;
}

.dot-2 {
  bottom: -0.6rem;
  left: -0.6rem;
}

/* 响应式设计 */
@media (max-width: 1200px) {
  .content-section {
    grid-template-columns: 1fr;
    gap: 0.4rem;
  }
}

@media (max-width: 768px) {
  .audience-center {
    padding: 0.7rem 0;
  }
  
  .page-header {
    margin-bottom: 0.6rem;
  }
  
  .page-title {
    font-size: 0.32rem;
  }
  
  .info-card {
    padding: 0.35rem 0.25rem;
  }
  
  .card-title {
    font-size: 0.22rem;
  }
  
  .date-display {
    font-size: 0.26rem;
  }
  
  .traffic-title {
    font-size: 0.18rem;
  }
  
  .traffic-details {
    padding-left: 0.28rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 0.15rem;
  }
  
  .page-title {
    font-size: 0.26rem;
  }
  
  .page-subtitle {
    font-size: 0.12rem;
    letter-spacing: 0.01rem;
  }
  
  .card-header {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .card-icon {
    margin-bottom: 0.12rem;
  }
  
  .time-content {
    padding: 0.2rem;
  }
  
  .bus-routes {
    gap: 0.06rem;
  }
  
  .bus-route {
    padding: 0.03rem 0.1rem;
    font-size: 0.13rem;
  }
}