.ads-box{
    width: 100%;
    /* height: 300px; */
    margin: auto;
    background-color: aqua;
    margin-bottom: 10px;
}
.ads-box .small-ads{
    display: flex;
}
.ads-box .small-ads div{
    display: inline;
    width: 50%;
}
.ads-box .small-ads img{
    width: 100%;
}



.filter{
    display: flex;
    background-color: #db8ade;
    color: white;
    justify-content: space-between;
    padding: 10px;
    /* border-radius: 10px; */
}
.filter-form form{
    color: white;
    border-radius: 10px;
}
.filter-form form select{
    border: solid 1px gray;
    padding: 2px;
    font-weight: bold;
    color: gray;
    border-radius: 8px;
}


.g-box {
    flex-wrap: wrap;
    display: flex;
    justify-content: space-between;
}
.g-box .item{
    display: block;
    width: 210px;
    height: 320px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    border-radius: 10px;
    margin: 10px;
    cursor: pointer;
}
.g-box .item .img{
    width: 100%;
    height: 270px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.g-box .item .name{
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    width: 100%;
    height: 50px;
    text-align: center;
    font-weight: bold;
    /* background: linear-gradient(-145deg, rgba(219, 138, 222, 1) 0%, rgba(246, 191, 159, 1) 100%); */
    color: white;
}
.page-num {
    display: flex;
    justify-content: center
}
.page-num .item-box {
    display: flex;
    width: auto;
    flex-wrap: nowrap;
    overflow: auto;  
    -webkit-overflow-scrolling: touch;
}
.page-num .item-box .item{
    cursor: pointer;
    flex: 0 0 auto;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin: 0px 10px;
    border: #db8ade 1px solid;
    color: #db8ade;
    transition: all 0.5s ease;
}
.page-num .item-box .item:hover{
    color: white;
    background-color: #db8ade;
}
.item-box .item.active{
    color: white;
    background-color: #db8ade;
}
.page-num .change-left,
.page-num .change-right{
    display: flex;
    justify-content: center;
    flex: 0 0 auto;
    align-items: center;
    flex-direction: column;
    border: #db8ade 1px solid;
    width: 40px;
    height: 40px;
    cursor: pointer;
    /* align-items: center; */

}
.page-num .change-left span:nth-child(1){
    display: block;
    width: 14px;
    height: 2px;
    background-color: #db8ade;
    transform: rotate(-45deg);
    margin-bottom: 3px;
    transition: transform .2s ease;
}
.page-num .change-left span:nth-child(2){
    display: block;
    width: 14px;
    height: 2px;
    background-color: #db8ade;
    transform: rotate(45deg);
    margin-top: 3px;
    transition: transform 0.2s ease;
}
.page-num .change-right span:nth-child(1){
    display: block;
    width: 14px;
    height: 2px;
    background-color: #db8ade;
    transform: rotate(-135deg);
    margin-bottom: 3px;
    transition: transform .2s ease;
}
.page-num .change-right span:nth-child(2){
    display: block;
    width: 14px;
    height: 2px;
    background-color: #db8ade;
    transform: rotate(135deg);
    margin-top: 3px;
    transition: transform 0.2s ease;
}
.change-left:hover,
.change-right:hover{
    background-color: #db8ade;
}
.change-left:hover span:nth-child(1){
    background-color: white;
}
.change-left:hover span:nth-child(2){
    background-color: white;
}
.change-right:hover span:nth-child(1){
    background-color: white;
}
.change-right:hover span:nth-child(2){
    background-color: white;
}
@media screen and (max-width: 510px) {
    .g-box .item{
        width: 200px;
        height: 285px;
        margin-bottom: 20px;
    }
    .g-box .item .img{
        height: 257px;
    
    }
    .g-box .item .name{
        height: 44px;
        font-weight: bold;
        font-size: 14px;
        
    }
  }
  
@media screen and (max-width: 485px) {
    .g-box .item{
        width: 43%;
        height: 230px;
        margin-bottom: 25px;
    }
    .g-box .item .img{
        height: 210px;
    
    }
    .g-box .item .name{
        height: 44px;
        font-weight: bold;
        font-size: 14px;
        
    }
  }