.flex {
  display: flex;
  align-items: center;
}
.header {
  padding-left: 0.2rem;
  padding-right: 0.2rem;
}
.header .nav {
  margin: 0 0.2rem 0 0;
}
.content {
  padding-top: 1.8rem;
  min-height: 8rem;
  background: rgba(41, 40, 37, 0.99);
}
.content-content {
  display: flex;
  align-items: center;
  align-items: stretch;
}
.filter {
  position: fixed;
  left: 0;
  top: 0;
  display: none;
  z-index: 10;
  padding: 30px 0;
  width: 80%;
  height: 100%;
  overflow-y: auto;
  background: #fff;
}
.filter .close {
  position: absolute;
  right: 0.4rem;
  top: 0.4rem;
}
.filter .title {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  position: relative;
  font-size: 24px;
  font-weight: bold;
}
.filter .title::before {
  margin-right: 34px;
  content: '';
  width: 6px;
  height: 40px;
  background: #FECB00;
}
.filter .filter-item {
  display: flex;
  align-items: center;
  position: relative;
  padding: 10px 20px;
  padding-left: 40px;
  font-size: 16px;
  color: #999;
  cursor: pointer;
}
.filter .filter-item.active {
  color: #000;
}
.filter .filter-item.active::after {
  display: block;
  margin-left: 10px;
  content: '';
  width: 0.4rem;
  height: 0.4rem;
  background: url(../../../images/success.svg);
  background-size: 100% 100%;
}
.list-wrapper {
  margin-left: 2px;
  width: 100%;
}
.top-filter {
  display: flex;
  align-items: center;
  overflow: hidden;
  flex: 1;
  padding: 0;
}
.top-filter .find-icon {
  margin-right: 0.2rem;
}
.top-filter .find-icon section {
  margin: 3px 0;
  width: 18px;
  height: 3px;
  border-radius: 2px;
  background: #fff;
  transition: all 0.3s;
}
.top-filter .find-icon section:first-of-type {
  transform-origin: left top;
}
.top-filter .find-icon section:last-of-type {
  transform-origin: left bottom;
}
.top-filter .find-icon section.rotate-down {
  transform: rotate(45deg);
}
.top-filter .find-icon section.rotate-up {
  transform-origin: left bottom;
  transform: rotate(-45deg);
}
.top-filter .find-icon section.fade {
  opacity: 0;
}
.top-filter .inp,
.top-filter .select {
  height: 0.8rem;
  font-size: 0.32rem;
  border: none;
  outline: none;
}
.top-filter .inp {
  padding-left: 0.267rem;
  flex: 1;
  width: 1.333rem;
}
.top-filter .select {
  padding: 0;
  width: 20%;
  border-left: 1px solid #333;
}
.top-filter .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.067rem;
  height: 0.8rem;
  border: 1px solid #fff;
  border-radius: 0 8px 8px 0;
  cursor: pointer;
}
.top-filter .btn .search-icon {
  width: 0.267rem;
  height: 0.267rem;
}
.filter-result {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.4rem;
  color: #fff;
  font-size: 0.32rem;
}
.filter-result > span {
  color: #fcc000;
}
.filter-result .icon {
  margin: 0 0.213rem;
  width: 0.133rem;
  cursor: pointer;
}
.list {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  align-content: start;
}
.item {
  position: relative;
  height: calc(100vw / 3);
  background-size: cover;
  background-position: center 0;
}
.item .name {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 0.133rem;
  justify-content: space-between;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  font-size: 0.32rem;
  color: #fff;
}
