freezeList.wxss 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. page {
  2. background: #fff;
  3. height: 100%;
  4. }
  5. .navbar {
  6. height: 40px;
  7. padding: 0 5px;
  8. background: #fff;
  9. box-shadow: 0 1px 5px rgba(0,0,0,.06);
  10. z-index: 10;
  11. }
  12. .navbar,.navbar .nav-item {
  13. display: flex;
  14. position: relative;
  15. }
  16. .navbar .nav-item {
  17. -webkit-box-flex: 1;
  18. flex: 1;
  19. -webkit-box-pack: center;
  20. justify-content: center;
  21. -webkit-box-align: center;
  22. align-items: center;
  23. height: 100%;
  24. font-size: 15px;
  25. color: #303133;
  26. }
  27. .navbar .nav-item.current {
  28. color: #5dbc7c;
  29. }
  30. .navbar .nav-item.current:after {
  31. content: "";
  32. position: absolute;
  33. left: 50%;
  34. bottom: 0;
  35. transform: translateX(-50%);
  36. width: 44px;
  37. height: 0;
  38. border-bottom: 2px solid #5dbc7c;
  39. }
  40. .swiper-box {
  41. height: calc(100% - 44px);
  42. padding-top: 10rpx;
  43. }
  44. .swiper-box .order-item {
  45. padding: 20rpx 30rpx;
  46. line-height: 1.5;
  47. }
  48. .swiper-box .order-item .title-box .title {
  49. font-size: 32rpx;
  50. color: #606266;
  51. }
  52. .swiper-box .order-item .title-box .time {
  53. font-size: 28rpx;
  54. color: #909399;
  55. }
  56. .swiper-box .order-item .money {
  57. color: #fd5b23;
  58. font-size: 32rpx;
  59. }
  60. .content,.list-scroll-content {
  61. height: 100%;
  62. }
  63. .content .empty-content {
  64. background-color: #fff;
  65. }