@font-face {
  font-family: KokoDisplay;
  src: url('/skin/webfonts/woff2/AlimamaShuHeiTi-Bold.woff2') format('woff2');
  font-display: swap;
}

:root {
  --primary: #7734bd;
  --primary-deep: #542087;
  --coral: #ee496d;
  --coral-deep: #c92f55;
  --mint: #7734bd;
  --ink: #24202a;
  --muted: #6f6877;
  --soft: #f5f6f8;
  --lavender: #f6f3f7;
  --line: #e6e2e9;
  --dark: #201725;
  --white: #ffffff;
  --max-width: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.75;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button {
  border: 0;
  font: inherit;
  cursor: pointer;
}

.container {
  width: min(var(--max-width), calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  height: 76px;
  background: rgba(255, 255, 255, .97);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 3px 18px rgba(36, 32, 42, .04);
}

.nav-wrap {
  display: flex;
  height: 100%;
  align-items: center;
  gap: 20px;
}

.brand {
  display: flex;
  min-width: 178px;
  align-items: center;
  gap: 10px;
}

.brand img,
.footer-brand img {
  width: 43px;
  height: 43px;
  border-radius: 6px;
  object-fit: cover;
}

.brand b,
.brand small {
  display: block;
  letter-spacing: 0;
}

.brand b {
  font-family: KokoDisplay, "Microsoft YaHei", sans-serif;
  font-size: 18px;
  line-height: 1.2;
}

.brand small {
  margin-top: 2px;
  color: #817986;
  font-size: 11px;
  line-height: 1.3;
}

.main-nav {
  flex: 1;
  min-width: 0;
}

.main-nav ul {
  display: flex;
  margin: 0;
  padding: 0;
  align-items: stretch;
  justify-content: center;
  list-style: none;
}

.main-nav > ul > li {
  position: relative;
  display: flex;
  align-items: stretch;
}

.main-nav > ul > li > a {
  position: relative;
  display: flex;
  padding: 0 10px;
  align-items: center;
  color: #58515e;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.main-nav > ul > li > a:hover,
.main-nav > ul > li > a.active {
  color: var(--primary);
}

.main-nav > ul > li > a.active::after {
  position: absolute;
  right: 10px;
  bottom: 13px;
  left: 10px;
  height: 2px;
  background: var(--coral);
  content: "";
}

.nav-sub-toggle {
  display: none;
}

.nav-sub {
  position: absolute;
  top: 66px;
  left: 50%;
  z-index: 35;
  display: block;
  min-width: 176px;
  padding: 8px !important;
  visibility: hidden;
  opacity: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 5px;
  box-shadow: 0 16px 36px rgba(36, 32, 42, .13);
  transform: translate(-50%, 8px);
  transition: opacity .2s, visibility .2s, transform .2s;
}

.main-nav li:hover > .nav-sub,
.main-nav li:focus-within > .nav-sub {
  visibility: visible;
  opacity: 1;
  transform: translate(-50%, 0);
}

.nav-sub li,
.nav-sub a {
  display: block;
}

.nav-sub a {
  padding: 9px 11px;
  color: #625a68;
  font-size: 13px;
  white-space: nowrap;
}

.nav-sub a:hover,
.nav-sub a.active {
  color: var(--primary-deep);
  background: var(--soft);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-cta,
.button {
  display: inline-flex;
  min-height: 42px;
  padding: 10px 18px;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: var(--coral);
  border-radius: 4px;
  font-weight: 700;
  transition: background .2s, transform .2s;
}

.nav-cta {
  min-height: 38px;
  padding: 8px 14px;
  font-size: 13px;
  white-space: nowrap;
}

.nav-cta:hover,
.button:hover {
  color: var(--white);
  background: var(--coral-deep);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 38px;
  height: 38px;
  padding: 7px;
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.nav-overlay {
  display: none;
}

.section {
  padding: 76px 0;
}

.eyebrow {
  margin: 0 0 9px;
  color: var(--coral-deep);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
}

h1,
h2,
h3,
p {
  letter-spacing: 0;
}

.section h2,
.lanmu-section-header h1,
.article h1,
.single-hero h1,
.footer-cta h2 {
  font-family: KokoDisplay, "Microsoft YaHei", sans-serif;
}

.section h2 {
  margin: 0;
  font-size: 32px;
  line-height: 1.35;
}

.section-lead {
  max-width: 650px;
  color: var(--muted);
}

.section-heading {
  display: flex;
  margin-bottom: 28px;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.text-link {
  color: var(--primary-deep);
  font-size: 14px;
  font-weight: 700;
}

.text-link:hover {
  color: var(--coral-deep);
}

.lanmu-section-header {
  padding: 66px 20px 46px;
  color: var(--white);
  background: var(--dark);
  text-align: center;
}

.lanmu-section-header.small {
  padding: 44px 20px 34px;
}

.lanmu-section-header h1 {
  margin: 0;
  font-size: 34px;
  line-height: 1.3;
}

.lanmu-section-header p:not(.eyebrow) {
  max-width: 650px;
  margin: 10px auto 0;
  color: #d7ceda;
}

.breadcrumb {
  display: flex;
  width: min(var(--max-width), calc(100% - 40px));
  margin: 0 auto;
  padding: 13px 0;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  color: #817987;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}

.breadcrumb svg {
  flex: 0 0 auto;
}

.breadcrumb a:hover {
  color: var(--primary);
}

.content-layout {
  padding-top: 42px;
}

.content-tabs {
  display: flex;
  padding: 18px 0;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  border-bottom: 1px solid var(--line);
}

.content-tabs a {
  padding: 7px 12px;
  color: var(--muted);
  background: var(--soft);
  border-radius: 3px;
  font-size: 13px;
}

.content-tabs a:hover,
.content-tabs a.active {
  color: var(--white);
  background: var(--primary);
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 290px;
  gap: 48px;
}

.list-item {
  margin-bottom: 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.list-item > a {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 22px;
}

.list-thumb img {
  width: 210px;
  height: 136px;
  background: var(--soft);
  border-radius: 5px;
  object-fit: cover;
}

.list-fallback {
  display: flex;
  width: 210px;
  height: 136px;
  padding: 18px;
  align-items: flex-end;
  color: var(--white);
  background: var(--dark);
  border-bottom: 4px solid var(--mint);
  border-radius: 5px;
  font-family: KokoDisplay, "Microsoft YaHei", sans-serif;
  font-size: 18px;
}

.list-item h2 {
  margin: 4px 0 7px;
  font-size: 20px;
  line-height: 1.45;
}

.list-item p {
  margin: 5px 0;
  color: var(--muted);
}

.program-meta {
  margin: 0 !important;
  color: #918895 !important;
  font-size: 12px;
}

.sidebar {
  padding-left: 26px;
  border-left: 1px solid var(--line);
}

.sidebar h2 {
  margin: 0 0 14px;
  font-size: 18px;
}

.like-item {
  display: block;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.55;
}

.like-item span {
  display: block;
  margin-top: 4px;
  color: #918895;
  font-size: 11px;
  font-weight: 400;
}

.sidebar-links {
  margin-top: 30px;
}

.sidebar-links a {
  display: block;
  padding: 9px 0;
  color: var(--primary-deep);
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  font-weight: 700;
}

.article header {
  margin-bottom: 28px;
  padding-bottom: 23px;
  border-bottom: 1px solid var(--line);
}

.article h1 {
  margin: 7px 0 12px;
  font-size: 32px;
  line-height: 1.4;
}

.article-lead {
  color: var(--muted);
  font-size: 17px;
}

.article-body {
  color: #3d3741;
  font-size: 16px;
}

.article-body img {
  height: auto;
  margin: 22px auto;
}

.article-body h2,
.article-body h3 {
  margin-top: 30px;
}

.article-nav {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.article-nav ul {
  display: flex;
  margin: 0;
  padding: 0;
  gap: 16px;
  list-style: none;
  justify-content: space-between;
}

.article-nav li {
  flex: 1;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.article-nav li.l {
  text-align: left;
}

.article-nav li.r {
  text-align: right;
}

.article-nav li a {
  color: var(--primary);
  transition: color .2s;
}

.article-nav li a:hover {
  color: var(--primary-deep);
}

.article-nav li span {
  display: block;
  margin-top: 2px;
  color: var(--ink);
  font-size: 13px;
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-question {
  display: flex;
  width: 100%;
  padding: 17px 0;
  align-items: center;
  justify-content: space-between;
  color: var(--ink);
  background: transparent;
  text-align: left;
  font-weight: 700;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  color: var(--muted);
  transition: max-height .25s, padding .25s;
}

.faq-item.active .faq-answer {
  max-height: 320px;
  padding: 0 0 17px;
}

.faq-item.active .faq-question span {
  color: var(--coral);
}

.pagebar {
  margin-top: 34px;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
}

.page-item {
  display: inline-flex;
  min-width: 36px;
  height: 36px;
  padding: 0 10px;
  align-items: center;
  justify-content: center;
  color: #655d6b;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 3px;
  font-size: 12px;
}

.page-item:hover {
  color: var(--primary);
  border-color: var(--primary);
}

.page-num-current {
  color: var(--white);
  background: var(--primary);
  border-color: var(--primary);
  pointer-events: none;
}

.text-secondary {
  padding: 28px;
  color: var(--muted);
  background: var(--soft);
  text-align: center;
}

.search-panel {
  margin-bottom: 28px;
  padding: 24px;
  background: var(--soft);
  border: 1px solid var(--line);
}

.search-panel > label {
  display: block;
  margin-bottom: 8px;
  font-weight: 700;
}

.search-input-row {
  display: flex;
  gap: 8px;
}

.search-input-row input {
  min-width: 0;
  height: 42px;
  padding: 0 13px;
  flex: 1;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 3px;
  font: inherit;
}

.search-categories {
  display: flex;
  margin-top: 14px;
  flex-wrap: wrap;
  gap: 6px;
}

.search-categories a {
  padding: 5px 9px;
  color: var(--muted);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 3px;
  font-size: 12px;
}

.search-categories a:hover,
.search-categories a.active {
  color: var(--white);
  background: var(--primary);
  border-color: var(--primary);
}

.search-result {
  padding: 19px 0;
  border-bottom: 1px solid var(--line);
}

.search-result h2 {
  margin: 4px 0 7px;
  font-family: inherit;
  font-size: 18px;
}

.search-result p:last-child {
  margin: 0;
  color: var(--muted);
}

.xrpagination {
  margin-top: 28px;
}

.xrpagination a,
.xrpagination span {
  display: inline-flex;
  min-width: 34px;
  height: 34px;
  margin: 3px;
  padding: 0 8px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 3px;
  font-size: 12px;
}

.footer-cta {
  color: var(--white);
  background: var(--primary-deep);
}

.footer-cta-inner {
  display: flex;
  min-height: 220px;
  padding: 44px 0;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.footer-cta h2 {
  margin: 0;
  font-size: 31px;
  line-height: 1.3;
}

.footer-cta p:not(.eyebrow) {
  margin: 8px 0 0;
  color: #ded1e5;
}

.footer-cta .eyebrow {
  color: #eadff1;
}

.button-light {
  color: var(--primary-deep);
  background: var(--white);
}

.button-light:hover {
  color: var(--white);
  background: var(--coral);
}

.cta-actions {
  display: flex;
  margin-top: 20px;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.button-outline {
  color: var(--primary-deep);
  background: transparent;
  border: 1px solid #cfc4d4;
}

.button-outline:hover {
  color: var(--primary-deep);
  background: var(--lavender);
  border-color: var(--primary);
}

.download-panel .button-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, .42);
}

.download-panel .button-outline:hover {
  color: var(--primary-deep);
  background: var(--white);
  border-color: var(--white);
}

.site-footer {
  color: #cfc5d2;
  background: var(--dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(4, 1fr);
  gap: 32px;
  padding: 48px 0 36px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--white);
  font-family: KokoDisplay, "Microsoft YaHei", sans-serif;
  font-size: 18px;
}

.footer-about p {
  max-width: 310px;
  color: #a99dab;
  font-size: 13px;
}

.footer-grid h3 {
  margin: 5px 0 12px;
  color: var(--white);
  font-size: 14px;
}

.footer-grid a:not(.footer-brand) {
  display: block;
  margin: 6px 0;
  color: #bcaebe;
  font-size: 12px;
}

.footer-grid a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  padding: 17px 0;
  justify-content: space-between;
  gap: 20px;
  color: #918493;
  border-top: 1px solid #3c3040;
  font-size: 11px;
}

.back-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 25;
  width: 40px;
  height: 40px;
  color: var(--white);
  background: var(--dark);
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s;
}

.back-top.visible {
  opacity: 1;
  pointer-events: auto;
}

.mobile-float-bar,
.mobile-float-popup,
.mobile-float-overlay {
  display: none;
}

.mobile-float-bar {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 997;
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  background: var(--white);
  border-top: 1px solid var(--line);
  box-shadow: 0 -2px 12px rgba(36, 32, 42, .1);
}

.btn-float-experience {
  width: 100%;
  min-height: 46px;
  padding: 11px 18px;
  color: var(--white);
  background: var(--coral);
  border-radius: 23px;
  font-size: 15px;
  font-weight: 700;
}

.mobile-float-popup {
  position: fixed;
  bottom: calc(78px + env(safe-area-inset-bottom));
  left: 50%;
  z-index: 998;
  min-width: 210px;
  padding: 14px 18px;
  flex-direction: column;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 7px;
  box-shadow: 0 18px 42px rgba(36, 32, 42, .2);
  transform: translateX(-50%);
}

.mobile-float-popup a {
  display: block;
  padding: 10px 20px;
  color: var(--primary-deep);
  border: 1px solid var(--primary);
  border-radius: 3px;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}

.mobile-float-popup a:hover {
  color: var(--white);
  background: var(--primary);
}

.mobile-float-overlay {
  position: fixed;
  inset: 0;
  z-index: 996;
  background: rgba(27, 20, 31, .4);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

@media (max-width: 1040px) {
  .brand {
    min-width: 150px;
  }

  .main-nav > ul > li > a {
    padding-right: 7px;
    padding-left: 7px;
    font-size: 12px;
  }

  .footer-grid {
    grid-template-columns: 2fr repeat(2, 1fr);
  }
}

@media (max-width: 820px) {
  body {
    padding-bottom: calc(74px + env(safe-area-inset-bottom));
  }

  .site-header {
    height: 65px;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  .brand b {
    font-size: 16px;
  }

  .brand small,
  .nav-cta {
    display: none;
  }

  .header-actions {
    margin-left: auto;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: 65px;
    right: 0;
    left: 0;
    z-index: 31;
    display: none;
    max-height: calc(100vh - 65px);
    padding: 12px 20px 22px;
    overflow-y: auto;
    background: var(--white);
    border-bottom: 1px solid var(--line);
  }

  .main-nav.open {
    display: block;
  }

  .main-nav ul,
  .main-nav > ul > li {
    display: block;
  }

  .main-nav > ul > li > a {
    display: block;
    padding: 11px 2px;
    border-bottom: 1px solid #efedf1;
    font-size: 14px;
  }

  .main-nav > ul > li > a.active::after {
    display: none;
  }

  .nav-sub-toggle {
    position: absolute;
    top: 4px;
    right: 0;
    display: block;
    width: 38px;
    height: 38px;
    color: var(--muted);
    background: transparent;
    font-size: 20px;
  }

  .has-children.sub-open > .nav-sub-toggle {
    color: var(--coral);
    transform: rotate(45deg);
  }

  .nav-sub {
    position: static;
    display: none !important;
    min-width: 0;
    padding: 5px 0 8px 15px !important;
    visibility: visible;
    opacity: 1;
    border: 0;
    border-left: 2px solid var(--line);
    border-radius: 0;
    box-shadow: none;
    transform: none;
  }

  .has-children.sub-open > .nav-sub {
    display: block !important;
  }

  .nav-sub a {
    padding: 8px 2px;
  }

  .nav-overlay.active {
    position: fixed;
    inset: 65px 0 0;
    z-index: 29;
    display: block;
    background: rgba(27, 20, 31, .4);
  }

  .section {
    padding: 56px 0;
  }

  .section h2 {
    font-size: 26px;
  }

  .section-heading {
    align-items: flex-start;
  }

  .lanmu-section-header {
    padding: 44px 20px 34px;
  }

  .lanmu-section-header h1 {
    font-size: 27px;
  }

  .two-col {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .sidebar {
    padding: 28px 0 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .footer-cta-inner {
    min-height: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-about {
    grid-column: 1 / -1;
  }

  .mobile-float-bar {
    display: block;
  }

  .mobile-float-popup.active {
    display: flex;
  }

  .mobile-float-overlay.active {
    display: block;
  }

  .back-top {
    bottom: 96px;
  }
}

@media (max-width: 560px) {
  .container,
  .breadcrumb {
    width: calc(100% - 28px);
  }

  .section-heading,
  .footer-cta-inner,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-cta h2 {
    font-size: 25px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-about {
    grid-column: auto;
  }

  .list-item > a {
    grid-template-columns: 1fr;
  }

  .list-thumb img {
    width: 100%;
    height: 190px;
  }

  .list-fallback {
    width: 100%;
    height: 190px;
  }

  .article h1 {
    font-size: 25px;
  }

  .search-input-row {
    align-items: stretch;
    flex-direction: column;
  }

  .pagination {
    gap: 4px;
  }

  .page-item {
    min-width: 30px;
    height: 30px;
    padding: 0 6px;
    font-size: 11px;
  }
}

/* KOKO daily broadcast identity */
.daily-signal {
  position: sticky;
  top: 0;
  z-index: 31;
  min-height: 32px;
  color: #ffffff;
  background: var(--primary);
  font-size: 12px;
}

.daily-signal-inner {
  display: flex;
  min-height: 32px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.daily-signal p,
.daily-signal-inner > div {
  display: flex;
  margin: 0;
  align-items: center;
  gap: 9px;
}

.daily-signal p > span {
  display: inline-block;
  background: var(--coral);
}

.daily-signal p b {
  color: #ffffff;
  font-size: 11px;
}

.daily-signal time {
  color: #dfc9ec;
}

.daily-signal a {
  padding-left: 10px;
  color: #ffffff;
  border-left: 1px solid rgba(255, 255, 255, .35);
}

.site-header {
  top: 32px;
  height: 72px;
  box-shadow: none;
}

.site-header::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 1px;
  background: var(--line);
  content: "";
}

.nav-wrap {
  gap: 26px;
}

.brand {
  min-width: 176px;
  gap: 11px;
}

.brand img {
  width: 48px;
  height: 48px;
  border-radius: 4px;
}

.brand b {
  color: var(--primary-deep);
  font-size: 19px;
}

.brand small {
  color: var(--coral-deep);
  font-size: 11px;
  font-weight: 700;
}

.main-nav > ul {
  justify-content: flex-start;
  gap: 2px;
}

.main-nav > ul > li > a {
  padding: 0 11px;
  font-size: 15px;
}

.main-nav > ul > li > a.active::after {
  right: 11px;
  bottom: 6px;
  left: 11px;
  height: 3px;
  background: var(--coral);
}

.nav-search {
  padding: 6px 9px;
  color: var(--muted);
  border-bottom: 1px solid #b9afbD;
  font-size: 12px;
}

.nav-search:hover {
  color: var(--primary);
  border-color: var(--primary);
}

.nav-cta {
  min-height: 40px;
  padding: 8px 15px;
  background: var(--primary);
  border-radius: 3px;
}

.nav-cta span {
  color: #ffffff;
  font-size: 11px;
}

.nav-cta:hover {
  background: var(--primary-deep);
}

.nav-sub {
  top: 63px;
  border-top: 3px solid var(--coral);
}

.site-footer {
  color: #cfc5d2;
  background: #201725;
}

.footer-air {
  color: #ffffff;
  background: #2b1c30;
  border-top: 8px solid var(--coral);
  border-bottom: 1px solid #49384e;
}

.footer-air-grid {
  display: grid;
  min-height: 340px;
  padding: 62px 0;
  grid-template-columns: 1.1fr .9fr 150px;
  align-items: center;
  gap: 55px;
}

.footer-signoff .eyebrow {
  color: #ff8da5;
}

.footer-signoff h2 {
  margin: 0;
  font-family: KokoDisplay, "Microsoft YaHei", sans-serif;
  font-size: 35px;
  line-height: 1.3;
}

.footer-signoff h2 em {
  color: #ff7d9a;
  font-style: normal;
}

.footer-signoff > p:not(.eyebrow) {
  margin: 12px 0 0;
  color: #b8aabd;
  font-size: 13px;
}

.footer-actions {
  display: flex;
  margin-top: 24px;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-live {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
}

.footer-live > span {
  display: inline-block;
  background: var(--coral);
}

.footer-dial {
  border-top: 1px solid #5a475f;
}

.dial-label {
  display: inline-block;
  padding: 5px 9px;
  color: #201725;
  background: var(--coral);
  font-size: 11px;
  font-weight: 800;
}

.footer-dial a {
  display: grid;
  padding: 13px 0;
  grid-template-columns: 28px 1fr;
  column-gap: 8px;
  border-bottom: 1px solid #5a475f;
}

.footer-dial a > b {
  grid-row: 1 / 3;
  color: #ff7d9a;
  font-size: 11px;
}

.footer-dial strong {
  font-size: 13px;
}

.footer-dial a > span {
  color: #a89aab;
  font-size: 11px;
}

.footer-dial a:hover strong {
  color: #ff8da5;
}

.footer-qr {
  align-self: end;
  padding: 10px;
  color: #201725;
  background: #ffffff;
}

.footer-qr img {
  width: 130px;
  height: 130px;
  object-fit: cover;
}

.footer-qr div {
  padding: 9px 2px 2px;
}

.footer-qr b,
.footer-qr span {
  display: block;
}

.footer-qr b {
  color: var(--primary-deep);
  font-size: 11px;
}

.footer-qr span {
  margin-top: 2px;
  color: var(--muted);
  font-size: 11px;
}

.footer-directory {
  display: grid;
  padding: 46px 0 36px;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 70px;
}

.footer-brand {
  align-self: start;
}

.footer-brand img {
  width: 52px;
  height: 52px;
  border-radius: 4px;
}

.footer-brand span,
.footer-brand b,
.footer-brand small {
  display: block;
}

.footer-brand b {
  font-size: 18px;
}

.footer-brand small {
  color: #9f91a3;
  font-family: "Microsoft YaHei", sans-serif;
  font-size: 11px;
  font-weight: 400;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.footer-links div > b {
  display: block;
  margin-bottom: 11px;
  color: #ffffff;
  font-size: 13px;
}

.footer-links a {
  display: block;
  margin: 6px 0;
  color: #a99dab;
  font-size: 12px;
}

.footer-links a:hover {
  color: #ff8da5;
}

.footer-bottom {
  border-top-color: #49384e;
}

.footer-bottom span:last-child {
  display: flex;
  align-items: center;
  gap: 7px;
}

.footer-bottom i {
  display: inline-block;
  background: var(--coral);
}

@media (max-width: 1040px) {
  .nav-wrap {
    gap: 15px;
  }

  .brand {
    min-width: 145px;
  }

  .brand img {
    width: 43px;
    height: 43px;
  }

  .main-nav > ul > li > a {
    padding-right: 7px;
    padding-left: 7px;
  }

  .footer-air-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-qr {
    display: none;
  }
}

@media (max-width: 820px) {
  .daily-signal-inner > div {
    display: none;
  }

  .daily-signal-inner {
    justify-content: center;
  }

  .site-header {
    height: 65px;
  }

  .brand img {
    width: 40px;
    height: 40px;
  }

  .nav-search,
  .nav-cta {
    display: none;
  }

  .main-nav {
    top: 97px;
    max-height: calc(100vh - 97px);
    border-top: 0;
    border-bottom: 3px solid var(--coral);
  }

  .nav-overlay.active {
    inset: 97px 0 0;
  }

  .footer-air-grid {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .footer-dial {
    max-width: 580px;
  }

  .footer-directory {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 560px) {
  .daily-signal p {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .daily-signal p b {
    display: none;
  }

  .footer-air-grid {
    padding: 48px 0;
  }

  .footer-signoff h2 {
    font-size: 29px;
  }

  .footer-links {
    grid-template-columns: 1fr 1fr;
    gap: 25px 18px;
  }

  .footer-bottom {
    align-items: flex-start;
  }
}
