C端小程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

461 line
6.4 KiB

  1. @import "../../../app.wxss";
  2. button::after{ border: none; }
  3. page {
  4. height: auto !important;
  5. }
  6. .order {
  7. width: 100%;
  8. padding-bottom: 160rpx;
  9. }
  10. .success {
  11. vertical-align: middle;
  12. width: 40rpx;
  13. margin-right: 10rpx;
  14. }
  15. .tips {
  16. width: 92%;
  17. height: 88rpx;
  18. background: #00c0ff;
  19. color: #fff;
  20. padding: 0 4%;
  21. line-height: 88rpx;
  22. }
  23. .merchantName {
  24. color: #666!important;
  25. }
  26. .tips text:nth-child(2) {
  27. font-size: 32rpx;
  28. padding-left: 16rpx;
  29. }
  30. .tips text:nth-child(1) {
  31. width: 32rpx;
  32. height: 32rpx;
  33. background: #fff;
  34. border-radius: 50%;
  35. color: #00c0ff;
  36. line-height: 32rpx;
  37. text-align: center;
  38. display: inline-block;
  39. font-size: 28rpx;
  40. }
  41. .section {
  42. margin-top: 2%;
  43. }
  44. .detail_msg {
  45. width: 92%;
  46. background: #fff;
  47. display: flex;
  48. margin: 0 4%;
  49. margin-top: 30rpx;
  50. padding-bottom: 30rpx;
  51. border-bottom: 1rpx solid #eee;
  52. }
  53. .logo {
  54. display: block;
  55. width: 180rpx;
  56. height: 180rpx;
  57. border-radius: 16rpx;
  58. }
  59. .logo image {
  60. width: 180rpx;
  61. height: 180rpx;
  62. border-radius: 16rpx;
  63. }
  64. .info view:nth-child(1) {
  65. display: flex;
  66. justify-content: space-between;
  67. padding: 0 4%;
  68. }
  69. .info {
  70. width: 100%;
  71. }
  72. .info view:nth-child(1) text {
  73. font-size: 30rpx;
  74. color: #000;
  75. letter-spacing: 0;
  76. }
  77. .info view:nth-child(1) text:nth-child(2) {
  78. color: #ffae00;
  79. font-size: 24rpx;
  80. }
  81. .info view:nth-child(2), .info view:nth-child(3) {
  82. font-size: 24rpx;
  83. padding-left: 4%;
  84. color: #919191;
  85. letter-spacing: 0;
  86. }
  87. .info view:nth-child(2) text, .info view:nth-child(3) text {
  88. font-size: 22rpx;
  89. color: #b8b8b8;
  90. }
  91. .payment {
  92. width: 92%;
  93. height: 120rpx;
  94. line-height: 120rpx;
  95. padding: 0 4%;
  96. display: flex;
  97. justify-content: space-between;
  98. border-bottom: 20rpx solid #ededed;
  99. }
  100. .payment view:nth-child(2) text:nth-child(1) {
  101. font-size: 36rpx;
  102. color: #ff3434;
  103. font-weight: bold;
  104. }
  105. .payment view:nth-child(2) text:nth-child(2) {
  106. font-size: 24rpx;
  107. color: #b4b4b4;
  108. padding-left: 18rpx;
  109. text-decoration: line-through;
  110. }
  111. .classif {
  112. width: 92%;
  113. padding-left: 4%;
  114. padding-right: 4%;
  115. }
  116. .classif > view {
  117. position: relative;
  118. height: 94rpx;
  119. line-height: 94rpx;
  120. display: flex;
  121. justify-content: space-between;
  122. /* border-bottom: 1rpx solid #eee; */
  123. }
  124. .classif > view text {
  125. font-size: 30rpx;
  126. }
  127. .classif > view text:nth-child(2) {
  128. color: #b8b8b8;
  129. font-size: 30rpx;
  130. margin-left:80rpx;
  131. }
  132. .classif > view:nth-child(1) {
  133. display: block;
  134. }
  135. .classif > view:nth-child(1) text:nth-child(2) {
  136. padding-left: 15rpx;
  137. }
  138. .classif > view:nth-child(3) view text:nth-child(2) {
  139. padding-left: 15rpx;
  140. }
  141. .classif > view:nth-child(6) text:nth-child(2) {
  142. color: #666;
  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. }
  383. .support-tansfer{
  384. width: 690rpx;
  385. border-radius: 50rpx;
  386. margin-top: 60rpx;
  387. background: #02C0FF!important;
  388. }
  389. .share{
  390. width: 40rpx;
  391. height: 40rpx;
  392. margin-right: 20rpx;
  393. }