couponHistory.wxss 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. /* pages/couponHistory/couponHistory.wxss */
  2. .historyItem{
  3. box-shadow: 0px -1px 8px 0px rgba(0,0,0,0.040000);
  4. background-color: rgba(255,255,255,1);
  5. border-radius: 24rpx;
  6. margin: 20rpx;
  7. padding: 24rpx 24rpx 24rpx 14rpx;
  8. }
  9. .titleCon{
  10. padding-left: 10rpx;
  11. display: flex;
  12. align-items: center;
  13. margin-bottom: 20rpx;
  14. }
  15. .titleCon .icon{
  16. width: 48rpx;
  17. height: 48rpx;
  18. object-fit: contain;
  19. font-size: 0;
  20. margin-right: 20rpx;
  21. }
  22. .titleCon .icon image{
  23. width: 100%;
  24. height: 100%;
  25. object-fit: contain;
  26. }
  27. .titleCon .title{
  28. height: 44rpx;
  29. color: rgba(51,51,51,1);
  30. font-size: 32rpx;
  31. font-family: PingFangSC-Medium;
  32. text-align: left;
  33. white-space: nowrap;
  34. line-height: 44rpx;
  35. }
  36. .row{
  37. display: flex;
  38. justify-content: space-between;
  39. align-items: center;
  40. margin-bottom: 20rpx;
  41. }
  42. .row:last-child{
  43. margin-bottom: 0rpx;
  44. }
  45. .row .col:first-child{
  46. height: 40rpx;
  47. color: rgba(153,153,153,1);
  48. font-size: 28rpx;
  49. font-family: PingFangSC-Regular;
  50. text-align: left;
  51. white-space: nowrap;
  52. line-height: 40rpx;
  53. }
  54. .row .col:last-child{
  55. width: 504rpx;
  56. height: 40rpx;
  57. color: rgba(51,51,51,1);
  58. font-size: 28rpx;
  59. font-family: PingFangSC-Regular;
  60. text-align: right;
  61. white-space: nowrap;
  62. line-height: 40rpx;
  63. }
  64. .row .col{
  65. display: inline-block;
  66. white-space: nowrap;
  67. width: 100%;
  68. overflow: hidden;
  69. text-overflow:ellipsis;
  70. }
  71. .line{
  72. box-shadow: 0px -1px 8px 0px rgba(0,0,0,0.040000);
  73. background-color: rgba(249,249,249,1.000000);
  74. border-radius: 24rpx;
  75. width: 662rpx;
  76. height: 2rpx;
  77. display: flex;
  78. flex-direction: column;
  79. margin: 24rpx 0 24rpx 10rpx;
  80. }
  81. .againCon{
  82. text-align: right;
  83. }
  84. .again{
  85. display: inline-block;
  86. background-color: rgba(250,125,34,1);
  87. border-radius: 42rpx;
  88. height: 64rpx;
  89. width: 168rpx;
  90. text-align: center;
  91. line-height: 64rpx;
  92. color: rgba(255,255,255,1);
  93. font-size: 28rpx;
  94. font-family: PingFangSC-Medium;
  95. white-space: nowrap;
  96. }