index.wxss 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  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. .order {
  28. background: #efefef;
  29. padding: 90rpx 30rpx 0;
  30. min-height: 100vh;
  31. }
  32. .order .tab-box {
  33. display: flex;
  34. position: fixed;
  35. width: 750rpx;
  36. height: 70rpx;
  37. left: 0%;
  38. top: 0%;
  39. z-index: 9;
  40. background: #fff;
  41. }
  42. .order .tab-box .tab {
  43. flex: 1;
  44. text-align: center;
  45. padding: 15rpx 0;
  46. font-size: 28rpx;
  47. color: #999999;
  48. }
  49. .order .tab-box .tab.active {
  50. font-size: 32rpx;
  51. color: #222222;
  52. position: relative;
  53. }
  54. .order .tab-box .tab.active::after {
  55. content: '';
  56. width: 40rpx;
  57. height: 8rpx;
  58. box-shadow: inset 0rpx 6rpx 12rpx 2rpx rgba(255, 255, 255, 0.16);
  59. border-radius: 46rpx 46rpx 46rpx 46rpx;
  60. background: #61B5FD;
  61. position: absolute;
  62. bottom: 0%;
  63. left: 50%;
  64. -webkit-transform: translateX(-50%);
  65. transform: translateX(-50%);
  66. }
  67. .order .zs-list .order-item {
  68. background-color: #fff;
  69. border-radius: 8px;
  70. margin-bottom: 20rpx;
  71. }
  72. .order .zs-list .order-item .top-box {
  73. display: flex;
  74. justify-content: space-between;
  75. align-items: center;
  76. padding: 20rpx;
  77. border-bottom: 2rpx solid #F3F3F3;
  78. }
  79. .order .zs-list .order-item .top-box .label {
  80. font-weight: bold;
  81. color: #222222;
  82. font-size: 32rpx;
  83. width: 500rpx;
  84. white-space: nowrap;
  85. overflow: hidden;
  86. text-overflow: ellipsis;
  87. }
  88. .order .zs-list .order-item .top-box .status {
  89. font-size: 28rpx;
  90. color: #999999;
  91. }
  92. .order .zs-list .order-item .order-box {
  93. padding: 25rpx;
  94. display: flex;
  95. }
  96. .order .zs-list .order-item .order-box .icon {
  97. width: 164rpx;
  98. height: 164rpx;
  99. border-radius: 16rpx;
  100. background-color: #999;
  101. }
  102. .order .zs-list .order-item .order-box .info {
  103. margin-left: 25rpx;
  104. display: flex;
  105. flex-direction: column;
  106. justify-content: space-between;
  107. }
  108. .order .zs-list .order-item .order-box .info .title {
  109. color: #0F0F0F;
  110. font-size: 28rpx;
  111. }
  112. .order .zs-list .order-item .order-box .info .time {
  113. font-size: 26rpx;
  114. color: #999999;
  115. }
  116. .order .zs-list .order-item .order-box .info .price {
  117. font-weight: bold;
  118. color: #181818;
  119. }