.tool-filter-modal-wrapper {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 0;
  top:0;
  left:0;
  z-index: 9;
}

.tool-filter-modal {
  width: 100%;
  height: 224px;
  position: absolute;
  left: 0;
  bottom: 0;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  background-color: #fff;
}

.tool-filter-header {
  display: flex;
  justify-content: space-between;
}

.tool-filter-btn {
  display: inline-block;
  padding: 16px 18px 14px;
  color: #3EB0FF;
  font-size: 14px;
}

.tool-filter-search {
  margin: 0 16px;
  box-sizing: border-box;
  /* padding: 8px 15px; */
  padding: 0 15px;
  display: flex;
  align-items: center;
  border-radius: 2px;
  height: 32px;
  background: #f2f4f9;
}

.tool-filter-search .filter-search-icon {
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-right: 6px;
  background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABwAAAAcBAMAAACAI8KnAAAALVBMVEVHcEzLz9nOzuHLz9nL0drLz9nLz9nM0NnL0NrLz9nLz9nLz9nLz9nLz9rK0NreNr3yAAAAD3RSTlMA/gSKFM5xPFOcqfLkvCaf3SWXAAAA4klEQVR4nFWQPQvCMBCGj/q5KBS/oIMIQtHiYAb3unewgqMg/oK6OYkuulZcXBycC0IHwW4WpJuDIi4uon/EpMlVesP75snljpcAAGQ67nFbA1EZs7TZuYFgiQQ6QMN8cNQUnZlaCg1Im18v7uGkIlaky0xTF1z5Yq8nI8TwRHTEVI/KAAkSRSpehNkqlcIfK/Euw2GEKpt1aoi5M8s2R+zaVFp9RPKOokbhpZvF0eDhjVNoed/mbh6oJslVBKrLz9XSUT578Q9fX5Y9CzTMm5zOaBgJ26KahRhKazveLscQxj9xNCnzLPG5dQAAAABJRU5ErkJggg==') no-repeat center / cover;
}

.tool-filter-search input {
  width: 100%;
  font-size: 14px;
  height: 16px;
  line-height: 16px;
  outline: none;
  border: none;
  background: #f2f4f9;
}

.tool-filter-search input::-webkit-input-placeholder{
  color: #CED2DB;
}

.tool-filter-list {
  width: 100%;
  height: 140px;
  margin-top: 8px;
  position: absolute;
  overflow: hidden;
}

.tool-filter-list-content {
  width: 100%;
  cursor: grab;
  position: absolute;
  top: calc(50% - 15px);
  left: 0;
  transform: translateY(0);
  color: #000;
}

.tool-filter-mask {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  bottom: 0;
}

.tool-filter-mask .tool-selected {
  position: absolute;
  width: 100%;
  height: 30px;
  top: calc(50% - 16px);
  left: 0;
  border-top: 1px solid #eeeeee;
  border-bottom: 1px solid #eeeeee;
}

.tool-filter-mask .filter-mask-top {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  bottom: calc(50% + 16px);
  background: rgba(255, 255, 255, 0.6);
}

.tool-filter-mask .filter-mask-bottom {
  position: absolute;
  width: 100%;
  left: 0;
  top: calc(50% + 16px);
  bottom: 0;
  background: rgba(255, 255, 255, 0.6);
}

.tool-filter-list::before {
  content: " ";
  display: block;
  position: absolute;
  width: 100%;
  height: 100vh;
  top: -100vh;
}

.tool-filter-list::after {
  content: " ";
  display: block;
  position: absolute;
  width: 100%;
  height: 100vh;
  bottom: -100vh;
}

.tool-filter-list .tool-filter-list-item {
  font-size: 14px;
  line-height: 30px;
  text-align: center;
}