body {
  background-color: #fff;
}

.content {
  padding-bottom: 66px;
  margin-bottom: 100px;
}

.result .search-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 0;
  border-top: 1px solid #D3D3D3;
  border-bottom: 1px solid #D3D3D3;
}

.result .search {
  position: relative;
  width: 800px;
  height: 54px;
  padding: 0 155px 0 60px;
  box-sizing: border-box;
  border:1px solid rgba(227, 227, 227, 1);
}

.result .search::before {
  position: absolute;
  content: '';
  top: 7px;
  left: 60px;
  width: 1px;
  height: 40px;
  background-color: #ECECEC;
}

.result .search::after {
  position: absolute;
  content: '';
  top: 7px;
  right: 155px;
  width: 1px;
  height: 40px;
  background-color: #ECECEC;
}

.result .search .search-icon {
  position: absolute;
  top: 50%;
  left: 17px;
  width:24px;
  height:26px;
  transform: translate(0, -50%);
}

.result .search .search-icon img {
  width: 100%;
  height: 100%;
}

.result .search input {
  width: 100%;
  height: 100%;
  padding: 0 10px;
  box-sizing: border-box;
  border: 0;
}


.result .select-btn {
  position: absolute;
  top: 0;
  right: 0;
  width: 155px;
  height: 54px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.result .select-btn .select-icon {
  position: relative;
  top: -3px;
  width: 10px;
  height: 10px;
  margin-left: 5px;
  transform: rotate(-45deg);
  border-bottom: 2px solid #B50005;
  border-left: 2px solid #B50005;
  /* transition: all .5s; */
}

.result .select-btn .select-icon--active {
  position: relative;
  top: 3px;
  width: 10px;
  height: 10px;
  margin-left: 5px;
  transform: rotate(-225deg);
  border-bottom: 2px solid #B50005;
  border-left: 2px solid #B50005;
  /* transition: all .5s; */
}

.result .select-list {
  position: absolute;
  min-width: 155px;
  right: -1px;
  top: 53px;
  border: 1px solid #ECECEC;
  border-top: 0;
  background-color: #fff;
}

.result .select-list .item {
  padding: 15px 0;
  text-align: center;
  cursor: pointer;
  user-select: none;
}

.result .select-list .item + .item {
  border-top: 1px solid #ECECEC;
}


.result .search-btn {
  width:138px;
  height:56px;
  margin-left: 15px;
  line-height: 56px;
  color: #fff;
  background:rgba(181,0,5,1);
  border-radius:5px;
  text-align: center;
  font-size: 24px;
  user-select: none;
  cursor: pointer;
}