mineOrderBeer.wxss 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148
  1. /* pages/mineOrderBeer/mineOrderBeer.wxss */
  2. page{
  3. background-color: #F5F5F5;
  4. }
  5. .head-tab{
  6. width: 750rpx;
  7. height: 100rpx;
  8. background: #FFFFFF;
  9. display: flex;
  10. flex-direction: row;
  11. justify-content: space-between;
  12. }
  13. .head-tab>text{
  14. width: 160rpx;
  15. height: 48rpx;
  16. font-size: 34rpx;
  17. text-align: center;
  18. font-family: PingFangSC-Regular, PingFang SC;
  19. font-weight: 400;
  20. color: rgba(0,0,0,0.87);
  21. line-height: 48rpx;
  22. margin: 26rpx 40rpx;
  23. }
  24. .box-list{
  25. width: 702rpx;
  26. height: 292rpx;
  27. background: #FFFFFF;
  28. border-radius: 8rpx;
  29. margin: 24rpx 24rpx 0;
  30. display: flex;
  31. flex-direction: column;
  32. }
  33. .box-tilte{
  34. width: 622rpx;
  35. height: 48rpx;
  36. border-bottom: 1rpx solid rgba(0,0,0,0.08);
  37. margin: 36rpx 40rpx 0;
  38. padding-bottom: 28rpx;
  39. display: flex;
  40. flex-direction: row;
  41. justify-content: space-between;
  42. }
  43. .box-tilte>text:nth-child(1){
  44. width: auto;
  45. height: 48rpx;
  46. font-size: 34rpx;
  47. font-family: PingFangSC-Medium, PingFang SC;
  48. font-weight: 500;
  49. color: rgba(0,0,0,0.87);
  50. line-height: 48rpx;
  51. }
  52. .box-tilte>text:nth-child(2){
  53. width: auto;
  54. height: 48rpx;
  55. font-size: 26rpx;
  56. font-family: PingFangSC-Regular, PingFang SC;
  57. font-weight: 400;
  58. color: #FF5700;
  59. line-height: 48rpx;
  60. }
  61. .box-con{
  62. width: 622rpx;
  63. height: 106rpx;
  64. display: flex;
  65. flex-direction: row;
  66. margin: 32rpx 40rpx 40rpx;
  67. }
  68. .box-con>image:nth-child(1){
  69. width: 106rpx;
  70. height: 106rpx;
  71. }
  72. .order-time{
  73. display: flex;
  74. flex-direction: column;
  75. width: 300rpx;
  76. }
  77. .order-time>text:nth-child(1){
  78. width: auto;
  79. height: 48rpx;
  80. font-size: 30rpx;
  81. font-family: AlipayNumber-Regular, AlipayNumber;
  82. font-weight: 400;
  83. color: rgba(0,0,0,0.87);
  84. line-height: 48rpx;
  85. text-align: left;
  86. margin: 0 auto 18rpx 24rpx;
  87. }
  88. .order-time>text:nth-child(2){
  89. width: auto;
  90. height: 44rpx;
  91. padding: 0 8rpx;
  92. line-height: 44rpx;
  93. font-size: 26rpx;
  94. font-family: PingFangSC-Regular, PingFang SC;
  95. font-weight: 400;
  96. color: rgba(0,0,0,0.6);
  97. background: #F7F7F7;
  98. border-radius: 8rpx;
  99. margin: 0 auto 0 16rpx;
  100. }
  101. .box-pri{
  102. width: auto;
  103. height: 48rpx;
  104. font-size: 30rpx;
  105. font-family: AlipayNumber-Regular, AlipayNumber;
  106. font-weight: 400;
  107. color: rgba(0,0,0,0.87);
  108. line-height: 48rpx;
  109. margin: auto 0 0 auto;
  110. }
  111. .nonedata-style{
  112. width: 750rpx;
  113. height: 100vh;
  114. display: flex;
  115. flex-direction: column;
  116. justify-content: center;
  117. align-items: center;
  118. margin-top: 128rpx;
  119. }
  120. .nonedata-style>image:nth-child(1){
  121. width: 332rpx;
  122. height: 264rpx;
  123. }
  124. .nonedata-style>text:nth-child(2){
  125. width: auto;
  126. height: auto;
  127. font-size: 30rpx;
  128. font-family: PingFangSC-Regular, PingFang SC;
  129. font-weight: 400;
  130. color: rgba(0,0,0,0.4);
  131. line-height: 48rpx;
  132. margin-top: 32rpx;
  133. text-align: center;
  134. }
  135. .push-btn{
  136. width: 446rpx;
  137. height: 100rpx;
  138. background: rgba(0,0,0,0.87);
  139. border-radius: 50rpx;
  140. border: 1rpx solid #CCCCCC;
  141. font-size: 34rpx;
  142. font-family: PingFangSC-Regular, PingFang SC;
  143. font-weight: 600;
  144. color: #fff;
  145. line-height: 100rpx;
  146. text-align: center;
  147. margin-top: 112rpx;
  148. }