.home-container {
  margin: 0 auto;
  max-width: 1552px;
  width: 100%;
  padding-bottom: 50px;
}
.home-container .task-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 64px;
  padding-bottom: 40px;
}
.home-container .task-header-title {
  font-size: 28px;
  color: #fff;
  font-weight: 700;
}
.home-container .search-container {
  display: flex;
  align-items: center;
  gap: 12px;
}
.home-container .search-container .input {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #232323;
  padding: 6px 8px;
  border-radius: 4px;
  min-width: 240px;
}
.home-container .search-container .input img {
  width: 16px;
  height: 16px;
}
.home-container .search-container .input input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: #e7e7ea;
  font-size: 14px;
}
.home-container .search-icon {
  width: 20px;
  height: 20px;
  display: none;
}
.home-container .search-item {
  position: relative;
}
.home-container .search-item .value {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #232323;
  padding: 0 8px;
  height: 32px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 14px;
  color: #fff;
  cursor: pointer;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
}
.home-container .search-item .value img {
  width: 10px;
  height: 10px;
}
.home-container .search-item .pop {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  background: #232323;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 4px;
  padding: 4px;
  min-width: 140px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  display: none;
  z-index: 10;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
}
.home-container .search-item .pop::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 0;
  right: 0;
  height: 12px;
}
.home-container .search-item.activeItem {
  border: 1px solid rgb(112, 102, 255);
  border-radius: 4px;
}
.home-container .search-item.activeItem .value img {
  transform: rotate(180deg);
}
.home-container .dropdown-item {
  padding: 8px 10px;
  border-radius: 8px;
  color: #a0a0aa;
  font-size: 13px;
  cursor: pointer;
  margin-bottom: 8px !important;
}
.home-container .dropdown-item:hover, .home-container .dropdown-item.active {
  background: #141414;
  color: #fff;
}
.home-container .dropdown-item:last-child {
  margin-bottom: 0 !important;
}
@media (max-width: 1024px) {
  .home-container #ID-carousel-demo-image {
    height: 360px !important;
  }
}
@media (max-width: 768px) {
  .home-container {
    padding: 0 16px;
    box-sizing: border-box;
  }
  .home-container .task-header {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding-bottom: 0;
    border-bottom: none;
    margin-top: 20px;
    margin-bottom: 24px;
  }
  .home-container .task-header-title {
    font-size: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .home-container .search-container {
    flex-wrap: wrap;
    width: 100%;
  }
  .home-container .search-container .input {
    display: none;
  }
  .home-container .search-container .search-item {
    flex: 1;
  }
  .home-container .search-container .search-item .value {
    flex: 1;
    justify-content: space-between;
    display: flex;
    background: #232323;
  }
  .home-container .search-container .search-item .pop1 {
    left: 0;
  }
  .home-container .search-icon {
    display: block;
  }
  .home-container .list {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .home-container .cover .pop {
    height: 36px;
  }
  .home-container #ID-carousel-demo-image {
    height: 212px !important;
  }
}

@media (max-width: 1552px) {
  .home-container {
    padding: 0 16px;
    box-sizing: border-box;
  }
}
.search-home-h5 {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  display: none;
}
.search-home-h5.show {
  display: block;
}
.search-home-h5 .mask {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(4px);
}
.search-home-h5-content {
  position: relative;
  z-index: 1001;
  padding: 37px 48px;
}
.search-home-h5-content-item {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid #715eff;
  border-radius: 4px;
  height: 32px;
  padding: 4px 4px 4px 12px;
}
.search-home-h5-content-item img {
  width: 20px;
  height: 20px;
}
.search-home-h5-content-item input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: #e7e7ea;
  font-size: 14px;
}
.search-home-h5-content-item input::placeholder {
  color: #a0a0aa;
}
.search-home-h5-content-item .clear-input {
  width: 16px;
  height: 16px;
  opacity: 0.6;
  cursor: pointer;
  transition: opacity 0.2s ease;
  display: none;
}
.search-home-h5-content-item .clear-input:hover {
  opacity: 1;
}
.search-home-h5-content-item .clear-input.show {
  display: block;
}
.search-home-h5-content-item .btn {
  background: #715eff;
  color: #fff;
  border-radius: 4px;
  font-size: 12px;
  height: 24px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
}
.search-home-h5-content-item .btn:hover {
  background: rgb(166.5162790698, 130.6651162791, 248.1348837209);
}

.search-result {
  display: none;
  align-items: center;
  gap: 8px;
  color: #ff4e4e;
  font-size: 14px;
  cursor: pointer;
  padding: 8px 12px;
  background: rgba(255, 78, 78, 0.1);
  border: 1px solid rgba(255, 78, 78, 0.2);
  border-radius: 8px;
  transition: all 0.2s ease;
}
.search-result.show {
  display: flex;
}
.search-result:hover {
  background: rgba(255, 78, 78, 0.15);
  border-color: rgba(255, 78, 78, 0.3);
}
.search-result img {
  width: 16px;
  height: 16px;
  opacity: 0.8;
}

@media (max-width: 768px) {
  .home-container .search-container .search-icon {
    display: block;
    cursor: pointer;
    transition: opacity 0.2s ease;
  }
  .home-container .search-container .search-icon:hover {
    opacity: 0.8;
  }
  .home-container .home-content {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}

/*# sourceMappingURL=index.css.map */
