@charset "UTF-8";
header {
  width: 100%;
  height: 70px;
  position: fixed;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  z-index: 50;
}
header .accesskey-main {
  position: fixed;
  left: 8px;
  top: 4px;
  color: transparent;
  z-index: 60;
  font-size: 0;
}
header .accesskey-main:focus {
  color: white;
  background-color: #0b716a;
  font-size: 0.875rem;
}
header .header-content {
  /* max-width: 1180px; */
  max-width: max(1180px, 75ch);
  margin: 0 auto;
  padding: 8px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .header-content .header-logo-group {
  display: flex;
  align-items: center;
  gap: 12px;
}
header .header-content .header-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #212121;
}
header .header-content .header-logo img {
  width: 53px;
  height: 53px;
}
header .header-content .header-login {
  padding: 4px;
  color: #0b716a;
  font-size: 1rem;
  cursor: pointer;
  /* 只 reset 掉 outline 以外的樣式 */
  appearance: none;
  background: none;
  border: none;
  margin: 0;
}

@media (max-width: 920px) {
  header {
    height: 50px;
  }
  header .header-content {
    gap: 10px;
    padding: 8px 16px;
  }
  header .header-content .header-logo img {
    width: 32px;
    height: 32px;
  }
} /*# sourceMappingURL=header.css.map */
