C端小程序
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

451 строка
6.2 KiB

  1. @import "../../../app.wxss";
  2. page {
  3. height: auto !important;
  4. }
  5. .order {
  6. width: 100%;
  7. padding-bottom: 160rpx;
  8. }
  9. .success {
  10. vertical-align: middle;
  11. width: 40rpx;
  12. margin-right: 10rpx;
  13. }
  14. .tips {
  15. width: 92%;
  16. height: 88rpx;
  17. background: #00c0ff;
  18. color: #fff;
  19. padding: 0 4%;
  20. line-height: 88rpx;
  21. }
  22. .merchantName {
  23. color: #999;
  24. }
  25. .tips text:nth-child(2) {
  26. font-size: 32rpx;
  27. padding-left: 16rpx;
  28. }
  29. .tips text:nth-child(1) {
  30. width: 32rpx;
  31. height: 32rpx;
  32. background: #fff;
  33. border-radius: 50%;
  34. color: #00c0ff;
  35. line-height: 32rpx;
  36. text-align: center;
  37. display: inline-block;
  38. font-size: 28rpx;
  39. }
  40. .section {
  41. margin-top: 2%;
  42. }
  43. .detail_msg {
  44. width: 92%;
  45. background: #fff;
  46. display: flex;
  47. margin: 0 4%;
  48. margin-top: 30rpx;
  49. padding-bottom: 30rpx;
  50. border-bottom: 1rpx solid #eee;
  51. }
  52. .logo {
  53. display: block;
  54. width: 180rpx;
  55. height: 180rpx;
  56. border-radius: 16rpx;
  57. }
  58. .logo image {
  59. width: 180rpx;
  60. height: 180rpx;
  61. border-radius: 16rpx;
  62. }
  63. .info view:nth-child(1) {
  64. display: flex;
  65. justify-content: space-between;
  66. padding: 0 4%;
  67. }
  68. .info {
  69. width: 100%;
  70. }
  71. .info view:nth-child(1) text {
  72. font-size: 30rpx;
  73. color: #000;
  74. letter-spacing: 0;
  75. }
  76. .info view:nth-child(1) text:nth-child(2) {
  77. color: #ffae00;
  78. font-size: 24rpx;
  79. }
  80. .info view:nth-child(2), .info view:nth-child(3) {
  81. font-size: 24rpx;
  82. padding-left: 4%;
  83. color: #919191;
  84. letter-spacing: 0;
  85. }
  86. .info view:nth-child(2) text, .info view:nth-child(3) text {
  87. font-size: 22rpx;
  88. color: #b8b8b8;
  89. }
  90. .payment {
  91. width: 92%;
  92. height: 120rpx;
  93. line-height: 120rpx;
  94. padding: 0 4%;
  95. display: flex;
  96. justify-content: space-between;
  97. border-bottom: 20rpx solid #ededed;
  98. }
  99. .payment view:nth-child(2) text:nth-child(1) {
  100. font-size: 36rpx;
  101. color: #ff3434;
  102. font-weight: bold;
  103. }
  104. .payment view:nth-child(2) text:nth-child(2) {
  105. font-size: 24rpx;
  106. color: #b4b4b4;
  107. padding-left: 18rpx;
  108. text-decoration: line-through;
  109. }
  110. .classif {
  111. width: 92%;
  112. padding-left: 4%;
  113. padding-right: 4%;
  114. }
  115. .classif > view {
  116. position: relative;
  117. height: 94rpx;
  118. line-height: 94rpx;
  119. display: flex;
  120. justify-content: space-between;
  121. /* border-bottom: 1rpx solid #eee; */
  122. }
  123. .classif > view text {
  124. font-size: 30rpx;
  125. }
  126. .classif > view text:nth-child(2) {
  127. color: #b8b8b8;
  128. font-size: 30rpx;
  129. margin-left:80rpx;
  130. }
  131. .classif > view:nth-child(1) {
  132. display: block;
  133. }
  134. .classif > view:nth-child(1) text:nth-child(2) {
  135. padding-left: 15rpx;
  136. }
  137. .classif > view:nth-child(3) view text:nth-child(2) {
  138. padding-left: 15rpx;
  139. }
  140. .classif > view:nth-child(6) text:nth-child(2) {
  141. color: #ff3434;
  142. font-weight: bold;
  143. }
  144. .spcode {
  145. position: absolute;
  146. right: 0;
  147. bottom: 0;
  148. top: 0;
  149. margin: auto;
  150. width: 50rpx;
  151. }
  152. /*mask*/
  153. .drawer_screen {
  154. position: absolute;
  155. width: 100%;
  156. height: 100%;
  157. top: 0;
  158. left: 0;
  159. z-index: 1000;
  160. background: #000;
  161. opacity: 0.5;
  162. overflow: hidden;
  163. }
  164. .drawer_box {
  165. width: 650rpx;
  166. position: fixed;
  167. overflow: hidden;
  168. top: 50%;
  169. left: 0;
  170. z-index: 1001;
  171. margin: -150px 50rpx 0 50rpx;
  172. border-radius: 3px;
  173. }
  174. .drawer_title {
  175. padding: 15px;
  176. font: 20px "microsoft yahei";
  177. text-align: center;
  178. }
  179. .drawer_content {
  180. height: 210px;
  181. overflow-y: scroll; /*超出父盒子高度可滚动*/
  182. }
  183. .btn_ok {
  184. padding: 10px;
  185. font: 20px "microsoft yahei";
  186. text-align: center;
  187. border-top: 1px solid #e8e8ea;
  188. color: #3cc51f;
  189. }
  190. .top {
  191. padding-top: 8px;
  192. }
  193. .bottom {
  194. padding-bottom: 8px;
  195. }
  196. .title {
  197. height: 30px;
  198. line-height: 30px;
  199. width: 160rpx;
  200. text-align: center;
  201. display: inline-block;
  202. font: 300 28rpx/30px "microsoft yahei";
  203. }
  204. .input_base {
  205. border: 2rpx solid #ccc;
  206. padding-left: 10rpx;
  207. margin-right: 50rpx;
  208. }
  209. .input_h30 {
  210. height: 30px;
  211. line-height: 30px;
  212. }
  213. .input_h60 {
  214. height: 60px;
  215. }
  216. .input_view {
  217. font: 12px "microsoft yahei";
  218. background: #fff;
  219. color: #000;
  220. line-height: 30px;
  221. }
  222. input {
  223. font: 12px "microsoft yahei";
  224. background: #fff;
  225. color: #000;
  226. }
  227. radio {
  228. margin-right: 20px;
  229. }
  230. .grid {
  231. display: -webkit-box;
  232. display: box;
  233. }
  234. .col-0 {
  235. -webkit-box-flex: 0;
  236. box-flex: 0;
  237. }
  238. .col-1 {
  239. -webkit-box-flex: 1;
  240. box-flex: 1;
  241. }
  242. .fl {
  243. float: left;
  244. }
  245. .fr {
  246. float: right;
  247. }
  248. .clearfix:after {
  249. content: ".";
  250. display: block;
  251. height: 0;
  252. clear: both;
  253. visibility: hidden;
  254. }
  255. .panel {
  256. width: 600rpx;
  257. border-radius: 10rpx;
  258. background-color: #fff;
  259. margin: 30rpx auto 0;
  260. padding: 30rpx 0;
  261. position: relative;
  262. z-index: 10000000000;
  263. }
  264. .pane2 {
  265. background: #fff;
  266. opacity: 0.6;
  267. }
  268. .pane2 image {
  269. width: 500rpx;
  270. display: block;
  271. margin: 40rpx auto 0;
  272. }
  273. .barcode {
  274. height: 100rpx;
  275. width: 500rpx;
  276. margin: 0 auto;
  277. }
  278. .barnum {
  279. width: 88%;
  280. height: 46rpx;
  281. line-height: 46rpx;
  282. font-size: 32rpx;
  283. text-align: center;
  284. letter-spacing: 2rpx;
  285. white-space: nowrap;
  286. color: #999;
  287. }
  288. .barnum text {
  289. color: #333;
  290. }
  291. .barcode > canvas {
  292. width: 500rpx;
  293. height: 100rpx;
  294. }
  295. .qrcode {
  296. height: 340rpx;
  297. display: flex;
  298. flex-direction: column;
  299. justify-content: flex-end;
  300. align-items: center;
  301. }
  302. .qrcode > canvas {
  303. width: 350rpx;
  304. height: 350rpx;
  305. }
  306. .jine {
  307. color: #f96563 !important;
  308. font-size: 36rpx !important;
  309. font-weight: 400 !important;
  310. }
  311. .jine1 {
  312. color: #b8b8b8 !important;
  313. font-size: 30rpx !important;
  314. font-weight: 400 !important;
  315. }
  316. .buy-view {
  317. background: #fff;
  318. position: fixed;
  319. padding-top: 30rpx;
  320. height: 94rpx;
  321. bottom: 0;
  322. left: 0;
  323. right: 0;
  324. z-index: 100;
  325. padding-bottom: 30rpx;
  326. }
  327. .buy {
  328. background: #00c0ff;
  329. height: 94rpx;
  330. width: 670rpx;
  331. margin: 0 auto;
  332. color: #fff;
  333. font-size: 36rpx;
  334. line-height: 94rpx;
  335. border-radius: 61rpx;
  336. }
  337. .active {
  338. opacity: 0.6;
  339. }
  340. .game-entry {
  341. width: 690rpx;
  342. height: 140rpx;
  343. margin: 20rpx auto 0;
  344. }
  345. .gameimg {
  346. display: block;
  347. width: 100%;
  348. height: 140rpx;
  349. }
  350. .merchantVoList {
  351. width: 100%;
  352. position: relative;
  353. }
  354. .merchantVoList .tel {
  355. width: 40rpx;
  356. position: absolute;
  357. top: 0;
  358. bottom: 0;
  359. margin: auto;
  360. right: 14rpx;
  361. z-index: 10;
  362. }
  363. .btns {
  364. background: #00c0ff;
  365. height: 94rpx;
  366. width: 670rpx;
  367. margin: 0 auto 30rpx;
  368. color: #fff;
  369. font-size: 36rpx;
  370. line-height: 94rpx;
  371. border-radius: 61rpx;
  372. }
  373. .merchantImgUrl{
  374. width: 60rpx;
  375. position: absolute;
  376. top: 0;
  377. bottom: 0;
  378. margin: auto;
  379. left: 0;
  380. border-radius: 10rpx;
  381. z-index: 10;
  382. }