/* ==========================================================
   社区物业服务官网 - 全局样式
   鲸抖芸 · 让社区生活更美好
   ========================================================== */

:root {
  --primary: #ff7a45;        /* 主色：温暖橙 */
  --primary-dark: #f0552b;
  --primary-light: #fff3ec;
  --secondary: #10b981;      /* 辅助色：清新绿 */
  --secondary-dark: #0d9668;
  --accent: #4f8cff;         /* 点缀色：天空蓝 */
  --warning: #f5b342;
  --text-main: #2d3436;
  --text-sub: #636e72;
  --text-light: #b2bec3;
  --bg: #f7f8fa;
  --white: #ffffff;
  --border: #e8eaed;
  --radius: 14px;
  --radius-lg: 20px;
  --shadow-sm: 0 2px 8px rgba(45, 52, 54, 0.06);
  --shadow-md: 0 6px 24px rgba(45, 52, 54, 0.10);
  --shadow-lg: 0 16px 48px rgba(45, 52, 54, 0.14);
  --font: "PingFang SC", "Microsoft YaHei", "Hiragino Sans GB", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text-main);
  background: var(--bg);
  line-height: 1.7;
  font-size: 15px;
}

a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; font-size: inherit; }

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------- 顶部信息条 ---------- */
.topbar {
  background: #233043;
  color: #cbd5e1;
  font-size: 13px;
  padding: 7px 0;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.topbar a { color: #cbd5e1; transition: color .2s; }
.topbar a:hover { color: var(--primary); }
.topbar-left span { margin-right: 20px; }
.topbar-left i { margin-right: 5px; color: var(--primary); }
.topbar-right a { margin-left: 16px; }
.topbar-right .login-link { color: var(--primary); font-weight: 600; }

/* ---------- 主导航 ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.navbar { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; }
.logo { display: flex; align-items: center; gap: 10px; }
.logo-icon {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--primary), #ff9f1c);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 22px;
  box-shadow: var(--shadow-sm);
}
.logo-text { line-height: 1.2; }
.logo-text b { font-size: 20px; letter-spacing: 1px; color: var(--text-main); display: block; }
.logo-text span { font-size: 11px; color: var(--text-light); letter-spacing: 3px; }

.nav-menu { display: flex; align-items: center; gap: 6px; }
.nav-menu a {
  padding: 8px 16px;
  border-radius: 8px;
  color: var(--text-sub);
  font-weight: 500;
  transition: all .2s;
}
.nav-menu a:hover { color: var(--primary); background: var(--primary-light); }
.nav-menu a.active { color: var(--primary); background: var(--primary-light); font-weight: 600; }

.nav-user { display: flex; align-items: center; gap: 12px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  padding: 10px 22px;
  border-radius: 999px;
  font-size: 14px; font-weight: 600;
  transition: all .25s;
  white-space: nowrap;
}
.btn-primary { background: var(--primary); color: #fff; box-shadow: 0 4px 14px rgba(255,122,69,.35); }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-1px); }
.btn-outline { border: 1.5px solid var(--primary); color: var(--primary); background: transparent; }
.btn-outline:hover { background: var(--primary); color: #fff; }
.btn-green { background: var(--secondary); color: #fff; box-shadow: 0 4px 14px rgba(16,185,129,.3); }
.btn-green:hover { background: var(--secondary-dark); transform: translateY(-1px); }
.btn-block { width: 100%; }

.mobile-toggle { display: none; font-size: 24px; color: var(--text-main); }

/* ---------- 汉堡菜单 ---------- */
@media (max-width: 900px) {
  .mobile-toggle { display: block; }
  .nav-menu {
    position: fixed;
    top: 62px; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 16px 20px;
    box-shadow: var(--shadow-md);
    gap: 4px;
    display: none;
    z-index: 99;
  }
  .nav-menu.open { display: flex; }
  .nav-menu a { padding: 12px 16px; }
  .topbar-right { display: none; }
}

/* ---------- 通用页面标题区 ---------- */
.page-hero {
  background: linear-gradient(135deg, #ff7a45 0%, #ff9f1c 55%, #ffb74d 100%);
  color: #fff;
  text-align: center;
  padding: 64px 0 72px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  top: -160px; right: -100px;
}
.page-hero h1 { font-size: 38px; margin-bottom: 10px; letter-spacing: 2px; }
.page-hero p { font-size: 16px; opacity: .92; }
.crumb {
  display: inline-block;
  margin-top: 16px;
  background: rgba(255,255,255,.2);
  padding: 5px 18px;
  border-radius: 999px;
  font-size: 13px;
}

/* ---------- 首页 Hero ---------- */
.hero {
  background: linear-gradient(135deg, #ff7a45 0%, #ff9f1c 100%);
  color: #fff;
  padding: 72px 0 0;
  position: relative;
  overflow: hidden;
}
.hero .container { display: flex; align-items: center; gap: 48px; }
.hero-info { flex: 1.1; padding-bottom: 72px; }
.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,.2);
  border: 1px solid rgba(255,255,255,.4);
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 13px;
  margin-bottom: 18px;
  backdrop-filter: blur(4px);
}
.hero-info h1 { font-size: 46px; line-height: 1.3; letter-spacing: 1px; margin-bottom: 16px; }
.hero-info h1 em { font-style: normal; color: #ffe082; }
.hero-info .slogan { font-size: 18px; opacity: .95; margin-bottom: 24px; }
.hero-feats { display: flex; gap: 24px; margin-bottom: 30px; flex-wrap: wrap; }
.hero-feat { display: flex; align-items: center; gap: 8px; font-size: 14px; opacity: .95; }
.hero-feat i { background: rgba(255,255,255,.25); width: 30px; height: 30px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: 14px; }
.hero-btns { display: flex; gap: 14px; }
.hero-btns .btn { padding: 13px 30px; font-size: 15px; }
.btn-white { background: #fff; color: var(--primary); box-shadow: 0 6px 20px rgba(0,0,0,.15); }
.btn-white:hover { transform: translateY(-2px); background: #fff7f0; }
.btn-ghost { border: 2px solid #fff; color: #fff; }
.btn-ghost:hover { background: rgba(255,255,255,.15); }

.hero-art { flex: 1; padding-bottom: 72px; position: relative; }
.hero-card {
  background: rgba(255,255,255,.14);
  border: 1.5px solid rgba(255,255,255,.35);
  backdrop-filter: blur(10px);
  border-radius: 24px;
  padding: 28px;
  position: relative;
}
.hero-card h3 { font-size: 17px; margin-bottom: 18px; display: flex; align-items: center; gap: 8px; }
.hero-card h3 span { font-size: 12px; background: rgba(255,255,255,.22); padding: 3px 10px; border-radius: 999px; font-weight: 400; }
.hero-card-item {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 12px;
  background: rgba(255,255,255,.12);
  border-radius: 12px;
  margin-bottom: 10px;
}
.hero-card-item i { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,.22); display: flex; align-items: center; justify-content: center; font-size: 17px; flex-shrink: 0; }
.hero-card-item b { display: block; font-size: 14px; }
.hero-card-item small { font-size: 12px; opacity: .85; }
.hero-float {
  position: absolute;
  background: #fff;
  color: var(--text-main);
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  padding: 10px 16px;
  font-size: 13px;
  display: flex; align-items: center; gap: 8px;
  animation: float 4s ease-in-out infinite;
}
.hero-float i { color: var(--secondary); }
.hero-float.f1 { top: 12%; left: -34px; }
.hero-float.f2 { bottom: 16%; right: -22px; animation-delay: 2s; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

@media (max-width: 900px) {
  .hero .container { flex-direction: column; gap: 20px; }
  .hero-info, .hero-art { padding-bottom: 40px; }
  .hero-info h1 { font-size: 34px; }
  .hero-float { display: none; }
}

/* ---------- 通用区块 ---------- */
.section { padding: 72px 0; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 44px; }
.section-tag {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 13px;
  padding: 4px 14px;
  border-radius: 999px;
  margin-bottom: 12px;
  font-weight: 600;
}
.section-head h2 { font-size: 30px; margin-bottom: 10px; letter-spacing: 1px; }
.section-head p { color: var(--text-sub); font-size: 15px; }
.section-head.left { text-align: left; margin: 0 0 30px; }

/* ---------- 服务卡片网格 ---------- */
.card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 22px; }
.hot-grid { grid-template-columns: repeat(5, 1fr); }
.hot-section .container { max-width: 1500px; }
@media (max-width: 992px) { .hot-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .hot-grid { grid-template-columns: repeat(2, 1fr); } }

.svc-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all .3s;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.svc-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }

/* 卡片头部：图标 + 标题 + 标签 */
.svc-card-head { display: flex; gap: 14px; align-items: center; margin-bottom: 12px; }
.svc-card-icon {
  width: 52px; height: 52px; border-radius: 14px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: #fff;
  box-shadow: var(--shadow-sm);
}
.svc-card-title { min-width: 0; flex: 1; }
.svc-card-title h3 { font-size: 16.5px; margin-bottom: 7px; }
.svc-card-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.svc-card-tags .tag { font-size: 11px; padding: 2px 9px; border-radius: 999px; background: var(--bg); color: var(--text-sub); }
.svc-card-tags .tag.gold { background: #fff7e6; color: #d48806; }
.svc-card-tags .tag.blue { background: #e8f3ff; color: #1d6fd8; }

/* 服务简介 */
.svc-card-body .desc { font-size: 13px; color: var(--text-sub); line-height: 1.7; margin-bottom: 14px; }

/* 服务包含要点 */
.svc-include { background: var(--bg); border-radius: 10px; padding: 12px 14px; margin-bottom: 16px; }
.svc-include b { font-size: 12px; color: var(--text-main); display: block; margin-bottom: 4px; }
.svc-include ul { list-style: none; }
.svc-include li { font-size: 12.5px; color: var(--text-sub); padding-left: 18px; position: relative; line-height: 1.8; }
.svc-include li::before { content: "✓"; position: absolute; left: 0; color: var(--primary); font-weight: 700; }
.svc-include li.svc-more-item { color: var(--text-light); }
.svc-include li.svc-more-item::before { content: ""; }

/* 底部价格区 */
.svc-card-meta {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px dashed var(--border);
}
.svc-card-meta .price { color: var(--primary); font-weight: 700; font-size: 15px; }
.svc-card-meta .price small { font-weight: 400; font-size: 12px; color: var(--text-light); }
.svc-card-meta .more { color: var(--text-light); font-size: 13px; transition: all .2s; }
.svc-card:hover .svc-card-meta .more { color: var(--primary); }

/* 分类色板 */
.cat-0 { background: linear-gradient(135deg, #f97316, #fbbf24); }
.cat-1 { background: linear-gradient(135deg, #06b6d4, #22d3ee); }
.cat-2 { background: linear-gradient(135deg, #8b5cf6, #a78bfa); }
.cat-3 { background: linear-gradient(135deg, #10b981, #34d399); }
.cat-4 { background: linear-gradient(135deg, #ec4899, #f472b6); }
.cat-5 { background: linear-gradient(135deg, #3b82f6, #60a5fa); }

/* ---------- 首页分类大卡片 ---------- */
.cat-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 22px; }
.cat-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all .3s;
  display: block;
  position: relative;
  overflow: hidden;
}
.cat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.cat-card .icon {
  width: 64px; height: 64px;
  margin: 0 auto 16px;
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.cat-card h3 { font-size: 17px; margin-bottom: 6px; }
.cat-card p { font-size: 13px; color: var(--text-sub); margin-bottom: 12px; }
.cat-card .cat-num {
  font-size: 12px; color: var(--text-light);
  background: var(--bg);
  display: inline-block;
  padding: 3px 12px;
  border-radius: 999px;
}

/* ---------- 数据统计条 ---------- */
.stats-band { background: #233043; color: #fff; padding: 44px 0; }
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 20px; text-align: center; }
.stat-item b { font-size: 34px; color: var(--primary); display: block; }
.stat-item span { font-size: 14px; color: #cbd5e1; }

/* ---------- 资讯/亮点列表 ---------- */
.feature-row { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.feature-row.reverse { direction: rtl; }
.feature-row.reverse > * { direction: ltr; }
.feature-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  min-height: 300px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 64px;
}
.feature-text h3 { font-size: 26px; margin-bottom: 14px; }
.feature-text p { color: var(--text-sub); margin-bottom: 20px; }
.feature-text ul li {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 8px 0;
  font-size: 14.5px;
}
.feature-text ul li i { color: var(--secondary); margin-top: 4px; }
@media (max-width: 860px) {
  .feature-row { grid-template-columns: 1fr; }
}

/* ---------- 首页流程 ---------- */
.flow-row { display: flex; gap: 0; justify-content: space-between; flex-wrap: wrap; counter-reset: flow; }
.flow-item {
  flex: 1; min-width: 180px;
  text-align: center;
  position: relative;
  padding: 0 20px;
}
.flow-item::before {
  counter-increment: flow;
  content: counter(flow);
  width: 44px; height: 44px;
  background: var(--white);
  border: 2px solid var(--primary);
  color: var(--primary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 18px;
  margin: 0 auto 12px;
}
.flow-item h4 { font-size: 15px; margin-bottom: 6px; }
.flow-item p { font-size: 13px; color: var(--text-sub); }
.flow-line { color: var(--text-light); font-size: 24px; align-self: center; padding: 0 4px; }
@media (max-width: 800px) { .flow-line { display: none; } }

/* ---------- 预约横幅 ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--primary), #ff9f1c);
  color: #fff;
  padding: 56px 0;
  text-align: center;
}
.cta-band h2 { font-size: 30px; margin-bottom: 10px; }
.cta-band p { opacity: .92; margin-bottom: 26px; font-size: 15px; }

/* ---------- 页脚 ---------- */
.site-footer { background: #1b2735; color: #94a3b8; padding: 56px 0 0; font-size: 14px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 36px; padding-bottom: 40px; }
.footer-grid h4 { color: #fff; font-size: 16px; margin-bottom: 16px; }
.footer-grid p { line-height: 2; }
.footer-grid ul li { line-height: 2.2; }
.footer-grid ul li a:hover { color: var(--primary); }
.footer-brand .logo { margin-bottom: 14px; }
.footer-brand .logo-text b { color: #fff; }
.footer-contact li i { margin-right: 8px; color: var(--primary); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 18px 0;
  text-align: center;
  font-size: 13px;
  color: #64748b;
}
.footer-bottom a { color: #94a3b8; margin: 0 4px; }
.footer-bottom a:hover { color: var(--primary); }
@media (max-width: 860px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ---------- 服务列表页 ---------- */
.filter-bar {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 28px;
}
.filter-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.filter-tag {
  padding: 8px 20px;
  border-radius: 999px;
  border: 1.5px solid var(--border);
  color: var(--text-sub);
  font-size: 14px;
  transition: all .2s;
}
.filter-tag:hover { border-color: var(--primary); color: var(--primary); }
.filter-tag.active { background: var(--primary); border-color: var(--primary); color: #fff; }
.list-meta { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; color: var(--text-sub); font-size: 14px; }
.list-meta b { color: var(--primary); }
.list-actions { display: flex; gap: 10px; }
.select-box {
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 6px 14px;
  font-size: 14px;
  color: var(--text-sub);
  background: var(--white);
}

/* ---------- 详情页 ---------- */
.detail-wrap { display: grid; grid-template-columns: 1fr 360px; gap: 28px; align-items: start; }
.detail-main { background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); overflow: hidden; }
.detail-banner {
  height: 200px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 68px;
}
.detail-body { padding: 30px 34px; }
.detail-body h1 { font-size: 26px; margin-bottom: 8px; }
.detail-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 18px; }
.tag {
  font-size: 12px; padding: 3px 12px;
  border-radius: 999px;
  background: var(--primary-light);
  color: var(--primary);
}
.tag.green { background: #e6faf3; color: var(--secondary-dark); }
.tag.blue { background: #ebf3ff; color: var(--accent); }
.detail-section { margin-bottom: 26px; }
.detail-section h2 {
  font-size: 18px;
  padding-left: 12px;
  border-left: 4px solid var(--primary);
  margin-bottom: 14px;
  line-height: 1.4;
}
.detail-section ul li { position: relative; padding: 6px 0 6px 22px; font-size: 14.5px; color: var(--text-sub); }
.detail-section ul li::before {
  content: "✓";
  position: absolute; left: 0; top: 6px;
  color: var(--secondary); font-weight: 700;
}
.detail-section p { font-size: 14.5px; color: var(--text-sub); }

.detail-side { position: sticky; top: 90px; display: flex; flex-direction: column; gap: 22px; }
.order-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 26px;
}
.order-card .price-big { font-size: 32px; color: var(--primary); font-weight: 700; }
.order-card .price-big small { font-size: 14px; color: var(--text-light); font-weight: 400; }
.order-card .row { display: flex; justify-content: space-between; padding: 9px 0; font-size: 14px; border-bottom: 1px dashed var(--border); }
.order-card .row span { color: var(--text-sub); }
.order-card .row b { color: var(--text-main); }
.order-form { margin-top: 16px; }
.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-size: 13px; color: var(--text-sub); margin-bottom: 6px; }
.form-control {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 14px;
  background: var(--white);
  transition: border-color .2s;
  color: var(--text-main);
}
.form-control:focus { outline: none; border-color: var(--primary); }
textarea.form-control { resize: vertical; min-height: 72px; }

.other-card { background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); padding: 22px; }
.other-card h3 { font-size: 16px; margin-bottom: 14px; padding-left: 10px; border-left: 3px solid var(--secondary); }
.other-item { display: flex; gap: 12px; padding: 10px 0; border-bottom: 1px dashed var(--border); align-items: center; }
.other-item:last-child { border-bottom: none; }
.other-item i { width: 40px; height: 40px; border-radius: 10px; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 16px; flex-shrink: 0; }
.other-item b { font-size: 13.5px; display: block; }
.other-item small { font-size: 12px; color: var(--text-light); }
@media (max-width: 900px) {
  .detail-wrap { grid-template-columns: 1fr; }
  .detail-side { position: static; }
}

/* ---------- 关于我们 ---------- */
.about-intro { background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); padding: 40px; }
.about-intro .lead { font-size: 17px; color: var(--text-sub); margin-bottom: 16px; line-height: 2; }
.about-intro p { color: var(--text-sub); margin-bottom: 14px; }
.about-points { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 20px; margin-top: 28px; }
.about-point { text-align: center; padding: 24px 18px; border-radius: 14px; background: var(--bg); }
.about-point i { font-size: 34px; color: var(--primary); margin-bottom: 10px; display: block; }
.about-point b { font-size: 16px; display: block; margin-bottom: 6px; }
.about-point p { font-size: 13px; color: var(--text-sub); margin: 0; }

.timeline { position: relative; padding-left: 34px; }
.timeline::before {
  content: ""; position: absolute;
  left: 12px; top: 6px; bottom: 6px;
  width: 2px; background: var(--primary-light);
}
.tl-item { position: relative; padding-bottom: 26px; }
.tl-item::before {
  content: ""; position: absolute;
  left: -27px; top: 6px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--primary);
  border: 3px solid var(--primary-light);
}
.tl-item b { font-size: 15px; display: block; }
.tl-item span { font-size: 12px; color: var(--text-light); }
.tl-item p { font-size: 13.5px; color: var(--text-sub); margin-top: 4px; }

.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 22px; }
.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all .3s;
}
.team-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.team-avatar {
  width: 72px; height: 72px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 30px;
  display: flex; align-items: center; justify-content: center;
}
.team-card h3 { font-size: 16px; }
.team-card .role { font-size: 13px; color: var(--primary); margin-bottom: 8px; display: block; }
.team-card p { font-size: 13px; color: var(--text-sub); }

/* ---------- 认证资质 ---------- */
.cert-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 18px; }
.cert-card {
  background: var(--white);
  border-radius: 14px;
  padding: 22px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.cert-card i { font-size: 32px; color: var(--secondary); display: block; margin-bottom: 10px; }
.cert-card b { font-size: 14.5px; display: block; margin-bottom: 4px; }
.cert-card p { font-size: 12.5px; color: var(--text-light); }

/* ---------- 登录 / 注册 ---------- */
.auth-wrap {
  min-height: calc(100vh - 200px);
  display: flex; align-items: center; justify-content: center;
  padding: 48px 20px;
  background: linear-gradient(135deg, #fff3ec 0%, #f7f8fa 100%);
}
.auth-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-width: 440px;
  padding: 40px 38px;
}
.auth-logo { display: flex; align-items: center; justify-content: center; gap: 10px; margin-bottom: 8px; }
.auth-logo .logo-icon { width: 44px; height: 44px; font-size: 22px; }
.auth-card h1 { text-align: center; font-size: 24px; margin-bottom: 6px; }
.auth-sub { text-align: center; color: var(--text-sub); font-size: 14px; margin-bottom: 26px; }
.auth-tabs { display: flex; margin-bottom: 22px; border-radius: 12px; background: var(--bg); padding: 4px; }
.auth-tab {
  flex: 1; text-align: center; padding: 10px;
  border-radius: 9px; font-size: 14px; color: var(--text-sub); font-weight: 600;
}
.auth-tab.active { background: var(--white); color: var(--primary); box-shadow: var(--shadow-sm); }
.input-wrap { position: relative; margin-bottom: 16px; }
.input-wrap i {
  position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
  color: var(--text-light); font-size: 15px;
}
.input-wrap .form-control { padding-left: 42px; }
.input-wrap .pw-toggle {
  position: absolute; right: 12px; top: 50%; transform: translateY(-50%);
  color: var(--text-light); font-size: 15px; cursor: pointer;
}
.auth-row { display: flex; justify-content: space-between; align-items: center; font-size: 13px; margin-bottom: 18px; }
.checkbox-label { display: flex; align-items: center; gap: 6px; color: var(--text-sub); cursor: pointer; }
.checkbox-label input { accent-color: var(--primary); }
.auth-link { color: var(--primary); }
.auth-tip { text-align: center; margin-top: 18px; font-size: 13px; color: var(--text-sub); }
.auth-tip a { color: var(--primary); font-weight: 600; }
.auth-tip a:hover { text-decoration: underline; }
.agreement { font-size: 12px; color: var(--text-light); text-align: center; margin-top: 14px; line-height: 1.8; }
.agreement a { color: var(--text-sub); }
.agreement a:hover { color: var(--primary); }

/* ---------- 提示 ---------- */
.toast {
  position: fixed; top: 84px; left: 50%;
  transform: translateX(-50%) translateY(-20px);
  background: var(--text-main);
  color: #fff;
  padding: 12px 26px;
  border-radius: 999px;
  font-size: 14px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  pointer-events: none;
  transition: all .3s;
  z-index: 999;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.toast.success { background: var(--secondary); }
.toast.error { background: #ef4444; }

/* ---------- 其他工具 ---------- */
.breadcrumb { font-size: 13px; color: var(--text-light); padding: 16px 0; }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb i { margin: 0 8px; font-size: 12px; }

.empty-state { text-align: center; padding: 60px 20px; color: var(--text-light); }
.empty-state i { font-size: 50px; display: block; margin-bottom: 12px; }

@media (max-width: 640px) {
  .section { padding: 48px 0; }
  .section-head h2 { font-size: 24px; }
  .hero-info h1 { font-size: 30px; }
  .page-hero h1 { font-size: 28px; }
  .detail-body { padding: 22px 20px; }
}

/* ==========================================================
   信息发布平台改造 - 新增样式
   ========================================================== */

/* ---------- 信息列表 ---------- */
.info-list { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }
.info-item {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 22px 24px;
  border-left: 4px solid var(--primary);
  transition: all .25s;
}
.info-item:hover { box-shadow: var(--shadow-md); transform: translateX(3px); }
.info-head { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 10px; }
.info-head h3 { font-size: 17px; }
.info-summary { font-size: 14px; color: var(--text-sub); line-height: 1.85; margin-bottom: 14px; }
.info-meta { display: flex; flex-wrap: wrap; gap: 22px; font-size: 13px; color: var(--text-light); }
.info-meta i { margin-right: 5px; color: var(--primary); }
.tag.gold { background: #fff7e6; color: #d48806; }

/* ---------- 发布引导条 ---------- */
.publish-band {
  display: flex; justify-content: space-between; align-items: center; gap: 26px;
  background: linear-gradient(135deg, var(--primary-light), #fff);
  border: 1.5px dashed var(--primary);
  border-radius: var(--radius-lg);
  padding: 26px 30px;
  margin-bottom: 32px;
}
.publish-text h3 { font-size: 19px; margin-bottom: 6px; }
.publish-text h3 i { color: var(--primary); margin-right: 6px; }
.publish-text p { font-size: 14px; color: var(--text-sub); }
.publish-btns { display: flex; gap: 12px; flex-shrink: 0; }

/* ---------- 说明区块 ---------- */
.section-note {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 26px 30px;
  margin-bottom: 48px;
  box-shadow: var(--shadow-sm);
}
.section-note h3 { font-size: 17px; margin-bottom: 12px; }
.section-note h3 i { color: var(--accent); margin-right: 6px; }
.section-note ul li { position: relative; padding-left: 18px; font-size: 14px; color: var(--text-sub); line-height: 1.9; }
.section-note ul li::before {
  content: ""; position: absolute; left: 0; top: 12px;
  width: 6px; height: 6px; border-radius: 50%; background: var(--primary);
}

/* ---------- 协议 / 政策文档 ---------- */
.doc-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 46px 52px;
  margin-bottom: 48px;
}
.doc-head { padding-bottom: 24px; border-bottom: 1px solid var(--border); margin-bottom: 28px; }
.doc-head h1 { font-size: 26px; text-align: center; margin-bottom: 12px; }
.doc-meta { text-align: center; font-size: 13px; color: var(--text-light); margin-bottom: 18px; }
.doc-note {
  font-size: 14px; color: var(--text-sub);
  background: var(--bg); border-radius: var(--radius);
  padding: 16px 20px; line-height: 1.9;
}
.doc-body h2 {
  font-size: 18px; margin: 30px 0 12px;
  padding-left: 12px; border-left: 4px solid var(--primary);
}
.doc-body h3 { font-size: 15px; margin: 20px 0 8px; color: var(--text-main); }
.doc-body p { font-size: 14px; color: var(--text-sub); line-height: 2; margin-bottom: 8px; }
.doc-body ul { margin: 8px 0 12px; }
.doc-body ul li { position: relative; padding-left: 20px; font-size: 14px; color: var(--text-sub); line-height: 2; }
.doc-body ul li::before {
  content: ""; position: absolute; left: 4px; top: 13px;
  width: 5px; height: 5px; border-radius: 50%; background: var(--text-light);
}
.doc-body a { color: var(--primary); }
.doc-foot {
  margin-top: 34px; padding-top: 22px;
  border-top: 1px solid var(--border);
  text-align: right; font-size: 14px; color: var(--text-sub); line-height: 2;
}

/* ---------- 首页信息入口 ---------- */
.entry-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(214px, 1fr)); gap: 20px; }

/* ---------- 物业 SaaS：系统简介 ---------- */
.saas-intro { display: grid; grid-template-columns: 1.6fr 1fr; gap: 36px; align-items: start; padding-top: 34px; }
.saas-intro-text h2 { font-size: 26px; margin-bottom: 16px; }
.saas-intro-text p { font-size: 14.5px; color: var(--text-sub); line-height: 2; margin-bottom: 12px; }
.saas-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.saas-intro-card {
  background: var(--white); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md); padding: 26px;
}
.saas-card-head {
  font-size: 16px; font-weight: 700; margin-bottom: 14px;
  padding-bottom: 12px; border-bottom: 1px solid var(--border);
}
.saas-card-head i { color: var(--primary); margin-right: 8px; }
.saas-intro-card li {
  display: flex; justify-content: space-between; padding: 9px 0;
  font-size: 14px; border-bottom: 1px dashed var(--border);
}
.saas-intro-card li:last-child { border-bottom: none; }
.saas-intro-card li span { color: var(--text-sub); }
.saas-intro-card li b { color: var(--text-main); }

/* ---------- 物业 SaaS：模块卡片 ---------- */
.module-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 22px; }
.module-card {
  background: var(--white); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm); padding: 26px; transition: all .28s;
}
.module-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.module-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 22px; margin-bottom: 16px;
}
.module-card h3 { font-size: 17px; margin-bottom: 10px; }
.module-card p { font-size: 13.5px; color: var(--text-sub); line-height: 1.9; margin-bottom: 12px; }
.module-card ul li { position: relative; padding-left: 18px; font-size: 13px; color: var(--text-sub); line-height: 1.95; }
.module-card ul li::before {
  content: "\f00c"; font-family: "Font Awesome 6 Free"; font-weight: 900;
  position: absolute; left: 0; top: 0; font-size: 11px; color: var(--secondary);
}

/* ---------- 物业 SaaS：业主端小程序 ---------- */
.miniapp-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 22px; }
.miniapp-item {
  background: var(--bg); border-radius: var(--radius-lg);
  padding: 26px 24px; text-align: center;
  border: 1.5px solid var(--border); transition: all .28s;
}
.miniapp-item:hover { border-color: var(--primary); background: var(--white); box-shadow: var(--shadow-md); }
.miniapp-item i { font-size: 30px; color: var(--primary); margin-bottom: 12px; display: block; }
.miniapp-item b { display: block; font-size: 16px; margin-bottom: 8px; }
.miniapp-item p { font-size: 13px; color: var(--text-sub); line-height: 1.9; text-align: left; }

/* ---------- 物业 SaaS：架构图 ---------- */
.arch { background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); padding: 30px; }
.arch-layer { display: flex; gap: 18px; align-items: stretch; }
.arch-label {
  flex: 0 0 84px; display: flex; align-items: center; justify-content: center;
  background: var(--primary); color: #fff; border-radius: 12px;
  font-size: 14px; font-weight: 600;
}
.arch-boxes { flex: 1; display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 12px; }
.arch-box {
  background: var(--bg); border: 1.5px solid var(--border); border-radius: 12px;
  padding: 14px 16px; font-size: 13.5px; color: var(--text-sub);
  display: flex; align-items: center; gap: 8px;
}
.arch-box i { color: var(--primary); }
.arch-arrow { text-align: center; color: var(--text-light); padding: 10px 0; font-size: 18px; }
.arch-note { margin-top: 16px; font-size: 13px; color: var(--text-light); text-align: center; }
.arch-note i { margin-right: 5px; }

/* ---------- 物业 SaaS：咨询表单 ---------- */
.consult-wrap { display: grid; grid-template-columns: 1.3fr 1fr; gap: 30px; align-items: start; }
.consult-form { background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-md); padding: 30px; }
.form-tip { font-size: 12px; color: var(--text-light); text-align: center; margin-top: 12px; line-height: 1.8; }
.consult-side { background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); padding: 26px; }
.consult-side h3 { font-size: 17px; margin-bottom: 14px; padding-left: 10px; border-left: 3px solid var(--primary); }
.consult-side .footer-contact { margin-bottom: 20px; }
.consult-side .footer-contact li {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 13.5px; color: var(--text-sub); line-height: 1.9; padding: 5px 0;
}
.consult-side .footer-contact i { color: var(--primary); margin-top: 5px; }
.consult-note { background: var(--bg); border-radius: var(--radius); padding: 16px 18px; margin-bottom: 14px; }
.consult-note b { font-size: 14px; display: block; margin-bottom: 6px; }
.consult-note p { font-size: 13px; color: var(--text-sub); line-height: 1.9; }
.consult-note a { color: var(--primary); }

/* ---------- 详情页咨询卡 ---------- */
.consult-card {
  background: var(--white); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md); padding: 26px;
}
.consult-card .price-big { font-size: 32px; color: var(--primary); font-weight: 700; }
.consult-card .price-big small { font-size: 14px; color: var(--text-light); font-weight: 400; }
.consult-card .row {
  display: flex; justify-content: space-between; padding: 9px 0;
  font-size: 14px; border-bottom: 1px dashed var(--border);
}
.consult-card .row span { color: var(--text-sub); }
.consult-card .row b { color: var(--text-main); }
.consult-card .form-tip { margin-top: 12px; }

@media (max-width: 992px) {
  .saas-intro { grid-template-columns: 1fr; }
  .consult-wrap { grid-template-columns: 1fr; }
  .publish-band { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 640px) {
  .doc-wrap { padding: 26px 20px; }
  .arch-layer { flex-direction: column; }
  .arch-label { flex: none; padding: 8px 0; }
  .publish-btns { flex-direction: column; width: 100%; }
}
