/* =========================================================
   VIPZAI PC 首页 v1.0
   作用域：body.vip-home-template
   ========================================================= */
body.vip-home-template { margin: 0; background: var(--vip-white); }
.vip-home-template *, .vip-home-template *::before, .vip-home-template *::after { box-sizing: border-box; }
.vip-home-template img { max-width: 100%; }
.vip-home-template .vip-home-container { width: min(var(--vip-container), calc(100% - 32px)); margin: 0 auto; }
.vip-home-template .vip-home-skip { position: fixed; left: 16px; top: -80px; z-index: 10050; padding: 10px 16px; background: var(--vip-surface-dark); color: var(--vip-white); }
.vip-home-template .vip-home-skip:focus { top: 12px; }
.vip-home-template .vip-home-section { padding: 64px 0; }
.vip-home-template .vip-home-section:nth-of-type(even) { background: var(--vip-bg-soft); }
.vip-home-template .vip-home-eyebrow { margin: 0 0 10px; color: var(--vip-primary); font-size: 13px; line-height: 1.4; letter-spacing: .08em; font-weight: 700; }
.vip-home-template .vip-home-section-head { max-width: 760px; margin: 0 auto 32px; text-align: center; }
.vip-home-template .vip-home-section-head--split { max-width: none; display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; text-align: left; }
.vip-home-template .vip-home-section-head h2 { margin: 0; color: var(--vip-heading); font-size: 30px; line-height: 1.35; font-weight: 700; }
.vip-home-template .vip-home-section-head p:not(.vip-home-eyebrow) { margin: 12px 0 0; color: var(--vip-text-soft); font-size: 16px; line-height: 1.8; }
.vip-home-template .vip-home-text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--vip-primary); font-style: normal; font-weight: 700; }
.vip-home-template .vip-home-text-link::after { content: "→"; }
.vip-home-template .vip-home-text-link--top { flex: 0 0 auto; margin-bottom: 5px; }

/* Hero */
.vip-home-template .vip-home-hero { width: 100%; overflow: hidden; background: #e9edf1; }
.vip-home-template .vip-home-hero__viewport { position: relative; width: 100%; aspect-ratio: 16 / 5; overflow: hidden; }
.vip-home-template .vip-home-hero__slides { position: absolute; inset: 0; margin: 0; padding: 0; list-style: none; }
.vip-home-template .vip-home-hero__slide { position: absolute; inset: 0; z-index: 1; opacity: 0; visibility: hidden; transition: opacity .55s ease, visibility .55s ease; }
.vip-home-template .vip-home-hero__slide.is-active { z-index: 2; opacity: 1; visibility: visible; }
.vip-home-template .vip-home-hero__slide a, .vip-home-template .vip-home-hero__slide img { display: block; width: 100%; height: 100%; }
.vip-home-template .vip-home-hero__slide img { object-fit: cover; }
.vip-home-template .vip-home-hero__arrow { position: absolute; top: 50%; z-index: 5; width: 46px; height: 58px; padding: 0; border: 0; background: rgba(0,0,0,.28); transform: translateY(-50%); cursor: pointer; }
.vip-home-template .vip-home-hero__arrow::before { content: ""; position: absolute; top: 20px; width: 14px; height: 14px; border-top: 2px solid #fff; border-right: 2px solid #fff; }
.vip-home-template .vip-home-hero__arrow--prev { left: 24px; }
.vip-home-template .vip-home-hero__arrow--prev::before { left: 18px; transform: rotate(-135deg); }
.vip-home-template .vip-home-hero__arrow--next { right: 24px; }
.vip-home-template .vip-home-hero__arrow--next::before { right: 18px; transform: rotate(45deg); }
.vip-home-template .vip-home-hero__dots { position: absolute; left: 50%; bottom: 18px; z-index: 5; display: flex; gap: 9px; transform: translateX(-50%); }
.vip-home-template .vip-home-hero__dot { width: 30px; height: 4px; padding: 0; border: 0; background: rgba(255,255,255,.58); cursor: pointer; }
.vip-home-template .vip-home-hero__dot.is-active { background: var(--vip-accent); }

/* Intro */
.vip-home-template .vip-home-intro { padding: 48px 0; border-bottom: 1px solid var(--vip-border); background: var(--vip-white); }
.vip-home-template .vip-home-intro__grid { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(360px, .75fr); gap: 48px; align-items: center; }
.vip-home-template .vip-home-intro h1 { margin: 0; color: var(--vip-heading); font-size: 36px; line-height: 1.35; font-weight: 700; }
.vip-home-template .vip-home-intro__lead { max-width: 760px; margin: 18px 0 0; color: var(--vip-text); font-size: 17px; line-height: 1.85; }
.vip-home-template .vip-home-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.vip-home-template .vip-home-btn { display: inline-flex; min-height: 44px; align-items: center; justify-content: center; padding: 10px 24px; border: 1px solid transparent; border-radius: var(--vip-radius-sm); font-weight: 700; transition: background .2s ease, color .2s ease, border-color .2s ease; }
.vip-home-template .vip-home-btn--primary { background: var(--vip-accent); border-color: var(--vip-accent); color: var(--vip-white); }
.vip-home-template .vip-home-btn--primary:hover { background: #dc631f; border-color: #dc631f; color: var(--vip-white); }
.vip-home-template .vip-home-btn--secondary { background: var(--vip-primary); border-color: var(--vip-primary); color: var(--vip-white); }
.vip-home-template .vip-home-btn--secondary:hover { background: var(--vip-primary-dark); border-color: var(--vip-primary-dark); color: var(--vip-white); }
.vip-home-template .vip-home-btn--light { background: var(--vip-white); border-color: var(--vip-white); color: var(--vip-surface-dark); }
.vip-home-template .vip-home-intro__facts { margin: 0; padding: 0; list-style: none; border-top: 3px solid var(--vip-primary); background: var(--vip-bg-soft); }
.vip-home-template .vip-home-intro__facts li { display: grid; grid-template-columns: 112px 1fr; gap: 16px; padding: 18px 20px; border-bottom: 1px solid var(--vip-border); }
.vip-home-template .vip-home-intro__facts strong { color: var(--vip-heading); }
.vip-home-template .vip-home-intro__facts span { color: var(--vip-text-soft); line-height: 1.65; }

/* Categories */
.vip-home-template .vip-home-category-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.vip-home-template .vip-home-category-card { position: relative; min-height: 230px; padding: 30px 28px; overflow: hidden; border: 1px solid var(--vip-border); border-top: 3px solid var(--vip-primary); background: var(--vip-white); transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.vip-home-template .vip-home-category-card:hover { transform: translateY(-3px); border-color: #cbd9e6; box-shadow: 0 12px 28px rgba(23,58,84,.09); }
.vip-home-template .vip-home-category-card__no { position: absolute; right: 20px; top: 14px; color: #edf2f6; font-size: 54px; line-height: 1; font-weight: 700; }
.vip-home-template .vip-home-category-card h3 { position: relative; margin: 15px 0 12px; color: var(--vip-heading); font-size: 21px; line-height: 1.4; }
.vip-home-template .vip-home-category-card p { position: relative; min-height: 78px; margin: 0 0 18px; color: var(--vip-text-soft); font-size: 15px; line-height: 1.75; }

/* Products */
.vip-home-template .vip-home-product-grid, .vip-home-template .vip-home-case-grid, .vip-home-template .vip-home-news-grid, .vip-home-template .vip-home-advantage-grid { margin: 0; padding: 0; list-style: none; }
.vip-home-template .vip-home-product-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
.vip-home-template .vip-home-product-card { display: block; height: 100%; overflow: hidden; border: 1px solid var(--vip-border); background: var(--vip-white); }
.vip-home-template .vip-home-product-card__image { display: block; aspect-ratio: 4 / 3; overflow: hidden; background: #f1f3f5; }
.vip-home-template .vip-home-product-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.vip-home-template .vip-home-product-card:hover img { transform: scale(1.035); }
.vip-home-template .vip-home-product-card__body { display: block; padding: 17px 18px 18px; }
.vip-home-template .vip-home-product-card__body strong { display: -webkit-box; min-height: 52px; overflow: hidden; color: var(--vip-heading); font-size: 17px; line-height: 1.55; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
.vip-home-template .vip-home-product-card__body em { display: block; margin-top: 10px; color: var(--vip-primary); font-style: normal; font-size: 14px; }

/* Process */
.vip-home-template .vip-home-process { background: var(--vip-surface-dark) !important; }
.vip-home-template .vip-home-process .vip-home-eyebrow { color: #78c2f3; }
.vip-home-template .vip-home-process .vip-home-section-head h2, .vip-home-template .vip-home-process .vip-home-section-head p:not(.vip-home-eyebrow) { color: var(--vip-white); }
.vip-home-template .vip-home-process-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 0; margin: 0; padding: 0; list-style: none; counter-reset: process; }
.vip-home-template .vip-home-process-grid li { position: relative; padding: 0 22px 4px; border-left: 1px solid rgba(255,255,255,.18); }
.vip-home-template .vip-home-process-grid li:first-child { border-left: 0; }
.vip-home-template .vip-home-process-grid span { display: inline-block; margin-bottom: 16px; color: #78c2f3; font-size: 30px; font-weight: 700; }
.vip-home-template .vip-home-process-grid h3 { margin: 0 0 10px; color: var(--vip-white); font-size: 18px; }
.vip-home-template .vip-home-process-grid p { margin: 0; color: rgba(255,255,255,.76); font-size: 14px; line-height: 1.75; }

/* About */
.vip-home-template .vip-home-about__grid { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr); gap: 48px; align-items: center; }
.vip-home-template .vip-home-about__image { overflow: hidden; border-left: 5px solid var(--vip-primary); }
.vip-home-template .vip-home-about__image img { display: block; width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.vip-home-template .vip-home-about__content h2 { margin: 0; color: var(--vip-heading); font-size: 30px; line-height: 1.45; }
.vip-home-template .vip-home-about__content > p:not(.vip-home-eyebrow) { margin: 18px 0 0; color: var(--vip-text); font-size: 16px; line-height: 1.9; }
.vip-home-template .vip-home-check-list { margin: 22px 0 0; padding: 0; list-style: none; }
.vip-home-template .vip-home-check-list li { position: relative; margin-top: 10px; padding-left: 24px; color: var(--vip-text); line-height: 1.65; }
.vip-home-template .vip-home-check-list li::before { content: ""; position: absolute; left: 2px; top: 8px; width: 9px; height: 5px; border-left: 2px solid var(--vip-primary); border-bottom: 2px solid var(--vip-primary); transform: rotate(-45deg); }

/* Advantages */
.vip-home-template .vip-home-advantage-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.vip-home-template .vip-home-advantage-grid li { padding: 26px 24px; border: 1px solid var(--vip-border); background: var(--vip-white); }
.vip-home-template .vip-home-advantage-grid img { width: 64px; height: 64px; object-fit: contain; }
.vip-home-template .vip-home-advantage-grid h3 { margin: 16px 0 8px; color: var(--vip-heading); font-size: 19px; }
.vip-home-template .vip-home-advantage-grid p { margin: 0; color: var(--vip-text-soft); font-size: 15px; line-height: 1.75; }

/* Cases */
.vip-home-template .vip-home-case-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
.vip-home-template .vip-home-case-card { display: block; overflow: hidden; border: 1px solid var(--vip-border); background: var(--vip-white); }
.vip-home-template .vip-home-case-card__image { display: block; aspect-ratio: 10 / 7; overflow: hidden; background: #eef1f3; }
.vip-home-template .vip-home-case-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.vip-home-template .vip-home-case-card:hover img { transform: scale(1.035); }
.vip-home-template .vip-home-case-card__body { display: block; padding: 17px 18px; }
.vip-home-template .vip-home-case-card__body strong { display: -webkit-box; min-height: 52px; overflow: hidden; color: var(--vip-heading); font-size: 16px; line-height: 1.6; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
.vip-home-template .vip-home-case-card__body em { display: block; margin-top: 8px; color: var(--vip-primary); font-style: normal; font-size: 14px; }

/* News */
.vip-home-template .vip-home-news-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.vip-home-template .vip-home-news-card { height: 100%; border-top: 3px solid var(--vip-primary); background: var(--vip-bg-soft); }
.vip-home-template .vip-home-news-card a { display: block; height: 100%; padding: 24px; }
.vip-home-template .vip-home-news-card time { color: var(--vip-muted); font-size: 13px; }
.vip-home-template .vip-home-news-card h3 { display: -webkit-box; min-height: 56px; margin: 10px 0 10px; overflow: hidden; color: var(--vip-heading); font-size: 18px; line-height: 1.55; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
.vip-home-template .vip-home-news-card p { display: -webkit-box; min-height: 76px; margin: 0 0 16px; overflow: hidden; color: var(--vip-text-soft); font-size: 14px; line-height: 1.8; -webkit-line-clamp: 3; -webkit-box-orient: vertical; }

/* Final CTA */
.vip-home-template .vip-home-final-cta { padding: 52px 0; background: var(--vip-surface-dark); }
.vip-home-template .vip-home-final-cta__inner { display: flex; align-items: center; justify-content: space-between; gap: 48px; }
.vip-home-template .vip-home-final-cta .vip-home-eyebrow { color: #78c2f3; }
.vip-home-template .vip-home-final-cta h2 { max-width: 760px; margin: 0; color: var(--vip-white); font-size: 28px; line-height: 1.45; }
.vip-home-template .vip-home-final-cta p:not(.vip-home-eyebrow) { margin: 10px 0 0; color: rgba(255,255,255,.74); }
.vip-home-template .vip-home-final-cta .vip-home-actions { flex: 0 0 auto; margin: 0; }

@media (max-width: 1100px) {
  .vip-home-template .vip-home-product-grid, .vip-home-template .vip-home-case-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .vip-home-template .vip-home-intro__grid { grid-template-columns: 1fr; }
  .vip-home-template .vip-home-intro__facts { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .vip-home-template .vip-home-intro__facts li { display: block; }
  .vip-home-template .vip-home-intro__facts span { display: block; margin-top: 6px; }
}
@media (max-width: 900px) {
  .vip-home-template .vip-home-category-grid, .vip-home-template .vip-home-news-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .vip-home-template .vip-home-advantage-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .vip-home-template .vip-home-process-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px 0; }
  .vip-home-template .vip-home-about__grid { grid-template-columns: 1fr; }
  .vip-home-template .vip-home-final-cta__inner { display: block; }
  .vip-home-template .vip-home-final-cta .vip-home-actions { margin-top: 24px; }
}
@media (prefers-reduced-motion: reduce) {
  .vip-home-template .vip-home-hero__slide, .vip-home-template .vip-home-product-card__image img, .vip-home-template .vip-home-case-card__image img { transition: none; }
}
