:root {
  --primary: #ff8c42;
  --primary-light: #ffa85c;
  --primary-dark: #e07530;
  --green: #4caf50;
  --green-light: #e8f5e9;
  --green-dark: #388e3c;
  --dark: #2d1f0e;
  --dark-2: #4a3728;
  --text-main: #2d1f0e;
  --text-sub: #6b5d4f;
  --text-light: #9e918a;
  --bg-light: #fffbf7;
  --bg-section: #fff7ef;
  --bg-warm: #fef2e6;
  --white: #ffffff;
  --border: #f0e0d0;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(45, 31, 14, 0.08);
  --shadow-lg: 0 12px 48px rgba(45, 31, 14, 0.12);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family:
    -apple-system, "PingFang SC", "Helvetica Neue", Arial, sans-serif;
  color: var(--text-main);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
img {
  display: block;
  max-width: 100%;
}

.pet_container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  border: none;
  box-shadow: 0 4px 16px rgba(255, 140, 66, 0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 140, 66, 0.4);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 31px;
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--primary);
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}
.btn-outline:hover {
  background: rgba(255, 140, 66, 0.06);
  transform: translateY(-2px);
}
.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--white);
  color: var(--primary);
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  border: none;
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.section-tag {
  display: inline-block;
  padding: 5px 14px;
  background: rgba(255, 140, 66, 0.1);
  color: var(--primary);
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
}
.section-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.3;
  margin-bottom: 16px;
}
.section-title em {
  font-style: normal;
  color: var(--primary);
}
.section-desc {
  font-size: 17px;
  color: var(--text-sub);
  line-height: 1.8;
  max-width: 840px;
}
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header .section-desc {
  margin: 0 auto;
}

/* ===== 导航栏 ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  height: 64px;
  display: flex;
  align-items: center;
}
.navbar .pet_container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo .logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  font-size: 14px;
}
.nav-logo span {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
}
.nav-logo .badge {
  padding: 2px 8px;
  background: var(--green);
  color: white;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  margin-left: 4px;
}
.nav-links {
  display: flex;
  gap: 32px;
}
.nav-links a {
  font-size: 14px;
  color: var(--text-sub);
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--primary);
}
.nav-cta {
  font-size: 14px;
  font-weight: 600;
  color: var(--white) !important;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  padding: 8px 20px;
  border-radius: 6px;
  transition: all 0.3s;
}
.nav-cta:hover {
  box-shadow: 0 4px 12px rgba(255, 140, 66, 0.3);
  transform: translateY(-1px);
}

/* ===== Hero ===== */
.hero {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #2d1f0e 0%, #4a3728 50%, #5c4030 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(
    circle,
    rgba(255, 140, 66, 0.15) 0%,
    transparent 60%
  );
  border-radius: 50%;
}
.hero::after {
  content: "🐾";
  position: absolute;
  top: 80px;
  right: 120px;
  font-size: 200px;
  opacity: 0.06;
  transform: rotate(-15deg);
}
.hero .pet_container {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 60px;
}
.hero-content {
  flex: 1;
}
.hero-tag {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(255, 140, 66, 0.2);
  color: var(--primary-light);
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
  border: 1px solid rgba(255, 140, 66, 0.3);
}
.hero h1 {
  font-size: 48px;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 20px;
}
.hero h1 em {
  font-style: normal;
  color: var(--primary-light);
}
.hero-desc {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 520px;
}
.hero-btns {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
}
.hero-stats {
  display: flex;
  gap: 48px;
}
.hero-stat {
  text-align: center;
}
.hero-stat .num {
  font-size: 32px;
  font-weight: 800;
  color: var(--primary-light);
}
.hero-stat .num span {
  font-size: 16px;
  font-weight: 400;
}
.hero-stat .label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 4px;
}
.hero-visual {
  flex: 1;
  max-width: 480px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 24px;
  backdrop-filter: blur(8px);
}
.hero-visual .panel-title {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 16px;
}
.hero-visual .schedule-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  margin-bottom: 6px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  border-left: 3px solid var(--primary);
}
.hero-visual .schedule-row.green {
  border-left-color: var(--green);
}
.hero-visual .schedule-row .time {
  font-size: 13px;
  color: var(--primary-light);
  font-weight: 600;
  min-width: 60px;
}
.hero-visual .schedule-row .time.green {
  color: #81c784;
}
.hero-visual .schedule-row .info {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}
.hero-visual .schedule-row .badge-sm {
  margin-left: auto;
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 600;
}
.hero-visual .badge-sm.ongoing {
  background: rgba(255, 140, 66, 0.2);
  color: var(--primary-light);
}
.hero-visual .badge-sm.available {
  background: rgba(76, 175, 80, 0.2);
  color: #81c784;
}

/* ===== 通用 Section ===== */
.section {
  padding: 100px 0;
}
.section-alt {
  background: var(--bg-section);
}

/* ===== 痛点 ===== */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.pain-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 1px solid var(--border);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.pain-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--primary);
}
.pain-card .icon {
  font-size: 36px;
  margin-bottom: 16px;
}
.pain-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}
.pain-card p {
  font-size: 14px;
  color: var(--text-sub);
  line-height: 1.7;
}
.pain-card .pain-tag {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 4px;
  background: #fff3e0;
  color: var(--primary-dark);
  font-weight: 600;
}

/* ===== 功能双栏 ===== */
.feature-row {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 100px;
}
.feature-row:last-child {
  margin-bottom: 0;
}
.feature-row.reverse {
  flex-direction: row-reverse;
}
.feature-text {
  flex: 1;
}
.feature-text .ft-tag {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(255, 140, 66, 0.1);
  color: var(--primary);
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 12px;
}
.feature-text h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
  line-height: 1.3;
}
.feature-text h3 em {
  font-style: normal;
  color: var(--primary);
}
.feature-text p {
  font-size: 15px;
  color: var(--text-sub);
  line-height: 1.8;
  margin-bottom: 16px;
}
.feature-list {
  margin-top: 20px;
}
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--text-sub);
  margin-bottom: 12px;
  line-height: 1.6;
}
.feature-list li .dot {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(76, 175, 80, 0.12);
  color: var(--green);
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.feature-visual {
  flex: 1;
  max-width: 520px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

/* 预约看板 */
.schedule-board {
  width: 100%;
}
.schedule-board .board-header {
  display: grid;
  grid-template-columns: 70px repeat(4, 1fr);
  border-bottom: 2px solid var(--border);
  padding-bottom: 10px;
  margin-bottom: 8px;
}
.schedule-board .board-header span {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-light);
  text-align: center;
}
.schedule-board .board-row {
  display: grid;
  grid-template-columns: 70px repeat(4, 1fr);
  gap: 4px;
  margin-bottom: 4px;
}
.schedule-board .board-row .time-label {
  font-size: 12px;
  color: var(--text-light);
  display: flex;
  align-items: center;
}
.schedule-board .board-cell {
  border-radius: 4px;
  font-size: 11px;
  text-align: center;
  padding: 6px 2px;
  font-weight: 500;
  min-height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.schedule-board .cell-occupied {
  background: #fff3e0;
  color: var(--primary-dark);
}
.schedule-board .cell-grooming {
  background: #e8f5e9;
  color: var(--green-dark);
}
.schedule-board .cell-empty {
  background: #f5f5f5;
  color: var(--text-light);
}

/* 卡项展示 */
.card-showcase {
  position: relative;
  perspective: 800px;
}
.card-3d {
  background: linear-gradient(135deg, #ff8c42, #ffa85c);
  border-radius: 16px;
  padding: 28px;
  color: white;
  position: relative;
  box-shadow: 0 8px 32px rgba(255, 140, 66, 0.3);
}
.card-3d .card-label {
  font-size: 12px;
  opacity: 0.8;
  margin-bottom: 4px;
}
.card-3d .card-name {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 16px;
}
.card-3d .card-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 14px;
}
.card-3d .card-item:last-child {
  border: none;
}
.card-3d .card-item .count {
  opacity: 0.7;
  font-size: 12px;
}
.card-3d .card-price {
  font-size: 32px;
  font-weight: 800;
  margin-top: 16px;
}
.card-3d .card-price span {
  font-size: 16px;
  font-weight: 400;
}
.card-3d .card-qr {
  position: absolute;
  bottom: 16px;
  right: 16px;
  width: 56px;
  height: 56px;
  background: white;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: var(--text-light);
  text-align: center;
  line-height: 1.2;
}

/* 宠物档案 */
.pet-profile {
  background: var(--bg-light);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 12px;
  border: 1px solid var(--border);
}
.pet-profile-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.pet-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffe0b2, #ff8c42);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}
.pet-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
}
.pet-breed {
  font-size: 12px;
  color: var(--text-light);
}
.pet-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.pet-tag {
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600;
}
.pet-tag.vaccine {
  background: #e8f5e9;
  color: #388e3c;
}
.pet-tag.deworm {
  background: #e3f2fd;
  color: #1565c0;
}
.pet-tag.allergy {
  background: #fce4ec;
  color: #c62828;
}
.pet-tag.behavior {
  background: #fff3e0;
  color: #e65100;
}
.pet-reminder {
  background: rgba(76, 175, 80, 0.08);
  border: 1px solid rgba(76, 175, 80, 0.2);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 13px;
  color: var(--green-dark);
  display: flex;
  align-items: center;
  gap: 8px;
}
.pet-reminder::before {
  content: "🔔";
}

/* 会员等级 */
.member-cards {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 40px;
}
.member-card {
  flex: 1;
  max-width: 260px;
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  transition: all 0.3s;
  border: 1px solid var(--border);
  background: var(--white);
}
.member-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.member-card.gold {
  background: linear-gradient(135deg, #ff8c42, #ffa85c);
  color: white;
  border: none;
  box-shadow: 0 8px 32px rgba(255, 140, 66, 0.25);
}
.member-card.gold:hover {
  box-shadow: 0 12px 40px rgba(255, 140, 66, 0.35);
}
.member-card .level-icon {
  font-size: 36px;
  margin-bottom: 12px;
}
.member-card .level-name {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
}
.member-card .level-desc {
  font-size: 13px;
  opacity: 0.7;
  margin-bottom: 16px;
  line-height: 1.6;
}
.member-card .level-perks {
  text-align: left;
}
.member-card .level-perks li {
  font-size: 13px;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.member-card .hot-tag {
  display: inline-block;
  padding: 2px 8px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  margin-left: 8px;
}

/* 营销 */
.marketing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.mkt-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--border);
  transition: all 0.3s;
}
.mkt-card:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.mkt-card .mkt-icon {
  font-size: 28px;
  margin-bottom: 12px;
}
.mkt-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}
.mkt-card p {
  font-size: 13px;
  color: var(--text-sub);
  line-height: 1.6;
}
.mkt-card .mkt-tag {
  display: inline-block;
  margin-top: 10px;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
}
.mkt-tag.tag-hot {
  background: #fff3e0;
  color: var(--primary-dark);
}
.mkt-tag.tag-new {
  background: #e8f5e9;
  color: var(--green-dark);
}
.mkt-tag.tag-rec {
  background: #e3f2fd;
  color: #1565c0;
}

/* 行业覆盖 */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.industry-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px;
  border: 1px solid var(--border);
  text-align: center;
  transition: all 0.3s;
}
.industry-card:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.industry-card .ind-icon {
  font-size: 32px;
  margin-bottom: 10px;
}
.industry-card .ind-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}
.industry-card .ind-keywords {
  font-size: 12px;
  color: var(--text-light);
}

/* FAQ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 10px;
  border: 1px solid var(--border);
  transition: all 0.2s;
}
.faq-item:hover {
  border-color: var(--primary);
}
.faq-q {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
  display: flex;
  gap: 8px;
}
.faq-q::before {
  content: "Q";
  color: var(--primary);
  font-weight: 800;
  flex-shrink: 0;
}
.faq-a {
  font-size: 14px;
  color: var(--text-sub);
  line-height: 1.7;
  padding-left: 24px;
}

/* CTA */
.cta-section {
  background: linear-gradient(135deg, #2d1f0e, #4a3728);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: "🐾";
  position: absolute;
  top: 20px;
  left: 10%;
  font-size: 120px;
  opacity: 0.04;
  transform: rotate(-20deg);
}
.cta-section::after {
  content: "🐕";
  position: absolute;
  bottom: 20px;
  right: 8%;
  font-size: 100px;
  opacity: 0.04;
  transform: rotate(15deg);
}
.cta-section h2 {
  font-size: 36px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
}
.cta-section h2 em {
  font-style: normal;
  color: var(--primary-light);
}
.cta-section .cta-desc {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}
.cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 32px;
}
.cta-trust {
  display: flex;
  gap: 32px;
  justify-content: center;
}
.cta-trust span {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}
.cta-trust span::before {
  content: "✓ ";
  color: var(--green);
  font-weight: 700;
}

/* Footer */
.footer {
  padding: 48px 0 24px;
  color: rgba(255, 255, 255, 0.4);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 32px;
}
.footer-brand .f-logo {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.footer-brand .f-desc {
  font-size: 13px;
  line-height: 1.6;
}
.footer h4 {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 12px;
}
.footer ul li {
  margin-bottom: 8px;
}
.footer ul li a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.2s;
}
.footer ul li a:hover {
  color: var(--primary-light);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 20px;
  font-size: 12px;
  text-align: center;
}

/* 信任背书 */
.trust-section {
  padding: 60px 0;
  background: var(--bg-light);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}
.trust-icon {
  font-size: 32px;
}
.trust-label {
  font-size: 13px;
  color: var(--text-sub);
  font-weight: 500;
  line-height: 1.4;
}
@media (max-width: 1024px) {
  .trust-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* 场景图片 */
.scene-img-row {
  display: flex;
  gap: 16px;
  margin-top: 32px;
}
.scene-img-box {
  flex: 1;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  height: 200px;
}
.scene-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.scene-img-box:hover img {
  transform: scale(1.05);
}
.scene-img-box .caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 16px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.65));
  color: #fff;
  font-size: 13px;
  font-weight: 500;
}
.scene-img-full {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  height: 260px;
  margin-top: 32px;
}
.scene-img-full img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.scene-img-full:hover img {
  transform: scale(1.03);
}
.scene-img-full .caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 14px 20px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.65));
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}
@media (max-width: 1024px) {
  .scene-img-row {
    flex-direction: column;
  }
  .scene-img-box {
    height: 160px;
  }
  .scene-img-full {
    height: 200px;
  }
}
