distribution.wxss 750 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. page{
  2. width: 100%;
  3. height: 100%;
  4. background: #ccc;
  5. }
  6. .page{
  7. width: 100%;
  8. height: 100%;
  9. display: flex;
  10. flex-direction: column;
  11. align-items: center;
  12. }
  13. .view{
  14. width: 90%;
  15. display: flex;
  16. align-items: flex-end;
  17. justify-content: space-between;
  18. background: white;
  19. padding: 20rpx 0rpx;
  20. margin-top: 20rpx;
  21. border-radius: 20rpx;
  22. }
  23. .view .left{
  24. display: flex;
  25. flex-direction: column;
  26. width: 80%;
  27. padding-left: 30rpx;
  28. font-size: 28rpx;
  29. }
  30. .view .left text{
  31. padding: 8rpx 0rpx;
  32. }
  33. .view .right{
  34. padding-right: 30rpx;
  35. }
  36. .view .right view{
  37. width: 150rpx;
  38. height: 60rpx;
  39. background: red;
  40. color: white;
  41. font-size: 28rpx;
  42. display: flex;
  43. align-items: center;
  44. justify-content: center;
  45. border-radius: 10rpx;
  46. }