scan.wxss 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190
  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. /* --nav-bar-icon-color: black !important; */
  9. display: flex;
  10. flex-direction: column;
  11. align-items: center;
  12. width: 100%;
  13. height: 100vh;
  14. overflow: hidden;
  15. position: relative;
  16. }
  17. .bg-image {
  18. width: 100vw;
  19. display: block;
  20. position: absolute;
  21. top: 0;
  22. left: 0;
  23. z-index: -1;
  24. }
  25. .scan-body {
  26. display: flex;
  27. flex-direction: column;
  28. align-items: center;
  29. width: 100%;
  30. height: 100vh;
  31. }
  32. .nav-bar {
  33. width: 100vw;
  34. background-color: transparent !important;
  35. background: transparent !important;
  36. position: sticky;
  37. top: 0;
  38. left: 0;
  39. }
  40. .scan-content {
  41. display: flex;
  42. flex: 1;
  43. flex-direction: column;
  44. justify-content: center;
  45. align-items: center;
  46. width: 100%;
  47. position: relative;
  48. }
  49. .bg-phone-image {
  50. width: 480rpx;
  51. display: block;
  52. }
  53. .scan-tips {
  54. font-size: 24rpx;
  55. color: #6C6970;
  56. width: 480rpx;
  57. text-align: center;
  58. position: absolute;
  59. left: 135rpx;
  60. top: 740rpx;
  61. }
  62. .scan-btn-box {
  63. position: absolute;
  64. left: 60rpx;
  65. bottom: 250rpx;
  66. width: 630rpx;
  67. height: 90rpx;
  68. display: flex;
  69. border-radius: 45rpx;
  70. flex-direction: row;
  71. align-items: center;
  72. justify-content: center;
  73. background: linear-gradient(315deg, #0ABCA4 0%, rgba(11, 195, 170, 0.8) 100%);
  74. }
  75. .scan-btn-box image {
  76. width: 40rpx;
  77. height: 40rpx;
  78. display: block;
  79. }
  80. .scan-btn-box text {
  81. font-size: 32rpx;
  82. margin-left: 20rpx;
  83. color: #FFFFFF;
  84. }
  85. .scan-btn-box:active {
  86. opacity: 0.7;
  87. }
  88. .bottom-view-privacy {
  89. position: absolute;
  90. left: 0;
  91. bottom: 400rpx;
  92. width: 100vw;
  93. display: flex;
  94. margin-top: 42rpx;
  95. justify-content: center;
  96. flex-direction: row;
  97. flex-wrap: wrap;
  98. align-items: center;
  99. }
  100. .privacy-checkbox {
  101. display: flex;
  102. flex-direction: row;
  103. align-items: center;
  104. }
  105. .privacy-checkbox-icon {
  106. width: 36rpx;
  107. height: 36rpx;
  108. }
  109. .privacy-detail-btn {
  110. font-size: 24rpx;
  111. margin-left: 16rpx;
  112. color: #888888;
  113. }
  114. .privacy-detail-btn_tk {
  115. font-size: 24rpx;
  116. color: #0BC3AA;
  117. }
  118. .tips-box {
  119. display: flex;
  120. flex-direction: column;
  121. align-items: center;
  122. }
  123. .tips-content {
  124. width: 630rpx;
  125. min-height: 566rpx;
  126. background: linear-gradient(180deg, #C7DAFF 0%, #FFFFFF 37%, #FFFFFF 100%);
  127. border-radius: 16rpx 16rpx 16rpx 16rpx;
  128. display: flex;
  129. flex-direction: column;
  130. align-items: center;
  131. }
  132. .tips-contentB {
  133. width: 630rpx;
  134. min-height: 566rpx;
  135. background: linear-gradient(180deg, #CCFFF8 0%, #FFFFFF 37%, #FFFFFF 100%);
  136. border-radius: 16rpx 16rpx 16rpx 16rpx;
  137. display: flex;
  138. flex-direction: column;
  139. align-items: center;
  140. }
  141. .tips-close-btn {
  142. display: flex;
  143. flex-direction: column;
  144. justify-content: center;
  145. align-items: center;
  146. height: 116rpx;
  147. width: 116rpx;
  148. }
  149. .ic-tips {
  150. margin-top: 42rpx;
  151. height: 200rpx;
  152. width: 200rpx;
  153. }
  154. .tips-title {
  155. margin-top: 40rpx;
  156. color: #3E3D44;
  157. font-size: 32rpx;
  158. }
  159. .tips-desc {
  160. width: calc(100% - 72rpx);
  161. margin-top: 30rpx;
  162. margin-left: auto;
  163. margin-right: auto;
  164. margin-bottom: 40rpx;
  165. color: #6C6970;
  166. font-size: 24rpx;
  167. }