/* study999-shared-home-header-v1 */
/* 两个页面共同使用的首页 Logo 与网站名称样式。 */



/* Logo 与网站名称始终并排显示 */
*:has(> .study999-site-logo) {
  display: inline-flex !important;
  align-items: center !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  gap: 12px !important;
  white-space: nowrap !important;
  width: max-content;
  max-width: 100%;
  font-size: 36px !important;
  line-height: 1.1 !important;
  font-weight: 700 !important;
}

/* 电脑端 Logo */
.study999-site-logo {
  width: 180px !important;
  height: 100px !important;
  flex: 0 0 180px !important;
  object-fit: contain !important;
  margin: 0 !important;
}

/* 网站名称 */
.study999-site-title {
  display: inline !important;
  font-size: 36px !important;
  line-height: 1.1 !important;
  font-weight: 700 !important;
  white-space: nowrap !important;
}

/* 手机端自动缩小，防止换行 */
@media (max-width: 640px) {
  *:has(> .study999-site-logo) {
    gap: 8px !important;
    font-size: 22px !important;
  }

  .study999-site-logo {
    width: 96px !important;
    height: 58px !important;
    flex: 0 0 96px !important;
  }

  .study999-site-title {
    font-size: 22px !important;
  }
}



/* 找回密码页采用首页 style.css 的同一套 header 基础值。 */
body.study999-recover-page > header {
background:#fff;padding:16px max(20px,calc((100vw - 920px)/2));display:flex;justify-content:space-between;align-items:center;gap:12px;border-bottom:1px solid #ddd
}
