order.wxss 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198
  1. @charset "UTF-8";
  2. /**
  3. * 这里是uni-app内置的常用样式变量
  4. *
  5. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  6. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  7. *
  8. */
  9. /* uni.scss */
  10. /* 页面左右间距 */
  11. /* 文字尺寸 */
  12. /* 文字尺寸 */
  13. /*文字颜色*/
  14. /* 边框颜色 */
  15. /* 图片加载中颜色 */
  16. /* 行为相关颜色 */
  17. /* 颜色变量 */
  18. /* 项目主色 */
  19. /* 文字基本颜色 */
  20. .red {
  21. color: #f60808;
  22. }
  23. .green {
  24. color: #15ab54;
  25. }
  26. .yellow {
  27. color: #f0ad4e;
  28. }
  29. .blue {
  30. color: #1f96f6;
  31. }
  32. .blank {
  33. color: #000;
  34. }
  35. .white {
  36. color: #fff;
  37. }
  38. .promain {
  39. color: #025b58;
  40. }
  41. .prosecond {
  42. color: #ed742f;
  43. }
  44. .textmain {
  45. color: #333;
  46. }
  47. .textgrey {
  48. color: #999;
  49. }
  50. .fuColor {
  51. color: #c6cadb;
  52. }
  53. .fontssm {
  54. font-size: 22rpx;
  55. }
  56. .fontsm {
  57. font-size: 24rpx;
  58. }
  59. .fontmid {
  60. font-size: 28rpx;
  61. }
  62. .fontbase {
  63. font-size: 30rpx;
  64. }
  65. /* 背景颜色 */
  66. /* 边框颜色 */
  67. /* input 样式 */
  68. .input-placeholder {
  69. color: #999999;
  70. }
  71. .navigator-hover {
  72. background: transparent !important;
  73. opacity: 1;
  74. }
  75. .uni-page-head-transparent .uni-page-head-btn {
  76. background: transparent !important;
  77. }
  78. uni-toast {
  79. z-index: 99999;
  80. }
  81. button {
  82. background: transparent;
  83. }
  84. button::after {
  85. border: 0;
  86. }
  87. page,
  88. .content {
  89. background-color: #f5f5f5;
  90. }
  91. page .swiper-box,
  92. .content .swiper-box {
  93. width: 100%;
  94. min-height: 100vh;
  95. }
  96. .tab-content .list-scroll-content {
  97. height: 100%;
  98. }
  99. .tab-content .moredata {
  100. height: 50rpx;
  101. }
  102. .navbar {
  103. height: 100rpx;
  104. background-color: #fff;
  105. }
  106. .navbarTwo {
  107. padding: 0 30rpx;
  108. background-color: #fff;
  109. }
  110. .navbarTwo .current {
  111. color: #ed742f;
  112. }
  113. .uni-swiper-item {
  114. height: auto;
  115. }
  116. .list-scroll-content {
  117. padding: 0 30rpx;
  118. background: #fff;
  119. }
  120. .box {
  121. background-color: #fff;
  122. padding: 30rpx;
  123. }
  124. .order-item {
  125. display: flex;
  126. flex-direction: column;
  127. padding: 30rpx 0;
  128. }
  129. .order-item .ordtitle image {
  130. width: 40rpx;
  131. height: 40rpx;
  132. }
  133. .order-item .ordtitle text {
  134. text-align: right;
  135. }
  136. .order-item .shopshead {
  137. height: 170rpx;
  138. margin: 13rpx 0 26rpx;
  139. }
  140. .order-item .shopshead image {
  141. width: 170rpx;
  142. height: 100%;
  143. margin-right: 20rpx;
  144. }
  145. .order-item .shopshead .shopsInfo {
  146. width: 502rpx;
  147. flex: 1;
  148. height: 100%;
  149. align-items: flex-start;
  150. justify-content: space-between;
  151. }
  152. .order-item .shopshead .shopsInfo .oneelli {
  153. width: 100%;
  154. line-height: 40rpx;
  155. }
  156. .order-item .shopshead .shopsInfo .attr {
  157. font-size: 26rpx;
  158. }
  159. .order-item .shopshead .shopsInfo .allInfo {
  160. width: 100%;
  161. font-size: 26rpx;
  162. }
  163. .order-item .btns {
  164. justify-content: flex-end;
  165. }
  166. .order-item .btns .clickbtn,
  167. .order-item .btns .cancle {
  168. width: 156rpx;
  169. height: 60rpx;
  170. line-height: 60rpx;
  171. font-size: 28rpx;
  172. border-radius: 4rpx;
  173. margin: 0;
  174. margin-left: 30rpx;
  175. background: transparent;
  176. border: 1rpx solid #979797;
  177. color: #979797;
  178. text-align: center;
  179. }
  180. .other {
  181. margin-bottom: 20rpx;
  182. }
  183. .other text,
  184. .other input {
  185. font-size: 28rpx;
  186. }
  187. .other input {
  188. flex: 1;
  189. margin-left: 10rpx;
  190. }
  191. .tuiBox {
  192. margin: 30rpx;
  193. border: 1rpx solid #f5f5f5;
  194. height: 60rpx;
  195. padding: 10rpx;
  196. line-height: 60rpx;
  197. }