.fe-search-bar {
  width: 100%;
}
.fe-search-bar-form,
.fe-search-bar-result {
  padding: 0 10px;
}
.fe-search-bar-form {
  box-sizing: border-box;
  position: relative;
  display: flex;
  align-items: center;
  height: 44px;
  overflow: hidden;
}
.fe-search-bar-input {
  flex: 1;
  position: relative;
  width: 100%;
  height: 28px;
  overflow: hidden;
  border-radius: 8px;
  background-color: #fff;
}
.fe-search-bar-placeholder,
.fe-search-bar input[type='search'] {
  position: absolute;
  top: 0;
  left: 0;
}
.fe-search-bar-placeholder {
  box-sizing: content-box;
  z-index: 1;
  width: 100%;
  height: 28px;
  color: #cccccc;
  line-height: 28px;
  transition: width 0.3s;
  display: block;
  text-align: center;
}
.fe-search-bar-placeholder-focus {
  padding-left: 10px;
  width: auto;
}
.fe-search-bar-placeholder-text {
  color: #9c9c9d;
  font-size: 16px;
}
.fe-search-bar-icon {
  color: #b2b2b2;
}
.fe-search-bar input[type='search'] {
  z-index: 2;
  opacity: 0;
  width: 100%;
  text-align: left;
  display: block;
  color: #000;
  height: 28px;
  font-size: 16px;
  background-color: transparent;
  border: 0;
}
.fe-search-bar input[type='search']:focus {
  outline: 0;
}
.fe-search-bar input[type='search']::placeholder {
  background: none;
  text-align: left;
  color: transparent;
}
.fe-search-bar input[type='search']::-webkit-search-cancel-button {
  -webkit-appearance: none;
}
.fe-search-bar input[type='search']::-webkit-search-decoration,
.fe-search-bar input[type='search']::-webkit-search-cancel-button,
.fe-search-bar input[type='search']::-webkit-search-results-button,
.fe-search-bar input[type='search']::-webkit-search-results-decoration {
  display: none;
}
.fe-search-bar .fe-search-bar-clear {
  color: #cccccc;
  box-sizing: content-box;
  position: absolute;
  display: none;
  z-index: 3;
  width: 17px;
  height: 17px;
  top: 0;
  right: 0;
  padding: 5.5px;
  background-color: transparent;
  background-position: center;
  background-repeat: no-repeat;
  transition: all 0.3s;
}
.fe-search-bar .fe-search-bar-clear-show {
  display: block;
}
.fe-search-bar-cancel {
  flex: none;
  opacity: 1;
  padding-left: 8px;
  height: 44px;
  line-height: 44px;
  text-align: right;
  color: #108ee9;
}
.fe-search-bar-focus .fe-search-bar-input input[type='search'] {
  opacity: 1;
  padding: 0 28px 0 31px;
}
.fe-search-bar-focus .fe-search-bar-input input[type='search']::placeholder {
  color: #9c9c9d;
}
.fe-search-bar-type {
  background: #fff;
}
.fe-search-bar-type .fe-search-bar-input {
  background: #f5f5f5;
  font-size: 16px;
}
.fe-search-bar-result {
  background: #fff;
}
.fe-search-bar-result-item {
  padding: 5px;
  font-size: 16px;
  border-bottom: 1px #eee solid;
}
.fe-search-bar-bc-clip-padding-box {
  background-clip: padding-box;
}
.fe-search-bar-bc-clip-content-box {
  background-clip: content-box;
}
