pay.wxss 462 B

123456789101112131415161718192021222324
  1. .payContainer{
  2. display: flex;
  3. justify-content: space-between;
  4. align-items: center;
  5. height: 80rpx;
  6. border-radius: 40rpx;
  7. padding-left: 5%;
  8. padding-right: 8%;
  9. background-image: linear-gradient(to right, #333333 75%, #81b337 75%); /* 线性渐变 */
  10. }
  11. .amount{
  12. color: #eaf3fa;
  13. display: flex;
  14. justify-content: start;
  15. }
  16. .toPay{
  17. color: #eaf3fa;
  18. display: flex;
  19. flex-direction: row-reverse;
  20. justify-content: end;
  21. }