#app {
  height: 100vh;
  position: relative;
  overflow: hidden;
  max-width: 28.75rem;
  margin: auto;
}

.base-layout {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 100%;
}

.section-content {
  width: 100%;
  flex: 1;
  max-height: 100%;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.home-layout {
  background-color: #282b30;
}

.base-layout > header {
  flex-shrink: 0;
  width: 100%;
  z-index: 10;
  position: relative;
}

header {
  width: 100%;
  height: 3rem;
  padding: 0 0.6rem;
  background: #282b30;
  /* border: 1px solid #282b30; */
  display: flex;
  flex-direction: row;
  align-items: center;
  color: #fff;
  border-bottom: .01rem solid #313843;
}

.body-sect {
  background-color: #282b30;
  overflow-x: hidden;
  overflow-y: hidden;
  /* scrollbar-width: none;
  -ms-overflow-style: none; */

  width: 100%;
  flex: 1;
  max-height: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}

/* .tabbar {
  background-color: #fff;
  position: relative;
  width: 100%;
} */

.footer-main {
  width: 100%;
  height: 5rem;
  box-shadow: 0.02rem 0 0.06rem rgba(0, 0, 0, 0.1);
  background-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0),
    rgba(84, 84, 84, 0)
  );
  z-index: 2;
  min-height: 2.6rem;
  overflow: hidden;
  position: relative;
}

.ui-tabs__navs {
  box-sizing: content-box;
  height: 100%;
  padding-bottom: 0.15rem;
  position: relative;
  background: transparent;
  user-select: none;
  scrollbar-width: none;
  display: flex;
  width: 100%;
  justify-content: space-between;
}

.ui-tab {
  padding: 0 0.05rem;
  color: inherit;
  font-weight: 400;
  position: relative;
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;

  font-size: 1rem;
  cursor: pointer;
}

.itemContent {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.itemContent .item {
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  align-items: center;
  justify-content: flex-end;
  text-align: center;
}

.item .text {
  text-overflow: ellipsis;
  vertical-align: middle;
  height: 2rem;
  overflow: hidden;
  margin-top: 0.5rem;
  z-index: 2;
  color: #999999;
}

.content-none {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1rem;
  height: 100%;
}

.content-none > img {
  width: 8.1rem;
  height: 8.1rem;
}

.content-none > span {
  color: #ADB6C3 !important;
  font-size: 1rem;
}

.content-none > span > span:last-child {
  color: #F0C059 !important;
}

.filters {
  height: 3rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  /* padding-bottom: 1rem; */

  /* scrollbar-width: thin;
  scrollbar-color: #c1c1c1 transparent; */
}


/* .filters::-webkit-scrollbar {
  height: 4px; 
}

.filters::-webkit-scrollbar-track {
  background: transparent;
}

.filters::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 2px;
}

.filters::-webkit-scrollbar-thumb:hover {
  background: #a8a8a8;
} */

.filter-select {
  width: 5.5rem;
  height: 1.5rem;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: #282b30;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10'%3E%3Cpath fill='%23999' d='M5 7L1.5 3.5h7z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .5rem center;
  background-size: .5rem;
  border: .01rem solid #68707B;
  border-radius: 5.35rem;
  padding: 0 1rem;
  font-size: .75rem;
  color: #68707B;
  outline: none;
  cursor: pointer;
  position: relative;
}

/* .filter-select:focus {
  border-color: #866638;
}

.filter-select:hover {
  border-color: #866638;
} */

/* 选项样式 */
.filter-select option {
  padding: .5rem 1rem !important;
  margin: .5rem !important;
  background: #282b30;
  border: none;
  color: #999999;
}

.filter-select option:checked {
  color: #F0C059;
}

.filter-select option:hover {
  background-color: #f5f5f5 !important;
}

.content-none {
  height: 60vh;
  padding: 1rem;
}

.filters {
  padding: 1rem;
}

.sort-btn {
  display: flex;
  align-items: center;
  color: #bdbdbd;
  font-size: .8rem;
  gap: .1rem;
}
.sort-icons {
  display: flex;
  flex-direction: column;
  margin-left: .1rem;
}
.sort-icons i {
  cursor: pointer;
  font-size: .8rem;
  color: #bdbdbd;
  line-height: 1;
  transition: color 0.2s;
}
.sort-icons i:hover {
  color: #666;
}

input:placeholder {
  color: #999999 !important;
}
