scoreAccumulate.wxss 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  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. -webkit-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.06);
  23. box-shadow: 0 1px 5px rgba(0, 0, 0, 0.06);
  24. position: relative;
  25. z-index: 10;
  26. }
  27. .navbar .nav-item {
  28. -webkit-box-flex: 1;
  29. -webkit-flex: 1;
  30. flex: 1;
  31. display: -webkit-box;
  32. display: -webkit-flex;
  33. display: flex;
  34. -webkit-box-pack: center;
  35. -webkit-justify-content: center;
  36. justify-content: center;
  37. -webkit-box-align: center;
  38. -webkit-align-items: center;
  39. align-items: center;
  40. height: 100%;
  41. font-size: 15px;
  42. color: #303133;
  43. position: relative;
  44. }
  45. .navbar .nav-item.current {
  46. color: #5dbc7c;
  47. }
  48. .navbar .nav-item.current:after {
  49. content: '';
  50. position: absolute;
  51. left: 50%;
  52. bottom: 0;
  53. -webkit-transform: translateX(-50%);
  54. transform: translateX(-50%);
  55. width: 44px;
  56. height: 0;
  57. border-bottom: 2px solid #5dbc7c;
  58. }
  59. .swiper-box {
  60. height: calc(100% - 44px);
  61. padding-top: 10rpx;
  62. }
  63. .swiper-box .order-item {
  64. padding: 20rpx 30rpx;
  65. line-height: 1.5;
  66. }
  67. .swiper-box .order-item .title-box .title {
  68. font-size: 32rpx;
  69. color: #606266;
  70. }
  71. .swiper-box .order-item .title-box .time {
  72. font-size: 28rpx;
  73. color: #909399;
  74. }
  75. .swiper-box .order-item .money {
  76. color: #fd5b23;
  77. font-size: 32rpx;
  78. }
  79. .list-scroll-content {
  80. height: 100%;
  81. }
  82. .content {
  83. height: 100%;
  84. }
  85. .content .empty-content {
  86. background-color: #ffffff;
  87. }