/* 栏目标题-不上移 */
.sort-title-box {
  top: 0;
}

/* 搜索框 */
.search-container {
  position: relative;
  z-index: 99;
}
.search-container .search-box {
  margin: 0 auto;
  height: 4rem;
  display: grid;
  grid-template-columns: 1fr 12rem;
}
.search-container .search-box .content {
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  background: #fff;
  border: 1px solid #959da5;
  border-right: none;
  display: grid;
  grid-template-columns: 5rem 1fr;
  justify-items: center;
  align-items: center;
}
.search-container .search-box .content input {
  width: 100%;
  border: none;
  outline: none;
  font-size: 1rem;
}
.search-container .search-box .content input::placeholder {
  color: #999;
  font-size: 1rem;
}
.search-container .search-box .content input:focus {
  border: none;
}
.search-container .search-box .button {
  width: 100%;
  height: 100%;
  border: 1px solid #004bf0;
  background: #004bf0;
  color: #fff;
  font-weight: bold;
  font-size: 1rem;
}
.search-container .search-box .button:hover {
  background: #fff;
  color: #004bf0;
}

/* 搜索结果内容列表 */
.search-list .item {
  padding: 1.5rem 2.5rem;
  border-bottom: 1px solid #e6e6e6;
}
.search-list .item .more-button2 {
  display: block;
  margin-top: 2.5rem;
  color: #004bf0;
}
.search-list .item .more-button2:hover {
  color: #062e62;
}