.wrap {
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px 20px 40px;
}

/* 头部样式 */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 25px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  font-size: 28px;
  color: var(--accent);
}

.brand-text h1 {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary);
  margin: 0;
}

.brand-text h2 {
  font-size: 14px;
  font-weight: 400;
  color: var(--muted);
  margin: 0;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* 主内容 */
.main-title {
  margin: 15px 0 8px;
  font-size: 28px;
  font-weight: 600;
  color: var(--primary);
}

.sub {
  margin: 0 0 25px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

/* 页脚 */
footer {
  margin-top: 30px;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}