57 lines
782 B
Plaintext
57 lines
782 B
Plaintext
/* packageI/newMedia/newMediaPoints/newMediaPoints.wxss */
|
|
view,
|
|
text {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.item {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: space-evenly;
|
|
width: 749rpx;
|
|
height: 115rpx;
|
|
padding: 0 33rpx;
|
|
background-color: #fff;
|
|
border-bottom: 1rpx solid #f5f5f5;
|
|
}
|
|
|
|
.item .content {
|
|
display: flex;
|
|
}
|
|
|
|
.item .content .name {
|
|
flex: 1;
|
|
font-size: 28rpx;
|
|
color: #000;
|
|
}
|
|
|
|
.item .content .price {
|
|
font-size: 28rpx;
|
|
}
|
|
|
|
.item .content .price.add {
|
|
color: #389137;
|
|
}
|
|
|
|
.item .content .price.reduce {
|
|
color: #ff2c29;
|
|
}
|
|
|
|
.item .time {
|
|
font-size: 24rpx;
|
|
color: #666;
|
|
}
|
|
|
|
.loadingimg {
|
|
width: 4rem;
|
|
height: 4rem;
|
|
margin: 0 auto;
|
|
padding: 100rpx 0;
|
|
box-sizing: content-box;
|
|
}
|
|
|
|
.loadingimg image {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|