choosePayment.scss 491 B

12345678910111213141516171819202122232425
  1. .pay-content {
  2. padding: 40rpx;
  3. .pay-list {
  4. &-item {
  5. display: flex;
  6. justify-content: space-between;
  7. align-items: center;
  8. height: 104rpx;
  9. border-top: solid 1px #eeeeee;
  10. &-image {
  11. display: flex;
  12. font-size: 30rpx;
  13. color: #1E1E1E;
  14. .image {
  15. width: 54rpx;
  16. height: 45rpx;
  17. margin-right: 20rpx;
  18. }
  19. }
  20. &:last-child {
  21. border-bottom: solid 1px #eeeeee;
  22. }
  23. }
  24. }
  25. }