scoreAccumulate.wxss 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. @charset "UTF-8";
  2. /* 页面左右间距 */
  3. /* 文字尺寸 */
  4. /*文字颜色*/
  5. /* 边框颜色 */
  6. /*颜色*/
  7. /* 图片加载中颜色 */
  8. /* 行为相关颜色 */
  9. /* 功能栏字体大小 */
  10. /*功能栏左侧小图标*/
  11. page {
  12. background: #ffffff;
  13. height: 100%;
  14. }
  15. .navbar {
  16. display: -webkit-box;
  17. display: -webkit-flex;
  18. display: flex;
  19. height: 40px;
  20. padding: 0 5px;
  21. background: #fff;
  22. box-shadow: 0 1px 5px rgba(0, 0, 0, 0.06);
  23. position: relative;
  24. z-index: 10;
  25. }
  26. .navbar .nav-item {
  27. -webkit-box-flex: 1;
  28. -webkit-flex: 1;
  29. flex: 1;
  30. display: -webkit-box;
  31. display: -webkit-flex;
  32. display: flex;
  33. -webkit-box-pack: center;
  34. -webkit-justify-content: center;
  35. justify-content: center;
  36. -webkit-box-align: center;
  37. -webkit-align-items: center;
  38. align-items: center;
  39. height: 100%;
  40. font-size: 15px;
  41. color: #303133;
  42. position: relative;
  43. }
  44. .navbar .nav-item.current {
  45. color: #5dbc7c;
  46. }
  47. .navbar .nav-item.current:after {
  48. content: '';
  49. position: absolute;
  50. left: 50%;
  51. bottom: 0;
  52. -webkit-transform: translateX(-50%);
  53. transform: translateX(-50%);
  54. width: 44px;
  55. height: 0;
  56. border-bottom: 2px solid #5dbc7c;
  57. }
  58. .swiper-box {
  59. height: calc(100% - 44px);
  60. padding-top: 10rpx;
  61. }
  62. .swiper-box .order-item {
  63. padding: 20rpx 30rpx;
  64. line-height: 1.5;
  65. }
  66. .swiper-box .order-item .title-box .title {
  67. font-size: 32rpx;
  68. color: #606266;
  69. }
  70. .swiper-box .order-item .title-box .time {
  71. font-size: 28rpx;
  72. color: #909399;
  73. }
  74. .swiper-box .order-item .money {
  75. color: #fd5b23;
  76. font-size: 32rpx;
  77. }
  78. .list-scroll-content {
  79. height: 100%;
  80. }
  81. .content {
  82. height: 100%;
  83. }
  84. .content .empty-content {
  85. background-color: #ffffff;
  86. }