/* ==========================================================
   N体育首页专属样式
   作用域：.page-home
   设计语言：运动数据指挥台 · 纵向叙事长卷 · 非对称拼贴
========================================================== */
.page-home {
  background: var(--ns-off-white);
  overflow-x: hidden;
}

/* 页面滚动显现的渐进增强初始态：仅在 JS 可用时隐藏 */
.js .page-home [data-reveal] {
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.js .page-home [data-reveal]:not([data-revealed]) {
  opacity: 0;
  transform: translateY(28px);
}
.js .page-home [data-reveal][data-revealed] {
  opacity: 1;
  transform: translateY(0);
}

/* ========== 首屏拼贴：常用功能集 ========== */
.page-home .home-hero {
  position: relative;
  background: var(--ns-deep-blue);
  color: var(--ns-white);
  padding: 40px var(--ns-gutter);
  overflow: hidden;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
}

.page-home .home-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-home .home-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  opacity: 0.35;
  filter: saturate(0.75) contrast(1.1);
}

.page-home .home-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 27, 61, 0.96) 0%,
    rgba(10, 27, 61, 0.82) 52%,
    rgba(122, 77, 255, 0.28) 100%
  );
}

.page-home .home-hero__velocity-line {
  position: absolute;
  top: 0;
  right: 0;
  width: 46%;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--ns-orange), var(--ns-electric));
  z-index: 2;
  transform: rotate(-8deg) translateY(32px);
  opacity: 0.75;
}

.page-home .home-hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-top: 12px;
}

.page-home .home-hero__kicker {
  font-family: var(--ns-font-data);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ns-electric);
  margin: 0 0 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.page-home .home-hero__kicker::before {
  content: "";
  width: 30px;
  height: 2px;
  background: var(--ns-orange);
  display: inline-block;
  flex-shrink: 0;
}

.page-home .home-hero__title {
  font-family: var(--ns-font-heading);
  font-size: clamp(38px, 8.6vw, 78px);
  line-height: 1.04;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin: 0 0 18px;
  max-width: 10em;
}

.page-home .home-hero__title span {
  color: var(--ns-orange);
  position: relative;
}

.page-home .home-hero__lead {
  font-size: 16px;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.86);
  max-width: 620px;
  margin: 0 0 30px;
}

/* ---- 功能拼贴块 ---- */
.page-home .home-tiles {
  list-style: none;
  margin: 0 0 38px;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  max-width: 1080px;
}

.page-home .home-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  min-height: 176px;
  padding: 24px 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--ns-white);
  text-decoration: none;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
  clip-path: polygon(0 0, 100% 0, 100% 86%, 94% 100%, 0 100%);
  overflow: hidden;
}

.page-home .home-tile:hover,
.page-home .home-tile:focus-visible {
  outline: none;
  transform: translateY(-5px);
  box-shadow: 0 18px 34px rgba(10, 27, 61, 0.35);
}

.page-home .home-tile--record:hover,
.page-home .home-tile--record:focus-visible {
  background: rgba(0, 229, 255, 0.16);
}

.page-home .home-tile--schedule:hover,
.page-home .home-tile--schedule:focus-visible {
  background: rgba(255, 107, 0, 0.2);
}

.page-home .home-tile--possession:hover,
.page-home .home-tile--possession:focus-visible {
  background: rgba(122, 77, 255, 0.22);
}

.page-home .home-tile--entry:hover,
.page-home .home-tile--entry:focus-visible {
  background: rgba(255, 107, 0, 0.18);
}

.page-home .home-tile--schedule {
  clip-path: polygon(4% 0, 100% 0, 100% 100%, 0 94%);
}

.page-home .home-tile--possession {
  clip-path: polygon(0 0, 96% 0, 100% 100%, 0 100%);
}

.page-home .home-tile--entry {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 88%);
}

.page-home .home-tile__icon {
  width: 34px;
  height: 34px;
  color: var(--ns-electric);
  margin-bottom: auto;
}

.page-home .home-tile--schedule .home-tile__icon {
  color: var(--ns-orange);
}

.page-home .home-tile--possession .home-tile__icon {
  color: var(--ns-violet);
}

.page-home .home-tile--entry .home-tile__icon {
  color: var(--ns-electric);
}

.page-home .home-tile__index {
  position: absolute;
  top: 16px;
  right: 20px;
  font-family: var(--ns-font-data);
  font-size: 22px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.3);
}

.page-home .home-tile__title {
  font-family: var(--ns-font-heading);
  font-size: 22px;
  line-height: 1.28;
  letter-spacing: 0.02em;
  margin: 0;
}

.page-home .home-tile__note {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.66);
  margin-top: 6px;
}

.page-home .home-tile::after {
  content: "";
  position: absolute;
  bottom: 10px;
  right: 12px;
  width: 38px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--ns-orange));
  transform: rotate(-8deg);
}

.page-home .home-tile--record::after {
  background: linear-gradient(90deg, transparent, var(--ns-electric));
}

.page-home .home-tile--possession::after {
  background: linear-gradient(90deg, transparent, var(--ns-violet));
}

.page-home .home-tile--entry::after {
  background: linear-gradient(90deg, transparent, var(--ns-orange));
}

/* ---- 首屏数据 ---- */
.page-home .home-hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 36px;
  margin-top: 8px;
}

.page-home .home-hero__stat {
  font-family: var(--ns-font-data);
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.page-home .home-hero__stat b {
  font-size: 28px;
  font-weight: 700;
  color: var(--ns-white);
}

.page-home .home-hero__stat i {
  font-style: normal;
  color: var(--ns-orange);
  font-size: 18px;
}

.page-home .home-hero__stat em {
  font-style: normal;
  font-family: var(--ns-font-body);
  margin-left: 2px;
  color: rgba(255, 255, 255, 0.6);
}

/* ========== 品牌服务与变更说明 ========== */
.page-home .home-update {
  background: var(--ns-off-white);
  padding: 64px 0;
}

.page-home .home-update__inner {
  display: grid;
  gap: 36px;
  align-items: center;
}

.page-home .home-update__media {
  position: relative;
  clip-path: polygon(0 0, 100% 0, 100% 88%, 6% 100%);
  background: var(--ns-deep-blue);
}

.page-home .home-update__media img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: center;
  display: block;
  opacity: 0.92;
}

.page-home .home-update__badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--ns-orange);
  color: var(--ns-white);
  padding: 6px 14px;
  font-family: var(--ns-font-data);
  font-size: 12px;
  letter-spacing: 0.08em;
  clip-path: polygon(0 0, 100% 0, 100% 78%, 12% 100%);
}

.page-home .home-update__title {
  font-family: var(--ns-font-heading);
  font-size: clamp(30px, 4.6vw, 48px);
  line-height: 1.12;
  margin: 10px 0 16px;
  color: var(--ns-ink);
}

.page-home .home-update__lead {
  font-size: 15px;
  line-height: 1.8;
  color: var(--ns-gray);
  margin: 0 0 20px;
  max-width: 560px;
}

.page-home .home-update__list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}

.page-home .home-update__list li {
  position: relative;
  padding: 13px 0 13px 28px;
  border-bottom: 1px solid var(--ns-border);
  font-size: 15px;
  line-height: 1.7;
  color: var(--ns-ink);
}

.page-home .home-update__list li::before {
  content: "◆";
  position: absolute;
  left: 0;
  top: 16px;
  color: var(--ns-orange);
  font-size: 10px;
}

.page-home .home-update__list strong {
  font-weight: 500;
}

/* ========== 换设备登录指南 ========== */
.page-home .home-login {
  background: var(--ns-white);
  padding: 64px 0;
}

.page-home .home-login__inner {
  display: grid;
  gap: 36px;
  align-items: center;
}

.page-home .home-login__title {
  font-family: var(--ns-font-heading);
  font-size: clamp(30px, 4.6vw, 48px);
  line-height: 1.12;
  margin: 10px 0 14px;
  color: var(--ns-ink);
}

.page-home .home-login__lead {
  font-size: 15px;
  line-height: 1.8;
  color: var(--ns-gray);
  margin: 0 0 24px;
  max-width: 560px;
}

.page-home .home-login__steps {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}

.page-home .home-login__steps li {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px dashed var(--ns-border);
}

.page-home .home-login__steps li:last-child {
  border-bottom: none;
}

.page-home .home-login__step-num {
  font-family: var(--ns-font-data);
  font-size: 20px;
  line-height: 1.4;
  color: var(--ns-orange);
  flex-shrink: 0;
}

.page-home .home-login__steps h3 {
  font-family: var(--ns-font-heading);
  font-size: 19px;
  line-height: 1.3;
  margin: 0 0 6px;
  color: var(--ns-ink);
}

.page-home .home-login__steps p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--ns-gray);
}

.page-home .home-login__media {
  position: relative;
  clip-path: polygon(0 0, 96% 0, 100% 92%, 4% 100%);
  background: var(--ns-deep-blue);
}

.page-home .home-login__media img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  opacity: 0.92;
}

/* ========== 对局回放检索通道 ========== */
.page-home .home-replay {
  position: relative;
  background: var(--ns-deep-blue);
  color: var(--ns-white);
  padding: 68px 0;
  overflow: hidden;
}

.page-home .home-replay::before {
  content: "";
  position: absolute;
  top: -45%;
  right: -18%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(122, 77, 255, 0.4), transparent 68%);
  pointer-events: none;
}

.page-home .home-replay::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--ns-orange), var(--ns-electric), var(--ns-violet));
  opacity: 0.6;
}

.page-home .home-replay__inner {
  position: relative;
  z-index: 1;
}

.page-home .home-replay .section-label {
  color: var(--ns-orange);
}

.page-home .home-replay__title {
  font-family: var(--ns-font-heading);
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.1;
  margin: 10px 0 14px;
}

.page-home .home-replay__lead {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.78);
  max-width: 580px;
  margin: 0 0 30px;
}

.page-home .home-replay__search {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.16);
  margin-bottom: 26px;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%);
}

.page-home .home-replay__label {
  font-family: var(--ns-font-data);
  font-size: 14px;
  color: var(--ns-electric);
  letter-spacing: 0.06em;
}

.page-home .home-replay__input {
  flex: 1 1 220px;
  min-width: 180px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
  color: var(--ns-white);
  font-family: var(--ns-font-body);
  font-size: 15px;
  border-radius: 0;
  outline: none;
}

.page-home .home-replay__input:focus {
  border-color: var(--ns-electric);
}

.page-home .home-replay__input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.page-home .home-replay__results {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
}

.page-home .home-replay__results li {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 16px;
  padding: 14px 16px;
  margin-bottom: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.25s ease, border-color 0.25s ease;
}

.page-home .home-replay__results li:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 107, 0, 0.45);
}

.page-home .home-replay__round {
  font-family: var(--ns-font-data);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  flex: 0 0 auto;
}

.page-home .home-replay__name {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  flex: 1 1 160px;
}

.page-home .home-replay__enter {
  font-family: var(--ns-font-data);
  font-size: 13px;
  color: var(--ns-orange);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 107, 0, 0.4);
  padding-bottom: 1px;
  transition: border-color 0.2s ease;
}

.page-home .home-replay__enter:hover {
  border-color: var(--ns-orange);
}

.page-home .home-replay__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}

.page-home .home-replay__help {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  border-bottom: 1px dotted rgba(255, 255, 255, 0.35);
  padding-bottom: 2px;
  transition: color 0.2s ease;
}

.page-home .home-replay__help:hover {
  color: var(--ns-electric);
}

.page-home .home-replay .btn--ghost {
  border-color: var(--ns-electric);
  color: var(--ns-electric);
}

.page-home .home-replay .btn--ghost:hover {
  border-color: var(--ns-orange);
  color: var(--ns-orange);
}

/* ========== 实时数据预览 ========== */
.page-home .home-live {
  background: var(--ns-off-white);
  padding: 68px 0;
}

.page-home .home-live__header {
  margin-bottom: 34px;
}

.page-home .home-live__title {
  font-family: var(--ns-font-heading);
  font-size: clamp(30px, 4.8vw, 54px);
  line-height: 1.1;
  margin: 10px 0 12px;
  color: var(--ns-ink);
}

.page-home .home-live__lead {
  color: var(--ns-gray);
  line-height: 1.75;
  max-width: 660px;
  margin: 0;
}

.page-home .home-live__grid {
  display: grid;
  gap: 18px;
}

.page-home .home-live__card {
  background: var(--ns-white);
  border: 1px solid var(--ns-border);
  padding: 26px;
  box-shadow: var(--ns-shadow-sm);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%);
}

.page-home .home-live__card-title {
  font-family: var(--ns-font-heading);
  font-size: 22px;
  line-height: 1.25;
  margin: 0 0 6px;
  color: var(--ns-ink);
}

.page-home .home-live__card-sub {
  font-size: 13px;
  color: var(--ns-gray);
  margin: 0 0 16px;
}

.page-home .home-live__sched-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
}

.page-home .home-live__sched-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 0;
  border-bottom: 1px dashed var(--ns-border);
  font-family: var(--ns-font-data);
  font-size: 14px;
}

.page-home .home-live__sched-list li:first-child {
  border-top: 1px dashed var(--ns-border);
}

.page-home .home-live__sched-list li span {
  flex: 0 0 58px;
  color: var(--ns-gray);
}

.page-home .home-live__sched-list li b {
  flex: 1;
  font-weight: 500;
  color: var(--ns-ink);
}

.page-home .home-live__sched-list li em {
  font-style: normal;
  color: var(--ns-orange);
}

.page-home .home-live__link {
  display: inline-block;
  margin-top: 4px;
  font-family: var(--ns-font-data);
  font-size: 13px;
  color: var(--ns-deep-blue);
  text-decoration: none;
  border-bottom: 1px solid var(--ns-electric);
  padding-bottom: 2px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.page-home .home-live__link:hover {
  color: var(--ns-orange);
  border-color: var(--ns-orange);
}

/* 控球率图表 */
.page-home .home-possession__chart {
  margin: 18px 0 14px;
}

.page-home .home-possession__row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.page-home .home-possession__row:last-child {
  margin-bottom: 0;
}

.page-home .home-possession__team {
  flex: 0 0 42px;
  font-family: var(--ns-font-data);
  font-size: 13px;
  color: var(--ns-gray);
}

.page-home .home-possession__track {
  flex: 1;
  height: 12px;
  background: var(--ns-off-white);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}

.page-home .home-possession__bar {
  display: block;
  height: 100%;
  border-radius: 2px;
  animation: homeBarGlow 2.2s ease-in-out infinite alternate;
}

.page-home .home-possession__bar--a {
  width: 56.2%;
  background: linear-gradient(90deg, var(--ns-orange), var(--ns-electric));
}

.page-home .home-possession__bar--b {
  width: 43.8%;
  background: linear-gradient(90deg, var(--ns-violet), var(--ns-electric));
}

@keyframes homeBarGlow {
  from {
    opacity: 0.82;
  }
  to {
    opacity: 1;
    filter: brightness(1.08);
  }
}

.page-home .home-possession__val {
  flex: 0 0 56px;
  font-family: var(--ns-font-data);
  font-size: 16px;
  font-weight: 500;
  color: var(--ns-ink);
  text-align: right;
}

.page-home .home-possession__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--ns-gray);
  margin: 14px 0 10px;
}

.page-home .home-possession__live-dot {
  width: 8px;
  height: 8px;
  background: var(--ns-green);
  border-radius: 50%;
  animation: homeLivePulse 1.4s ease-in-out infinite;
}

@keyframes homeLivePulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(40, 199, 111, 0.6);
  }
  60% {
    box-shadow: 0 0 0 6px rgba(40, 199, 111, 0);
  }
}

/* 图表卡片 */
.page-home .home-live__card--chart {
  padding: 0;
  overflow: hidden;
}

.page-home .home-live__chart-img {
  aspect-ratio: 3 / 2;
  background: var(--ns-deep-blue);
  overflow: hidden;
}

.page-home .home-live__chart-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-home .home-live__chart-caption {
  padding: 14px 26px 18px;
  font-size: 13px;
  color: var(--ns-gray);
  margin: 0;
  line-height: 1.5;
}

/* ========== 最新动态 ========== */
.page-home .home-news {
  background: var(--ns-white);
  padding: 68px 0 72px;
}

.page-home .home-news__header {
  margin-bottom: 30px;
}

.page-home .home-news__title {
  font-family: var(--ns-font-heading);
  font-size: clamp(30px, 4.6vw, 50px);
  line-height: 1.12;
  margin: 10px 0 0;
  color: var(--ns-ink);
}

.page-home .home-news__grid {
  display: grid;
  gap: 16px;
}

.page-home .home-news__item {
  border: 1px solid var(--ns-border);
  border-left: 4px solid var(--ns-orange);
  padding: 24px;
  background: var(--ns-off-white);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.page-home .home-news__item:hover {
  transform: translateY(-4px);
  box-shadow: var(--ns-shadow-md);
}

.page-home .home-news__tag {
  display: inline-block;
  font-family: var(--ns-font-data);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ns-orange);
  margin-bottom: 10px;
  border-bottom: 1px solid rgba(255, 107, 0, 0.3);
  padding-bottom: 2px;
}

.page-home .home-news__item h3 {
  font-family: var(--ns-font-heading);
  font-size: 21px;
  line-height: 1.3;
  color: var(--ns-ink);
  margin: 0 0 8px;
}

.page-home .home-news__item p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--ns-gray);
  margin: 0;
}

.page-home .home-news__more {
  text-align: center;
  margin-top: 34px;
}

/* ==========================================================
   响应式布局
========================================================== */
@media (min-width: 560px) {
  .page-home .home-tiles {
    grid-template-columns: 1fr 1fr;
  }

  .page-home .home-news__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 620px) {
  .page-home .home-update__media img {
    height: 380px;
  }

  .page-home .home-login__media img {
    height: 380px;
  }
}

@media (min-width: 900px) {
  .page-home .home-hero {
    padding: 64px var(--ns-gutter);
  }

  .page-home .home-hero__inner {
    max-width: 1200px;
    margin: 0 auto;
  }

  .page-home .home-tiles {
    grid-template-columns: 1.1fr 0.9fr 1fr;
    grid-template-rows: 210px 190px 160px;
    grid-template-areas:
      "record schedule possession"
      "record schedule possession"
      "record entry possession";
  }

  .page-home .home-tile--record {
    grid-area: record;
    min-height: 100%;
  }

  .page-home .home-tile--schedule {
    grid-area: schedule;
    min-height: 100%;
  }

  .page-home .home-tile--possession {
    grid-area: possession;
    min-height: 100%;
  }

  .page-home .home-tile--entry {
    grid-area: entry;
    min-height: 100%;
  }

  .page-home .home-tile__title {
    font-size: 24px;
  }

  .page-home .home-hero__lead {
    font-size: 17px;
  }

  .page-home .home-update__inner {
    grid-template-columns: 0.95fr 1.05fr;
    gap: 48px;
  }

  .page-home .home-login__inner {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 48px;
  }

  .page-home .home-update__media img,
  .page-home .home-login__media img {
    height: 440px;
  }

  .page-home .home-live__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .page-home .home-live__card {
    padding: 28px;
  }

  .page-home .home-replay__search {
    padding: 18px;
  }

  .page-home .home-news__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (min-width: 1200px) {
  .page-home .home-hero__title {
    font-size: 80px;
  }

  .page-home .home-tiles {
    grid-template-rows: 230px 200px 170px;
  }

  .page-home .home-update,
  .page-home .home-login {
    padding: 88px 0;
  }

  .page-home .home-live,
  .page-home .home-news {
    padding: 96px 0;
  }

  .page-home .home-replay {
    padding: 96px 0;
  }
}
