.app-header {
  width: 100%;
  height: 68px;
  padding: 0 160px;
  box-sizing: border-box;
  background: transparent;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-title {
  color: aliceblue;
  font-size: 25px;
  margin-left: -570px;
  font-family: "Arial", sans-serif;
}

.app-header__brand {
  height: 40px;
  margin: 14px 0;
}

.app-header__brand img {
  width: 100%;
  height: 100%;
}

.app-header__container {
  display: flex;
  align-items: center;
}

.app-header__search {
  width: 300px;
  height: 40px;
  border-radius: 20px;
  display: flex;
  margin-right: 28px;
  overflow: hidden;
  position: relative;
}

.app-header__search-bg {
  background: linear-gradient(90deg, #3270FF 0%, #61FBFF 100%);
  opacity: 0.2;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
}

.app-header__search input {
  flex: 1;
  height: 40px;
  line-height: 40px;
  opacity: 1;
  padding: 0 16px;
  border: none;
  color: #ffffff;
  background: transparent;
  position: relative;
  z-index: 10;
  outline: none;
}

.app-header__search-btn {
  width: 66px;
  height: 100%;
  background: linear-gradient(270deg, #3270FF 0%, #61FBFF 100%);
  border-radius: 20px;
  opacity: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  z-index: 10;
}

.app-header__search-icon {
  width: 29px;
  height: 28px;
}

.app-header__search-box {
  top: 66px;
  right: 286px;
}

.app-header__search-box.is-show {
  display: block;
}

.app-header__search-box.app-header__popover {
  padding: 20px 0;
}

.app-header__search-box .app-header__popover-list {
  padding: 0 20px;
}

.app-header__history {
  width: 30px;
  height: 68px;
  cursor: pointer;
  padding: 19px 0;
  margin-right: 28px;
  box-sizing: border-box;
}

.app-header__history>img {
  width: 100%;
  height: 100%;
}

.app-header__history-box {
  top: 66px;
  right: 85px;
}

.app-header__history:hover .app-header__history-box {
  display: block;
}

.app-header__user {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
}

.app-header__nav {
  font-size: 16px;
  font-weight: 700;
  padding-left: 0;
  list-style: none;
  display: flex;
}

.app-header__nav-item {
  margin: 0 20px;
  cursor: pointer;
}

.app-header__nav-item a {
  color: #ffffff;
  text-decoration: none;
}

.app-header__nav-item.is-active a {
  color: #D32F2F;
}

.app-header__popover {
  position: fixed;
  z-index: 999;
  width: 300px;
  background: #1E1E2D;
  display: none;
  cursor: auto;
}

.app-header__popover-list {
  padding: 20px;
  max-height: 600px;
  overflow: auto;
  -ms-overflow-style: none;
  overflow: -moz-scrollbars-none;
}

.app-header__popover-list::-webkit-scrollbar {
  width: 0 !important
}

.app-header__popover-empty {
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  color: #FFFFFF;
  padding: 16px 0;
}

.app-header__popover-item {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.app-header__popover-cover {
  width: 65px;
  height: 87px;
  margin-right: 8px;
  background: #f5f5f5;
  object-fit: cover;
}

.app-header__popover-title {
  width: 187px;
  line-height: 1;
  font-size: 18px;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 9px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.app-header__popover-item:hover .app-header__popover-title {
  color: #FF2929;
}

.app-header__popover-desc {
  line-height: 1;
  font-size: 12px;
  color: #888888;
}

.app-header__popover-item+.app-header__popover-item {
  margin-top: 10px;
}

.app-header__popover-action {
  width: 100%;
  line-height: 16px;
  font-size: 16px;
  padding: 12px 0;
  color: #FF2929;
  background: #232330;
  text-align: center;
  cursor: pointer;
  display: none;
}

.app-header__popover.has-more .app-header__popover-action {
  display: block;
}

.app-header--mine .app-header__search {
  background: linear-gradient(90deg, #3270FF 0%, #61FBFF 100%);
}

.app-header--mine .app-header__search-bg {
  background: #ffffff;
  opacity: 1;
  width: 296px;
  height: 36px;
  top: 2px;
  left: 2px;
}

.app-header--mine .app-header__search input {
  color: #000000;
}

.app-header__dialog {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 999;
  align-items: center;
  justify-content: center;
  display: none;
}

.app-header__dialog.is-open {
  display: flex;
}

.app-header__dialog-mask {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 10;
  background: rgba(0, 0, 0, 0.4);
}

.app-header__dialog-container {
  position: relative;
  z-index: 10;
  background: #ffffff;
  border-radius: 20px;
  padding: 40px 48px;
}

.app-header__dialog-close {
  position: absolute;
  top: 17px;
  right: 17px;
  width: 21px;
  height: 21px;
  cursor: pointer;
}

.app-header__dialog-close img {
  width: 100%;
  height: 100%;
}

.app-header__dialog-title {
  line-height: 1;
  font-size: 30px;
  font-weight: 400;
  color: #000000;
  margin-bottom: 20px;
  text-align: center;
  display: none;
}

.app-header__dialog.is-login .app-header__dialog-title--login,
.app-header__dialog.is-login .app-header__dialog-submit--login {
  display: block;
}

.app-header__dialog.is-delete .app-header__dialog-title--delete,
.app-header__dialog.is-delete .app-header__dialog-submit--delete {
  display: block;
}

.app-header__dialog.is-delete .app-header__dialog-tips {
  display: flex;
}

.app-header__dialog-form {
  padding: 20px 0;
  margin-bottom: 20px;
}

.app-header__dialog-form-item {
  width: 386px;
  height: 68px;
  background: #F6F7F9;
  border-radius: 34px;
  padding: 0 40px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
}

.app-header__dialog-form-item+.app-header__dialog-form-item {
  margin-top: 20px;
}

.app-header__dialog-form-input {
  line-height: 68px;
  font-size: 20px;
  color: #CCCCCC;
  flex: 1;
  border: none;
  background: transparent;
  padding: 0;
  outline: none;
  color: #000000;
}

.app-header__dialog-form-input::placeholder {
  color: #CCCCCC;
}

.app-header__dialog-form-btn {
  line-height: 1;
  font-size: 20px;
  color: #666666;
  margin-left: 16px;
  flex-shrink: 0;
  cursor: pointer;
}

.app-header__dialog-form-btn.is-disabled {
  color: #dddddd;
  cursor: not-allowed;
}

.app-header__dialog-submit {
  height: 68px;
  line-height: 68px;
  font-size: 30px;
  color: #FFFFFF;
  background: linear-gradient(90deg, #3270FF 0%, #61FBFF 100%);
  border-radius: 34px;
  text-align: center;
  cursor: pointer;
  display: none;
}

.app-header__dialog-tips {
  font-size: 16px;
  color: #666666;
  margin-bottom: 20px;
  display: none;
  align-items: center;
  cursor: pointer;
}

.app-header__dialog-radio {
  width: 17px;
  height: 17px;
  border: 1px solid #666666;
  border-radius: 50%;
  box-sizing: border-box;
  margin-right: 5px;
  position: relative;
}

.app-header__dialog-tips.is-agree .app-header__dialog-radio::after {
  content: '';
  width: 5px;
  height: 8px;
  border-right: 2px solid #FF2929;
  border-bottom: 2px solid #FF2929;
  transform: rotate(30deg);
  position: absolute;
  left: 3px;
  top: 1px;
}

.app-header__toast {
  position: fixed;
  top: 10%;
  left: 50%;
  z-index: 1000;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.8);
  color: #ffffff;
  font-size: 24px;
  line-height: 1;
  padding: 16px 32px;
  border-radius: 28px;
  display: none;
}

.app-header__toast.is-show {
  display: block;
}

.app-header__vip {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 999;
  align-items: center;
  justify-content: center;
  display: none;
}

.app-header__vip.is-open {
  display: flex;
}

.app-header__vip-mask {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 10;
  background: rgba(0, 0, 0, 0.4);
}

.app-header__vip-container {
  width: 880px;
  background: #FFFFFF;
  position: relative;
  z-index: 20;
}

.app-header__vip-header {
  height: 140px;
  padding: 0 32px;
  background: #FFF4D9;
  display: flex;
  align-items: center;
}

.app-header__vip-avater {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  margin-right: 12px;
}

.app-header__vip-title {
  font-size: 24px;
  color: #B88723;
}

.app-header__vip-close {
  position: absolute;
  top: 17px;
  right: 17px;
  width: 21px;
  height: 21px;
  cursor: pointer;
}

.app-header__vip-close img {
  width: 100%;
  height: 100%;
}

.app-header__vip-body {
  padding: 25px 20px 88px;
}

.app-header__vip-goods {
  display: flex;
  flex-wrap: wrap;
  margin: -10px -10px 30px;
}

.app-header__vip-goods-item {
  margin: 10px;
  width: 150px;
  height: 130px;
  border: 2px solid #D8B55C;
  border-radius: 12px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.app-header__vip-goods-name {
  line-height: 1;
  font-size: 20px;
  font-weight: 600;
  color: #000000;
  margin-bottom: 20px;
}

.app-header__vip-goods-price {
  line-height: 1;
  font-weight: 600;
  color: #D8B55C;
  display: flex;
  align-items: flex-end;
}

.app-header__vip-goods-item.is-select {
  background-color: #D8B55C;
}

.app-header__vip-goods-item.is-select .app-header__vip-goods-name,
.app-header__vip-goods-item.is-select .app-header__vip-goods-price {
  color: #ffffff;
}

.app-header__vip-goods-item.is-select .app-header__vip-goods-unit {
  font-size: 20px;
}

.app-header__vip-goods-value {
  font-size: 36px;
}

.app-header__vip-payment {
  border: 2px solid #F0F0F0;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  height: 140px;
}

.app-header__vip-payment-tabs {
  display: flex;
  flex-direction: column;
}

.app-header__vip-payment-tab {
  width: 180px;
  height: 100%;
  padding-left: 32px;
  display: flex;
  align-items: center;
  background: #F0F0F0;
  cursor: pointer;
}

.app-header__vip-payment-tab.is-active {
  background: #ffffff;
}

.app-header__vip-payment-icon {
  width: 32px;
  height: 32px;
  margin-right: 4px;
}

.app-header__vip-payment-name {
  font-size: 20px;
  color: #010101;
}

.app-header__vip-payment-container {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 60px;
}

.app-header__vip-payment-btn {
  height: 60px;
  background: #469DE2;
  border-radius: 30px;
  font-size: 20px;
  font-weight: 600;
  color: #FFFFFF;
  line-height: 1.4;
  display: flex;
  align-items: center;
  padding: 0 43px;
  cursor: pointer;
}

.app-header__vip-payment-btn img {
  width: 40px;
  height: 40px;
  margin-right: 10px;
}

.app-header__vip-payment-btn-text {
  display: flex;
  align-items: flex-end;
}

.app-header__vip-payment-value {
  line-height: 1;
  font-size: 30px;
  padding: 0 8px;
}

.app-header__vip-payment-qrcode {
  width: 122px;
  height: 122px;
  margin-right: 38px;
}

.app-header__vip-payment-qrcode canvas {
  width: 100%;
  height: 100%;
}

.app-header__vip-payment-info {}

.app-header__vip-payment-text {
  line-height: 1.4;
  font-size: 20px;
  font-family: PingFang SC;
  font-weight: 600;
  color: #000000;
  display: flex;
  align-items: flex-end;
}

.app-header__vip-payment-text+.app-header__vip-payment-text {
  margin-top: 17px;
}