index.wxss 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798
  1. /* pages/webview/index.wxss */
  2. .web-view {
  3. /* background-color: #000; */
  4. }
  5. .bgd {
  6. position: fixed;
  7. left: 0;
  8. right: 0;
  9. top: 0;
  10. bottom: 0;
  11. z-index: 0;
  12. }
  13. .btn {
  14. width: 100%;
  15. background-color: #fff;
  16. border-radius: 4px;
  17. height: 90rpx;
  18. line-height: 90rpx;
  19. font-size: 36rpx;
  20. color: #131D34;
  21. text-align: center;
  22. padding: 0;
  23. }
  24. .call-phone {
  25. background-color: rgb(237,93,24);
  26. color: #fff;
  27. }
  28. .dialog {
  29. position: fixed;
  30. left: 10%;
  31. right: 10%;
  32. background-color: rgba(0, 0, 0, 1);
  33. opacity: .9;
  34. color: #fff;
  35. z-index: 9999;
  36. border-radius: 5px;
  37. padding: 70rpx;
  38. }
  39. .guide-view {
  40. top: 10%;
  41. bottom: 20%;
  42. display: flex;
  43. flex-direction: column;
  44. justify-content: space-between;
  45. }
  46. .guide-view .title {
  47. font-size: 36rpx;
  48. color: rgba(255, 255, 255, 0.88);
  49. text-align: center;
  50. }
  51. .guide-view .content {
  52. display: flex;
  53. flex: 1;
  54. flex-direction: column;
  55. justify-content: space-around;
  56. }
  57. .guide-item {
  58. padding-left: 100rpx;
  59. position: relative;
  60. }
  61. .guide-item cover-image {
  62. position: absolute;
  63. left: 0;
  64. top: 0;
  65. width: 77rpx;
  66. height: 96rpx;
  67. }
  68. .guide-item .text {
  69. line-height: 48rpx;
  70. font-size: 30rpx;
  71. display: block;
  72. color: #fff;
  73. }
  74. .guide-view .title,
  75. .guide-view .button {
  76. max-height: 300rpx;
  77. }
  78. .bottom-dialog {
  79. position: fixed;
  80. top: 23%;
  81. bottom: 0;
  82. left: 0;
  83. right: 0;
  84. z-index: 99;
  85. background-color: #fff;
  86. border-radius: 14px 14px 0 0;
  87. display: flex;
  88. flex-direction: column;
  89. }
  90. .bottom-dialog .title {
  91. flex: 0 0 auto;
  92. padding: 36rpx 32rpx;
  93. border-bottom: 1px solid rgb(236, 236, 236);
  94. position: relative;
  95. }
  96. .bottom-dialog .title .text {
  97. font-size: 32rpx;
  98. color: #131D34;
  99. font-weight: bold;
  100. }
  101. .bottom-dialog .icon {
  102. position: absolute;
  103. top: 50%;
  104. transform: translateY(-50%);
  105. width: 27rpx;
  106. height: 27rpx;
  107. padding: 32rpx;
  108. right: 0;
  109. }
  110. .commodity-view {
  111. position: fixed;
  112. top: 23%;
  113. bottom: 0;
  114. left: 0;
  115. right: 0;
  116. z-index: 99;
  117. background-color: #fff;
  118. border-radius: 14px 14px 0 0;
  119. display: flex;
  120. flex-direction: column;
  121. }
  122. .commodity-view .content {
  123. flex: 1;
  124. padding: 0 32rpx;
  125. position: relative;
  126. /* display: flex;
  127. flex-direction: column; */
  128. }
  129. .commodity-view .scene-icon {
  130. position: absolute;
  131. left: 2rpx;
  132. bottom: 2rpx;
  133. width: 40rpx;
  134. height: 40rpx;
  135. z-index: 3;
  136. }
  137. .commodity-view .tabs {
  138. flex: 0 0 auto;
  139. height: 76rpx;
  140. width: 100%;
  141. overflow-x: scroll;
  142. padding-bottom: 4px;
  143. position: relative;
  144. }
  145. .commodity-view .tabs .text {
  146. float: left;
  147. height: 76rpx;
  148. line-height: 76rpx;
  149. color: #131D34;
  150. font-size: 16px;
  151. margin-right: 10px;
  152. text-align: center;
  153. }
  154. .commodity-view .tabs .text.active {
  155. color: #ED5D18;
  156. font-size: 16px;
  157. position: relative;
  158. }
  159. .commodity-view .tabs .text.active cover-view {
  160. position: absolute;
  161. bottom: 0;
  162. left: 0;
  163. right: 0;
  164. height: 4rpx;
  165. background-color: #ED5D18;
  166. margin: 0 20rpx;
  167. }
  168. .commodity-view .current-tab {
  169. flex: 0 0 auto;
  170. height: 60rpx;
  171. margin-left: -32rpx;
  172. width: calc(100% + 64rpx);
  173. background-color: #F8F8F8;
  174. padding: 0 32rpx;
  175. line-height: 60rpx;
  176. font-size: 26rpx;
  177. color: #999999;
  178. }
  179. .commoditys {
  180. position: absolute;
  181. left: 32rpx;
  182. right: 32rpx;
  183. top: 76rpx;
  184. bottom: 0;
  185. height: calc(100% - 100rpx);
  186. overflow-y: scroll;
  187. }
  188. .commodity-item {
  189. margin-top: 34rpx;
  190. display: flex;
  191. align-items: center;
  192. position: relative;
  193. }
  194. .commodity-view .cover {
  195. flex: 0 0 auto;
  196. width: 180rpx;
  197. height: 180rpx;
  198. }
  199. .commodity-view .item-content {
  200. flex: 1;
  201. margin-left: 28rpx;
  202. }
  203. .commodity-view .item-content .desc {
  204. font-size: 14px;
  205. color: #131D34;
  206. line-height: 40rpx;
  207. white-space: pre-wrap;
  208. }
  209. .commodity-view .item-info {
  210. margin-top: 32rpx;
  211. display: flex;
  212. align-items: center;
  213. justify-content: space-between;
  214. height: 54rpx;
  215. }
  216. .commodity-view .item-info>.money {
  217. flex: 0 0 auto;
  218. }
  219. .commodity-view .item-info>.oper {
  220. flex: 1;
  221. text-align: right;
  222. position: relative;
  223. }
  224. .oper .lack {
  225. position: absolute;
  226. left: 50%;
  227. top: 50%;
  228. transform: translate(-50%, -50%);
  229. width: 200rpx;
  230. height: 200rpx;
  231. }
  232. .commodity-view .money .text {
  233. display: inline;
  234. color: #ED5D18;
  235. }
  236. .commodity-view .money .text:nth-child(1),
  237. .money .text:nth-child(3) {
  238. font-size: 24rpx;
  239. margin-right: 10rpx;
  240. vertical-align: baseline;
  241. }
  242. .commodity-view .money .text:nth-child(2) {
  243. font-size: 36rpx;
  244. vertical-align: baseline;
  245. }
  246. .oper-btn {
  247. display: inline-block;
  248. border-radius: 4px;
  249. height: 52rpx;
  250. line-height: 52rpx;
  251. padding: 0 16rpx !important;
  252. color: #fff;
  253. font-size: 24rpx;
  254. }
  255. .commodity-view .oper {
  256. height: 54rpx;
  257. display: flex;
  258. }
  259. .commodity-view .oper-btn:nth-child(1) {
  260. background-color: #FFCD3C;
  261. margin-right: 10rpx;
  262. }
  263. .commodity-view .oper-btn:nth-child(2) {
  264. background-color: #ED5D18;
  265. }
  266. .invitation-view {
  267. top: 50%;
  268. transform: translateY(-50%);
  269. color: rgba(255, 255, 255, 0.88);
  270. /* height: 420rpx; */
  271. }
  272. .invitation-view .title {
  273. font-size: 36rpx;
  274. font-weight: bold;
  275. margin-bottom: 40rpx;
  276. }
  277. .invitation-view .content {
  278. font-size: 30rpx;
  279. line-height: 36rpx;
  280. margin-bottom: 40rpx;
  281. white-space: pre-wrap;
  282. }
  283. .invitation-view .btns {
  284. text-align: center;
  285. height: 200rpx;
  286. }
  287. .cancel {
  288. line-height: 86rpx;
  289. margin-top: 20rpx;
  290. background-color: rgba(0, 0, 0, 0);
  291. color: #fff;
  292. border: 1px solid #fff;
  293. width: 100%;
  294. box-sizing: border-box;
  295. }
  296. .coupon-view .layer {
  297. flex: 1;
  298. overflow-y: scroll;
  299. }
  300. .coupon-view .content {
  301. padding: 0 34rpx;
  302. }
  303. .coupon-item {
  304. height: 185rpx;
  305. padding-right: 30rpx;
  306. background: #EF9B3A;
  307. border-radius: 4px;
  308. margin-top: 34rpx;
  309. display: flex;
  310. position: relative;
  311. align-items: center;
  312. }
  313. .coupon-item .item-before,
  314. .coupon-item .item-after {
  315. position: absolute;
  316. border-radius: 50%;
  317. background-color: rgba(255, 255, 255, 0.16);
  318. z-index: 1;
  319. }
  320. .coupon-item .item-before {
  321. width: 88rpx;
  322. height: 106rpx;
  323. left: 0;
  324. top: 0;
  325. transform: translate(-50%, -50%);
  326. }
  327. .coupon-item .item-after {
  328. width: 140rpx;
  329. height: 186rpx;
  330. right: 0;
  331. bottom: 0;
  332. transform: translate(40%, 50%);
  333. }
  334. .coupon-item .info-before,
  335. .coupon-item .info-after {
  336. position: absolute;
  337. background-color: #fff;
  338. z-index: 99;
  339. width: 40rpx;
  340. height: 40rpx;
  341. border-radius: 50%;
  342. right: 196rpx;
  343. transform: translateX(50%);
  344. }
  345. .coupon-item .info-before {
  346. top: 0;
  347. margin-top: -20rpx;
  348. }
  349. .coupon-item .info-after {
  350. bottom: 0;
  351. margin-bottom: -20rpx;
  352. }
  353. .coupon-item .money {
  354. flex: 0 0 auto;
  355. width: 230rpx;
  356. font-size: 138rpx;
  357. color: #fff;
  358. font-weight: bold;
  359. position: relative;
  360. /* height: 130rpx;
  361. line-height: 138rpx; */
  362. text-align: center;
  363. box-sizing: border-box;
  364. display: flex;
  365. align-items: center;
  366. justify-content: center;
  367. overflow: auto;
  368. height: 138rpx;
  369. }
  370. .poa {
  371. width: 100%;
  372. text-align: center;
  373. font-size: 26rpx;
  374. }
  375. .coupon-item .used {
  376. position: absolute;
  377. z-index: 99;
  378. background-color: rgba(255, 255, 255, 0.6);
  379. left: 0;
  380. right: 0;
  381. top: 0;
  382. bottom: 0;
  383. }
  384. .coupon-item .money-before {
  385. display: inline;
  386. font-size: 26rpx;
  387. /* width: 40rpx;
  388. height: 40rpx;
  389. text-align: center;
  390. line-height: 40rpx;
  391. border: 1px solid #EF9B3A;
  392. color:#EF9B3A;
  393. border-radius: 50%;
  394. position: absolute;
  395. bottom: 0;
  396. right: 0rpx;
  397. font-size: 26rpx;
  398. background-color: #fff; */
  399. }
  400. .coupon-item .info {
  401. flex: 1;
  402. display: flex;
  403. flex-direction: column;
  404. padding: 25rpx 10rpx 10rpx;
  405. height: 92rpx;
  406. }
  407. .coupon-item .info .full {
  408. font-size: 30rpx;
  409. color: #fff;
  410. width: 100%;
  411. height: 52rpx;
  412. margin: 0;
  413. line-height: 32rpx;
  414. white-space: nowrap;
  415. text-overflow: ellipsis;
  416. }
  417. .coupon-item .info button {
  418. width: 168rpx;
  419. color: #EF533A;
  420. text-align: center;
  421. height: 38rpx;
  422. line-height: 32rpx;
  423. border-radius: 19rpx;
  424. font-size: 22rpx;
  425. margin: 10rpx 0;
  426. }
  427. .coupon-item .info .date {
  428. height: 28rpx;
  429. font-size: 16rpx;
  430. color: #fff;
  431. margin: 0;
  432. line-height: 22rpx;
  433. width: 100%;
  434. }
  435. .coupon-item .oper {
  436. flex: 0 0 auto;
  437. font-size: 34rpx;
  438. color: #fff;
  439. width: 166rpx;
  440. text-align: right;
  441. display: flex;
  442. align-items: center;
  443. justify-content: center;
  444. height: 100%;
  445. position: relative;
  446. }
  447. .coupon-item .oper .dotted {
  448. position: absolute;
  449. width: 1px;
  450. left: 0;
  451. top: 20%;
  452. height: 60%;
  453. z-index: 9999999;
  454. }
  455. .coupon-item .oper cover-view {
  456. z-index: 2;
  457. }
  458. .concat-view {
  459. top: 20%;
  460. }
  461. .concat-view .icon {
  462. position: absolute;
  463. right: 6rpx;
  464. top: 6rpx;
  465. width: 27rpx;
  466. height: 27rpx;
  467. padding: 30rpx;
  468. }
  469. .concat-view .title {
  470. font-size: 36rpx;
  471. font-weight: bold;
  472. margin-bottom: 40rpx;
  473. }
  474. .concat-view .item:nth-last-child(1) {
  475. margin-top: 34rpx;
  476. }
  477. .concat-view .item .desc {
  478. line-height: 40rpx;
  479. text-align: center;
  480. font-size: 24rpx;
  481. }
  482. .commodity-ctrl {
  483. position: fixed;
  484. bottom: 218rpx;
  485. right: 40rpx;
  486. width: 140rpx;
  487. height: 140rpx;
  488. border-radius: 50%;
  489. /* background:#0075DC;
  490. box-shadow:0px 1px 6px rgba(0,0,0,0.16); */
  491. display: flex;
  492. flex-direction: column;
  493. align-items: center;
  494. justify-content: center;
  495. }
  496. .commodity-ctrl .bg {
  497. width: 130rpx;
  498. height: 130rpx;
  499. position: absolute;
  500. left: 50%;
  501. top: 50%;
  502. z-index: -1;
  503. transform: translate(-50%, -50%);
  504. }
  505. .commodity-ctrl .ig {
  506. width: 18px;
  507. height: 18px;
  508. }
  509. .commodity-ctrl cover-view {
  510. font-size: 20rpx;
  511. color: rgba(255, 255, 255, 0.88);
  512. line-height: 26rpx;
  513. width: 100%;
  514. text-align: center;
  515. }
  516. .auth-user {
  517. position: fixed;
  518. left: 0;
  519. top: 0;
  520. right: 0;
  521. bottom: 0;
  522. z-index: 8;
  523. background-color: rgba(0, 0, 0, 0.3);
  524. }
  525. .auth-user .layer {
  526. position: absolute;
  527. left: 0;
  528. bottom: 0;
  529. right: 0;
  530. background-color: #fff;
  531. border-radius: 8px 8px 0 0;
  532. padding: 52rpx 36rpx;
  533. }
  534. .auth-user .layer .title {
  535. font-size: 24rpx;
  536. color: #131D34;
  537. font-size: 30rpx;
  538. line-height: 42rpx;
  539. color: #111111;
  540. }
  541. .auth-user .layer .logo {
  542. display: block;
  543. width: 165rpx;
  544. height: 120rpx;
  545. margin: 0 auto;
  546. }
  547. .auth-user .layer .desc {
  548. text-align: center;
  549. color: #111111;
  550. font-size: 26rpx;
  551. padding: 28rpx 0 36rpx;
  552. border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  553. }
  554. .auth-user .layer .content {
  555. text-align: center;
  556. padding: 32rpx 0 86rpx;
  557. font-size: 26rpx;
  558. color: #79868F;
  559. }
  560. .auth-user .layer button {
  561. color: #fff;
  562. width: 100%;
  563. font-size: 30rpx;
  564. height: 80rpx;
  565. line-height: 80rpx;
  566. background-color: #ED5D18;
  567. }
  568. .aaaaa {
  569. position: fixed;
  570. z-index: 999;
  571. left: 50%;
  572. top: 50%;
  573. transform: translate(-50%, -50%);
  574. color: #fff;
  575. background-color: rgba(0, 0, 0, 0.7);
  576. z-index: 99999;
  577. }
  578. .test {
  579. z-index: 999;
  580. background-color: #000;
  581. color: #fff;
  582. white-space: pre-wrap;
  583. }
  584. .tp10 {
  585. margin-top: 15rpx;
  586. }
  587. .mo {
  588. position: fixed;
  589. left: 0;
  590. top: 0;
  591. width: 100%;
  592. height: 100%;
  593. background-color: rgba(0, 0, 0, 0.6);
  594. z-index: 5;
  595. }
  596. .content .diswan {
  597. background: #EBEBEB;
  598. }
  599. .content .diswan .money {
  600. color: #999999;
  601. }
  602. .content .diswan .info .full {
  603. color: #999999
  604. }
  605. .content .diswan .info button {
  606. opacity: 0.7;
  607. color: #999;
  608. }
  609. .content .diswan .info .date {
  610. color: #999;
  611. }
  612. .un-content {
  613. width: 100%;
  614. height: 100%;
  615. text-align: center;
  616. }
  617. .lay {
  618. margin-top: 180rpx;
  619. }
  620. .un-content cover-image {
  621. display: inline-block;
  622. width: 250rpx;
  623. height: 274rpx;
  624. }
  625. .un-content .text {
  626. color: #666C7D;
  627. font-size: 30rpx;
  628. margin-top: 40rpx;
  629. }
  630. .commodity-view .zz {
  631. position: absolute;
  632. left: 0;
  633. top: 0;
  634. width: 100%;
  635. height: 100%;
  636. background: rgba(0, 0, 0, 0.6);
  637. z-index: 999;
  638. }
  639. .commodity-view .dialog-layer {
  640. position: absolute;
  641. left: 0;
  642. top: 0;
  643. width: 100%;
  644. padding: 0 32rpx 10rpx;
  645. box-sizing: border-box;
  646. background-color: #fff;
  647. z-index: 9999;
  648. }
  649. .commodity-view .dialog-layer .tabctrl {
  650. right: 32rpx;
  651. }
  652. .commodity-view .dialog-layer .dialog-tabs {
  653. padding-right: 86rpx;
  654. overflow: hidden;
  655. }
  656. .commodity-view .dialog-layer .dialog-tabs .text {
  657. float: left;
  658. width: calc(33% - 10rpx);
  659. text-align: center;
  660. padding: 14rpx 0;
  661. font-size: 24rpx;
  662. color: #131D34;
  663. border: 1px solid rgba(0, 0, 0, 0.1);
  664. border-radius: 4px;
  665. margin: 10rpx 0;
  666. overflow: hidden;
  667. text-overflow: ellipsis;
  668. white-space: nowrap;
  669. }
  670. .commodity-view .dialog-layer .dialog-tabs .text.active {
  671. background-color: rgba(237, 93, 24, 1);
  672. border-color: rgba(237, 93, 24, 1);
  673. color: #fff;
  674. }
  675. .commodity-view .dialog-layer .dialog-tabs .text:nth-child(3n-1) {
  676. margin: 10rpx;
  677. }
  678. .commodity-view .tabctrl {
  679. position: absolute;
  680. right: 0;
  681. top: 0;
  682. height: 76rpx;
  683. width: 76rpx;
  684. color: #000;
  685. }