discount.wxss 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. page{
  2. height: 100%;
  3. background: #f9f9f9;
  4. }
  5. .box{
  6. width: 100%;
  7. display: flex;
  8. flex-direction: column;
  9. align-items: center;
  10. padding-bottom: 20rpx;
  11. }
  12. .box .list{
  13. width: 93%;
  14. display: flex;
  15. align-items: center;
  16. justify-content: space-between;
  17. background: white;
  18. margin-top: 20rpx;
  19. height: 200rpx;
  20. border-radius: 10rpx;
  21. }
  22. .list .left{
  23. margin-left: 20rpx;
  24. display: flex;
  25. flex-direction: column;
  26. justify-content: space-around;
  27. height: 90%;
  28. }
  29. .list .left text:nth-of-type(1){
  30. font-size: 28rpx;
  31. color: black;
  32. }
  33. .list .left text:nth-of-type(2){
  34. font-size: 26rpx;
  35. color: gray;
  36. padding-left: 16rpx;
  37. }
  38. .list .right{
  39. margin-right: 20rpx;
  40. font-size: 26rpx;
  41. display: flex;
  42. flex-direction: column;
  43. justify-content: space-around;
  44. height: 90%;
  45. align-items: flex-end;
  46. }
  47. .list .right view{
  48. width: 120rpx;
  49. height: 60rpx;
  50. background: #43E0B8;
  51. display: flex;
  52. align-items: center;
  53. justify-content: center;
  54. border-radius: 10rpx;
  55. color: white;
  56. }
  57. .no_list{
  58. font-size:26rpx;
  59. font-family:PingFang SC;
  60. font-weight:500;
  61. color:rgba(127,127,127,1);
  62. padding-top: 100rpx;
  63. }