* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  color: #78350f;
  background: linear-gradient(180deg, #fffbeb 0%, #fff7ed 45%, #fffbeb 100%);
  min-height: 100vh;
}

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

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

button,
input {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(90deg, rgba(255, 251, 235, 0.96), rgba(255, 247, 237, 0.96));
  border-bottom: 1px solid #fde68a;
  box-shadow: 0 8px 24px rgba(146, 64, 14, 0.12);
  backdrop-filter: blur(14px);
}

.header-inner {
  max-width: 1280px;
  height: 72px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand-mark {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  background: linear-gradient(135deg, #d97706, #c2410c);
  box-shadow: 0 12px 24px rgba(180, 83, 9, 0.28);
}

.brand-text strong {
  display: block;
  font-size: 22px;
  line-height: 1;
  letter-spacing: 0.02em;
  background: linear-gradient(90deg, #b45309, #c2410c);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

.brand-text small {
  display: block;
  margin-top: 5px;
  color: #d97706;
  font-size: 12px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  flex: 1;
}

.nav-link,
.mobile-link {
  border-radius: 12px;
  color: #78350f;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nav-link {
  padding: 10px 15px;
  font-weight: 600;
}

.nav-link:hover,
.nav-link.is-active,
.mobile-link:hover,
.mobile-link.is-active {
  background: #fef3c7;
  color: #92400e;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 12px;
  background: #fef3c7;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  background: #92400e;
  border-radius: 999px;
}

.mobile-nav {
  display: none;
  padding: 10px 18px 18px;
  background: #ffffff;
  border-top: 1px solid #fde68a;
}

.mobile-nav.is-open {
  display: grid;
  gap: 8px;
}

.mobile-link {
  padding: 12px 14px;
  font-weight: 600;
}

.hero {
  position: relative;
  height: 600px;
  overflow: hidden;
  background: #111827;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 1s ease;
}

.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.84), rgba(0, 0, 0, 0.48), rgba(0, 0, 0, 0.16));
}

.hero-content {
  position: absolute;
  left: calc((100vw - min(1280px, 100vw)) / 2 + 24px);
  right: 24px;
  bottom: 76px;
  max-width: 760px;
  color: #fff;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: #d97706;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

.hero-content h1 {
  margin: 0 0 16px;
  font-size: clamp(34px, 5vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.hero-content p {
  margin: 0 0 22px;
  color: #fef3c7;
  font-size: 20px;
  line-height: 1.7;
  max-width: 680px;
}

.hero-tags,
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-tags {
  margin-bottom: 24px;
}

.hero-tags span,
.tag-row span {
  display: inline-flex;
  padding: 5px 11px;
  border-radius: 999px;
  background: rgba(254, 243, 199, 0.9);
  color: #92400e;
  font-size: 12px;
  font-weight: 700;
}

.tag-row.light span {
  background: rgba(255, 255, 255, 0.18);
  color: #fff7ed;
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.primary-button,
.ghost-button,
.section-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-button {
  padding: 13px 28px;
  color: #fff;
  background: linear-gradient(135deg, #d97706, #c2410c);
  box-shadow: 0 12px 28px rgba(217, 119, 6, 0.34);
}

.primary-button:hover,
.section-more:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 18px 34px rgba(180, 83, 9, 0.28);
}

.ghost-button {
  padding: 12px 22px;
  color: #fff7ed;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(6px);
}

.ghost-button:hover {
  background: rgba(0, 0, 0, 0.48);
  transform: translateY(-2px);
}

.hero-control {
  position: absolute;
  top: 50%;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  font-size: 42px;
  line-height: 1;
  background: rgba(0, 0, 0, 0.32);
  transform: translateY(-50%);
  transition: background 0.2s ease, opacity 0.2s ease;
  backdrop-filter: blur(5px);
}

.hero-control:hover {
  background: rgba(0, 0, 0, 0.55);
}

.hero-control.prev {
  left: 24px;
}

.hero-control.next {
  right: 24px;
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 32px;
  display: flex;
  gap: 8px;
  transform: translateX(-50%);
}

.hero-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
  transition: width 0.2s ease, background 0.2s ease;
}

.hero-dot.is-active {
  width: 34px;
  background: #f59e0b;
}

.quick-search,
.content-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 72px 24px 0;
}

.quick-search {
  text-align: center;
}

.section-heading {
  margin-bottom: 28px;
}

.section-heading.center {
  max-width: 760px;
  margin: 0 auto 24px;
}

.section-heading span,
.page-hero span {
  display: inline-block;
  margin-bottom: 8px;
  color: #d97706;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  font-weight: 800;
}

.section-heading h2,
.page-hero h1,
.story-panel h2 {
  margin: 0;
  color: #78350f;
  font-weight: 900;
  line-height: 1.12;
}

.section-heading h2,
.page-hero h1 {
  font-size: clamp(28px, 4vw, 42px);
}

.section-heading p,
.page-hero p {
  margin: 12px 0 0;
  color: #b45309;
  line-height: 1.75;
}

.search-box {
  display: flex;
  max-width: 760px;
  margin: 0 auto 22px;
  padding: 6px;
  border: 1px solid #fde68a;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 16px 32px rgba(146, 64, 14, 0.1);
}

.search-box.compact {
  margin: 28px 0 0;
  max-width: 620px;
}

.search-box input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: 0;
  padding: 0 20px;
  color: #78350f;
  background: transparent;
}

.search-box button {
  border: 0;
  border-radius: 999px;
  padding: 12px 24px;
  color: #fff;
  font-weight: 800;
  background: linear-gradient(135deg, #d97706, #c2410c);
}

.category-chips {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.category-chips a {
  padding: 9px 15px;
  border-radius: 999px;
  background: #fef3c7;
  color: #92400e;
  font-weight: 700;
}

.category-chips a:hover {
  background: #fde68a;
}

.movie-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.movie-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.movie-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.movie-card {
  overflow: hidden;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(146, 64, 14, 0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(146, 64, 14, 0.22);
}

.movie-cover {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: linear-gradient(135deg, #f59e0b, #7c2d12);
}

.movie-card.spotlight .movie-cover {
  aspect-ratio: 16 / 10;
}

.movie-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.movie-card:hover .movie-cover img,
.compact-card:hover img,
.ranking-card:hover img {
  transform: scale(1.08);
}

.movie-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.55), transparent 60%);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.movie-card:hover .movie-cover::after {
  opacity: 1;
}

.play-float {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  display: inline-flex;
  width: 56px;
  height: 56px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #fff;
  background: rgba(217, 119, 6, 0.9);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.85);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.movie-card:hover .play-float {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.movie-region {
  position: absolute;
  right: 12px;
  top: 12px;
  z-index: 3;
  padding: 5px 11px;
  border-radius: 999px;
  color: #fff;
  background: #d97706;
  font-size: 12px;
  font-weight: 800;
}

.movie-card-body {
  padding: 20px;
}

.movie-title {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  min-height: 48px;
  color: #78350f;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 900;
}

.movie-title:hover {
  color: #b45309;
}

.movie-card-body p {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  margin: 10px 0 14px;
  color: #b45309;
  font-size: 14px;
  line-height: 1.7;
}

.movie-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  color: #d97706;
  font-size: 13px;
  font-weight: 700;
}

.tag-row {
  margin-top: 14px;
}

.soft-panel {
  max-width: 1232px;
  margin-top: 72px;
  padding: 42px;
  border-radius: 32px;
  background: linear-gradient(135deg, #fef3c7, #ffedd5);
  box-shadow: 0 18px 42px rgba(146, 64, 14, 0.14);
}

.horizontal-strip {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 14px;
  scroll-snap-type: x mandatory;
}

.compact-card {
  flex: 0 0 260px;
  overflow: hidden;
  border-radius: 22px;
  background: #fff;
  scroll-snap-align: start;
  box-shadow: 0 8px 24px rgba(146, 64, 14, 0.12);
}

.compact-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.compact-card span {
  display: block;
  padding: 16px;
}

.compact-card strong,
.compact-card em {
  display: block;
}

.compact-card strong {
  color: #78350f;
  font-size: 16px;
  line-height: 1.35;
}

.compact-card em {
  margin-top: 6px;
  color: #d97706;
  font-size: 13px;
  font-style: normal;
}

.split-section {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 36px;
  align-items: start;
}

.rank-list {
  display: grid;
  gap: 14px;
}

.list-row {
  display: grid;
  grid-template-columns: 108px 48px 1fr;
  gap: 16px;
  align-items: center;
  overflow: hidden;
  padding: 12px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(146, 64, 14, 0.1);
}

.list-row img {
  width: 108px;
  height: 66px;
  border-radius: 12px;
  object-fit: cover;
}

.rank-number {
  color: #d97706;
  font-size: 24px;
  font-weight: 900;
}

.list-row strong,
.list-row em {
  display: block;
}

.list-row strong {
  color: #78350f;
}

.list-row em {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  margin-top: 4px;
  color: #b45309;
  font-size: 13px;
  font-style: normal;
}

.section-more {
  margin-top: 22px;
  padding: 12px 22px;
  color: #fff;
  background: linear-gradient(135deg, #d97706, #c2410c);
}

.page-hero {
  max-width: 1280px;
  margin: 0 auto;
  padding: 84px 24px 18px;
}

.page-hero > div {
  padding: 42px;
  border-radius: 32px;
  background: linear-gradient(135deg, #fef3c7, #ffedd5);
  box-shadow: 0 18px 42px rgba(146, 64, 14, 0.12);
}

.page-hero.small > div {
  max-width: 860px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.category-tile {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 22px;
  align-items: center;
  padding: 20px;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(146, 64, 14, 0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-tile:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 44px rgba(146, 64, 14, 0.2);
}

.tile-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.tile-images img {
  width: 100%;
  height: 82px;
  object-fit: cover;
  border-radius: 14px;
}

.tile-copy strong,
.tile-copy em {
  display: block;
}

.tile-copy strong {
  color: #78350f;
  font-size: 24px;
  font-weight: 900;
}

.tile-copy em {
  margin-top: 10px;
  color: #b45309;
  font-style: normal;
  line-height: 1.7;
}

.ranking-list {
  display: grid;
  gap: 18px;
}

.ranking-card {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 24px;
  align-items: stretch;
  overflow: hidden;
  padding: 18px;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(146, 64, 14, 0.12);
}

.ranking-cover {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

.ranking-cover img {
  width: 100%;
  height: 100%;
  min-height: 150px;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.ranking-cover strong {
  position: absolute;
  left: 12px;
  top: 12px;
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #d97706, #c2410c);
  font-size: 18px;
}

.ranking-copy {
  padding: 6px 0;
}

.ranking-copy > a {
  display: inline-block;
  color: #78350f;
  font-size: 24px;
  font-weight: 900;
}

.ranking-copy p {
  margin: 12px 0 16px;
  color: #b45309;
  line-height: 1.75;
}

.detail-hero {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  background: #111827;
}

.detail-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(4px) saturate(1.1);
  transform: scale(1.04);
}

.detail-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.52), rgba(0, 0, 0, 0.18)), linear-gradient(0deg, rgba(0, 0, 0, 0.7), transparent 55%);
}

.detail-wrap {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 44px 24px 72px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
  color: #fde68a;
  font-size: 14px;
}

.breadcrumb a:hover {
  color: #fff;
}

.detail-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 42px;
  align-items: center;
}

.detail-poster {
  overflow: hidden;
  border-radius: 28px;
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.38);
}

.detail-poster img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.detail-copy {
  color: #fff;
}

.detail-copy h1 {
  margin: 0 0 18px;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.08;
}

.detail-copy p {
  max-width: 780px;
  margin: 0 0 20px;
  color: #fef3c7;
  font-size: 19px;
  line-height: 1.8;
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.detail-meta span {
  padding: 7px 13px;
  border-radius: 999px;
  color: #fffbeb;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 13px;
  font-weight: 700;
}

.detail-copy .primary-button {
  margin-top: 24px;
}

.detail-content {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 32px;
  align-items: start;
}

.player-panel,
.story-panel {
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 14px 36px rgba(146, 64, 14, 0.12);
}

.player-panel {
  overflow: hidden;
  padding: 14px;
}

.player-box {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: #111827;
  aspect-ratio: 16 / 9;
}

.movie-player {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.player-cover {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: radial-gradient(circle, rgba(217, 119, 6, 0.1), rgba(0, 0, 0, 0.4));
  cursor: pointer;
}

.player-cover.is-hidden {
  display: none;
}

.play-button {
  width: 84px;
  height: 84px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-left: 5px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #d97706, #c2410c);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.34);
  font-size: 34px;
}

.story-panel {
  padding: 30px;
}

.story-panel h2 {
  margin: 0 0 12px;
  font-size: 24px;
}

.story-panel h2:not(:first-child) {
  margin-top: 26px;
}

.story-panel p {
  margin: 0;
  color: #92400e;
  line-height: 1.9;
}

.no-results {
  display: none;
  margin: 30px 0 0;
  padding: 22px;
  border-radius: 18px;
  text-align: center;
  color: #92400e;
  background: #fef3c7;
  font-weight: 800;
}

.no-results.is-visible {
  display: block;
}

.site-footer {
  margin-top: 88px;
  color: #fef3c7;
  background: linear-gradient(180deg, #78350f, #431407);
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 48px 24px;
  display: flex;
  justify-content: space-between;
  gap: 32px;
}

.footer-inner h2 {
  margin: 0 0 12px;
  color: #fff7ed;
}

.footer-inner p {
  max-width: 560px;
  margin: 0;
  color: #fde68a;
  line-height: 1.8;
}

.footer-links {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-links a {
  padding: 9px 14px;
  border-radius: 999px;
  color: #fde68a;
  background: rgba(255, 255, 255, 0.08);
}

.footer-links a:hover {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding: 18px 24px 30px;
  color: #fbbf24;
  border-top: 1px solid rgba(253, 230, 138, 0.18);
  font-size: 14px;
}

@media (max-width: 1100px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .movie-grid,
  .movie-grid.three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .split-section,
  .detail-content {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 820px) {
  .header-inner {
    height: 66px;
    padding: 0 16px;
  }

  .brand {
    min-width: 0;
  }

  .brand-text small {
    display: none;
  }

  .hero {
    height: 560px;
  }

  .hero-content {
    left: 18px;
    right: 18px;
    bottom: 70px;
  }

  .hero-content p {
    font-size: 16px;
  }

  .hero-control {
    display: none;
  }

  .quick-search,
  .content-section,
  .page-hero {
    padding-left: 16px;
    padding-right: 16px;
  }

  .search-box {
    border-radius: 24px;
    flex-direction: column;
    gap: 8px;
    padding: 10px;
  }

  .search-box input {
    min-height: 44px;
  }

  .movie-grid,
  .movie-grid.three,
  .movie-grid.two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .soft-panel,
  .page-hero > div {
    padding: 24px;
    border-radius: 24px;
  }

  .category-tile,
  .ranking-card,
  .detail-grid {
    grid-template-columns: 1fr;
  }

  .detail-poster {
    max-width: 320px;
  }

  .footer-inner {
    flex-direction: column;
  }
}

@media (max-width: 540px) {
  .brand-text strong {
    font-size: 18px;
  }

  .movie-grid,
  .movie-grid.three,
  .movie-grid.two {
    grid-template-columns: 1fr;
  }

  .list-row {
    grid-template-columns: 92px 38px 1fr;
    gap: 10px;
  }

  .list-row img {
    width: 92px;
  }

  .detail-copy h1 {
    font-size: 34px;
  }

  .play-button {
    width: 70px;
    height: 70px;
  }
}
