/* 首页 — 对齐效果图 首页.png */

.page-home .app-main {
  background: #f2f4f8;
}

/* 顶部蓝色区域 */
.page-home .home-hero {
  position: relative;
  min-height: 168px;
  padding: 18px 16px 32px;
  color: #fff;
  overflow: hidden;
  background: linear-gradient(165deg, #0c4db8 0%, #0052d9 42%, #004098 100%);
}

.page-home .home-hero__ribbon {
  position: absolute;
  top: -20px;
  right: -30%;
  width: 90%;
  height: 120px;
  background: linear-gradient(120deg, transparent 30%, rgba(196, 30, 34, 0.85) 55%, rgba(154, 24, 28, 0.6) 100%);
  transform: rotate(-8deg);
  pointer-events: none;
}

.page-home .home-hero__skyline {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 28px;
  height: 56px;
  opacity: 0.35;
  background: url("/assets/images/hero-skyline.svg") center bottom / cover no-repeat;
  pointer-events: none;
}

.page-home .home-hero__curve {
  position: absolute;
  left: -8px;
  right: -8px;
  bottom: -1px;
  height: 22px;
  background: #f2f4f8;
  border-radius: 18px 18px 0 0;
  z-index: 2;
}

.page-home .home-hero__inner {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
}

.page-home .home-hero__text h1 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 2px;
  line-height: 1.2;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

.page-home .home-hero__text .slogan {
  margin: 0;
  color: rgba(255, 255, 255, 0.95);
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0.5px;
}

.page-home .home-hero__emblem {
  flex-shrink: 0;
  width: 86px;
  height: 86px;
  overflow: hidden;
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.page-home .home-hero__emblem img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 8%;
}

/* 通知 */
.page-home .notice-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: -16px 14px 12px;
  padding: 12px 14px;
  position: relative;
  z-index: 5;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(26, 45, 77, 0.08);
}

.page-home .notice-bar .tag {
  display: flex;
  align-items: center;
  gap: 5px;
  flex-shrink: 0;
  color: #c41e22;
  font-size: 13px;
  font-weight: 600;
}

.page-home .notice-bar .tag svg {
  width: 16px;
  height: 16px;
}

.page-home .notice-bar .divider {
  width: 1px;
  height: 14px;
  background: #e4e8ef;
}

.page-home .notice-bar.notice-rotate .text {
  transition: opacity 0.35s ease;
}

.page-home .notice-bar.notice-rotate .text.is-fade {
  opacity: 0.35;
}

.page-home .notice-bar .text {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  color: #4a5568;
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.page-home .notice-bar .arrow svg {
  width: 18px;
  height: 18px;
  color: #b0b8c4;
}

/* 服务宫格 */
.page-home .service-card {
  margin: 0 14px 12px;
  padding: 18px 12px 16px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(26, 45, 77, 0.06);
}

.page-home .service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px 6px;
}

.page-home .service-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 0;
  text-align: center;
  background: none;
  border: 0;
}

.page-home .svc-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.12);
}

.page-home .svc-icon svg {
  width: 26px;
  height: 26px;
  color: #fff;
}

.page-home .svc-icon--blue { background: linear-gradient(145deg, #3d7ee8, #0052d9); }
.page-home .svc-icon--orange { background: linear-gradient(145deg, #f0a050, #e67a2e); }
.page-home .svc-icon--red { background: linear-gradient(145deg, #e84a4e, #c41e22); }
.page-home .svc-icon--purple { background: linear-gradient(145deg, #8b7ce8, #5b4fc7); }
.page-home .svc-icon--green { background: linear-gradient(145deg, #4cb88a, #2d9d6b); }
.page-home .svc-icon--cyan { background: linear-gradient(145deg, #5eb0e8, #3a8fd9); }

.page-home .service-item strong {
  color: #1a1f2e;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
}

.page-home .service-item small {
  color: #8c94a3;
  font-size: 11px;
  line-height: 1.35;
}

/* 红色横幅 */
.page-home .plan-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin: 0 14px 12px;
  padding: 18px 16px;
  min-height: 108px;
  color: #fff;
  border-radius: 12px;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 50%, rgba(255, 215, 0, 0.15), transparent 45%),
    linear-gradient(135deg, #d42226 0%, #b91c22 55%, #9a181c 100%);
  box-shadow: 0 4px 16px rgba(196, 30, 34, 0.25);
}

.page-home .plan-banner__text h2 {
  margin: 0 0 6px;
  font-size: 20px;
  font-weight: 700;
}

.page-home .plan-banner__text p {
  margin: 0 0 12px;
  font-size: 12px;
  opacity: 0.92;
}

.page-home .plan-banner__btn {
  display: inline-flex;
  align-items: center;
  padding: 7px 16px;
  color: #c41e22;
  font-size: 13px;
  font-weight: 600;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.page-home .plan-banner__illus {
  flex-shrink: 0;
  width: 100px;
  height: 80px;
  object-fit: contain;
  object-position: bottom right;
}

/* 服务指南 */
.page-home .guide-card {
  margin: 0 14px 16px;
  padding: 16px 14px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(26, 45, 77, 0.06);
}

.page-home .guide-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.page-home .guide-head h2 {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: #1a1f2e;
}

.page-home .guide-head a {
  color: #8c94a3;
  font-size: 13px;
}

.page-home .guide-scroll {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 4px;
  -webkit-overflow-scrolling: touch;
}

.page-home .guide-scroll::-webkit-scrollbar {
  display: none;
}

.page-home .guide-item {
  flex: 0 0 32%;
  min-width: 100px;
  padding: 12px 10px;
  background: #f7f8fa;
  border: 1px solid #e8ecf2;
  border-radius: 10px;
}

.page-home .guide-item .g-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-bottom: 8px;
  border-radius: 8px;
}

.page-home .guide-item .g-icon svg {
  width: 20px;
  height: 20px;
  color: #fff;
}

.page-home .guide-item strong {
  display: block;
  margin-bottom: 4px;
  font-size: 13px;
  font-weight: 600;
  color: #1a1f2e;
}

.page-home .guide-item small {
  font-size: 11px;
  color: #8c94a3;
}

