download.less 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. /* pages/download/download.wxss */
  2. page {
  3. height: 100vh;
  4. display: flex;
  5. flex-direction: column;
  6. background: #F4F4F4;
  7. }
  8. .pageInfo {
  9. height: 100%;
  10. display: flex;
  11. flex-direction: column;
  12. }
  13. .record-content {
  14. display: flex;
  15. flex-direction: column;
  16. width: 100%;
  17. flex: 1;
  18. overflow-y: auto;
  19. }
  20. .record-list {
  21. flex: 1;
  22. overflow-y: scroll;
  23. box-sizing: border-box;
  24. }
  25. .container {
  26. background: url('https://oss.dayaedu.com/ktyq/1733231022871.png') no-repeat top center;
  27. background-size: contain;
  28. background-color: #FFFFFF;
  29. .section {
  30. display: flex;
  31. align-items: center;
  32. flex-direction: column;
  33. padding: 414rpx 20rpx 190rpx;
  34. }
  35. .qrCodeImg {
  36. width: 296rpx;
  37. height: 296rpx;
  38. }
  39. .func {
  40. width: 100%;
  41. margin: 23px 0 0;
  42. }
  43. .btnGroup {
  44. position: fixed;
  45. bottom: 0;
  46. left: 0;
  47. right: 0;
  48. width: 100%;
  49. padding: 16px 20px 30px;
  50. background: linear-gradient( 180deg, rgba(255,255,255,0) 0%, #FFFFFF 50%, #FFFFFF 100%);
  51. box-sizing: border-box;
  52. .btnImg {
  53. width: 100%;
  54. &:active {
  55. opacity: 0.7;
  56. }
  57. }
  58. }
  59. }