.cate_list{
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    width: 880px;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}

.cate_item{
 
   box-shadow: 0 0px 10px 5px rgb(200,200, 200);
   width: 280px;
   float: left;
   margin-bottom: 32px;

}
.cate_list::after {
    display: block;
    content:"";
   width: 280px;
}

.cate_title{
    color: #ffffff;
    font-size: 18px;
    background-color: #FF960E;
    width: 280px;
    height: 40px;
    padding-top: 20px;
    font-weight: bold;
    font-size: 16px;
}
.cate_image{
    width: 280px;
    height: 180px;
}
@media screen and (max-width:480px) { 
	.cate_list{
		width: 300px;
		margin: auto;
	}
	.cate_item{
		box-shadow: 0 0px 5px 3px rgb(220,220, 220);
		width: 140px;
	}
	.cate_list::after {
		width: 140px;
	}
	.cate_image{
	    width: 140px;
    	height: 90px;
	}
	.cate_image img{
	    width: 140px;
    	height: 90px;
	}
	.cate_title{
		padding-top: 6px;
		padding-bottom: 4px;
		font-size: 12px;
		width: 140px;
		height: 20px;
	}

}