123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- page {
- background-color: #F2F6F2;
- }
- .page {
- padding: 20rpx;
- }
- .red{
- color: #FF0000 !important;
- }
- .group {
- background-color: #ffffff;
- border-radius: 16rpx;
- margin-bottom: 20rpx;
- padding: 0 30rpx;
-
- .item {
- height: 88rpx;
- display: flex;
- flex-direction: row;
- justify-content: space-between;
- align-items: center;
- border-bottom: 1rpx solid #f5f5f5;
-
- &:last-child {
- border-bottom: none;
- }
-
- .title {
- font-size: 28rpx;
- color: #333;
- }
-
- .right {
- display: flex;
- align-items: center;
-
- .value, .action {
- font-size: 28rpx;
- color: #999;
- margin-right: 10rpx;
- }
-
- .action {
- color: #FF2A95;
- }
-
- .arrow {
- width: 36rpx;
- height: 36rpx;
- }
- }
- }
- }
|