1234567891011121314151617181920212223242526272829303132333435 |
- /* components/mineList/index.wxss */
- .list {
- height: 112rpx;
- display: flex;
- justify-content: space-between;
- align-items: center;
- padding: 0 28rpx;
- }
- .list .left {
- font-family: PingFangSC-Regular;
- font-size: 16px;
- color: #333333;
- letter-spacing: 0;
- }
- .list .right {
- display: flex;
- justify-content: space-between;
- }
- .list .right .icon{
- margin-left: 20rpx;
- }
- .list .right text {
- font-family: PingFangSC-Regular;
- font-size: 28rpx;
- color: #333333;
- letter-spacing: 0;
- }
- .list .right image{
- width: 12rpx;
- height: 24rpx;
- }
|