.page-home{
  --home-gold-grad: linear-gradient(135deg, #C9A76A 0%, #E3C982 50%, #B03A2E 100%);
  --home-red-ink: #8A1C0F;
  --home-red-soft: #F4DEDA;
  --home-blue-ink: #1F3A5F;
  --home-green-ink: #1E6F50;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
}
.page-home a{
  text-decoration: none;
  color: inherit;
}
.page-home .skip-link{
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--red);
  color: #fff;
  padding: 8px 16px;
  z-index: 1001;
  border-radius: 0 0 8px 0;
}
.page-home .skip-link:focus{
  left: 0;
}
/* ---------- 迎宾主视觉 ---------- */
.page-home .dp-hero{
  position: relative;
  padding: 56px 20px 64px;
  background: var(--home-gold-grad);
  border-bottom: 6px solid var(--red-deep);
  overflow: hidden;
}
.page-home .dp-hero__badge{
  position: relative;
  z-index: 2;
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 16px;
}
.page-home .dp-hero__kicker{
  position: relative;
  z-index: 2;
  text-align: center;
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--red-deep);
  letter-spacing: 8px;
  margin-bottom: 8px;
}
.page-home .dp-hero__title{
  position: relative;
  z-index: 2;
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(48px, 10vw, 90px);
  line-height: 1.12;
  color: #fff;
  text-shadow: 0 3px 12px rgba(138, 28, 15, 0.35);
  margin-bottom: 20px;
}
.page-home .dp-hero__title-sub{
  display: inline-block;
  font-size: 0.42em;
  letter-spacing: 14px;
  background: #fff;
  color: var(--red);
  padding: 4px 14px 4px 28px;
  border-radius: 40px;
  box-shadow: 0 4px 12px rgba(138, 28, 15, 0.18);
  margin-top: 6px;
}
.page-home .dp-hero__intro{
  position: relative;
  z-index: 2;
  max-width: 640px;
  margin: 0 auto 24px;
  text-align: center;
  color: #fff;
  background: rgba(138, 28, 15, 0.28);
  backdrop-filter: blur(4px);
  border-radius: 20px;
  padding: 16px 22px;
  font-size: 15px;
  line-height: 1.8;
  border: 1px solid rgba(255, 249, 240, 0.35);
}
.page-home .dp-hero__actions{
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-bottom: 30px;
}
.page-home .dp-hero__btn,
.page-home .dp-hero__ghost{
  min-width: 180px;
  justify-content: center;
}
.page-home .dp-hero__ghost{
  background: transparent;
  border-color: #fff;
  color: #fff;
}
.page-home .dp-hero__ghost:hover{
  background: rgba(255, 255, 255, 0.15);
}
.page-home .dp-hero__media{
  position: relative;
  z-index: 1;
  max-width: 340px;
  margin: 0 auto;
  border-radius: 30px 30px 18px 18px;
  border: 4px solid rgba(255, 249, 240, 0.7);
  box-shadow: 0 18px 40px rgba(138, 28, 15, 0.3);
  overflow: hidden;
  transform: rotate(-2deg);
}
.page-home .dp-hero__img{
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: cover;
}
.page-home .dp-hero__stat{
  position: relative;
  z-index: 2;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 12px;
  margin-top: 22px;
  background: #fff;
  border-radius: 60px;
  padding: 10px 24px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 8px 24px rgba(138, 28, 15, 0.15);
}
.page-home .dp-hero__stat-num{
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--red);
  font-weight: 700;
}
.page-home .dp-hero__stat-label{
  font-size: 13px;
  color: var(--ink);
}
/* 金币飞舞装饰 */
.page-home .dp-coin{
  position: absolute;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #FFF3C4, #C9A76A 75%);
  border: 3px solid rgba(255, 249, 240, 0.8);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  color: var(--red);
  animation: dp-coin-float 6s ease-in-out infinite;
  transition: transform 0.3s ease, background 0.3s ease;
}
.page-home .dp-coin:hover{
  background: radial-gradient(circle at 35% 30%, #FFF6D0, #E3C982 75%);
  transform: scale(1.08) rotate(8deg);
}
.page-home .dp-coin--one{ top: 8%; left: 6%; animation-delay: 0s; }
.page-home .dp-coin--two{ top: 20%; right: 8%; width: 40px; height: 40px; font-size: 18px; animation-delay: 0.8s; }
.page-home .dp-coin--three{ bottom: 18%; left: 12%; width: 38px; height: 38px; font-size: 16px; animation-delay: 1.6s; }
.page-home .dp-coin--four{ bottom: 8%; right: 16%; animation-delay: 2.4s; }
.page-home .dp-coin--five{ top: 45%; left: 22%; width: 30px; height: 30px; font-size: 14px; animation-delay: 3.2s; }

@keyframes dp-coin-float{
  0%, 100%{ transform: translateY(0) rotate(0); }
  50%{ transform: translateY(-18px) rotate(6deg); }
}

/* ---------- 功能直达 ---------- */
.page-home .section{
  padding: 40px 20px;
}
.page-home .dp-quick__head{
  margin-bottom: 28px;
  text-align: center;
}
.page-home .dp-quick__grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.page-home .dp-card{
  position: relative;
  display: block;
  background: var(--white-warm);
  border: 2px solid rgba(201, 167, 106, 0.5);
  border-radius: 26px;
  padding: 28px 22px 24px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  box-shadow: var(--shadow-panel);
  overflow: hidden;
}
.page-home .dp-card::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(to right, var(--gold-bright), var(--red));
  border-radius: 26px 26px 0 0;
}
.page-home .dp-card:hover{
  transform: translateY(-6px) rotate(0.5deg);
  box-shadow: 0 12px 32px rgba(45, 42, 38, 0.12);
  border-color: var(--gold);
}
.page-home .dp-card__icon{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--home-gold-grad);
  color: #fff;
  font-size: 28px;
  margin-bottom: 18px;
  box-shadow: 0 6px 16px rgba(176, 58, 46, 0.2);
}
.page-home .dp-card__title{
  font-size: 21px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--ink);
}
.page-home .dp-card__desc{
  font-size: 14px;
  line-height: 1.7;
  color: #5A5650;
  margin-bottom: 16px;
}
.page-home .dp-card__badge{
  display: inline-block;
  padding: 4px 14px;
  border-radius: 30px;
  background: rgba(31, 58, 95, 0.08);
  color: var(--blue);
  font-size: 12px;
  font-weight: 600;
}

/* ---------- 版本亮点 ---------- */
.page-home .dp-feature{
  display: grid;
  gap: 32px;
  align-items: center;
  background: var(--paper-deep);
  border-radius: 36px;
  margin: 0 12px;
  padding: 36px 24px;
}
.page-home .dp-feature__media{
  max-width: 260px;
  margin: 0 auto;
  transform: rotate(2deg);
  border-radius: 30px;
  border: 4px solid #fff;
  box-shadow: 0 18px 40px rgba(45, 42, 38, 0.18);
  overflow: hidden;
}
.page-home .dp-feature__img{
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.page-home .dp-feature__content{
  padding: 0 6px;
}
.page-home .dp-feature__lead{
  font-size: 17px;
  line-height: 1.8;
  margin: 18px 0 20px;
  color: var(--ink);
}
.page-home .dp-feature__list{
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: grid;
  gap: 12px;
}
.page-home .dp-feature__list li{
  position: relative;
  padding-left: 26px;
  line-height: 1.7;
  font-size: 14px;
  color: #4A463F;
}
.page-home .dp-feature__list li::before{
  content: "¥";
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--red);
  font-weight: 700;
}

/* ---------- 最新动态 ---------- */
.page-home .dp-news__head{
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 26px;
}
.page-home .dp-news-item{
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px 16px;
  align-items: start;
  padding: 24px 0;
  border-bottom: 1px dashed rgba(201, 167, 106, 0.6);
  transition: background 0.3s ease;
}
.page-home .dp-news-item:last-child{
  border-bottom: none;
}
.page-home .dp-news-item__title{
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.5;
  grid-column: 2;
}
.page-home .dp-news-item__summary{
  grid-column: 2;
  margin: -8px 0 0;
  font-size: 14px;
  color: #5A5650;
  line-height: 1.7;
}
.page-home .dp-news-item__link{
  grid-column: 2;
  justify-self: start;
  color: var(--red);
  font-weight: 600;
  font-size: 14px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s ease;
}
.page-home .dp-news-item__link:hover{
  border-bottom-color: var(--red);
}
.page-home .dp-news-item .tag{
  grid-column: 1;
  grid-row: 1;
  margin-top: 3px;
}

/* ---------- 服务概览 ---------- */
.page-home .dp-service{
  background: var(--red-deep);
  color: #fff;
  border-radius: 36px;
  margin: 0 12px;
  padding: 40px 24px 36px;
  display: grid;
  gap: 28px;
}
.page-home .dp-service__media{
  max-width: 180px;
  margin: 0 auto;
  border-radius: 50%;
  border: 4px solid var(--gold);
  overflow: hidden;
  transform: rotate(-4deg);
}
.page-home .dp-service__img{
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.page-home .dp-service .section-kicker{
  color: var(--gold-bright);
}
.page-home .dp-service .section-heading{
  color: #fff;
  margin-bottom: 20px;
}
.page-home .dp-service__grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
.page-home .dp-service-block{
  background: rgba(255, 249, 240, 0.08);
  border: 1px solid rgba(227, 201, 130, 0.35);
  border-radius: 18px;
  padding: 18px 20px;
}
.page-home .dp-service-block__title{
  font-size: 16px;
  color: var(--gold-bright);
  margin-bottom: 10px;
}
.page-home .dp-service-block p{
  font-size: 14px;
  line-height: 1.8;
  margin: 0;
  color: rgba(255, 249, 240, 0.88);
}
.page-home .dp-service-block__link{
  color: #fff;
  border-bottom: 1px solid var(--gold);
  transition: color 0.3s ease;
}
.page-home .dp-service-block__link:hover{
  color: var(--gold-bright);
}
.page-home .dp-service-block__more{
  display: inline-block;
  margin-top: 10px;
  color: var(--gold-bright);
  font-weight: 600;
  font-size: 14px;
}

/* ---------- 详情区块 ---------- */
.page-home .dp-details{
  border-bottom: 1px solid rgba(201, 167, 106, 0.45);
}
.page-home .dp-details__row{
  display: grid;
  gap: 20px;
  align-items: center;
}
.page-home .dp-details__aside{
  display: flex;
  justify-content: center;
}
.page-home .dp-details__card{
  width: 160px;
  height: 160px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #C9A76A, #8A1C0F);
  color: #fff;
  box-shadow: 0 10px 28px rgba(138, 28, 15, 0.22);
  transform: rotate(3deg);
  text-align: center;
}
.page-home .dp-details__card-num{
  font-family: var(--font-display);
  font-size: 34px;
  line-height: 1.2;
  font-weight: 700;
}
.page-home .dp-details__card-label{
  font-size: 12px;
  max-width: 120px;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.9);
}
.page-home .dp-details__title{
  font-size: 26px;
  margin-bottom: 12px;
  color: var(--ink);
}
.page-home .dp-details__text p{
  line-height: 1.75;
  color: #4A463F;
  font-size: 15px;
  margin-bottom: 16px;
}
.page-home .dp-details__link{
  color: var(--red);
  font-weight: 600;
  border-bottom: 2px solid rgba(176, 58, 46, 0.3);
  padding-bottom: 2px;
  transition: border-color 0.3s ease;
}
.page-home .dp-details__link:hover{
  border-color: var(--red);
}
.page-home .dp-details--reverse .dp-details__row{
  direction: rtl;
}
.page-home .dp-details--reverse .dp-details__row > *{
  direction: ltr;
}

/* ---------- 文化条带 ---------- */
.page-home .dp-culture{
  margin-top: 20px;
  padding: 48px 24px;
  background: linear-gradient(160deg, rgba(201, 167, 106, 0.18) 0%, rgba(245, 233, 211, 0.9) 70%);
  border-radius: 36px;
  margin-left: 12px;
  margin-right: 12px;
  display: grid;
  gap: 28px;
  align-items: center;
}
.page-home .dp-culture__media{
  max-width: 300px;
  margin: 0 auto;
  border-radius: 30px 30px 10px 10px;
  border: 3px solid var(--gold);
  box-shadow: 0 12px 32px rgba(45, 42, 38, 0.12);
  overflow: hidden;
  transform: rotate(-2deg);
}
.page-home .dp-culture__img{
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.page-home .dp-culture__title{
  font-size: 30px;
  margin-bottom: 14px;
  color: var(--red-deep);
}
.page-home .dp-culture__content p{
  line-height: 1.8;
  color: #4A463F;
  margin-bottom: 22px;
}
.page-home .dp-culture__content .btn{
  display: inline-block;
}
.page-home .dp-culture__content .btn-gold{
  background: linear-gradient(135deg, #C9A76A, #8A1C0F);
  border: none;
  color: #fff;
}

/* ---------- 桌面端布点 ---------- */
@media (min-width: 768px){
  .page-home .dp-hero{
    padding: 72px 24px 80px;
  }
  .page-home .dp-hero__intro{
    max-width: 700px;
    font-size: 16px;
  }
  .page-home .dp-quick__grid{
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .page-home .dp-feature{
    grid-template-columns: 0.9fr 1.4fr;
    gap: 48px;
    margin: 0 24px;
    padding: 48px 40px;
  }
  .page-home .dp-feature__media{
    max-width: 280px;
    margin: 0;
    transform: rotate(2deg) translateY(10px);
  }
  .page-home .dp-news{
    padding-left: 24px;
    padding-right: 24px;
  }
  .page-home .dp-news-item{
    grid-template-columns: auto 1fr auto;
    gap: 8px 18px;
    padding: 28px 0;
    align-items: center;
  }
  .page-home .dp-news-item__title{
    font-size: 20px;
  }
  .page-home .dp-news-item__summary{
    margin: 0;
  }
  .page-home .dp-news-item .tag{
    grid-column: 1;
    grid-row: 1 / span 2;
    margin-top: 0;
  }
  .page-home .dp-news-item__link{
    grid-column: 3;
    grid-row: 1 / span 2;
    justify-self: end;
  }
  .page-home .dp-service{
    grid-template-columns: 0.6fr 1.6fr;
    gap: 40px;
    margin: 0 24px;
    padding: 48px 40px;
  }
  .page-home .dp-service__grid{
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    align-content: center;
  }
  .page-home .dp-details{
    padding-left: 32px;
    padding-right: 32px;
  }
  .page-home .dp-details__row{
    grid-template-columns: 1.4fr 0.6fr;
    gap: 40px;
  }
  .page-home .dp-details--reverse .dp-details__row{
    grid-template-columns: 0.6fr 1.4fr;
  }
  .page-home .dp-details__card{
    width: 180px;
    height: 180px;
  }
  .page-home .dp-details__card-num{
    font-size: 40px;
  }
  .page-home .dp-culture{
    grid-template-columns: 0.8fr 1.4fr;
    gap: 48px;
    margin-left: 24px;
    margin-right: 24px;
    padding: 52px 40px;
  }
  .page-home .dp-culture__media{
    max-width: 320px;
  }
}
@media (min-width: 1200px){
  .page-home .dp-hero{
    padding: 80px 32px 96px;
  }
  .page-home .dp-hero__title{
    font-size: clamp(64px, 8vw, 96px);
  }
  .page-home .dp-feature,
  .page-home .dp-service,
  .page-home .dp-culture{
    margin-left: auto;
    margin-right: auto;
    max-width: 1152px;
  }
}

/* 动效减弱适配 */
@media (prefers-reduced-motion: reduce){
  .page-home .dp-coin{
    animation: none;
  }
  .page-home [data-reveal]{
    opacity: 1 !important;
    transform: none !important;
  }
  .page-home .dp-card{
    transition: border-color 0.2s ease, transform 0.2s ease;
  }
}
.page-home .to-top{
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  border: 2px solid var(--gold-bright);
  box-shadow: var(--shadow-cta);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.page-home .to-top-visible{
  opacity: 1;
  pointer-events: auto;
}
.page-home [data-reveal]{
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.page-home [data-reveal].is-revealed{
  opacity: 1;
  transform: none;
}
