#search-result.search-result {
  position: relative;
  width: 100%;
  min-width: 1366px;
  background: #fff;
  font-family: 'Microsoft YaHei-Regular';
  overflow: hidden;
  padding-top: 122px;
}
#search-result .top {
  width: 100%;
  height: 250px;
  background: url(/assets/images/search-result/bg-result-top.png) no-repeat center center;
  background-size: auto 250px;
  background-color: #EDF4FA;
  padding-top: 80px;
}
#search-result .top .search-input {
  display: flex;
  width: 860px;
  height: 61px;
  align-items: center;
  justify-content: space-between;
  transition: 0.5s;
  background-color: #fff;
  color: #fff;
  border-radius: 2px;
  position: relative;
  margin: 0 auto;
}
#search-result .top .search-input input {
  width: 652px;
  height: 61px;
  outline: none;
  border: none;
  font-size: 16px;
  margin: 0 44px 0 24px;
  background-color: #fff;
  color: #15213A;
}
#search-result .top .search-input input::placeholder {
  color: #777E8E;
}
#search-result .top .search-input .clear {
  display: none;
  width: 20px;
  height: 20px;
  line-height: 40px;
  cursor: pointer;
  position: absolute;
  top: 21px;
  right: 164px;
}
#search-result .top .search-input .clear::before,
#search-result .top .search-input .clear::after {
  content: '';
  position: absolute;
  height: 2px;
  width: 16px;
  top: 50%;
  right: 0;
  margin-top: -2px;
  background: #DEDFE6;
}
#search-result .top .search-input .clear::after {
  transform: rotate(-45deg);
}
#search-result .top .search-input .clear::before {
  transform: rotate(45deg);
}
#search-result .top .search-input .history {
  display: none;
  width: 720px;
  background: #fff;
  padding-top: 6px;
  border-radius: 0 0 2px 2px;
  box-shadow: 0px 6px 12px 0px rgba(203, 210, 225, 0.1);
  position: absolute;
  top: 60px;
  left: 0;
  z-index: 2;
}
#search-result .top .search-input .history:after {
  content: '';
  position: absolute;
  width: 672px;
  height: 1px;
  background: #EDEEF2;
  top: 0;
  left: 20px;
}
#search-result .top .search-input .history ul {
  padding-bottom: 10px;
}
#search-result .top .search-input .history ul li {
  height: 40px;
  background: #fff;
  line-height: 40px;
  font-size: 16px;
  font-weight: 400;
  color: #39435A;
  padding: 0 24px;
}
#search-result .top .search-input .history ul li:not(:nth-child(1)):hover {
  color: #005AE0;
  cursor: pointer;
}
#search-result .top .search-input .history ul li:not(:nth-child(1)):hover .close {
  display: block;
}
#search-result .top .search-input .history ul li:nth-child(1) .title {
  font-size: 14px;
  color: #777E8E;
}
#search-result .top .search-input .history ul li:nth-child(1) .title .close {
  display: block;
  line-height: 39px;
  font-size: 16px;
  color: #777E8E;
}
#search-result .top .search-input .history ul li .close {
  display: none;
  width: 16px;
  height: 36px;
  line-height: 40px;
  cursor: pointer;
  float: right;
  position: relative;
}
#search-result .top .search-input .history ul li:not(:nth-child(1)) .close::before,
#search-result .top .search-input .history ul li:not(:nth-child(1)) .close::after {
  content: '';
  position: absolute;
  height: 2px;
  width: 14px;
  top: 56%;
  right: 0;
  margin-top: -2px;
  background: #DEDFE6;
}
#search-result .top .search-input .history ul li:not(:nth-child(1)) .close::after {
  transform: rotate(-45deg);
}
#search-result .top .search-input .history ul li:not(:nth-child(1)) .close::before {
  transform: rotate(45deg);
}
#search-result .top .search-input .search-btn {
  width: 140px;
  height: 61px;
  line-height: 61px;
  text-align: center;
  background: #1259F0;
  border-radius: 0 2px 2px 0;
  user-select: none;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  cursor: pointer;
  transition: 0.4s;
}
#search-result .top .search-input .search-btn:hover {
  background: #4282FF;
}
#search-result .top .tabs {
  display: flex;
  margin-top: 70px;
}
#search-result .top .tabs .tab-item {
  line-height: 18px;
  font-size: 14px;
  font-weight: bold;
  color: #39435A;
  margin-right: 130px;
  cursor: pointer;
  position: relative;
}
#search-result .top .tabs .tab-item:hover {
  color: #1259F0;
}
#search-result .top .tabs .tab-item.active {
  color: #1259F0;
}
#search-result .top .tabs .tab-item.active::after {
  content: '';
  width: 100%;
  height: 3px;
  background: #4282FF;
  position: absolute;
  left: 0;
  bottom: 0;
}
#search-result .top .tabs .tab-item:last-child {
  margin: 0;
}
#search-result .top .tabs .tab-item a {
  display: block;
  padding: 8px 0 12px;
}
#search-result .content {
  background: #F7F8FA;
  padding: 24px 0 56px;
}
