/* 同花顺官网 - 单栏卡片版式 */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: "Microsoft YaHei", "PingFang SC", sans-serif;
  background: #f4f7fb;
  color: #1c2834;
  line-height: 1.75;
}

a {
  color: #0b3a82;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

img,
svg {
  max-width: 100%;
  vertical-align: middle;
}

.wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}

/* 页头 */
.site-header {
  background: #fff;
  border-bottom: 3px solid #0b3a82;
}

.site-header .wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  gap: 12px 24px;
}

.brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0b3a82;
  letter-spacing: 0.04em;
}

.brand:hover {
  text-decoration: none;
  color: #c9a227;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
}

.nav a {
  color: #1c2834;
  font-weight: 500;
  padding: 4px 0;
}

.nav a.active {
  color: #0b3a82;
  border-bottom: 2px solid #c9a227;
  font-weight: 700;
}

/* 主内容 */
main {
  padding: 20px 0 40px;
}

.card {
  background: #fff;
  border-left: 4px solid #c9a227;
  padding: 28px 32px;
  margin-bottom: 16px;
}

.hero {
  margin-bottom: 16px;
}

.hero h1 {
  font-size: 1.65rem;
  color: #0b3a82;
  line-height: 1.4;
  margin-bottom: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 18px;
  margin-bottom: 16px;
}

.hero-jumps {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  font-size: 1.05rem;
}

.hero-jumps a {
  color: #0b3a82;
  font-weight: 600;
  border-bottom: 2px solid #c9a227;
  padding-bottom: 2px;
}

.hero-jumps a:hover {
  color: #c9a227;
  text-decoration: none;
}

h2 {
  font-size: 1.35rem;
  color: #0b3a82;
  margin-bottom: 16px;
  line-height: 1.45;
}

h3 {
  font-size: 1.1rem;
  color: #0b3a82;
  margin-bottom: 10px;
  line-height: 1.45;
}

.card p {
  margin-bottom: 14px;
  text-align: justify;
}

.card p:last-child {
  margin-bottom: 0;
}

.btn {
  display: inline-block;
  padding: 10px 22px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 2px;
  cursor: pointer;
  line-height: 1.4;
}

.btn:hover {
  text-decoration: none;
}

.btn-primary {
  background: #0b3a82;
  color: #fff;
  border: 2px solid #0b3a82;
}

.btn-primary:hover {
  background: #0a2f6a;
  border-color: #0a2f6a;
  color: #fff;
}

.btn-secondary {
  background: #fff;
  color: #0b3a82;
  border: 2px solid #0b3a82;
}

.btn-secondary:hover {
  background: #eef3fa;
  color: #0b3a82;
}

.download-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
  margin-bottom: 8px;
}

.accent-line {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 12px 0 4px;
  color: #c9a227;
  font-size: 0.9rem;
  font-weight: 600;
}

.accent-line svg {
  flex-shrink: 0;
}

/* 新闻 */
.news-block article {
  padding: 16px 0;
  border-bottom: 1px solid #e2e8f0;
}

.news-block article:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.news-block article:first-of-type {
  padding-top: 0;
}

.news-block time {
  display: block;
  color: #c9a227;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.news-block h3 {
  margin-bottom: 8px;
}

/* FAQ */
.faq-block .faq-item {
  padding: 16px 0;
  border-bottom: 1px solid #e2e8f0;
}

.faq-block .faq-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.faq-block .faq-item:first-child {
  padding-top: 0;
}

.faq-block .faq-item p {
  margin-bottom: 0;
}

/* 页脚 */
.site-footer {
  background: #0b3a82;
  color: #fff;
  padding: 28px 0;
  margin-top: 8px;
}

.site-footer .wrap p {
  margin-bottom: 10px;
  font-size: 0.92rem;
  line-height: 1.7;
}

.site-footer .wrap p:last-child {
  margin-bottom: 0;
}

.site-footer a {
  color: #f0d878;
  text-decoration: underline;
}

.site-footer a:hover {
  color: #fff;
}

@media (max-width: 640px) {
  .site-header .wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .card {
    padding: 20px 18px;
  }

  .hero h1 {
    font-size: 1.35rem;
  }

  h2 {
    font-size: 1.2rem;
  }
}
