details.wxss 6.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282
  1. @charset "UTF-8";
  2. /**
  3. * 这里是uni-app内置的常用样式变量
  4. *
  5. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  6. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  7. *
  8. */
  9. /**
  10. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  11. *
  12. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  13. */
  14. /* 颜色变量 */
  15. /* 行为相关颜色 */
  16. /* 文字基本颜色 */
  17. /* 背景颜色 */
  18. /* 边框颜色 */
  19. /* 尺寸变量 */
  20. /* 文字尺寸 */
  21. /* 图片尺寸 */
  22. /* Border Radius */
  23. /* 水平间距 */
  24. /* 垂直间距 */
  25. /* 透明度 */
  26. /* 文章场景相关 */
  27. page.data-v-c53c40ec {
  28. font-size: 28rpx;
  29. }
  30. .c-flex-align.data-v-c53c40ec {
  31. display: flex;
  32. align-items: center;
  33. }
  34. .c-flex-center.data-v-c53c40ec {
  35. display: flex;
  36. align-items: center;
  37. justify-content: center;
  38. flex-direction: column;
  39. }
  40. .filter-wrapper.data-v-c53c40ec {
  41. position: fixed;
  42. left: 0;
  43. width: 750rpx;
  44. z-index: 999;
  45. }
  46. .filter-wrapper .inner-wrapper .navs.data-v-c53c40ec {
  47. position: relative;
  48. height: 110rpx;
  49. padding: 0 40rpx;
  50. display: flex;
  51. align-items: center;
  52. justify-content: space-between;
  53. background-color: #fff;
  54. border-bottom: 2rpx solid #f5f6f9;
  55. color: #8b9aae;
  56. z-index: 999;
  57. box-sizing: border-box;
  58. }
  59. .filter-wrapper .inner-wrapper .navs > view.data-v-c53c40ec {
  60. flex: 1;
  61. height: 100%;
  62. flex-direction: row;
  63. z-index: 999;
  64. }
  65. .filter-wrapper .inner-wrapper .navs .date.data-v-c53c40ec {
  66. justify-content: flex-end;
  67. }
  68. .filter-wrapper .inner-wrapper .navs .actNav.data-v-c53c40ec {
  69. color: #4d7df9;
  70. font-weight: bold;
  71. }
  72. .filter-wrapper .inner-wrapper .mask.data-v-c53c40ec {
  73. z-index: 666;
  74. position: fixed;
  75. top: calc(25px + 44px);
  76. left: 0;
  77. right: 0;
  78. bottom: 0;
  79. background-color: rgba(0, 0, 0, 0);
  80. transition: background-color 0.15s linear;
  81. }
  82. .filter-wrapper .inner-wrapper .mask.show.data-v-c53c40ec {
  83. background-color: rgba(0, 0, 0, 0.4);
  84. }
  85. .filter-wrapper .inner-wrapper .mask.hide.data-v-c53c40ec {
  86. display: none;
  87. }
  88. .filter-wrapper .inner-wrapper .popup.data-v-c53c40ec {
  89. position: relative;
  90. max-height: 500rpx;
  91. background-color: #fff;
  92. border-bottom-left-radius: 20rpx;
  93. border-bottom-right-radius: 20rpx;
  94. overflow: scroll;
  95. z-index: 999;
  96. transition: all 1s linear;
  97. opacity: 0;
  98. display: none;
  99. }
  100. .filter-wrapper .inner-wrapper .popup .item-opt.data-v-c53c40ec {
  101. height: 100rpx;
  102. padding: 0 40rpx;
  103. color: #8b9aae;
  104. border-bottom: 2rpx solid #f5f6f9;
  105. }
  106. .filter-wrapper .inner-wrapper .popup .actOpt.data-v-c53c40ec {
  107. color: #4d7df9;
  108. font-weight: bold;
  109. position: relative;
  110. }
  111. .filter-wrapper .inner-wrapper .popup .actOpt.data-v-c53c40ec::after {
  112. content: '✓';
  113. font-weight: bold;
  114. font-size: 36rpx;
  115. position: absolute;
  116. right: 40rpx;
  117. }
  118. .filter-wrapper .inner-wrapper .popupShow.data-v-c53c40ec {
  119. display: block;
  120. opacity: 1;
  121. }
  122. .filter-wrapper .icon-triangle.data-v-c53c40ec {
  123. width: 16rpx;
  124. height: 16rpx;
  125. margin-left: 10rpx;
  126. }
  127. @charset "UTF-8";
  128. /**
  129. * 这里是uni-app内置的常用样式变量
  130. *
  131. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  132. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  133. *
  134. */
  135. /**
  136. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  137. *
  138. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  139. */
  140. /* 颜色变量 */
  141. /* 行为相关颜色 */
  142. /* 文字基本颜色 */
  143. /* 背景颜色 */
  144. /* 边框颜色 */
  145. /* 尺寸变量 */
  146. /* 文字尺寸 */
  147. /* 图片尺寸 */
  148. /* Border Radius */
  149. /* 水平间距 */
  150. /* 垂直间距 */
  151. /* 透明度 */
  152. /* 文章场景相关 */
  153. .advance {
  154. margin: 0;
  155. padding: 0;
  156. background: #f7f7f7;
  157. }
  158. .mainbox {
  159. width: 100vw;
  160. height: 437rpx;
  161. margin: 45rpx auto;
  162. display: flex;
  163. flex-direction: column;
  164. justify-content: space-evenly;
  165. background-color: #ffffff;
  166. /* box-shadow: 15rpx 14rpx 17rpx #bababa; */
  167. padding: auto 20rpx;
  168. position: relative;
  169. }
  170. .mainbox view {
  171. padding-left: 60rpx;
  172. }
  173. .details {
  174. width: 211rpx;
  175. border-radius: 20rpx;
  176. color: #3da1ff;
  177. position: relative;
  178. }
  179. .de_btn{
  180. border-radius: 50rpx;
  181. width: 260rpx;
  182. }
  183. .list {
  184. position: relative;
  185. color: #ffffff;
  186. font-size:40rpx ;
  187. }
  188. .list_pay{
  189. position: relative;
  190. color: #ffffff;
  191. font-size: 55rpx;
  192. }
  193. /* 明细查询页面 */
  194. .details_main {
  195. margin: 0;
  196. padding: 0;
  197. /* background: #f7f7f7; */
  198. }
  199. .cost_all{
  200. width: 90%;
  201. height: 300rpx;
  202. margin: 20rpx auto;
  203. /* display: flex; */
  204. flex-direction: column;
  205. justify-content: space-evenly;
  206. background-color: #ffffff;
  207. /* padding: auto 20rpx; */
  208. position: relative;
  209. top: 152rpx;
  210. box-shadow: 4rpx 4rpx 10rpx gainsboro;
  211. }
  212. .date_range {
  213. width: 320rpx;
  214. height: 50rpx;
  215. background-color: #ececec;
  216. border: 2rpx solid #ececec;
  217. border-radius: 22rpx;
  218. margin: 10rpx auto;
  219. font-size: 24rpx;
  220. text-align: center;
  221. line-height: 50rpx;
  222. color: #535353;
  223. }
  224. .balance{
  225. display: flex;
  226. }
  227. .balance_t{
  228. flex: 1;
  229. text-align: center;
  230. font-size: 30px;
  231. }
  232. .disburse{
  233. color: #5fc35f;
  234. }
  235. .top_up{
  236. color: #ed5f5c;
  237. }
  238. .mingxi_xq{
  239. width: 90%;
  240. position: absolute;
  241. top: 275px;
  242. left: 5%;
  243. }
  244. .mingxi{
  245. width: 100%;
  246. height: 80px;
  247. background: #ffffff;
  248. /* margin: 105px auto; */
  249. margin-bottom: 10px;
  250. padding: 5px;
  251. box-sizing: border-box;
  252. box-shadow:0 0 10rpx gainsboro;
  253. }
  254. .mingxi_time{
  255. font-size: 18px;
  256. margin-bottom: 10px
  257. }
  258. .mingxi_yuer{
  259. position: absolute;
  260. top: 5px;
  261. right: 5px;
  262. }
  263. .mingxi_yuer2{
  264. position: absolute;
  265. right: 5px;
  266. }
  267. .text {
  268. font-size: 12px;
  269. color: #666;
  270. margin-top: 5px;
  271. }
  272. .uni-px-5 {
  273. padding-left: 10px;
  274. padding-right: 10px;
  275. }
  276. .uni-pb-5 {
  277. padding-bottom: 10px;
  278. }