* {
margin: 0;
padding: 0;
list-style: none;
font-size: 14px;
}
/*
box
*/
.box {
width: 100%;
margin: 0 auto;
}
/*
ul
*/
.list ul {
width: 100%;
overflow: hidden;
}
/*
item
*/
.list ul li {
width: 46%;
height: 200px;
margin: 10px 2% 0px;
float: left;
background-color: #ccc;
text-align: center;
line-height: 200px;
cursor: pointer;
}
/*
item鼠标经过
*/
.list ul li:hover {
background-color: #e1e1e1;
}
/*
加载更多
*/
#loading {
height: 50px;
width: 100%;
line-height: 50px;
text-align: center;
cursor: pointer;
margin: 0 auto;
}
/*
加载更多经过
*/
#loading:hover {
background-color: #cecece;
}