/* roulang page: index */
/* ===== 设计变量 ===== */
:root {
  --brand: #F0295A;
  --brand-orange: #FF7A45;
  --violet: #7C3AED;
  --brand-grad: linear-gradient(120deg, #F0295A, #FF7A45 55%, #7C3AED);
  --bg-canvas: #F7F6FA;
  --card-bg: #FFFFFF;
  --dark: #1B1424;
  --text-main: #201A2B;
  --text-sub: #6B6478;
  --line: rgba(24, 16, 37, 0.08);
  --radius: 18px;
  --radius-lg: 24px;
  --radius-pill: 999px;
  --shadow-default: 0 1px 2px rgba(27, 12, 40, 0.04), 0 12px 32px -20px rgba(27, 12, 40, 0.22);
  --shadow-hover: 0 8px 24px -10px rgba(240, 41, 90, 0.28);
  --shadow-btn: 0 12px 24px -12px rgba(240, 41, 90, 0.55);
  --spacing-section: 80px;
}

/* ===== Reset & Base ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-size: 16px;
  line-height: 1.75;
  font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans CJK SC", sans-serif;
  color: var(--text-main);
  background: var(--bg-canvas);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: var(--brand);
  text-decoration: none;
  transition: color 0.25s ease;
}
a:hover {
  color: var(--brand-orange);
}
button,
input,
select,
textarea {
  font-family: inherit;
  line-height: inherit;
}
ul,
ol {
  padding: 0;
  margin: 0;
  list-style: none;
}
.grid-container {
  max-width: 76rem;
}
.sec-space {
  padding: 80px 0;
}

/* ===== 通用容器与标题层级 ===== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.eyebrow {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  background: rgba(240, 41, 90, 0.1);
  color: var(--brand);
  margin-bottom: 12px;
}
.section-header {
  max-width: 820px;
  margin-bottom: 40px;
}
.section-header h2,
.section-header h3 {
  font-size: clamp(1.6rem, 3.2vw, 2.2rem);
  line-height: 1.3;
  margin: 0 0 14px;
  color: var(--text-main);
}
.section-header p {
  font-size: 0.95rem;
  color: var(--text-sub);
  max-width: 720px;
}
.text-gradient {
  color: var(--brand);
  background: linear-gradient(120deg, #F0295A 0%, #FF7A45 45%, #7C3AED 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ===== 导航 ===== */
.site-nav {
  top: 0;
  left: 0;
  right: 0;
  z-index: 80;
  background: rgba(20, 13, 32, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 8px 20px;
  gap: 12px;
  max-width: 1200px;
  margin: auto;
}
.brand-logo {
  font-size: 1.25rem;
  font-weight: 800;
  white-space: nowrap;
  color: #FFFFFF;
}
.brand-logo em {
  font-style: normal;
  color: #fff;
  background: var(--brand-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.brand-logo small {
  font-size: 0.8rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.65);
  margin-left: 4px;
}
.nav-center {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}
.nav-link {
  display: inline-block;
  padding: 8px 14px;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  border-radius: var(--radius-pill);
  transition: all 0.2s ease;
}
.nav-link:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}
.nav-link[aria-current="page"] {
  color: #fff;
  background: var(--brand);
}
.nav-extra {
  display: flex;
  align-items: center;
  gap: 10px;
}
.lang-pill {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.06);
  padding: 3px;
}
.lang-pill a {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1;
  padding: 6px 11px;
  border-radius: var(--radius-pill);
}
.lang-pill a.active {
  background: #FFF;
  color: #F0295A;
  font-weight: 700;
}
.btn-gradient {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--brand-grad);
  border: none;
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: var(--radius-pill);
  padding: 12px 22px;
  min-height: 44px;
  cursor: pointer;
  box-shadow: var(--shadow-btn);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}
.btn-gradient:hover {
  color: #fff;
  filter: brightness(1.05);
  transform: translateY(-2px);
}
.btn-gradient:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
}
.btn-gradient:active {
  transform: translateY(1px);
  box-shadow: none;
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: #fff;
  background: transparent;
  border-radius: var(--radius-pill);
  padding: 12px 22px;
  min-height: 44px;
  font-weight: 600;
  transition: all 0.2s ease;
}
.btn-outline:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px;
  height: 46px;
  min-height: 44px;
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  cursor: pointer;
}
.nav-toggle span {
  width: 22px;
  height: 2px;
  display: block;
  background: #fff;
  border-radius: 2px;
}
.mobile-menu {
  display: none;
}

/* ===== Hero 主视觉 ===== */
.hero-section {
  position: relative;
  background: var(--dark);
  padding: 90px 0 80px;
  color: #fff;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('/assets/images/backpic/back-1.jpg');
  background-size: cover;
  background-position: center 30%;
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(20, 10, 30, 0.95) 0%, rgba(27, 10, 34, 0.75) 45%, rgba(60, 20, 70, 0.4) 100%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: clamp(24px, 5vw, 70px);
}
.hero-copy {
  flex: 0 1 54%;
}
.hero-copy .eyebrow {
  background: rgba(255, 255, 255, 0.12);
  color: #ffdae4;
}
.hero-copy h1 {
  font-size: clamp(2rem, 4.6vw, 3.5rem);
  line-height: 1.25;
  font-weight: 800;
  margin: 6px 0 16px;
  letter-spacing: -0.01em;
}
.hero-copy .hero-desc {
  font-size: 1.05rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.9);
  max-width: 620px;
  margin-bottom: 18px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 22px 0 28px;
}
.hero-actions .btn-gradient {
  font-size: 1rem;
  padding: 13px 26px;
}
.hero-actions .btn-outline {
  font-size: 1rem;
}
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(4px);
}
.hero-stat {
  padding: 18px 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}
.hero-stat:last-child {
  border-right: none;
}
.hero-stat strong {
  display: block;
  font-size: 1.65rem;
  font-weight: 800;
  background: linear-gradient(120deg, #ffffff, #ffb5c5);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-stat span {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.7);
}
.hero-media {
  flex: 1 1 42%;
  position: relative;
}
.hero-media-frame {
  transform: rotate(2deg) scale(0.98);
  aspect-ratio: 5 / 7;
  max-height: 560px;
  width: 100%;
  object-fit: cover;
  border-radius: 30px;
  box-shadow: 0 25px 50px -14px rgba(0, 0, 0, 0.55);
  background: linear-gradient(140deg, #3c2a4d, #2a1735);
}
.hero-media-shine {
  position: absolute;
  inset: -12px -12px auto auto;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 122, 69, 0.55) 0%, transparent 70%);
  z-index: -1;
}
.hero-media::after {
  content: "独家画面示意";
  position: absolute;
  left: 16px;
  bottom: 16px;
  background: rgba(0,0,0,0.55);
  color: rgba(255,255,255,0.72);
  font-size: 0.75rem;
  padding: 5px 12px;
  border-radius: 999px;
  backdrop-filter: blur(4px);
}

/* ===== 通用卡片组件 ===== */
.base-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow-default);
  border: 1px solid rgba(0,0,0,0.02);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.base-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(240, 41, 90, 0.25);
}
.card-padding {
  padding: 24px;
}
.small-label {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--brand);
  background: rgba(240, 41, 90, 0.08);
  border-radius: 999px;
  display: inline-block;
  padding: 5px 12px;
}

/* ===== 片库轨道 ===== */
#library-rail {
  background: var(--bg-canvas);
  padding: 70px 0;
}
.rail-wrap {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding: 6px 4px 20px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}
.rail-item {
  flex: 0 0 250px;
  max-width: 250px;
  scroll-snap-align: start;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.04);
  box-shadow: var(--shadow-default);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.rail-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.rail-media {
  aspect-ratio: 3 / 4;
  background: linear-gradient(135deg, #e5dfeb, #cbb9d6);
}
.rail-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.rail-info {
  padding: 14px 16px 18px;
}
.rail-info h3 {
  font-size: 1.05rem;
  margin: 0 0 6px;
}
.rail-info p {
  font-size: 0.85rem;
  color: var(--text-sub);
  line-height: 1.55;
  margin: 0;
}

/* ===== 热播推荐 / 成功案例 ===== */
#hot-picks {
  background: #f0edf4;
  padding: 70px 0;
}
.pick-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.pick-card {
  background: #fff;
  border-radius: 20px;
  border: 1px solid rgba(0,0,0,0.03);
  box-shadow: var(--shadow-default);
  padding: 24px;
  transition: all 0.3s ease;
}
.pick-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.pick-card.big-card {
  grid-column: span 1;
  background: var(--dark);
  color: #fff;
  grid-row: span 2;
  display: flex;
  flex-direction: column;
}
.pick-cover {
  aspect-ratio: 16 / 10;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 18px;
  background: #e7dfec;
}
.pick-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pick-card h3 {
  font-size: 1.15rem;
  margin-bottom: 6px;
  line-height: 1.4;
}
.pick-card p {
  font-size: 0.9rem;
  color: var(--text-sub);
  line-height: 1.7;
  margin-bottom: 12px;
}
.pick-card.big-card p {
  color: rgba(255,255,255,0.74);
  font-size: 0.98rem;
}
.user-quote {
  border-top: 1px solid rgba(255,255,255,0.12);
  margin-top: auto;
  padding-top: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.user-quote .name {
  font-weight: 700;
  color: #fff;
}
.score {
  color: #ffc46b;
  font-weight: 800;
}

/* ===== 价格方案 ===== */
#pricing {
  padding: 72px 0;
  background: var(--card-bg);
}
.price-flex {
  display: flex;
  gap: 20px;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
}
.price-cell {
  flex: 1 1 260px;
  max-width: 330px;
  display: flex;
  flex-direction: column;
}
.price-box {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
  box-shadow: var(--shadow-default);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.price-box:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}
.price-box .price-type {
  font-size: 0.9rem;
  color: var(--text-sub);
}
.price-box .price-num {
  font-size: 2.3rem;
  font-weight: 800;
  line-height: 1.2;
  margin: 12px 0 14px;
}
.price-box ul {
  margin: 14px 0 20px;
}
.price-box ul li {
  position: relative;
  padding-left: 20px;
  font-size: 0.9rem;
  color: var(--text-main);
  margin-bottom: 10px;
}
.price-box ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--brand);
  font-weight: 800;
}
.price-box.is-hot {
  background: var(--dark);
  color: #fff;
  border: none;
  box-shadow: 0 12px 36px -12px rgba(27, 20, 36, 0.75);
}
.price-box.is-hot .price-type,
.price-box.is-hot ul li {
  color: rgba(255, 255, 255, 0.87);
}
.price-box .price-rate {
  font-size: 0.8rem;
  color: var(--text-sub);
}
.price-box.is-hot .price-rate {
  color: rgba(255, 255, 255, 0.6);
}
.price-ribbon {
  position: absolute;
  top: -12px;
  transform: translateX(-50%);
  left: 50%;
  background: var(--brand-grad);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 999px;
  white-space: nowrap;
}

/* ===== 使用场景 / 片单分区 ===== */
#topics {
  background: #f4f1f8;
  padding: 70px 0;
}
.scene-grid {
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.scene-item {
  background: #fff;
  border-radius: 28px;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  box-shadow: var(--shadow-default);
}
.scene-item:nth-child(even) .scene-img {
  order: 2;
}
.scene-img,
.scene-body {
  flex: 1 1 45%;
  min-width: 280px;
}
.scene-img {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  background: #e0dae6;
}
.scene-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 55%, rgba(27,20,36,0.42));
}
.scene-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform 0.5s ease;
}
.scene-item:hover .scene-img img {
  transform: scale(1.02);
}
.scene-body {
  padding: 32px;
}
.scene-body .scene-index {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  background: var(--brand-grad);
  color: #fff;
  border-radius: 14px;
  font-weight: 800;
  font-size: 1.2rem;
  margin-bottom: 16px;
}
.scene-body h3 {
  font-size: 1.35rem;
  line-height: 1.4;
  margin: 0 0 12px;
}
.scene-body p {
  color: var(--text-sub);
  line-height: 1.85;
}
.scene-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}
.scene-tags li {
  background: rgba(124, 58, 237, 0.1);
  color: #5536a3;
  padding: 4px 12px;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 999px;
}

/* ===== 资讯区 ===== */
#news {
  padding: 70px 0;
  background: var(--bg-canvas);
}
.news-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 24px;
}
.news-aside {
  background: #1B1424;
  border-radius: 24px;
  padding: 26px;
  color: #fff;
  height: 100%;
}
.news-aside h3 {
  font-size: 1.3rem;
  margin: 0 0 16px;
}
.news-aside p {
  color: rgba(255,255,255,0.76);
  font-size: 0.9rem;
  margin-bottom: 18px;
}
.news-list {
  padding: 12px 0;
}
.news-list-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--line);
  padding: 16px 4px;
}
.news-list-row:last-child {
  border-bottom: none;
}
.news-list-row .news-date {
  font-size: 0.8rem;
  color: var(--text-sub);
  white-space: nowrap;
}
.news-list-row a {
  color: var(--text-main);
  font-weight: 600;
  transition: color 0.2s ease;
}
.news-list-row a:hover {
  color: var(--brand);
}
.news-badge {
  font-size: 0.72rem;
  padding: 3px 10px;
  border-radius: 99px;
  background: rgba(240, 41, 90, 0.1);
  color: var(--brand);
  white-space: nowrap;
}
.news-badge.gray {
  color: #6B6478;
  background: rgba(107, 100, 120, 0.1);
}

/* ===== FAQ ===== */
#faq {
  background: #f7f5fa;
  padding: 72px 0 40px;
}
.faq-acc {
  max-width: 900px;
  margin: 0 auto;
  background: transparent;
}
.faq-acc .accordion-item {
  border-radius: 14px;
  overflow: hidden;
  margin: 12px 0;
  background: #fff;
  box-shadow: 0 10px 30px -20px rgba(0,0,0,0.2);
  border: 1px solid rgba(0,0,0,0.02);
}
.faq-acc .accordion-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  color: var(--text-main);
  font-size: 1.02rem;
  font-weight: 700;
  max-height: none;
  transition: color 0.2s ease;
}
.faq-acc .accordion-title:hover {
  color: var(--brand);
}
.faq-acc .accordion-title::before,
.faq-acc .accordion-title::after {
  display: none;
}
.faq-acc .accordion-title .faq-sign {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(240, 41, 90, 0.12);
  color: var(--brand);
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  margin-left: 12px;
}
.faq-acc .accordion-title .faq-sign i {
  font-style: normal;
  font-weight: 800;
}
.faq-acc .accordion-content {
  padding: 14px 24px 22px;
  border-left: 3px solid var(--brand);
  background: #f7f5fa;
  color: var(--text-sub);
  line-height: 1.85;
  font-size: 0.94rem;
}
.faq-acc .accordion-content p {
  margin: 4px 0;
}

/* ===== 追剧入口 / CTA横幅 ===== */
#track-cta {
  padding: 40px 0 80px;
}
.cta-banner {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  background: var(--dark);
  color: #fff;
  padding: 80px 30px;
  text-align: center;
}
.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('/assets/images/backpic/back-8.jpg');
  background-size: cover;
  background-position: center 35%;
  opacity: 0.24;
}
.cta-banner > * {
  position: relative;
  z-index: 1;
}
.cta-banner h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.35;
  margin: 0 0 12px;
}
.cta-banner p {
  font-size: 1.02rem;
  max-width: 680px;
  margin: 0 auto 28px;
  color: rgba(255, 255, 255, 0.84);
}
.white-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: #1B1424;
  font-weight: 700;
  border-radius: 999px;
  padding: 13px 30px;
  min-height: 46px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 14px 30px -8px rgba(255,255,255,0.2);
}
.white-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px -8px rgba(255,122,69,0.2);
  color: #1B1424;
}
.white-btn:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}
.cta-note {
  display: block;
  position: relative;
  z-index: 1;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  margin-top: 16px;
}

/* ===== 页脚 ===== */
.footer {
  background: #151016;
  color: #d3cbd9;
  padding: 56px 0 20px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 36px;
  margin-bottom: 38px;
}
.footer-logo {
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}
.footer-logo em {
  font-style: normal;
  background: var(--brand-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.footer-about {
  font-size: 0.85rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.65);
  margin-top: 12px;
}
.footer h4 {
  font-size: 1rem;
  color: #fff;
  margin: 8px 0 16px;
}
.footer-links li {
  margin-bottom: 10px;
}
.footer-links a {
  color: #b9b0c3;
  font-size: 0.88rem;
  transition: color 0.2s ease;
}
.footer-links a:hover {
  color: #fff;
}
.footer-note {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 20px;
  display: flex;
  gap: 10px;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.48);
}

/* ========== 响应式 ========== */
@media (max-width: 1023px) {
  .nav-center { display: none; }
  .nav-toggle { display: flex; }
  .mobile-menu {
    display: none;
    width: 100%;
    padding: 14px 8px 18px;
  }
  .mobile-menu.open {
    display: block;
  }
  .mobile-menu a {
    display: block;
    color: #fff;
    padding: 10px 12px;
    border-radius: 10px;
    font-size: 0.95rem;
  }
  .mobile-menu a:hover,
  .mobile-menu a[aria-current="page"] {
    background: rgba(240, 41, 90, 0.7);
    color: #fff;
  }
  .hero-inner { flex-direction: column; align-items: flex-start; }
  .hero-copy { flex: none; width: 100%; }
  .hero-media { flex: none; width: 100%; max-width: 380px; }
  .pick-bento { grid-template-columns: 1fr 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 639px) {
  :root { --spacing-section: 56px; }
  .sec-space { padding: 56px 0; }
  .brand-logo { font-size: 1.05rem; }
  .nav-extra .nav-cta-btn { display: none; }
  .hero-section { padding: 60px 0 56px; }
  .hero-stats { flex-direction: column; }
  .hero-stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.12); }
  .hero-stat:last-child { border-bottom: none; }
  .pick-bento { grid-template-columns: 1fr; }
  .pick-card.big-card { grid-row: auto; }
  .scene-body { padding: 22px; }
  .scene-item:nth-child(even) .scene-img { order: 0; }
  .scene-item { flex-direction: column; }
  .scene-img { min-width: 100%; }
  .price-flex { flex-direction: column; align-items: stretch; }
  .price-cell { max-width: none; }
  .news-grid { grid-template-columns: 1fr; }
  .news-list-row { flex-wrap: wrap; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* roulang page: category1 */
:root {
  --brand: #F0295A;
  --brand-orange: #FF7A45;
  --violet: #7C3AED;
  --brand-grad: linear-gradient(120deg, #F0295A, #FF7A45 55%, #7C3AED);
  --bg-canvas: #F7F6FA;
  --card-bg: #FFFFFF;
  --dark: #1B1424;
  --dark-soft: #2A1F35;
  --text-main: #201A2B;
  --text-sub: #6B6478;
  --line: rgba(24, 16, 37, 0.08);
  --radius: 18px;
  --radius-lg: 24px;
  --radius-pill: 999px;
  --shadow-default: 0 1px 2px rgba(27, 12, 40, 0.04), 0 12px 32px -20px rgba(27, 12, 40, 0.22);
  --shadow-hover: 0 8px 24px -10px rgba(240, 41, 90, 0.28);
  --shadow-btn: 0 12px 24px -12px rgba(240, 41, 90, 0.55);
  --spacing-section: 84px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans CJK SC", sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-main);
  background: var(--bg-canvas);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
  border: 0;
}

a {
  color: var(--brand);
  text-decoration: none;
  transition: color .25s ease, background .25s ease, border-color .25s ease;
}

a:hover {
  color: var(--brand-orange);
}

button,
input,
select,
textarea {
  font-family: inherit;
  line-height: inherit;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.grid-container {
  max-width: 76rem;
  padding-left: .625rem;
  padding-right: .625rem;
}

.eyebrow {
  display: inline-block;
  font-size: .8125rem;
  font-weight: 700;
  letter-spacing: .14em;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  background: rgba(240, 41, 90, .1);
  color: var(--brand);
  margin-bottom: 14px;
}

.text-gradient {
  color: var(--brand);
  background: linear-gradient(120deg, #F0295A 0%, #FF7A45 45%, #7C3AED 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-head {
  margin-bottom: 36px;
}

.section-head h2,
.section-head h3 {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  line-height: 1.35;
  margin: 0 0 10px;
}

.section-head p {
  color: var(--text-sub);
  max-width: 760px;
  margin: 0;
  font-size: .95rem;
}

/* ========== 导航 ========== */
.site-nav {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 80;
  background: rgba(20, 13, 32, .92);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  min-height: 72px;
  margin: 0 auto;
  padding: 8px 20px;
  gap: 12px;
}

.brand-logo {
  font-size: 1.25rem;
  font-weight: 800;
  color: #FFF;
  white-space: nowrap;
  transition: opacity .2s ease;
}

.brand-logo:hover {
  color: #FFF;
  opacity: .88;
}

.brand-logo em {
  font-style: normal;
  background: var(--brand-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-center {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}

.nav-link {
  display: inline-block;
  padding: 8px 14px;
  font-size: .9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, .85);
  border-radius: var(--radius-pill);
  transition: all .2s ease;
}

.nav-link:hover {
  color: #FFF;
  background: rgba(255, 255, 255, .1);
}

.nav-link[aria-current="page"] {
  color: #FFF;
  background: var(--brand);
}

.nav-extra {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lang-pill {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, .06);
  padding: 3px;
}

.lang-pill a {
  font-size: .8rem;
  color: rgba(255, 255, 255, .7);
  line-height: 1;
  padding: 6px 11px;
  border-radius: var(--radius-pill);
  transition: background .2s ease, color .2s ease;
}

.lang-pill a:hover {
  color: #FFF;
  background: rgba(255, 255, 255, .12);
}

.lang-pill a.active {
  background: #FFF;
  color: var(--brand);
  font-weight: 700;
}

.btn-gradient {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--brand-grad);
  border: none;
  color: #FFF;
  font-weight: 700;
  font-size: .9rem;
  border-radius: var(--radius-pill);
  padding: 12px 22px;
  min-height: 44px;
  cursor: pointer;
  box-shadow: var(--shadow-btn);
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}

.btn-gradient:hover {
  color: #FFF;
  filter: brightness(1.05);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -12px rgba(240, 41, 90, .6);
}

.btn-gradient:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
}

.btn-gradient:active {
  transform: translateY(1px);
  box-shadow: none;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, .45);
  color: #FFF;
  background: transparent;
  border-radius: var(--radius-pill);
  padding: 12px 22px;
  min-height: 44px;
  font-weight: 600;
  transition: all .2s ease;
}

.btn-outline:hover {
  border-color: #FFF;
  background: rgba(255, 255, 255, .1);
  color: #FFF;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 46px;
  height: 46px;
  min-height: 44px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 12px;
  cursor: pointer;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  display: block;
  background: #FFF;
  border-radius: 2px;
  transition: all .2s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  background: #160F1F;
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding: 10px 20px 18px;
}

.mobile-menu.is-open {
  display: block;
}

.mobile-menu .nav-link {
  display: block;
  color: rgba(255, 255, 255, .9);
  padding: 12px 10px;
  border-radius: 12px;
  margin-bottom: 4px;
}

.mobile-menu .nav-link:hover {
  background: rgba(255, 255, 255, .1);
  color: #FFF;
}

.mobile-menu .nav-link[aria-current="page"] {
  color: #FFF;
  background: var(--brand);
}

/* ========== 面包屑 ========== */
.breadcrumb-wrap {
  padding: 22px 0 8px;
}

.breadcrumbs-items {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
  font-size: .85rem;
  color: var(--text-sub);
}

.breadcrumbs-items a {
  color: var(--text-sub);
}

.breadcrumbs-items a:hover {
  color: var(--brand);
}

.breadcrumbs-items span {
  color: var(--text-sub);
}

.breadcrumbs-items .current {
  color: var(--text-main);
  font-weight: 600;
}

/* ========== 分类页头部 ========== */
.guide-intro-section {
  padding: 30px 0 64px;
}

.guide-intro-grid {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 32px;
}

.guide-article {
  flex: 0 1 64%;
  min-width: 0;
}

.guide-article h1 {
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.28;
  font-weight: 800;
  margin: 0 0 18px;
  letter-spacing: -0.01em;
}

.guide-article .lead {
  font-size: 1.05rem;
  color: var(--text-sub);
  margin: 0 0 18px;
}

.guide-article p {
  color: var(--text-main);
  margin: 0 0 16px;
  max-width: 720px;
}

.guide-article .btn-row {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.guide-article .btn-outline-local {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(24, 16, 37, .18);
  color: var(--text-main);
  background: #FFF;
  border-radius: var(--radius-pill);
  padding: 12px 22px;
  min-height: 44px;
  font-weight: 600;
  transition: all .2s ease;
}

.guide-article .btn-outline-local:hover {
  border-color: var(--brand);
  color: var(--brand);
  background: rgba(240, 41, 90, .04);
}

.guide-aside-wrap {
  flex: 1 1 30%;
  min-width: 280px;
}

.guide-aside {
  background: var(--dark);
  color: #FFF;
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  box-shadow: 0 20px 50px -28px rgba(27, 12, 40, .6);
}

.guide-aside h2 {
  font-size: .8125rem;
  font-weight: 700;
  letter-spacing: .12em;
  color: rgba(255, 255, 255, .7);
  margin: 0 0 14px;
}

.guide-aside ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.guide-aside ul li {
  padding: 7px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.guide-aside ul li:last-child {
  border-bottom: none;
}

.guide-aside ul a {
  color: rgba(255, 255, 255, .92);
  font-size: .96rem;
  transition: color .2s ease;
}

.guide-aside ul a:hover {
  color: #FFA7BF;
}

.guide-aside-line {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, .12);
  margin: 22px 0;
}

.guide-aside-note {
  background: rgba(255, 255, 255, .06);
  border-left: 2px solid var(--brand);
  border-radius: 12px;
  padding: 14px 16px;
  color: rgba(255, 255, 255, .82);
  font-size: .9rem;
  line-height: 1.7;
}

/* ========== 深度细解 ========== */
.guide-deep-section {
  padding: 0 0 var(--spacing-section);
}

.guide-deep-head {
  max-width: 700px;
  margin-bottom: 40px;
}

.guide-deep-head h2 {
  font-size: clamp(1.6rem, 3.2vw, 2.2rem);
  line-height: 1.35;
  margin: 0 0 12px;
}

.guide-deep-head p {
  color: var(--text-sub);
  font-size: .95rem;
  margin: 0;
}

.guide-deep-block {
  display: flex;
  align-items: center;
  gap: clamp(24px, 5vw, 68px);
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-default);
  padding: clamp(18px, 3vw, 40px);
  margin-bottom: 24px;
  border: 1px solid rgba(255, 255, 255, .6);
}

.guide-deep-block:last-child {
  margin-bottom: 0;
}

.deep-media {
  flex: 0 1 46%;
  min-width: 0;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, #D2C6E8, #F6C6D6);
}

.deep-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s ease;
}

.guide-deep-block:hover .deep-media img {
  transform: scale(1.025);
}

.deep-copy {
  flex: 1 1 50%;
  min-width: 0;
  padding: 8px 0;
}

.deep-copy .deep-tag {
  display: inline-block;
  font-size: .8rem;
  font-weight: 600;
  color: var(--brand);
  background: rgba(240, 41, 90, .08);
  border-radius: var(--radius-pill);
  padding: 5px 14px;
  margin-bottom: 14px;
}

.deep-copy h3 {
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  line-height: 1.35;
  margin: 0 0 12px;
}

.deep-copy p {
  color: var(--text-sub);
  margin: 0 0 10px;
  font-size: .95rem;
}

.deep-copy p strong {
  color: var(--text-main);
}

.deep-copy ul {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
}

.deep-copy ul li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 7px 0;
  color: var(--text-main);
  font-size: .95rem;
}

.deep-copy ul li i {
  color: var(--brand);
  margin-top: 5px;
  width: 18px;
  text-align: center;
}

/* ========== 分类导航列表 ========== */
.faq-nav-section {
  padding: 0 0 var(--spacing-section);
}

.faq-nav-list {
  display: grid;
  gap: 12px;
}

.faq-nav-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #FFF;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 18px;
  box-shadow: 0 1px 2px rgba(27, 12, 40, .02);
  transition: all .2s ease;
}

.faq-nav-item:hover {
  border-color: rgba(240, 41, 90, .18);
  background: rgba(240, 41, 90, .035);
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}

.faq-nav-num {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  font-weight: 800;
  color: #FFF;
  background: var(--brand-grad);
  box-shadow: 0 8px 18px -8px rgba(240, 41, 90, .5);
}

.faq-nav-text {
  flex: 1 1 auto;
  color: var(--text-main);
  font-weight: 600;
  font-size: .95rem;
}

.faq-nav-arrow {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(124, 58, 237, .08);
  color: var(--violet);
  font-size: .8rem;
  transition: all .2s ease;
}

.faq-nav-item:hover .faq-nav-arrow {
  background: var(--violet);
  color: #FFF;
}

/* ========== FAQ 手风琴 ========== */
.faq-section {
  padding: 0 0 var(--spacing-section);
}

.faq-shell {
  background: #FFF;
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3.5vw, 48px);
  box-shadow: var(--shadow-default);
}

.faq-shell .section-head {
  margin-bottom: 30px;
}

.accordion {
  background: transparent;
  margin-left: 0;
  margin-right: 0;
  list-style: none;
}

.accordion-item {
  border: none;
  border-radius: 0;
  margin: 0;
  background: transparent;
}

.accordion-item .accordion-title {
  border: none;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--text-main);
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 700;
  padding: 18px 44px 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 0;
  transition: color .2s ease, padding-left .2s ease;
}

.accordion-item .accordion-title:hover,
.accordion-item .accordion-title:focus {
  color: var(--brand);
  background: rgba(240, 41, 90, .02);
}

.accordion-title::before,
.accordion-title::after {
  display: none !important;
}

.faq-icon {
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(124, 58, 237, .08);
  color: var(--violet);
  font-style: normal;
  font-size: 1.05rem;
  transition: all .2s ease;
}

.accordion-item.is-active > .accordion-title .faq-icon {
  background: var(--brand);
  color: #FFF;
  transform: rotate(45deg);
}

.accordion-content {
  background: rgba(247, 246, 250, .7);
  border: none;
  border-left: 3px solid var(--brand);
  border-radius: 0 12px 12px 0;
  color: var(--text-sub);
  padding: 18px 22px;
  margin-bottom: 12px;
  font-size: .95rem;
  line-height: 1.85;
}

.accordion-content p {
  margin-bottom: 8px;
}

/* ========== 窄CTA ========== */
.cta-strip-section {
  padding: 0 0 var(--spacing-section);
}

.cta-strip {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--dark);
  padding: 34px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  flex-wrap: wrap;
}

.cta-strip-bg {
  position: absolute;
  inset: 0;
  background-image: url('/assets/images/backpic/back-3.jpg');
  background-size: cover;
  background-position: center;
  opacity: .25;
}

.cta-strip-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(27, 20, 36, .8) 20%, rgba(124, 58, 237, .28) 100%);
}

.cta-strip-copy,
.cta-strip-btn {
  position: relative;
  z-index: 2;
}

.cta-strip-copy h2 {
  color: #FFF;
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  margin: 0 0 6px;
}

.cta-strip-copy p {
  color: rgba(255, 255, 255, .78);
  margin: 0;
  font-size: .93rem;
}

.cta-strip-btn {
  flex: 0 0 auto;
}

.cta-strip-btn a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #FFF;
  color: var(--brand);
  border-radius: var(--radius-pill);
  padding: 13px 26px;
  font-weight: 700;
  font-size: .92rem;
  min-height: 44px;
  transition: all .2s ease;
}

.cta-strip-btn a:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -12px rgba(240, 41, 90, .55);
  color: var(--brand);
}

.cta-strip-btn a:active {
  transform: translateY(1px);
}

/* ========== 页脚 ========== */
.footer {
  background: var(--dark);
  color: rgba(255, 255, 255, .7);
  padding: 58px 0 26px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr .9fr 1fr;
  gap: 40px;
  padding-bottom: 36px;
}

.footer-logo {
  color: #FFF;
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.footer-logo em {
  font-style: normal;
  background: var(--brand-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-about {
  color: rgba(255, 255, 255, .58);
  font-size: .875rem;
  line-height: 1.8;
  max-width: 360px;
}

.footer h4 {
  color: #FFF;
  font-size: .95rem;
  margin: 0 0 16px;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  padding: 5px 0;
}

.footer-links a {
  color: rgba(255, 255, 255, .65);
  font-size: .875rem;
  transition: color .2s ease;
}

.footer-links a:hover {
  color: #FFA7BF;
}

.footer-note {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: .8rem;
  color: rgba(255, 255, 255, .45);
}

.footer-note a {
  color: rgba(255, 255, 255, .5);
}

.footer-note a:hover {
  color: #FFF;
}

/* ========== 响应式 ========== */
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid > div:first-child {
    grid-column: span 2;
  }
}

@media (max-width: 820px) {
  .nav-toggle {
    display: flex;
  }

  .nav-center,
  .nav-extra .lang-pill {
    display: none;
  }

  .guide-intro-grid {
    display: block;
  }

  .guide-aside-wrap {
    margin-top: 26px;
  }

  .guide-aside {
    padding: 24px 20px;
  }

  .guide-deep-block {
    flex-direction: column;
  }

  .deep-media {
    flex: 0 1 auto;
    width: 100%;
    order: -1;
  }

  .deep-copy {
    flex: 0 1 auto;
    width: 100%;
  }
}

@media (max-width: 600px) {
  :root {
    --spacing-section: 62px;
  }

  .nav-inner {
    padding-left: 16px;
    padding-right: 16px;
  }

  .brand-logo {
    font-size: 1.05rem;
  }

  .breadcrumb-wrap {
    padding-top: 14px;
  }

  .guide-article h1 {
    font-size: 1.9rem;
  }

  .guide-article p {
    font-size: .95rem;
  }

  .guide-deep-block {
    padding: 16px;
  }

  .faq-shell {
    padding: 20px 16px;
  }

  .accordion-item .accordion-title {
    padding: 16px 38px 16px 0;
    font-size: .92rem;
  }

  .faq-nav-item {
    padding: 12px 14px;
    gap: 12px;
  }

  .cta-strip {
    padding: 26px 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid > div:first-child {
    grid-column: span 1;
  }

  .footer-note {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 420px) {
  .brand-logo {
    font-size: .98rem;
  }

  .brand-logo small,
  .nav-extra .btn-gradient {
    display: none;
  }

  .btn-row .btn-gradient,
  .btn-row .btn-outline-local {
    width: 100%;
  }

  .guide-aside {
    border-radius: 18px;
  }
}
