/* app.wpsvue.com.cn — 应用获取页 */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: #431407;
  background: #fff7ed;
}

a {
  color: #9a3412;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.appbar {
  height: 56px;
  background: #c2410c;
  color: #fff;
  display: flex;
  align-items: center;
}

.appbar-inner {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.appbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
}

.appbar-brand:hover {
  text-decoration: none;
  opacity: 0.92;
}

.appbar-brand svg {
  display: block;
  flex-shrink: 0;
}

.appbar-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.appbar-nav a {
  color: #ffedd5;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 0.92rem;
  text-decoration: none;
}

.appbar-nav a:hover {
  background: rgba(255, 255, 255, 0.12);
  text-decoration: none;
  color: #fff;
}

.appbar-nav a.is-active {
  background: #fff;
  color: #c2410c;
  font-weight: 600;
}

.wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px 48px;
}

.hero {
  background: linear-gradient(160deg, #ea580c 0%, #c2410c 55%, #9a3412 100%);
  color: #fff;
  padding: 36px 28px 40px;
  margin: 0 -20px 28px;
  border-radius: 0 0 12px 12px;
}

.hero h1 {
  margin: 0 0 12px;
  font-size: 1.7rem;
  line-height: 1.35;
  font-weight: 700;
}

.hero-lead {
  margin: 0 0 24px;
  font-size: 1.02rem;
  line-height: 1.7;
  color: #ffedd5;
  max-width: 720px;
}

.big-dl {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 14px 36px;
  background: #fff;
  color: #c2410c;
  font-size: 20px;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  border: none;
  box-shadow: 0 2px 0 rgba(67, 20, 7, 0.12);
}

.big-dl:hover {
  background: #fff7ed;
  color: #9a3412;
  text-decoration: none;
}

.tile-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 0 0 32px;
}

.tile-row a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 108px;
  padding: 18px 12px;
  background: #fff;
  border: 1px solid #fed7aa;
  border-radius: 8px;
  color: #9a3412;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
}

.tile-row a:hover {
  border-color: #c2410c;
  background: #fffbeb;
  text-decoration: none;
}

.tile-row a svg {
  display: block;
}

.section {
  margin: 0 0 36px;
}

.section h2 {
  margin: 0 0 14px;
  font-size: 1.28rem;
  color: #9a3412;
  font-weight: 700;
  padding-bottom: 8px;
  border-bottom: 2px solid #fdba74;
}

.section p {
  margin: 0 0 14px;
}

.row-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid #fed7aa;
}

.row-item:last-child {
  border-bottom: none;
}

.row-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffedd5;
  border-radius: 8px;
}

.row-icon svg {
  display: block;
}

.row-body h3 {
  margin: 0 0 6px;
  font-size: 1.08rem;
  color: #7c2d12;
}

.row-body p {
  margin: 0;
  color: #57534e;
  font-size: 0.98rem;
}

.news-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.news-list li {
  padding: 12px 0;
  border-bottom: 1px solid #fed7aa;
}

.news-list li:last-child {
  border-bottom: none;
}

.news-list h3 {
  margin: 0 0 4px;
  font-size: 0.98rem;
  color: #7c2d12;
  font-weight: 600;
}

.news-date {
  display: inline-block;
  font-size: 0.82rem;
  color: #a8a29e;
  margin-bottom: 4px;
}

.news-list p {
  margin: 0;
  font-size: 0.9rem;
  color: #57534e;
  line-height: 1.65;
}

.faq details {
  border-bottom: 1px solid #fed7aa;
  padding: 0;
}

.faq details:last-child {
  border-bottom: none;
}

.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 14px 0;
  font-weight: 600;
  font-size: 1rem;
  color: #ea580c;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::before {
  content: "+";
  display: inline-block;
  width: 1.2em;
  color: #c2410c;
  font-weight: 700;
}

.faq details[open] summary::before {
  content: "−";
}

.faq details p {
  margin: 0 0 16px;
  padding-left: 1.2em;
  color: #44403c;
  font-size: 0.96rem;
}

.cta-box {
  background: #ffedd5;
  border: 1px solid #fdba74;
  border-radius: 8px;
  padding: 24px;
  text-align: center;
  margin: 0 0 36px;
}

.cta-box p {
  margin: 0 0 16px;
  color: #7c2d12;
}

.site-footer {
  background: #7c2d12;
  color: #ffedd5;
  padding: 28px 20px;
  font-size: 0.88rem;
  line-height: 1.7;
}

.site-footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.site-footer p {
  margin: 0 0 10px;
}

.site-footer p:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .appbar {
    height: auto;
    min-height: 56px;
    padding: 8px 0;
  }

  .appbar-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    padding: 28px 20px 32px;
    margin: 0 -20px 24px;
  }

  .hero h1 {
    font-size: 1.35rem;
  }

  .big-dl {
    width: 100%;
    font-size: 18px;
    min-height: 56px;
  }

  .tile-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .row-item {
    gap: 12px;
  }
}
