39 lines
581 B
CSS
39 lines
581 B
CSS
/**
|
|
* 基础信息
|
|
*/
|
|
.label-info {
|
|
height: 40rpx;
|
|
}
|
|
|
|
/**
|
|
* 排序导航
|
|
*/
|
|
.nav-sort-content .item {
|
|
height: 80rpx;
|
|
line-height: 80rpx;
|
|
width: 20%;
|
|
}
|
|
.nav-sort-content .item .icon {
|
|
width: 30rpx;
|
|
height: 30rpx;
|
|
}
|
|
|
|
/**
|
|
* 商品列表
|
|
*/
|
|
.scroll-box {
|
|
height: calc(100vh - 150rpx);
|
|
}
|
|
.data-list .item {
|
|
width: calc(50% - 10rpx);
|
|
}
|
|
.data-list .item:nth-child(2n) {
|
|
float: right;
|
|
}
|
|
.data-list .item:nth-child(2n+1) {
|
|
float: left;
|
|
}
|
|
.data-list .item .goods-img {
|
|
width: 100%;
|
|
height: 380rpx !important;
|
|
} |