.serch-title{
  width: 100vw;
  height: 200px;
  margin: 0 0 20px 0;
  position: relative;
  overflow: hidden;
  background: #000;
}
.serch-img img{
  width: 100%;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  opacity: 0.5;
}
h2{
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  font-size: 28px;
  text-align: center;
  color: #fff;
}
@media only screen and (max-width: 767px){
  .serch-title{
    height: auto;
  }
  .serch-img img{
    position: relative;
    top: 0;
    left: 0;
    transform: none;
  }
}

.cat-list{
  margin: 0 0 30px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
}
.cat-list li{
  margin: 0 10px;
}
.cat-list a{
  color: #fff;
  background: #333;
}
@media only screen and (max-width: 767px){
  .cat-list .btn{
    margin: 0 0 10px 0;
  }
}


.number{
  border-bottom: 1px solid #aaa;
}
.number span{
  margin: 0 7px;
  font-size: 24px;
}

.sort{
  text-align: right;
  position: relative;
  top: -50px;
}
.sort div{
  padding: 5px 20px 5px 5px;
  display: inline;
  border: 1px solid #ccc;
  border-radius: 3px;
}
.sort::before{
  font-family: "Font Awesome 5 Free";
  content: "\f107";
  font-weight: bold;
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
}
.sort select{
  width: auto;
  height: auto;
  margin: 0 0 0 auto;
  -moz-appearance: none;
  -webkit-appearance: none;
  -o-appearance: none;
  -ms-appearance: none;
  appearance: none;
  position: relative;
  line-height: 1.7;
  outline: none;
  background: none;
  border: none;
}
.sort select::-ms-expand {
  display: none;
}

.pagination .btn{
  min-width: 0;
  min-height: 0;
  padding: 15px;
  position: static;
  transform: translate(0,0);
}
.pagination p{
  text-align: center;
}
.pagination span{
  transition: all .3s ease;
}
.pagination .page-current{
  cursor: auto;
  color: #fff;
  background: #555;
  border: none;
}
.pagination .page-current:hover{
  color: #fff;
  background: #555;
  border: none;
}

































