.search-manu-list-box {
  background-color: #fff;
}
.search-manu-list-box .content {
  background-color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  height: 56px;
  line-height: 56px;
  margin: 0 auto;
  width: 1200px;
}
.search-manu-list-box .content .search-left-box {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.search-manu-list-box .content .search-left-box span {
  color: rgba(0, 0, 0, 0.85);
  cursor: pointer;
}
.search-manu-list-box .content .search-left-box span:hover {
  color: #2D6DFF;
}
.search-manu-list-box .content .search-left-box span:first-child {
  margin-right: 20px;
}
.search-manu-list-box .content .search-left-box span:nth-child(2) {
  margin-right: 6px;
}
.search-manu-list-box .content .search-left-box span.active {
  color: #2D6DFF;
}
.search-manu-list-box .content .search-left-box span.active .up-triangle.active {
  border-bottom-color: #2D6DFF;
}
.search-manu-list-box .content .search-left-box span.active .down-triangle.active {
  border-top-color: #2D6DFF;
}
.search-manu-list-box .content .search-left-box .icon-sort {
  margin-top: 22px;
  margin-left: 6px;
  float: right;
}
.search-manu-list-box .content .search-left-box .icon-sort .up-triangle {
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  /* 左边透明 */
  border-right: 4px solid transparent;
  /* 右边透明 */
  border-bottom: 5px solid #bbb;
  /* 底部为黑色线条 */
  margin-bottom: 3px;
}
.search-manu-list-box .content .search-left-box .icon-sort .down-triangle {
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  /* 左边透明 */
  border-right: 4px solid transparent;
  /* 右边透明 */
  border-top: 5px solid #bbb;
  /* 顶部为黑色线条 */
}
.search-manu-list-box .content .search-right-box {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.search-manu-list-box .content .search-right-box .search-input-box {
  position: relative;
  height: 32px;
  line-height: 32px;
}
.search-manu-list-box .content .search-right-box input {
  box-sizing: border-box;
  width: 224px;
  height: 32px;
  border: 1px solid #d9d9d9;
  border-radius: 2px;
  padding-left: 11px;
  padding-right: 11px;
  margin-right: 20px;
}
.search-manu-list-box .content .search-right-box input::placeholder {
  color: rgba(0, 0, 0, 0.25);
}
.search-manu-list-box .content .search-right-box input:hover,
.search-manu-list-box .content .search-right-box input:focus {
  border-color: #2D6DFF;
}
.search-manu-list-box .content .search-right-box .fa-search {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(0, 0, 0, 0.45);
  right: 30px;
}
.search-manu-list-box .content .search-right-box .fa-search:hover {
  color: #2D6DFF;
}
.search-manu-list-box .content .search-right-box .count {
  padding-left: 20px;
  height: 32px;
  line-height: 32px;
  border-left: 1px solid #eeeeee;
  color: #666;
}
.search-manu-list-box .content .search-right-box .count i {
  font-style: normal;
  color: #2D6DFF;
  margin-left: 1px;
  margin-right: 1px;
  min-width: 10px;
  display: inline-block;
  text-align: center;
}
.manu-list-box {
  background-color: #EEF5FF;
  padding-bottom: 45px;
}
.manu-list-box .manu-list {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  padding-top: 24px;
}
.manu-list-box .manu-list li {
  width: 224px;
  height: 254px;
  background: rgba(255, 255, 255, 0.5);
  margin-bottom: 20px;
  cursor: pointer;
}
.manu-list-box .manu-list li > a {
  padding: 20px 20px 14px 20px;
  display: inline-block;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
}
.manu-list-box .manu-list li:not(:first-child) {
  margin-left: 20px;
}
.manu-list-box .manu-list li:nth-child(5n + 1) {
  margin-left: 0;
}
.manu-list-box .manu-list li:hover {
  background: #ffffff;
}
.manu-list-box .manu-list li:hover p {
  color: #2D6DFF;
}
.manu-list-box .manu-list li div.img-box {
  width: 184px;
  height: 184px;
  margin-bottom: 12px;
  background: #ffffff;
  line-height: 184px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.manu-list-box .manu-list li div.img-box img {
  width: 100%;
}
.manu-list-box .manu-list li div.img-box span {
  width: 184px;
  height: 92px;
  display: inline-block;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: contain;
}
.manu-list-box .manu-list li div.img-box .img-placeholder {
  display: inline-flex;
  width: 100%;
  height: 100%;
  font-size: 24px;
  color: rgba(13, 28, 50, 0.25);
  font-weight: bold;
  align-items: center;
  justify-content: center;
}
.manu-list-box .manu-list li p {
  width: 184px;
  line-height: 24px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  min-height: 24px;
  text-align: center;
  color: rgba(0, 0, 0, 0.85);
}
.manu-list-box .page-box {
  margin-top: 4px;
  text-align: right;
}
.manu-list-box .page-box .layui-laypage-count {
  background-color: transparent;
}
.manu-list-box .page-box .layui-laypage a {
  padding: 0;
  width: 32px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  box-sizing: border-box;
}
.manu-list-box .page-box .layui-laypage-limits {
  height: 32px;
}
.manu-list-box .page-box .layui-laypage-limits select {
  padding-left: 15px;
  padding-right: 15px;
}
.manu-list-box .page-box .layui-laypage-skip {
  background-color: transparent;
}
