@charset "UTF-8";

/* 作者：搭客佬
链接：https://www.lzmhgw.cn/ */

:root {
  --ink: #201b18;
  --muted: #746b62;
  --paper: #fffdf7;
  --cream: #f7f1e4;
  --yellow: #ffc823;
  --yellow-dark: #e6a900;
  --line: #d9cfbd;
  --soft-line: #ebe3d4;
  --white: #ffffff;
  --shadow: 0 18px 55px rgba(48, 37, 21, 0.1);
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  min-width: 320px;
  margin: 0;
  padding-top: var(--header-height);
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
textarea {
  color: inherit;
  font: inherit;
}

button {
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
}

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

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
p,
figure {
  margin: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 247, 0.98);
}

.header-inner,
.section-inner,
.hero-inner,
.footer-inner {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.brand-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  line-height: 1.25;
}

.brand-copy strong {
  font-size: 22px;
  white-space: nowrap;
}

.brand-copy > span {
  color: var(--muted);
  font-size: 12px;
  white-space: nowrap;
}

.site-nav ul,
.footer-nav ul {
  display: flex;
  align-items: center;
}

.site-nav ul {
  gap: 38px;
}

.site-nav a {
  position: relative;
  display: block;
  padding: 26px 0 22px;
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--yellow);
  content: "";
  opacity: 0;
}

.site-nav a:hover::after,
.site-nav a.is-current::after {
  opacity: 1;
}

.mobile-actions {
  display: none;
  align-items: center;
  gap: 10px;
}

.mobile-download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  background: var(--yellow);
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.menu-toggle {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
}

.menu-toggle i,
.menu-toggle i::before,
.menu-toggle i::after {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
}

.menu-toggle i {
  position: relative;
}

.menu-toggle i::before,
.menu-toggle i::after {
  position: absolute;
  left: 0;
  content: "";
}

.menu-toggle i::before {
  top: -6px;
}

.menu-toggle i::after {
  top: 6px;
}

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.hero::after {
  position: absolute;
  top: 0;
  right: 0;
  width: calc((100% - 1200px) / 2 + 430px);
  min-width: 430px;
  height: 100%;
  background-image: linear-gradient(rgba(32, 27, 24, 0.07) 1px, transparent 1px), linear-gradient(90deg, rgba(32, 27, 24, 0.07) 1px, transparent 1px);
  background-size: 34px 34px;
  background-color: var(--yellow);
  content: "";
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 690px;
  grid-template-columns: minmax(0, 1fr) 430px;
  align-items: center;
}

.hero-copy {
  max-width: 690px;
  padding: 85px 50px 85px 0;
}

.eyebrow,
.section-index {
  display: inline-block;
  color: #8a6500;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.hero-copy h1 {
  margin-top: 15px;
  font-size: clamp(70px, 7vw, 112px);
  line-height: 1;
  letter-spacing: -0.06em;
  white-space: nowrap;
}

.hero-copy h1::after {
  display: block;
  width: 74%;
  height: 14px;
  margin-top: -10px;
  background: var(--yellow);
  content: "";
}

.hero-copy h2 {
  margin-top: 32px;
  font-size: 31px;
  line-height: 1.35;
}

.hero-description {
  max-width: 620px;
  margin-top: 18px;
  color: var(--muted);
}

.hero-points {
  display: flex;
  gap: 10px;
  margin-top: 25px;
  flex-wrap: wrap;
}

.hero-points li {
  min-width: 118px;
  padding: 8px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}

.hero-action {
  display: flex;
  margin-top: 28px;
  align-items: flex-start;
  flex-direction: column;
}

.primary-link {
  display: inline-flex;
  min-width: 240px;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px;
  border: 1px solid var(--ink);
  background: var(--yellow);
  box-shadow: 7px 7px 0 var(--ink);
  font-weight: 800;
}

.i-arrow,
.i-search,
.i-globe,
.i-download,
.i-avatar,
.i-back-top {
  display: inline-block;
  flex: 0 0 auto;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.i-arrow {
  width: 18px;
  height: 18px;
  background-image: url("../icons/arrow.svg");
}

.i-search {
  width: 18px;
  height: 18px;
  background-image: url("../icons/search.svg");
}

.i-globe {
  width: 20px;
  height: 20px;
  background-image: url("../icons/globe.svg");
}

.i-download {
  width: 22px;
  height: 22px;
  background-image: url("../icons/download.svg");
}

.i-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-image: url("../icons/avatar.svg");
}

.i-back-top {
  width: 22px;
  height: 22px;
  background-image: url("../icons/back-top.svg");
}

.age-label {
  display: block;
  margin-top: 18px;
  color: var(--muted);
  font-size: 13px;
}

.hero-device {
  display: flex;
  justify-content: flex-end;
  padding-left: 35px;
}

.phone-shell {
  width: 322px;
  padding: 13px;
  border: 5px solid #12110f;
  border-radius: 42px;
  background: #12110f;
  box-shadow: 20px 24px 0 rgba(32, 27, 24, 0.18), var(--shadow);
}

.phone-screen {
  position: relative;
  min-height: 570px;
  overflow: hidden;
  border-radius: 28px;
  background: var(--white);
}

.phone-screen::before {
  position: absolute;
  z-index: 3;
  top: 0;
  left: 50%;
  width: 92px;
  height: 24px;
  border-radius: 0 0 16px 16px;
  background: #12110f;
  content: "";
  transform: translateX(-50%);
}

.phone-status,
.phone-titlebar,
.phone-section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.phone-status {
  padding: 11px 16px 5px;
  font-size: 12px;
  font-weight: 700;
}

.phone-titlebar {
  padding: 13px 18px 8px;
}

.phone-titlebar strong {
  color: #c78f00;
  font-size: 21px;
}

.phone-search {
  display: flex;
  margin: 3px 16px 0;
  padding: 10px 13px;
  align-items: center;
  gap: 8px;
  border-radius: 22px;
  color: #90877d;
  background: #f1eee8;
  font-size: 12px;
}

.phone-tabs,
.phone-footer {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.phone-tabs {
  margin: 12px 16px 0;
  border-bottom: 1px solid #ddd4c5;
}

.phone-tabs li {
  padding: 6px 0 8px;
  font-size: 12px;
  text-align: center;
}

.phone-tabs .is-active {
  color: #b27f00;
  border-bottom: 2px solid var(--yellow);
  font-weight: 800;
}

.phone-featured {
  display: flex;
  height: 128px;
  margin: 12px 16px 0;
  padding: 20px;
  align-items: center;
  border-radius: 14px;
  color: var(--white);
  background: linear-gradient(135deg, #2d261f 0 56%, #ffc823 56% 72%, #fff2bd 72%);
}

.phone-featured span,
.phone-featured p {
  display: block;
  font-size: 12px;
}

.phone-featured strong {
  display: block;
  margin: 4px 0;
  font-size: 21px;
}

.phone-section-title {
  padding: 13px 16px 8px;
  font-size: 12px;
}

.phone-section-title strong {
  font-size: 14px;
}

.phone-books {
  display: grid;
  padding: 0 16px;
  gap: 8px;
  grid-template-columns: repeat(3, 1fr);
}

.phone-books article {
  min-width: 0;
}

.phone-cover {
  display: flex;
  height: 108px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 8px;
  background: #f2eee6;
}

.phone-cover img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.phone-books strong,
.phone-books small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.phone-books strong {
  margin-top: 6px;
  font-size: 12px;
}

.phone-books small {
  color: var(--muted);
  font-size: 12px;
}

.phone-footer {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  border-top: 1px solid #e6ded2;
  background: var(--white);
}

.phone-footer li {
  padding: 11px 0;
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}

.phone-footer .is-active {
  color: #b27f00;
  font-weight: 800;
}

.section {
  padding: 95px 0;
}

.section-heading {
  display: grid;
  margin-bottom: 38px;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  align-items: end;
  column-gap: 50px;
}

.section-heading .section-index {
  grid-column: 1 / -1;
  margin-bottom: 7px;
}

.section-heading h2 {
  font-size: clamp(38px, 4vw, 58px);
  line-height: 1.12;
}

.section-heading > p {
  padding-bottom: 5px;
  color: var(--muted);
  text-align: right;
}

.route {
  background: var(--cream);
}

.route-console {
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
}

.route-search {
  display: grid;
  min-height: 70px;
  padding: 10px 12px 10px 24px;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 22px 1fr auto;
  align-items: center;
  gap: 12px;
  color: var(--muted);
}

.route-search button {
  min-width: 118px;
  min-height: 46px;
  background: var(--yellow);
  font-weight: 800;
}

.route-columns {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr) 330px;
}

.filter-panel,
.ranking-panel,
.later-panel {
  padding: 28px;
}

.ranking-panel,
.later-panel {
  border-left: 1px solid var(--soft-line);
}

.filter-panel h3,
.panel-title h3 {
  font-size: 20px;
}

.filter-list {
  margin-top: 18px;
}

.filter-list button {
  width: 100%;
  padding: 8px 12px;
  text-align: left;
}

.filter-list button:hover,
.filter-list button.is-active {
  background: #fff1b3;
  font-weight: 800;
}

.panel-title {
  display: flex;
  min-height: 37px;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.rank-switch {
  display: flex;
  gap: 5px;
}

.rank-switch button {
  padding: 6px 10px;
  background: #f4f1eb;
  font-size: 12px;
}

.rank-switch button.is-active {
  background: var(--yellow);
}

.ranking-list {
  margin-top: 14px;
}

.ranking-list li {
  display: grid;
  min-height: 56px;
  border-top: 1px solid var(--soft-line);
  grid-template-columns: 30px 1fr auto;
  align-items: center;
  gap: 8px;
}

.ranking-list li > span {
  display: inline-flex;
  width: 25px;
  height: 25px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
}

.ranking-list li:nth-child(-n+3) > span {
  background: var(--yellow);
  color: var(--ink);
}

.ranking-list small,
.later-list small,
.update-list small {
  color: var(--muted);
  font-size: 12px;
}

.later-panel .panel-title > button {
  color: #9d7200;
  font-size: 12px;
  font-weight: 700;
}

.later-list {
  margin-top: 14px;
}

.later-list li {
  display: grid;
  min-height: 72px;
  padding: 8px 0;
  border-top: 1px solid var(--soft-line);
  grid-template-columns: 48px 1fr 20px;
  align-items: center;
  gap: 11px;
}

.later-list img,
.update-list img {
  width: 48px;
  height: 58px;
  object-fit: contain;
  background: #f4f0e8;
}

.later-list span,
.later-list strong,
.later-list small,
.update-list span,
.update-list strong,
.update-list small {
  display: block;
  min-width: 0;
}

.later-list > li > button {
  color: var(--muted);
  font-size: 20px;
}

.calendar-board {
  border-top: 2px solid var(--ink);
  border-bottom: 1px solid var(--line);
}

.week-tabs {
  display: grid;
  border-bottom: 1px solid var(--line);
  grid-template-columns: repeat(7, 1fr);
}

.week-tabs li + li {
  border-left: 1px solid var(--line);
}

.week-tabs button {
  width: 100%;
  min-height: 72px;
  padding: 9px;
  text-align: center;
}

.week-tabs span {
  display: block;
  font-size: 12px;
  font-weight: 700;
}

.week-tabs button.is-active {
  background: var(--yellow);
  font-weight: 800;
}

.update-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.update-list article {
  display: grid;
  min-width: 0;
  min-height: 116px;
  padding: 20px;
  grid-template-columns: 48px 1fr;
  align-items: center;
  gap: 12px;
}

.update-list article + article {
  border-left: 1px solid var(--line);
}

.follow-toggle {
  grid-column: 2;
  justify-self: start;
  padding: 3px 10px;
  border: 1px solid var(--line);
  font-size: 12px;
}

.follow-toggle.is-on {
  border-color: var(--yellow-dark);
  background: #fff3ba;
}

.screens {
  background: #f1ecdf;
}

.screen-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, 1fr);
}

.screen-grid figure {
  display: flex;
  min-width: 0;
  border: 1px solid var(--line);
  background: var(--white);
  flex-direction: column;
}

.screen-image {
  display: flex;
  width: 100%;
  aspect-ratio: 9 / 16;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--white);
}

.screen-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.screen-grid figcaption {
  display: grid;
  min-height: 96px;
  padding: 19px 20px;
  border-top: 1px solid var(--line);
  grid-template-columns: 34px 1fr;
  align-items: start;
}

.screen-grid figcaption > span {
  color: #9c7100;
  font-weight: 800;
}

.screen-grid figcaption strong,
.screen-grid figcaption small {
  display: block;
  grid-column: 2;
}

.screen-grid figcaption strong {
  font-size: 18px;
}

.screen-grid figcaption small {
  color: var(--muted);
  font-size: 12px;
}

.guide {
  background: var(--paper);
}

.faq-list {
  border-top: 2px solid var(--ink);
}

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

.faq-item > button {
  display: flex;
  width: 100%;
  min-height: 76px;
  padding: 18px 24px;
  align-items: center;
  justify-content: space-between;
  font-weight: 800;
  text-align: left;
}

.faq-item b {
  display: inline-block;
  min-width: 46px;
  color: #9c7100;
  font-size: 12px;
}

.faq-item > button > i,
.details-mark {
  position: relative;
  display: block;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.faq-item > button > i::before,
.faq-item > button > i::after,
.details-mark::before,
.details-mark::after {
  position: absolute;
  top: 8px;
  left: 2px;
  width: 14px;
  height: 2px;
  background: var(--ink);
  content: "";
}

.faq-item > button > i::after,
.details-mark::after {
  transform: rotate(90deg);
}

.faq-item.is-open > button > i::after,
.official-site[open] .details-mark::after {
  transform: rotate(0);
}

.faq-answer {
  display: none;
  padding: 0 70px 23px;
  color: var(--muted);
}

.faq-item.is-open .faq-answer {
  display: block;
}

.official-site {
  width: 100%;
  margin-top: 28px;
  border: 1px solid var(--ink);
  background: var(--white);
}

.official-site summary {
  display: flex;
  min-height: 76px;
  padding: 18px 24px;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

.official-site summary::-webkit-details-marker {
  display: none;
}

.official-site summary > span {
  display: flex;
  align-items: center;
  gap: 13px;
}

.official-answer {
  padding: 0 57px 23px;
}

.official-answer a {
  color: #9c7100;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.reviews {
  background: #fff6d4;
}

.review-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, 1fr);
}

.review-card {
  display: flex;
  min-height: 260px;
  padding: 25px;
  border: 1px solid var(--line);
  border-top: 4px solid var(--yellow);
  background: var(--white);
  flex-direction: column;
}

.review-card:nth-child(3n+2) {
  border-top-color: var(--ink);
}

.review-head {
  display: flex;
  padding-bottom: 17px;
  border-bottom: 1px solid var(--soft-line);
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.review-user {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 10px;
}

.review-user strong {
  overflow: hidden;
  font-size: 14px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.review-rating {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  color: #e7a900;
  white-space: nowrap;
}

.aiarticle-comment-rating-icon {
  margin-left: 2px;
  font-style: normal;
  line-height: 1;
}

.aiarticle-comment-rating-icon.fa-star::before {
  content: "★";
}

.aiarticle-comment-rating-icon.fa-star-o::before {
  content: "☆";
}

.review-card > p {
  margin-top: 20px;
  line-height: 1.9;
}

.review-card time {
  display: block;
  margin-top: auto;
  padding-top: 16px;
  color: var(--muted);
  font-size: 12px;
  text-align: right;
}

.download {
  background: var(--ink);
}

.download-ticket {
  display: grid;
  min-height: 180px;
  border: 1px solid var(--yellow);
  background: var(--paper);
  grid-template-columns: 160px minmax(0, 1fr) 280px;
}

.ticket-index {
  display: flex;
  padding: 28px;
  border-right: 1px dashed var(--line);
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.ticket-index span {
  font-family: Georgia, serif;
  font-size: 58px;
  font-weight: 700;
  line-height: 1;
}

.ticket-index small {
  margin-top: 8px;
  font-size: 12px;
  letter-spacing: 0.14em;
}

.ticket-copy {
  display: flex;
  padding: 32px 42px;
  justify-content: center;
  flex-direction: column;
}

.ticket-copy h2 {
  margin-top: 3px;
  font-size: 32px;
}

.ticket-copy p {
  color: var(--muted);
}

.ticket-action {
  display: flex;
  min-height: 100%;
  padding: 25px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-left: 1px dashed var(--yellow-dark);
  background: var(--yellow);
  font-size: 20px;
  font-weight: 800;
  white-space: nowrap;
}

.site-footer {
  color: var(--white);
  background: #15120f;
}

.footer-main {
  display: flex;
  min-height: 132px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.8);
  align-items: center;
  justify-content: space-between;
  gap: 35px;
}

.footer-brand .brand-copy > span {
  color: #c8bfb4;
}

.footer-nav ul {
  gap: 31px;
  flex-wrap: wrap;
}

.footer-nav a {
  font-size: 13px;
}

.footer-nav a:hover {
  color: var(--yellow);
}

.footer-copy {
  padding: 20px 0 25px;
  color: #c8bfb4;
  font-size: 12px;
  text-align: center;
}

.back-top {
  position: fixed;
  z-index: 900;
  right: 24px;
  bottom: 24px;
  display: none;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  background: var(--yellow);
  box-shadow: 5px 5px 0 var(--ink);
}

.back-top.is-visible {
  display: flex;
}

:focus-visible {
  outline: 3px solid #7e5c00;
  outline-offset: 3px;
}

@media (max-width: 1100px) {
  .site-nav ul {
    gap: 22px;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr) 370px;
  }

  .hero-copy h1 {
    font-size: 76px;
  }

  .route-columns {
    grid-template-columns: 190px minmax(0, 1fr) 280px;
  }

  .filter-panel,
  .ranking-panel,
  .later-panel {
    padding: 22px;
  }
}

@media (max-width: 860px) {
  :root {
    --header-height: 66px;
  }

  .header-inner,
  .section-inner,
  .hero-inner,
  .footer-inner {
    width: min(100% - 28px, 1200px);
  }

  .brand {
    gap: 8px;
  }

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

  .brand-copy strong {
    font-size: 17px;
  }

  .brand-copy > span {
    max-width: none;
    overflow: visible;
    text-overflow: clip;
  }

  .mobile-actions {
    display: flex;
  }

  .site-nav {
    position: fixed;
    z-index: 1001;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: none;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--ink);
    background: var(--paper);
  }

  .site-nav.is-open {
    display: block;
  }

  .site-nav ul {
    width: min(100% - 28px, 1200px);
    margin: 0 auto;
    align-items: stretch;
    gap: 0;
    flex-direction: column;
  }

  .site-nav li + li {
    border-top: 1px solid var(--soft-line);
  }

  .site-nav a {
    padding: 14px 3px;
  }

  .site-nav a::after {
    display: none;
  }

  .hero::after {
    display: none;
  }

  .hero-inner {
    min-height: 0;
    padding: 58px 0 66px;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 620px;
    margin: 0 auto;
    padding: 0;
    text-align: center;
  }

  .hero-copy h1 {
    font-size: clamp(58px, 17vw, 82px);
    white-space: normal;
  }

  .hero-copy h1::after {
    width: 74%;
    margin-right: auto;
    margin-left: auto;
  }

  .hero-copy h2 {
    font-size: 26px;
  }

  .hero-points {
    justify-content: center;
  }

  .hero-action {
    align-items: center;
  }

  .hero-device {
    justify-content: center;
    margin-top: 55px;
    padding-left: 0;
  }

  .phone-shell {
    width: min(322px, 88vw);
  }

  .section {
    padding: 72px 0;
  }

  .section-heading {
    display: block;
    margin-bottom: 30px;
  }

  .section-heading h2 {
    margin-top: 5px;
    font-size: 40px;
  }

  .section-heading > p {
    margin-top: 10px;
    text-align: left;
  }

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

  .ranking-panel,
  .later-panel {
    border-top: 1px solid var(--soft-line);
    border-left: 0;
  }

  .week-tabs {
    overflow-x: auto;
    grid-template-columns: repeat(7, minmax(90px, 1fr));
  }

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

  .update-list article:nth-child(3) {
    border-left: 0;
  }

  .update-list article:nth-child(n+3) {
    border-top: 1px solid var(--line);
  }

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

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

  .download-ticket {
    grid-template-columns: 130px minmax(0, 1fr);
  }

  .ticket-action {
    min-height: 80px;
    border-top: 1px dashed var(--yellow-dark);
    border-left: 0;
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .header-inner {
    width: calc(100% - 20px);
  }

  .brand-copy strong {
    font-size: 15px;
  }

  .brand-copy > span {
    font-size: 12px;
  }

  .mobile-download {
    min-height: 38px;
    padding: 0 11px;
    font-size: 12px;
  }

  .menu-toggle {
    width: 38px;
    height: 38px;
  }

  .hero-inner {
    padding-top: 47px;
  }

  .hero-copy h2 {
    font-size: 23px;
  }

  .hero-description {
    font-size: 14px;
  }

  .hero-points li {
    min-width: 0;
    flex: 1 1 calc(33.333% - 10px);
    padding: 7px 10px;
    font-size: 12px;
  }

  .primary-link {
    width: min(100%, 270px);
  }

  .route-search {
    padding-left: 14px;
    grid-template-columns: 18px 1fr auto;
  }

  .route-search button {
    min-width: 66px;
  }

  .filter-panel,
  .ranking-panel,
  .later-panel {
    padding: 20px;
  }

  .panel-title {
    align-items: flex-start;
    flex-direction: column;
  }

  .ranking-list li {
    grid-template-columns: 28px 1fr;
  }

  .ranking-list small {
    display: none;
  }

  .update-list {
    grid-template-columns: 1fr;
  }

  .update-list article + article {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .screen-grid {
    gap: 10px;
  }

  .screen-grid figcaption {
    min-height: 90px;
    padding: 14px 10px;
    grid-template-columns: 27px 1fr;
  }

  .screen-grid figcaption strong {
    font-size: 14px;
  }

  .faq-item > button,
  .official-site summary {
    min-height: 70px;
    padding: 16px;
  }

  .faq-item b {
    min-width: 35px;
  }

  .faq-answer {
    padding: 0 51px 20px;
    font-size: 14px;
  }

  .official-answer {
    padding: 0 49px 20px;
  }

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

  .review-card {
    min-height: 240px;
  }

  .download-ticket {
    grid-template-columns: 1fr;
  }

  .ticket-index {
    min-height: 90px;
    padding: 20px;
    border-right: 0;
    border-bottom: 1px dashed var(--line);
  }

  .ticket-index span {
    font-size: 42px;
  }

  .ticket-copy {
    padding: 28px 22px;
    text-align: center;
  }

  .ticket-copy h2 {
    font-size: 28px;
  }

  .footer-main {
    padding: 36px 0 28px;
    justify-content: center;
    flex-direction: column;
    text-align: center;
  }

  .footer-nav ul {
    justify-content: center;
    gap: 14px 22px;
  }

  .back-top {
    right: 14px;
    bottom: 14px;
    width: 46px;
    height: 46px;
  }
}

@media (hover: none) and (pointer: coarse) {
  a,
  button,
  summary {
    -webkit-tap-highlight-color: transparent;
    transition: none !important;
  }

  a:active,
  button:active,
  summary:active {
    opacity: 1;
    filter: none;
    transform: none;
  }
}
