writeOff.wxss 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225
  1. /* pages/welfareMall/writeOff/writeOff.wxss */
  2. page{
  3. background: #F7F7F7;
  4. display:flex;
  5. flex-flow: column nowrap;
  6. justify-content: left;
  7. align-items: center;
  8. box-sizing: border-box;
  9. }
  10. /* 垂直方向布局,水平居中 **/
  11. .flex-column{
  12. display: flex;
  13. flex-flow: column nowrap;
  14. align-items: center;
  15. justify-content: left;
  16. }
  17. /* 水平方向布局,垂直居中 **/
  18. .flex-row{
  19. display: flex;
  20. flex-flow: row nowrap;
  21. align-items: center;
  22. justify-content: center;
  23. }
  24. .search{
  25. position: sticky;
  26. top:0;
  27. z-index: 99;
  28. }
  29. .store-bar{
  30. width: 750rpx;
  31. height: 88rpx;
  32. background: #FFFFFF;
  33. justify-content: flex-start;
  34. }
  35. .writeOff-search{
  36. width: 750rpx;
  37. height: 88rpx;
  38. background: #F7F7F7;
  39. justify-content: center;
  40. }
  41. .search-bar{
  42. width: 661rpx;
  43. height: 54rpx;
  44. background: #FFFFFF;
  45. border-radius: 28rpx;
  46. justify-content: flex-start;
  47. }
  48. .store-img{
  49. width: 34rpx;
  50. height: 34rpx;
  51. }
  52. .search-img{
  53. width: 34rpx;
  54. height: 34rpx;
  55. margin-left: 40rpx;
  56. }
  57. .store-text{
  58. margin-left: 50rpx;
  59. font-size: 28rpx;
  60. font-weight: 500;
  61. color: #A0A0A0;
  62. }
  63. .search-text{
  64. width: 540rpx;
  65. margin-left: 30rpx;
  66. font-size: 28rpx;
  67. font-weight: 500;
  68. color: #A0A0A0;
  69. }
  70. .search-text-close{
  71. font-size: 44rpx;
  72. font-weight: 500;
  73. color: #A0A0A0;
  74. }
  75. .writeOff-content{
  76. width: 750rpx;
  77. margin-top: 8rpx;
  78. }
  79. .writeOff-list{
  80. width: 750rpx;
  81. height: 422rpx;
  82. background: #FFFFFF;
  83. border-radius: 10rpx;
  84. margin-bottom: 14rpx;
  85. }
  86. .content-head{
  87. width: 646rpx;
  88. height: 22rpx;
  89. justify-content: space-between;
  90. }
  91. .content-head-date{
  92. font-size: 24rpx;
  93. font-weight: 500;
  94. color: #444444;
  95. }
  96. .content-head-state{
  97. font-size: 28rpx;
  98. font-weight: 500;
  99. color: #BD2021;
  100. }
  101. .content-head{
  102. width: 646rpx;
  103. height: 40rpx;
  104. justify-content: space-between;
  105. margin-top: 36rpx;
  106. }
  107. .content-middle{
  108. width: 646rpx;
  109. height: 130rpx;
  110. justify-content: space-between;
  111. margin-top: 29rpx;
  112. }
  113. .middle-img{
  114. width: 160rpx;
  115. height: 119rpx;
  116. }
  117. .middle-text{
  118. width: 240rpx;
  119. height: 36rpx;
  120. font-size: 28rpx;
  121. font-weight: 500;
  122. color: #444444;
  123. margin-left: 36rpx;
  124. margin-bottom: 34rpx;
  125. }
  126. .middle-num{
  127. align-items: flex-end;
  128. }
  129. .middle-num-money{
  130. font-size: 28rpx;
  131. font-weight: 500;
  132. color: #444444;
  133. margin-top: 10rpx;
  134. }
  135. .money-num-count{
  136. font-size: 22rpx;
  137. font-weight: 500;
  138. color: #A0A0A0;
  139. }
  140. .content-line{
  141. width: 679rpx;
  142. height: 1px;
  143. background: #EFEFEF;
  144. }
  145. .line-top{
  146. margin-top: 20rpx;
  147. }
  148. .line-lower{
  149. margin-top: 34rpx;
  150. }
  151. .content-lower-store,.content-lower-date{
  152. width: 646rpx;
  153. }
  154. .content-lower-store{
  155. padding-top: 20rpx;
  156. }
  157. .lower-date{
  158. font-size: 24rpx;
  159. font-weight: 500;
  160. color: #444444;
  161. width: 500rpx;
  162. line-height: 46rpx;
  163. flex: 1;
  164. }
  165. .lower-money{
  166. font-size: 36rpx;
  167. font-weight: 500;
  168. color: #BD2021;
  169. }
  170. .no_result {
  171. font-size: 24rpx;
  172. color: #B1B1B1;
  173. line-height: 100rpx;
  174. font-weight: 1000;
  175. }
  176. .picker-store{
  177. font-size: 28rpx;
  178. font-weight: 500;
  179. color: #A0A0A0;
  180. }
  181. .search-date{
  182. justify-content: space-between;
  183. }
  184. .no_result {
  185. font-size: 24rpx;
  186. color: #B1B1B1;
  187. line-height: 100rpx;
  188. font-weight: 1000;
  189. text-align: center;
  190. }