12345678910111213141516171819202122232425 |
- .pay-content {
- padding: 40rpx;
- .pay-list {
- &-item {
- display: flex;
- justify-content: space-between;
- align-items: center;
- height: 104rpx;
- border-top: solid 1px #eeeeee;
- &-image {
- display: flex;
- font-size: 30rpx;
- color: #1E1E1E;
- .image {
- width: 54rpx;
- height: 45rpx;
- margin-right: 20rpx;
- }
- }
- &:last-child {
- border-bottom: solid 1px #eeeeee;
- }
- }
- }
- }
|