.filter {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.filter .pulldown {
  width: 20rem;
  margin-bottom: 1rem;
  margin-left: 1rem;
  position: relative;
}
.filter .pulldown .box {
  width: 20rem;
  color: #333;
  height: 2.5rem;
  border: 0.1rem solid #c5c5c5;
  background-color: #fff;
  border-radius: 0.5rem;
  /* text-indent: 5px; */
  font-size: 1.4rem;
  line-height: 2.5rem;
  cursor: pointer;
  position: relative;
}
.filter .pulldown .box span {
  line-height: 2;
  padding: 0 1rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  word-break: break-word;
}
.filter .pulldown .box .pullImg {
  width: 2rem;
  height: 2rem;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.filter .pulldown .down {
  width: 20rem;
  display: none;
  z-index: 2;
  position: absolute;
  background-color: #fff;
  border: 0.1rem solid #c5c5c5;
  border-radius: 0.5rem;
}
.filter .pulldown .down .options {
  padding: 0;
  margin: 0;
}
.filter .pulldown .down .options li {
  padding: 0 1rem;
  list-style: none;
  cursor: pointer;
}
.filter .pulldown .down .options li .categoryItem {
  display: block;
  height: 2.5rem;
  font-size: 1.4rem;
  line-height: 2.5rem;
  color: #333;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  word-break: break-word;
}
.filter .pulldown .down .options li:hover {
  background-color: #f82c4c;
}
.filter .pulldown .down .options li:hover .categoryItem {
  color: #fff;
}
.filter .setData {
  background-color: #f82c4c;
  padding: 0.5rem 1.5rem;
  color: #fff;
  margin: 0 0.5rem 0 2rem;
  font-size: 1.6rem;
  font-weight: 500;
  border-radius: 2rem;
  margin-bottom: 1rem;
  cursor: pointer;
}
