28 lines
434 B
CSS
28 lines
434 B
CSS
/**
|
|
* 分类导航
|
|
*/
|
|
.nav-list {
|
|
height: 80rpx;
|
|
line-height: 80rpx;
|
|
}
|
|
|
|
/**
|
|
* 数据列表
|
|
*/
|
|
.scroll-box {
|
|
height: calc(100vh - 80rpx);
|
|
}
|
|
.data-list .item {
|
|
width: calc(50% - 10rpx);
|
|
margin-bottom: 20rpx;
|
|
}
|
|
.data-list .item:nth-child(2n) {
|
|
float: right;
|
|
}
|
|
.data-list .item:nth-child(2n+1) {
|
|
float: left;
|
|
}
|
|
.data-list .item image {
|
|
width: 100%;
|
|
height: 160rpx !important;
|
|
} |