turnover.css 9.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436
  1. html,
  2. body {
  3. height: 100%;
  4. background-color: #f5f5f5;
  5. font-family: PingFangSC-Regular;
  6. color: #333333;
  7. overflow-x: hidden;
  8. }
  9. .tab {
  10. width: 100%;
  11. box-sizing: border-box;
  12. padding: 28rpx 120rpx 0;
  13. background: #ffffff;
  14. font-size: 32rpx;
  15. color: #666666;
  16. text-align: center;
  17. position: fixed;
  18. top: 0;
  19. z-index: 900;
  20. }
  21. .tab > view {
  22. display: flex;
  23. justify-content: space-between;
  24. }
  25. .tab > view > view {
  26. padding: 0 22rpx 28rpx;
  27. }
  28. .tab .line {
  29. padding: 0;
  30. width: 140rpx;
  31. height: 4rpx;
  32. background: #3296FB;
  33. position: absolute;
  34. left: 120rpx;
  35. bottom: 0;
  36. }
  37. .tab .selected {
  38. color: #3296FB;
  39. }
  40. .contentNull {
  41. width: 100%;
  42. height: 100%;
  43. background: #ffffff;
  44. position: relative;
  45. }
  46. .contentNull > view {
  47. position: absolute;
  48. top: 332rpx;
  49. left: 222rpx;
  50. display: flex;
  51. flex-direction: column;
  52. }
  53. .contentNull > view > image {
  54. width: 308rpx;
  55. height: 308rpx;
  56. }
  57. .contentNull > view > text {
  58. font-size: 28rpx;
  59. color: #9197a3;
  60. text-align: center;
  61. }
  62. .content {
  63. box-sizing: border-box;
  64. padding-top: 100rpx;
  65. width: 200%;
  66. height: 100%;
  67. display: flex;
  68. }
  69. .content > .scroll-view {
  70. width: 750rpx;
  71. background: #f5f5f5;
  72. }
  73. .content .item {
  74. background: #ffffff;
  75. box-sizing: border-box;
  76. padding: 32rpx 32rpx 0;
  77. display: flex;
  78. flex-direction: column;
  79. margin: 32rpx 32rpx 0;
  80. }
  81. .content .item > .header {
  82. display: flex;
  83. justify-content: space-between;
  84. align-items: center;
  85. margin-bottom: 18rpx;
  86. }
  87. .content .item > .header > .left {
  88. display: flex;
  89. align-items: center;
  90. font-size: 32rpx;
  91. }
  92. .content .item > .header > .left > text:last-child {
  93. font-size: 22rpx;
  94. color: #3296FB;
  95. box-sizing: border-box;
  96. padding: 2rpx 6rpx;
  97. border: 1rpx solid #3296FB;
  98. border-radius: 4rpx;
  99. margin-left: 10rpx;
  100. }
  101. .content .header > .notpay {
  102. font-size: 30rpx;
  103. color: #ff801a;
  104. }
  105. .content .header > .ispay {
  106. font-size: 30rpx;
  107. color: #3AB261;
  108. }
  109. .content .header > .fail {
  110. font-size: 30rpx;
  111. color: #FF5E5E;
  112. }
  113. .content .item:last-child {
  114. margin-bottom: 100rpx;
  115. }
  116. .content .item > .detail {
  117. width: 100%;
  118. background: #fafafa;
  119. font-size: 28rpx;
  120. color: #666666;
  121. line-height: 26px;
  122. box-sizing: border-box;
  123. padding: 18rpx 28rpx;
  124. }
  125. .content .item > .detail view {
  126. display: flex;
  127. justify-content: space-between;
  128. align-items: center;
  129. }
  130. .content .item > .money {
  131. text-align: right;
  132. font-size: 28rpx;
  133. line-height: 26px;
  134. margin-top: 28rpx;
  135. margin-bottom: 32rpx;
  136. }
  137. .content .item > .money > text {
  138. font-family: PingFangSC-Medium;
  139. font-size: 32rpx;
  140. }
  141. .content .item > .line {
  142. height: 2rpx;
  143. transform: scaleY(0.5);
  144. background: #eeeeee;
  145. margin-bottom: 18rpx;
  146. }
  147. .content .item > .footer {
  148. display: flex;
  149. justify-content: space-between;
  150. align-items: center;
  151. padding-bottom: 20rpx;
  152. }
  153. .content .item > .footer .btn {
  154. border: 1rpx solid #cccccc;
  155. border-radius: 30rpx;
  156. padding: 12rpx 24rpx;
  157. font-size: 26rpx;
  158. color: #666666;
  159. }
  160. .content .item > .footer > .pay {
  161. background: #3296fb;
  162. color: #ffffff;
  163. border: none;
  164. }
  165. .payTime {
  166. box-sizing: border-box;
  167. padding: 16rpx 28rpx;
  168. display: flex;
  169. justify-content: space-between;
  170. align-items: center;
  171. font-size: 28rpx;
  172. margin-top: 10rpx;
  173. position: relative;
  174. }
  175. .payTime > image {
  176. width: 56rpx;
  177. height: 30rpx;
  178. position: absolute;
  179. top: -10rpx;
  180. left: 32rpx;
  181. }
  182. .modal {
  183. position: fixed;
  184. top: 0;
  185. width: 750rpx;
  186. height: 100%;
  187. background: rgba(0, 0, 0, 0.56);
  188. z-index: 999;
  189. display: flex;
  190. flex-direction: column;
  191. }
  192. .modal > view:first-child {
  193. flex: 1;
  194. }
  195. .modal > .detail {
  196. width: 100%;
  197. position: absolute;
  198. bottom: -500px;
  199. background: #f8f8f8;
  200. }
  201. .modal > .detail .header {
  202. display: flex;
  203. justify-content: space-between;
  204. align-items: center;
  205. padding: 26rpx 20rpx 26rpx 32rpx;
  206. border-bottom: 2rpx solid #eeeeee;
  207. background: #ffffff;
  208. }
  209. .modal > .detail .header > view {
  210. font-family: PingFangSC-Medium;
  211. font-size: 32rpx;
  212. display: flex;
  213. align-items: center;
  214. }
  215. .modal > .detail .header > view > view {
  216. width: 6rpx;
  217. height: 32rpx;
  218. background: #3296fb;
  219. margin-right: 22rpx;
  220. }
  221. .modal > .detail .header > image {
  222. width: 48rpx;
  223. height: 48rpx;
  224. }
  225. .modal > .detail .person {
  226. padding: 36rpx 32rpx 40rpx;
  227. background: #ffffff;
  228. margin-bottom: 24rpx;
  229. }
  230. .modal > .detail .person > view {
  231. display: flex;
  232. justify-content: space-between;
  233. line-height: 52rpx;
  234. font-size: 28rpx;
  235. }
  236. .modal > .detail .person > view > text:first-child {
  237. color: #999999;
  238. }
  239. .modal > .detail .person > view > text:last-child {
  240. color: #666666;
  241. }
  242. .modal > .detail .money {
  243. flex: 1;
  244. background: #ffffff;
  245. padding: 30rpx 32rpx 0;
  246. }
  247. .modal > .detail .money > .moneyHeader {
  248. padding-bottom: 28rpx;
  249. display: flex;
  250. justify-content: space-between;
  251. align-items: center;
  252. }
  253. .modal > .detail .money > .moneyHeader > text:first-child {
  254. font-size: 30rpx;
  255. }
  256. .modal > .detail .money > .moneyHeader > text:last-child {
  257. font-size: 34rpx;
  258. color: #ff5e5e;
  259. }
  260. .modal .line {
  261. width: 718rpx;
  262. height: 2rpx;
  263. transform: scaleY(0.5);
  264. background: #eeeeee;
  265. }
  266. .modal > .detail .money > .moneyContent {
  267. padding: 30rpx 0 64rpx;
  268. }
  269. .modal > .detail .money > .moneyContent > view {
  270. display: flex;
  271. justify-content: space-between;
  272. font-size: 28rpx;
  273. line-height: 52rpx;
  274. }
  275. .modal > .detail .money > .moneyContent > view > text:first-child {
  276. color: #999999;
  277. }
  278. .modal > .detail .money > .moneyContent > view > text:last-child {
  279. text-align: right;
  280. color: #666666;
  281. }
  282. .modal .btn,
  283. .modal .btn-X {
  284. height: 100rpx;
  285. box-sizing: border-box;
  286. padding: 0 20rpx;
  287. background: #ffffff;
  288. }
  289. .modal .btn-X {
  290. height: 166rpx;
  291. }
  292. .modal .btn > view,
  293. .modal .btn-X > view {
  294. background: #3296fb;
  295. border-radius: 22.5px;
  296. padding: 24rpx 0;
  297. text-align: center;
  298. color: #ffffff;
  299. font-family: PingFangSC-Medium;
  300. font-size: 32rpx;
  301. }
  302. .modal .progress,
  303. .modal .progress-X {
  304. width: 100%;
  305. height: 100rpx;
  306. box-sizing: border-box;
  307. padding: 32rpx 0;
  308. font-size: 34rpx;
  309. color: #3296FB;
  310. text-align: center;
  311. background: #ffffff;
  312. }
  313. .modal .progress-X {
  314. height: 168rpx;
  315. }
  316. .modal .scrollBox {
  317. width: 200%;
  318. display: flex;
  319. }
  320. .modal .scrollBox > view {
  321. width: 750rpx;
  322. display: flex;
  323. flex-direction: column;
  324. }
  325. .modal .scrollBox > view:last-child {
  326. background: #ffffff;
  327. align-items: flex-end;
  328. }
  329. .modal .scrollBox > view:last-child > .fItem {
  330. width: 100%;
  331. box-sizing: border-box;
  332. padding: 34rpx 32rpx 38rpx;
  333. }
  334. .modal .scrollBox > view:last-child > .fItem > view {
  335. display: flex;
  336. justify-content: space-between;
  337. align-items: center;
  338. }
  339. .modal .scrollBox > view:last-child > .fItem > view:first-child {
  340. margin-bottom: 16rpx;
  341. }
  342. .modal .scrollBox > view:last-child > .fItem:first-child > view:first-child {
  343. font-size: 32rpx;
  344. color: #333333;
  345. }
  346. .modal .scrollBox > view:last-child > .fItem:first-child > view:last-child {
  347. font-family: Helvetica;
  348. font-size: 24rpx;
  349. color: #999999;
  350. }
  351. .modal .scrollBox > view:last-child > .fItem:nth-child(3) {
  352. font-size: 28rpx;
  353. color: #999999;
  354. }
  355. .modal
  356. .scrollBox
  357. > view:last-child
  358. > .fItem:nth-child(3)
  359. > view
  360. > text:last-child {
  361. color: #666666;
  362. }
  363. .modal .scrollBox > view:last-child > .pBox {
  364. width: 100%;
  365. box-sizing: border-box;
  366. padding: 56rpx 32rpx 0;
  367. }
  368. .modal .scrollBox > view:last-child > .pBox > .pItem {
  369. display: flex;
  370. align-items: center;
  371. justify-content: space-between;
  372. font-size: 30rpx;
  373. color: #3296FB;
  374. margin-bottom: 70rpx;
  375. position: relative;
  376. }
  377. .modal .scrollBox > view:last-child > .pBox > .pItem > text:nth-child(2) {
  378. margin-left: 68rpx;
  379. }
  380. .modal .scrollBox > view:last-child > .pBox > .pItem > text:nth-child(3) {
  381. font-size: 28rpx;
  382. color: #ADADAD;
  383. }
  384. .modal .scrollBox > view:last-child > .pBox > .pItem > image:first-child {
  385. width: 36rpx;
  386. height: 36rpx;
  387. position: absolute;
  388. }
  389. .modal .scrollBox > view:last-child > .pBox > .pItem > image:last-child {
  390. width: 3rpx;
  391. height: 80rpx;
  392. position: absolute;
  393. top: -72rpx;
  394. left: 16rpx;
  395. }
  396. .modal .scrollBox > view:last-child > .tips,
  397. .modal .scrollBox > view:last-child > .tips-X {
  398. width: 100%;
  399. box-sizing: border-box;
  400. padding: 24rpx 32rpx 0;
  401. font-size: 28rpx;
  402. color: #999999;
  403. text-align: justify;
  404. }
  405. /* .modal .scrollBox > view:last-child > .tips-X{
  406. height: 224rpx;
  407. } */
  408. .headerTip,
  409. .addCard {
  410. box-sizing: border-box;
  411. padding: 24rpx 32rpx;
  412. background: #FDF8EC;
  413. font-size: 24rpx;
  414. color: #FF801A;
  415. text-align: justify;
  416. line-height: 36rpx;
  417. }
  418. .addCard {
  419. width: 100%;
  420. display: flex;
  421. justify-content: space-between;
  422. }
  423. .addCard>text{
  424. width: 532rpx;
  425. }
  426. .addCard > view {
  427. width: 120rpx;
  428. height: 52rpx;
  429. font-size: 22rpx;
  430. color: #ffffff;
  431. background: #FF801A;
  432. border-radius: 4rpx;
  433. text-align: center;
  434. line-height: 52rpx;
  435. }