1234567891011121314151617181920212223242526272829303132333435 |
- .content{
- background: #F1F1F1;
- min-height: 100vh;
- padding: 0 32rpx;
- padding-top: 24rpx;
- padding-bottom: 24rpx;
- .item{
- // height: 432rpx;
- height: 300rpx;
- background: #FFFFFF;
- border-radius: 0rpx 24rpx 0rpx 24rpx;
- // margin-top: 24rpx;
- padding: 0 24rpx;
- display: flex;
- flex-direction: column;
- justify-content: space-around;
- margin-bottom: 24rpx;
- .line{
- display: flex;
- justify-content:space-between;
- .left{
- font-size: 28rpx;
- font-family: PingFang-SC-Medium, PingFang-SC;
- font-weight: 500;
- color: #666666;
- }
- .right{
- font-size: 32rpx;
- font-family: PingFang-SC-Medium, PingFang-SC;
- font-weight: 500;
- color: #333333;
- }
- }
- }
- }
|