scan.wxss 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  1. /* page {
  2. background-repeat: no-repeat;
  3. background-size: 100% 100%;
  4. -moz-background-size: 100% 100%;
  5. background-color: #333;
  6. } */
  7. .container {
  8. display: flex;
  9. flex-direction: column;
  10. align-items: center;
  11. width: 100%;
  12. height: 100vh;
  13. overflow: hidden;
  14. position: relative;
  15. }
  16. .bg-image {
  17. width: 100vw;
  18. display: block;
  19. position: absolute;
  20. top: 0;
  21. left: 0;
  22. z-index: -1;
  23. }
  24. .scan-body {
  25. display: flex;
  26. flex-direction: column;
  27. align-items: center;
  28. width: 100%;
  29. height: 100vh;
  30. }
  31. .nav-bar {
  32. width: 100vw;
  33. background-color: transparent !important;
  34. background: transparent !important;
  35. position: sticky;
  36. top: 0;
  37. left: 0;
  38. }
  39. .scan-content {
  40. display: flex;
  41. flex: 1;
  42. flex-direction: column;
  43. justify-content: center;
  44. align-items: center;
  45. width: 100%;
  46. position: relative;
  47. }
  48. .bg-phone-image {
  49. width: 480rpx;
  50. display: block;
  51. }
  52. .scan-tips {
  53. font-size: 24rpx;
  54. color: #6C6970;
  55. width: 480rpx;
  56. text-align: center;
  57. position: absolute;
  58. left: 135rpx;
  59. top: 740rpx;
  60. }
  61. .scan-btn-box {
  62. position: absolute;
  63. left: 60rpx;
  64. bottom: 250rpx;
  65. width: 630rpx;
  66. height: 90rpx;
  67. display: flex;
  68. border-radius: 45rpx;
  69. flex-direction: row;
  70. align-items: center;
  71. justify-content: center;
  72. background: linear-gradient(315deg, #0ABCA4 0%, rgba(11, 195, 170, 0.8) 100%);
  73. }
  74. .scan-btn-box image {
  75. width: 40rpx;
  76. height: 40rpx;
  77. display: block;
  78. }
  79. .scan-btn-box text {
  80. font-size: 32rpx;
  81. margin-left: 20rpx;
  82. color: #FFFFFF;
  83. }
  84. .scan-btn-box:active {
  85. opacity: 0.7;
  86. }
  87. .bottom-view-privacy {
  88. position: absolute;
  89. left: 0;
  90. bottom: 400rpx;
  91. width: 100vw;
  92. display: flex;
  93. margin-top: 42rpx;
  94. justify-content: center;
  95. flex-direction: row;
  96. flex-wrap: wrap;
  97. align-items: center;
  98. }
  99. .privacy-checkbox {
  100. display: flex;
  101. flex-direction: row;
  102. align-items: center;
  103. }
  104. .privacy-checkbox-icon {
  105. width: 36rpx;
  106. height: 36rpx;
  107. }
  108. .privacy-detail-btn {
  109. font-size: 24rpx;
  110. margin-left: 16rpx;
  111. color: #888888;
  112. }
  113. .privacy-detail-btn_tk {
  114. font-size: 24rpx;
  115. color: #0BC3AA;
  116. }