/* ===== 首页专属样式 ===== */
.page-home {
  --home-brand-rail-width: 220px;
  --home-hero-min-height: 520px;
  --home-frame-radius: 48px 48px 16px 16px;
  --home-frame-border-color: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  --home-sun-size: 120px;
  --home-card-transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --home-grid-gap: 1.25rem;
}

/* ---------- 布局 ---------- */
.page-home .home-layout {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
}

/* ---------- 品牌导轨 ---------- */
.page-home .brand-rail {
  display: none;
}

@media (min-width: 1024px) {
  .page-home .home-layout {
    flex-direction: row;
    align-items: flex-start;
  }
  .page-home .brand-rail {
    display: block;
    flex: 0 0 var(--home-brand-rail-width);
    position: sticky;
    top: calc(var(--header-height) + 1.5rem);
    align-self: flex-start;
    padding: 2rem 1.5rem 2rem 0;
    min-height: 300px;
  }
  .page-home .brand-rail-inner {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }
  .page-home .brand-logo {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    line-height: 1.2;
    color: var(--color-primary);
    letter-spacing: -0.01em;
    text-transform: uppercase;
  }
  .page-home .brand-tagline {
    font-family: var(--font-body);
    font-size: var(--small);
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.4;
    margin: 0;
  }
  .page-home .brand-rail-divider {
    width: 2.5rem;
    height: 3px;
    background: var(--home-frame-border-color);
    border-radius: 4px;
    margin: 0.75rem 0 0.25rem;
  }
  .page-home .brand-rail-meta {
    display: flex;
    gap: 0.5rem;
  }
  .page-home .brand-rail-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--color-primary-light);
    background: rgba(255, 107, 53, 0.12);
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    letter-spacing: 0.02em;
    border: 1px solid rgba(255, 107, 53, 0.2);
  }
}

/* ---------- 主要内容区 ---------- */
.page-home .home-content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  padding: 0 1rem 3rem;
}

@media (min-width: 768px) {
  .page-home .home-content {
    padding: 0 1.5rem 4rem;
    gap: 3.5rem;
  }
}

@media (min-width: 1024px) {
  .page-home .home-content {
    padding: 0 0 4rem 2rem;
    gap: 4rem;
  }
}

/* ---------- 面包屑 ---------- */
.page-home .breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.75rem 0 0;
  font-size: var(--small);
  font-family: var(--font-body);
  color: rgba(255, 255, 255, 0.45);
}
.page-home .breadcrumb-item.current {
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
}

/* ---------- 通用标题 ---------- */
.page-home .section-heading {
  font-family: var(--font-heading);
  font-size: var(--h2);
  line-height: 1.15;
  color: var(--color-text);
  margin: 0 0 0.35rem;
}
.page-home .section-sub {
  font-family: var(--font-body);
  font-size: var(--body);
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 1.75rem;
  line-height: 1.5;
}
.page-home .section-label {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  flex-wrap: wrap;
}

/* ---------- 框景首屏 ---------- */
.page-home .hero-frame {
  position: relative;
  min-height: var(--home-hero-min-height);
  border-radius: var(--home-frame-radius);
  overflow: hidden;
  background: var(--color-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid transparent;
  background-clip: padding-box;
  box-shadow: var(--shadow), inset 0 0 0 3px transparent;
}

/* 渐变边框模拟护目镜框架 */
.page-home .hero-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--home-frame-radius);
  padding: 5px;
  background: var(--home-frame-border-color);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 3;
}

/* 护目镜顶部加厚弧线 */
.page-home .hero-frame::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  height: 28px;
  border-radius: 52px 52px 0 0;
  background: linear-gradient(135deg, rgba(255,107,53,0.25), rgba(30,136,229,0.15));
  filter: blur(4px);
  z-index: 2;
  pointer-events: none;
}

.page-home .hero-frame-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.page-home .hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}
.page-home .hero-frame-glass {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg, rgba(44,44,44,0.55) 0%, rgba(44,44,44,0.25) 100%);
  backdrop-filter: blur(2px);
  pointer-events: none;
}
.page-home .hero-frame-content {
  position: relative;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2.5rem 1.5rem;
  max-width: 640px;
  width: 100%;
}

/* 日出光晕动画 */
.page-home .sun-glow {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255,107,53,0.35) 0%, rgba(255,107,53,0.08) 40%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
  animation: sunRise 4s ease-out forwards;
  pointer-events: none;
  opacity: 0;
}
.page-home .sun-core {
  position: absolute;
  bottom: 8%;
  left: 50%;
  transform: translateX(-50%);
  width: var(--home-sun-size);
  height: var(--home-sun-size);
  background: radial-gradient(circle, #FF8A65 0%, #FF6B35 40%, rgba(255,107,53,0.3) 70%, transparent 100%);
  border-radius: 50%;
  z-index: 1;
  animation: sunCoreRise 4s ease-out forwards;
  pointer-events: none;
  opacity: 0;
  box-shadow: 0 0 60px rgba(255,107,53,0.3);
}

@keyframes sunRise {
  0% { opacity: 0; bottom: -60px; }
  40% { opacity: 1; }
  100% { opacity: 0.85; bottom: 10%; }
}
@keyframes sunCoreRise {
  0% { opacity: 0; bottom: -40px; transform: translateX(-50%) scale(0.6); }
  50% { opacity: 1; transform: translateX(-50%) scale(1.05); }
  100% { opacity: 0.9; bottom: 12%; transform: translateX(-50%) scale(1); }
}

@media (min-width: 768px) {
  .page-home .hero-frame {
    --home-hero-min-height: 600px;
    --home-frame-radius: 56px 56px 20px 20px;
  }
  .page-home .hero-frame-content {
    padding: 3rem 3rem;
    align-items: flex-start;
    text-align: left;
  }
  .page-home .sun-glow {
    width: 420px;
    height: 420px;
  }
  .page-home .sun-core {
    --home-sun-size: 150px;
  }
}

.page-home .hero-headline {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  line-height: 1.1;
  color: var(--color-text);
  margin: 0 0 0.4rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
  letter-spacing: -0.02em;
}
.page-home .hero-subline {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--color-primary-light);
  margin: 0 0 0.75rem;
  letter-spacing: 0.06em;
  text-shadow: 0 1px 12px rgba(0,0,0,0.4);
}
.page-home .hero-desc {
  font-family: var(--font-body);
  font-size: var(--body);
  color: rgba(255,255,255,0.85);
  margin: 0 0 1.75rem;
  line-height: 1.5;
  text-shadow: 0 1px 8px rgba(0,0,0,0.3);
}

@media (min-width: 768px) {
  .page-home .hero-headline {
    font-size: 3rem;
  }
  .page-home .hero-subline {
    font-size: 1.35rem;
  }
}
@media (min-width: 1024px) {
  .page-home .hero-headline {
    font-size: 3.4rem;
  }
}

.page-home .hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  .page-home .hero-cta-group {
    justify-content: flex-start;
  }
}

.page-home .hero-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: #fff;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  border: none;
  border-radius: 60px;
  cursor: pointer;
  text-decoration: none;
  transition: var(--home-card-transition);
  box-shadow: 0 4px 20px rgba(255,107,53,0.3);
  letter-spacing: 0.02em;
}
.page-home .hero-btn:hover {
  transform: scale(1.06);
  box-shadow: 0 6px 32px rgba(255,107,53,0.45);
  background: linear-gradient(135deg, #FF7A45, #FF8A65);
}
.page-home .hero-btn .btn-arrow {
  font-size: 1.3rem;
  transition: transform 0.2s;
}
.page-home .hero-btn:hover .btn-arrow {
  transform: translateX(4px);
}

.page-home .hero-btn-secondary {
  display: inline-flex;
  align-items: center;
  padding: 0.7rem 1.6rem;
  font-family: var(--font-body);
  font-size: var(--small);
  font-weight: 600;
  color: var(--color-secondary-light);
  background: rgba(30,136,229,0.12);
  border: 1px solid rgba(30,136,229,0.25);
  border-radius: 60px;
  text-decoration: none;
  transition: var(--home-card-transition);
}
.page-home .hero-btn-secondary:hover {
  background: rgba(30,136,229,0.22);
  border-color: rgba(30,136,229,0.4);
  transform: scale(1.03);
}

/* 四角刻度 */
.page-home .frame-corner {
  position: absolute;
  width: 28px;
  height: 28px;
  z-index: 5;
  pointer-events: none;
  opacity: 0.6;
}
.page-home .frame-corner::before,
.page-home .frame-corner::after {
  content: '';
  position: absolute;
  background: var(--color-primary-light);
}
.page-home .frame-corner--tl { top: 14px; left: 14px; }
.page-home .frame-corner--tl::before { top: 0; left: 0; width: 18px; height: 2px; }
.page-home .frame-corner--tl::after { top: 0; left: 0; width: 2px; height: 18px; }
.page-home .frame-corner--tr { top: 14px; right: 14px; }
.page-home .frame-corner--tr::before { top: 0; right: 0; width: 18px; height: 2px; }
.page-home .frame-corner--tr::after { top: 0; right: 0; width: 2px; height: 18px; }
.page-home .frame-corner--bl { bottom: 14px; left: 14px; }
.page-home .frame-corner--bl::before { bottom: 0; left: 0; width: 18px; height: 2px; }
.page-home .frame-corner--bl::after { bottom: 0; left: 0; width: 2px; height: 18px; }
.page-home .frame-corner--br { bottom: 14px; right: 14px; }
.page-home .frame-corner--br::before { bottom: 0; right: 0; width: 18px; height: 2px; }
.page-home .frame-corner--br::after { bottom: 0; right: 0; width: 2px; height: 18px; }

@media (min-width: 768px) {
  .page-home .frame-corner { width: 36px; height: 36px; }
  .page-home .frame-corner--tl { top: 20px; left: 20px; }
  .page-home .frame-corner--tr { top: 20px; right: 20px; }
  .page-home .frame-corner--bl { bottom: 20px; left: 20px; }
  .page-home .frame-corner--br { bottom: 20px; right: 20px; }
  .page-home .frame-corner--tl::before,
  .page-home .frame-corner--tr::before,
  .page-home .frame-corner--bl::before,
  .page-home .frame-corner--br::before { width: 24px; }
  .page-home .frame-corner--tl::after,
  .page-home .frame-corner--tr::after,
  .page-home .frame-corner--bl::after,
  .page-home .frame-corner--br::after { height: 24px; }
}

/* ---------- 晨练集锦入口 ---------- */
.page-home .highlight-entry {
  display: flex;
  flex-direction: column;
}
.page-home .entry-card {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 1.5rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  backdrop-filter: blur(6px);
  transition: var(--home-card-transition);
}
.page-home .entry-card:hover {
  box-shadow: 0 6px 28px rgba(255,107,53,0.08);
  border-color: rgba(255,107,53,0.15);
}

@media (min-width: 768px) {
  .page-home .entry-card {
    flex-direction: row;
    align-items: center;
    padding: 2rem;
  }
}

.page-home .entry-card-visual {
  flex-shrink: 0;
  width: 100%;
  max-width: 360px;
  border-radius: 10px;
  overflow: hidden;
}
.page-home .entry-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 3/2;
  border-radius: 10px;
}

@media (min-width: 768px) {
  .page-home .entry-card-visual {
    max-width: 280px;
  }
}
@media (min-width: 1024px) {
  .page-home .entry-card-visual {
    max-width: 320px;
  }
}

.page-home .entry-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.page-home .entry-desc {
  font-family: var(--font-body);
  font-size: var(--body);
  color: rgba(255,255,255,0.85);
  line-height: 1.55;
  margin: 0;
}
.page-home .entry-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.page-home .entry-features li {
  font-family: var(--font-body);
  font-size: var(--small);
  color: rgba(255,255,255,0.7);
  padding-left: 1.2rem;
  position: relative;
  line-height: 1.4;
}
.page-home .entry-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-primary);
  opacity: 0.7;
}

.page-home .entry-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  align-self: flex-start;
  padding: 0.75rem 1.75rem;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: #fff;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  border: none;
  border-radius: 60px;
  cursor: pointer;
  text-decoration: none;
  transition: var(--home-card-transition);
  box-shadow: 0 4px 16px rgba(255,107,53,0.25);
  letter-spacing: 0.01em;
}
.page-home .entry-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 28px rgba(255,107,53,0.35);
}
.page-home .entry-btn .btn-arrow {
  font-size: 1.2rem;
  transition: transform 0.2s;
}
.page-home .entry-btn:hover .btn-arrow {
  transform: translateX(4px);
}

/* ---------- 发现与帮助 ---------- */
.page-home .help-section {
  display: flex;
  flex-direction: column;
}
.page-home .help-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--home-grid-gap);
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .page-home .help-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.page-home .help-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.5rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  backdrop-filter: blur(6px);
  transition: var(--home-card-transition);
}
.page-home .help-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  border-color: rgba(255,255,255,0.15);
}

.page-home .help-card-icon {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 0.25rem;
}
.page-home .help-card-icon svg {
  display: block;
}

.page-home .help-card-title {
  font-family: var(--font-heading);
  font-size: var(--h3);
  color: var(--color-text);
  margin: 0;
  line-height: 1.2;
}
.page-home .help-card-desc {
  font-family: var(--font-body);
  font-size: var(--body);
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
  margin: 0;
  flex: 1;
}
.page-home .help-card-link {
  font-family: var(--font-body);
  font-size: var(--small);
  font-weight: 600;
  color: var(--color-primary-light);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 0.25rem;
  transition: color 0.2s;
}
.page-home .help-card-link:hover {
  color: var(--color-primary);
}
.page-home .help-card-link span {
  font-size: 1.1rem;
  transition: transform 0.2s;
}
.page-home .help-card-link:hover span {
  transform: translateX(3px);
}

/* 异常提示小卡片 */
.page-home .help-tip {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: rgba(255,107,53,0.06);
  border: 1px solid rgba(255,107,53,0.12);
  border-radius: var(--radius);
  backdrop-filter: blur(4px);
}
.page-home .help-tip-visual {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
}
.page-home .help-tip-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.page-home .help-tip-body {
  flex: 1;
}
.page-home .help-tip-text {
  font-family: var(--font-body);
  font-size: var(--small);
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
  margin: 0;
}
.page-home .help-tip-text strong {
  color: var(--color-primary-light);
  font-weight: 600;
}

@media (min-width: 768px) {
  .page-home .help-tip {
    padding: 1.25rem 1.75rem;
  }
  .page-home .help-tip-visual {
    width: 100px;
    height: 100px;
  }
}

/* ---------- 赛程栏预览 ---------- */
.page-home .schedule-preview {
  display: flex;
  flex-direction: column;
}
.page-home .schedule-header {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem 1rem;
  margin-bottom: 1rem;
}
.page-home .schedule-header .section-heading {
  margin-bottom: 0;
}
.page-home .schedule-header-link {
  font-family: var(--font-body);
  font-size: var(--small);
  font-weight: 600;
  color: var(--color-secondary-light);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  transition: color 0.2s;
}
.page-home .schedule-header-link:hover {
  color: var(--color-secondary);
}
.page-home .schedule-header-link span {
  font-size: 1.1rem;
  transition: transform 0.2s;
}
.page-home .schedule-header-link:hover span {
  transform: translateX(3px);
}

/* 水平滑动区域 */
.page-home .schedule-scroll {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 0.75rem;
  margin: 0 -1rem;
  padding-left: 1rem;
  padding-right: 1rem;
  scrollbar-width: thin;
  scrollbar-color: var(--color-primary) rgba(255,255,255,0.08);
}
.page-home .schedule-scroll::-webkit-scrollbar {
  height: 6px;
}
.page-home .schedule-scroll::-webkit-scrollbar-track {
  background: rgba(255,255,255,0.06);
  border-radius: 4px;
}
.page-home .schedule-scroll::-webkit-scrollbar-thumb {
  background: var(--color-primary);
  border-radius: 4px;
}

@media (min-width: 768px) {
  .page-home .schedule-scroll {
    margin: 0;
    padding-left: 0;
    padding-right: 0;
  }
}

.page-home .schedule-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  min-width: 100%;
}

.page-home .schedule-card {
  flex: 0 0 280px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  backdrop-filter: blur(6px);
  transition: var(--home-card-transition);
}
.page-home .schedule-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.2);
  border-color: rgba(255,255,255,0.12);
}

.page-home .schedule-card-img {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.page-home .schedule-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.page-home .schedule-card:hover .schedule-img {
  transform: scale(1.04);
}

.page-home .schedule-card-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  flex-wrap: wrap;
}
.page-home .schedule-card-meta {
  font-family: var(--font-body);
  font-size: var(--small);
  color: rgba(255,255,255,0.65);
  line-height: 1.3;
}

.page-home .schedule-footer {
  text-align: center;
  padding: 0.75rem 0 0;
}
.page-home .schedule-footer-text {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.03em;
}

@media (min-width: 768px) {
  .page-home .schedule-card {
    flex: 0 0 320px;
  }
  .page-home .schedule-footer-text {
    font-size: var(--small);
  }
}

/* ---------- 响应式调整 ---------- */
@media (max-width: 639px) {
  .page-home .home-content {
    gap: 2rem;
  }
  .page-home .section-heading {
    font-size: 1.6rem;
  }
  .page-home .hero-headline {
    font-size: 1.8rem;
  }
  .page-home .hero-btn {
    padding: 0.7rem 1.5rem;
    font-size: 0.95rem;
  }
  .page-home .entry-card {
    padding: 1rem;
  }
  .page-home .help-card {
    padding: 1.2rem;
  }
  .page-home .schedule-card {
    flex: 0 0 240px;
  }
}

/* ---------- 打印样式 ---------- */
@media print {
  .page-home .hero-frame::before,
  .page-home .hero-frame::after,
  .page-home .frame-corner,
  .page-home .sun-glow,
  .page-home .sun-core {
    display: none;
  }
  .page-home .hero-frame {
    border: 2px solid #aaa;
    min-height: auto;
  }
  .page-home .hero-frame-glass {
    background: rgba(255,255,255,0.1);
    backdrop-filter: none;
  }
  .page-home .brand-rail {
    display: block;
    position: static;
    border-right: 1px solid #ccc;
    padding-right: 1rem;
  }
  .page-home .home-layout {
    flex-direction: row;
  }
  .page-home .hero-btn,
  .page-home .entry-btn,
  .page-home .hero-btn-secondary,
  .page-home .help-card-link,
  .page-home .schedule-header-link {
    color: #000 !important;
    background: none !important;
    border: 1px solid #000 !important;
    box-shadow: none !important;
  }
  .page-home .schedule-scroll {
    overflow: visible;
  }
  .page-home .schedule-track {
    width: 100%;
    flex-wrap: wrap;
  }
  .page-home .schedule-card {
    flex: 1 1 45%;
  }
  .page-home .help-tip {
    border: 1px solid #aaa;
  }
}
