html,
body,
#__nuxt {
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
}

body {
  background: #fff;
}

.app-container {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.app-container > main {
  position: relative;
  height: 100%;
  min-height: 460px;
  overflow: auto;
}

.app-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 99;
  height: 60px;
  padding: 0 20px;
  box-sizing: border-box;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  margin: 0 auto;
}

.logo-container {
  display: block;
  height: 30px;
  opacity: 0;
}

.logo-container.show {
  opacity: 1;
}

.logo-container img {
  display: block;
  width: auto;
  height: 100%;
}

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

.search-bar,
.search-input-wrapper {
  display: flex;
  align-items: center;
}

.search-input {
  box-sizing: content-box;
  min-width: 250px;
  height: 32px;
  padding: 0 8px;
  border: 0;
}

.search-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  padding: 0;
  border: 0;
}

.header-right img[alt='用户头像'] {
  display: block;
  width: 35px;
  height: 35px;
  object-fit: cover;
}
