.dropdown-box {
  position: relative;
  display: flex;
  box-shadow: 0 0.05rem 0.2rem 0.01rem rgba(0, 0, 0, 0.05);
}
.dropdown-box .dropdown-item {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.dropdown-box .dropdown-item.on .dropdown-item-title {
  color: #ff8800;
}
.dropdown-box .dropdown-item.open .dropdown-item-title {
  color: #ff8800;
}
.dropdown-box .dropdown-item.open .dropdown-item-title .icon {
  transform: rotate(-180deg);
}
.dropdown-box .dropdown-item.open .dropdown-list {
  height: auto;
  padding-top: 0.3rem;
  padding-bottom: 0.1rem;
  box-shadow: 0 0.05rem 0.2rem 0.01rem rgba(0, 0, 0, 0.05);
}
.dropdown-box .dropdown-item .dropdown-item-title {
  width: 100%;
  height: 0.8rem;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #999;
}
.dropdown-box .dropdown-item .dropdown-item-title .icon {
  transition: all 0.3s;
  margin-left: 0.1rem;
  font-size: 0.2rem;
}
.dropdown-box .dropdown-item .dropdown-list {
  display: flex;
  flex-wrap: wrap;
  position: absolute;
  overflow: hidden;
  width: 100%;
  top: 0.8rem;
  left: 0;
  height: 0;
  background-color: #fff;
  box-shadow: none;
  padding-left: 0.2rem;
  z-index: 9;
}
.dropdown-box .dropdown-item .dropdown-list li a {
  display: block;
  background-color: #f5f5f5;
  color: #666;
  border-radius: 0.1rem;
  padding: 0.1rem 0.2rem;
  margin-right: 0.2rem;
  margin-bottom: 0.2rem;
}
.dropdown-box .dropdown-item .dropdown-list li.on a {
  background-color: #ff8800;
  color: #fff;
}/*# sourceMappingURL=index.css.map */