C端小程序
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

310 lines
4.7 KiB

  1. @import "../../../app.wxss";
  2. .order {
  3. width: 100%;
  4. }
  5. .tips {
  6. width: 92%;
  7. height: 88rpx;
  8. background: #00c0ff;
  9. color: #fff;
  10. padding: 0 4%;
  11. line-height: 88rpx;
  12. }
  13. .tips text:nth-child(2) {
  14. font-size: 24rpx;
  15. padding-left: 16rpx;
  16. }
  17. .tips text:nth-child(1) {
  18. width: 32rpx;
  19. height: 32rpx;
  20. background: #fff;
  21. border-radius: 50%;
  22. color: #00c0ff;
  23. line-height: 32rpx;
  24. text-align: center;
  25. display: inline-block;
  26. font-size: 28rpx;
  27. }
  28. .section {
  29. margin-top: 2%;
  30. }
  31. .detail_msg {
  32. width: 92%;
  33. height: 220rpx !important;
  34. background: #fff;
  35. display: flex;
  36. margin: 0 4%;
  37. margin-top: 2%;
  38. /* border-bottom: 1px solid #ededed; */
  39. }
  40. .logo {
  41. width: 248rpx;
  42. height: 184rpx;
  43. border-radius: 30rpx;
  44. }
  45. .logo image {
  46. width: 100%;
  47. height: 100%;
  48. }
  49. .info view:nth-child(1) {
  50. display: flex;
  51. justify-content: space-between;
  52. padding: 0 4%;
  53. }
  54. .info {
  55. width: 100%;
  56. }
  57. .info view:nth-child(1) {
  58. margin-bottom: 30rpx;
  59. }
  60. .info view:nth-child(1) text {
  61. font-size: 30rpx;
  62. }
  63. .info view:nth-child(1) text:nth-child(2) {
  64. color: #ffae00;
  65. font-size: 24rpx;
  66. }
  67. .info view:nth-child(2),
  68. .info view:nth-child(3) {
  69. color: #ff3434;
  70. font-size: 24rpx;
  71. padding-left: 4%;
  72. }
  73. .info view:nth-child(2) text,
  74. .info view:nth-child(3) text {
  75. font-size: 22rpx;
  76. color: #b8b8b8;
  77. }
  78. .info view:nth-child(3) {
  79. margin-top: 5rpx;
  80. }
  81. .payment {
  82. width: 92%;
  83. height: 120rpx;
  84. line-height: 120rpx;
  85. padding: 0 4%;
  86. display: flex;
  87. justify-content: space-between;
  88. border-bottom: 20rpx solid #ededed;
  89. }
  90. .payment view:nth-child(2) text:nth-child(1) {
  91. font-size: 36rpx;
  92. color: #ff3434;
  93. font-weight: bold;
  94. }
  95. .payment view:nth-child(2) text:nth-child(2) {
  96. font-size: 24rpx;
  97. color: #b4b4b4;
  98. padding-left: 18rpx;
  99. text-decoration: line-through;
  100. }
  101. .classif {
  102. width: 100%;
  103. }
  104. .classif > view {
  105. height: 88rpx;
  106. line-height: 88rpx;
  107. display: flex;
  108. justify-content: space-between;
  109. padding-left: 4%;
  110. padding-right: 4%;
  111. border-bottom: 1rpx solid #eee;
  112. }
  113. .classif > view text {
  114. font-size: 30rpx;
  115. }
  116. .classif > view text:nth-child(2) {
  117. color: #b8b8b8;
  118. font-size: 30rpx;
  119. }
  120. .classif > view:nth-child(1) {
  121. display: block;
  122. }
  123. .classif > view:nth-child(1) text:nth-child(2) {
  124. padding-left: 15rpx;
  125. }
  126. .classif > view:nth-child(3),
  127. .classif > view:nth-child(4) {
  128. border-top: 20rpx solid #ededed;
  129. }
  130. .classif > view:nth-child(3) view text:nth-child(2) {
  131. padding-left: 15rpx;
  132. }
  133. .classif > view:nth-child(6) text:nth-child(2) {
  134. color: #ff3434;
  135. font-weight: bold;
  136. }
  137. .spcode {
  138. width: 60rpx;
  139. display: inline-block;
  140. margin-top: 15rpx;
  141. }
  142. /*mask*/
  143. .drawer_screen {
  144. position: absolute;
  145. width: 100%;
  146. height: 100%;
  147. top: 0;
  148. left: 0;
  149. z-index: 1000;
  150. background: #000;
  151. opacity: 0.5;
  152. overflow: hidden;
  153. }
  154. .drawer_box {
  155. width: 650rpx;
  156. position: fixed;
  157. overflow: hidden;
  158. top: 50%;
  159. left: 0;
  160. z-index: 1001;
  161. margin: -150px 50rpx 0 50rpx;
  162. border-radius: 3px;
  163. }
  164. .drawer_title {
  165. padding: 15px;
  166. font: 20px "microsoft yahei";
  167. text-align: center;
  168. }
  169. .drawer_content {
  170. height: 210px;
  171. overflow-y: scroll; /*超出父盒子高度可滚动*/
  172. }
  173. .btn_ok {
  174. padding: 10px;
  175. font: 20px "microsoft yahei";
  176. text-align: center;
  177. border-top: 1px solid #e8e8ea;
  178. color: #3cc51f;
  179. }
  180. .top {
  181. padding-top: 8px;
  182. }
  183. .bottom {
  184. padding-bottom: 8px;
  185. }
  186. .title {
  187. height: 30px;
  188. line-height: 30px;
  189. width: 160rpx;
  190. text-align: center;
  191. display: inline-block;
  192. font: 300 28rpx/30px "microsoft yahei";
  193. }
  194. .input_base {
  195. border: 2rpx solid #ccc;
  196. padding-left: 10rpx;
  197. margin-right: 50rpx;
  198. }
  199. .input_h30 {
  200. height: 30px;
  201. line-height: 30px;
  202. }
  203. .input_h60 {
  204. height: 60px;
  205. }
  206. .input_view {
  207. font: 12px "microsoft yahei";
  208. background: #fff;
  209. color: #000;
  210. line-height: 30px;
  211. }
  212. input {
  213. font: 12px "microsoft yahei";
  214. background: #fff;
  215. color: #000;
  216. }
  217. radio {
  218. margin-right: 20px;
  219. }
  220. .grid {
  221. display: -webkit-box;
  222. display: box;
  223. }
  224. .col-0 {
  225. -webkit-box-flex: 0;
  226. box-flex: 0;
  227. }
  228. .col-1 {
  229. -webkit-box-flex: 1;
  230. box-flex: 1;
  231. }
  232. .fl {
  233. float: left;
  234. }
  235. .fr {
  236. float: right;
  237. }
  238. .panel {
  239. width: 600rpx;
  240. border-radius: 10rpx;
  241. background-color: #fff;
  242. margin: 30rpx auto 0;
  243. padding: 30rpx 0;
  244. position: relative;
  245. z-index: 10000000000;
  246. }
  247. .pane2{
  248. background: #fff;
  249. opacity: .6;
  250. }
  251. .pane2 image{
  252. width: 500rpx;
  253. display: block;
  254. margin: 40rpx auto 0;
  255. }
  256. .barcode {
  257. height: 100rpx;
  258. width: 500rpx;
  259. margin: 0 auto;
  260. }
  261. .barnum {
  262. height: 46rpx;
  263. line-height: 46rpx;
  264. font-size: 32rpx;
  265. text-align: center;
  266. letter-spacing: 2rpx;
  267. white-space: nowrap;
  268. color: #999;
  269. }
  270. .barnum text {
  271. color: #333;
  272. }
  273. .barcode > canvas {
  274. width: 500rpx;
  275. height: 100rpx;
  276. }
  277. .qrcode {
  278. height: 370rpx;
  279. display: flex;
  280. flex-direction: column;
  281. justify-content: flex-end;
  282. align-items: center;
  283. }
  284. .qrcode > canvas {
  285. width: 350rpx;
  286. height: 400rpx;
  287. }