index.ttss 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299
  1. .trial-page {
  2. min-height: 100vh;
  3. background: #eceff4;
  4. font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
  5. }
  6. .page-scroll {
  7. height: 100vh;
  8. box-sizing: border-box;
  9. padding: 18rpx 0 146rpx;
  10. }
  11. .header-image {
  12. width: 678rpx;
  13. height: 300rpx;
  14. margin: 0 auto;
  15. border-radius: 40rpx;
  16. display: block;
  17. }
  18. .form-wrap {
  19. margin-top: 28rpx;
  20. padding: 0 44rpx;
  21. }
  22. .form-item {
  23. margin-bottom: 30rpx;
  24. }
  25. .label {
  26. display: block;
  27. margin-bottom: 12rpx;
  28. color: #546a88;
  29. font-size: 32rpx;
  30. font-weight: 600;
  31. }
  32. .switch-group {
  33. background: #edf1f6;
  34. border-radius: 24rpx;
  35. padding: 8rpx;
  36. display: flex;
  37. gap: 10rpx;
  38. }
  39. .switch-item {
  40. flex: 1;
  41. height: 78rpx;
  42. line-height: 78rpx;
  43. text-align: center;
  44. border-radius: 20rpx;
  45. color: #5b6f8a;
  46. font-size: 32rpx;
  47. font-weight: 600;
  48. }
  49. .switch-item-active {
  50. background: #ffffff;
  51. color: #165dff;
  52. box-shadow: 0 8rpx 18rpx rgba(15, 23, 42, 0.08);
  53. }
  54. .input {
  55. width: 100%;
  56. height: 96rpx;
  57. border-radius: 28rpx;
  58. border: 1rpx solid #e3e8f0;
  59. background: #f8fafc;
  60. box-sizing: border-box;
  61. padding: 0 24rpx;
  62. color: #1f2937;
  63. font-size: 32rpx;
  64. }
  65. .input::placeholder {
  66. color: #9ca9bc;
  67. }
  68. .phone-row {
  69. display: flex;
  70. align-items: center;
  71. gap: 10rpx;
  72. }
  73. .input-flex {
  74. flex: 1;
  75. }
  76. .code-btn {
  77. width: 210rpx;
  78. height: 82rpx;
  79. line-height: 82rpx;
  80. padding: 0;
  81. border-radius: 22rpx;
  82. border: 1rpx solid #d0def4;
  83. background: #e9f1ff;
  84. color: #165dff;
  85. font-size: 28rpx;
  86. font-weight: 600;
  87. }
  88. .code-btn[disabled] {
  89. color: #9ca9bc;
  90. border-color: #dfe6f0;
  91. background: #edf2f8;
  92. }
  93. .code-btn::after {
  94. border: none;
  95. }
  96. .submit-btn {
  97. margin-top: 8rpx;
  98. width: 100%;
  99. height: 98rpx;
  100. border-radius: 49rpx;
  101. background: #2f69df;
  102. color: #ffffff;
  103. font-size: 34rpx;
  104. font-weight: 700;
  105. border: none;
  106. box-shadow: 0 14rpx 30rpx rgba(47, 105, 223, 0.28);
  107. }
  108. .submit-btn::after {
  109. border: none;
  110. }
  111. .tips-box {
  112. margin-top: 26rpx;
  113. margin-bottom: 20rpx;
  114. border-radius: 34rpx;
  115. border: 1rpx solid #d0def1;
  116. background: #edf3fa;
  117. padding: 22rpx;
  118. }
  119. .tips-title {
  120. display: block;
  121. color: #165dff;
  122. font-size: 32rpx;
  123. font-weight: 700;
  124. margin-bottom: 8rpx;
  125. }
  126. .tips-line {
  127. display: block;
  128. margin-top: 8rpx;
  129. color: #5b6f8a;
  130. font-size: 28rpx;
  131. line-height: 1.7;
  132. }
  133. .tips-line-inline {
  134. display: flex;
  135. flex-wrap: wrap;
  136. align-items: center;
  137. }
  138. .tips-link {
  139. color: #165dff;
  140. text-decoration: underline;
  141. margin: 0 6rpx;
  142. }
  143. .img-code-mask {
  144. position: fixed;
  145. left: 0;
  146. right: 0;
  147. top: 0;
  148. bottom: 0;
  149. z-index: 99;
  150. background: rgba(0, 0, 0, 0.45);
  151. display: flex;
  152. align-items: center;
  153. justify-content: center;
  154. padding: 0 30rpx;
  155. box-sizing: border-box;
  156. }
  157. .img-code-dialog {
  158. width: 100%;
  159. max-width: 660rpx;
  160. background: #ffffff;
  161. border-radius: 18rpx;
  162. padding: 30rpx 26rpx 26rpx;
  163. position: relative;
  164. }
  165. .img-code-close {
  166. position: absolute;
  167. right: 16rpx;
  168. top: 8rpx;
  169. width: 52rpx;
  170. height: 52rpx;
  171. line-height: 52rpx;
  172. text-align: center;
  173. font-size: 44rpx;
  174. color: #8d98a8;
  175. }
  176. .img-code-title {
  177. display: block;
  178. text-align: center;
  179. color: #2c3e50;
  180. font-size: 32rpx;
  181. font-weight: 600;
  182. margin-bottom: 24rpx;
  183. }
  184. .img-code-content {
  185. display: flex;
  186. align-items: center;
  187. gap: 14rpx;
  188. }
  189. .img-code-input {
  190. flex: 1;
  191. height: 88rpx;
  192. background: #f4f6fa;
  193. border: 1rpx solid #e4e9f2;
  194. border-radius: 10rpx;
  195. box-sizing: border-box;
  196. padding: 0 20rpx;
  197. color: #2c3e50;
  198. font-size: 32rpx;
  199. }
  200. .img-code-right {
  201. width: 250rpx;
  202. }
  203. .img-code-image {
  204. width: 250rpx;
  205. height: 88rpx;
  206. border-radius: 10rpx;
  207. border: 1rpx solid #dfe6f2;
  208. background: #ffffff;
  209. }
  210. .img-code-refresh {
  211. display: block;
  212. text-align: center;
  213. color: #8b96a7;
  214. font-size: 28rpx;
  215. margin-top: 14rpx;
  216. }
  217. .video-mask {
  218. position: fixed;
  219. left: 0;
  220. right: 0;
  221. top: 0;
  222. bottom: 0;
  223. z-index: 130;
  224. background: #000000;
  225. }
  226. .video-close {
  227. position: absolute;
  228. top: 44rpx;
  229. right: 28rpx;
  230. z-index: 131;
  231. min-width: 112rpx;
  232. height: 64rpx;
  233. line-height: 64rpx;
  234. padding: 0 20rpx;
  235. text-align: center;
  236. border-radius: 32rpx;
  237. background: rgba(0, 0, 0, 0.45);
  238. color: #ffffff;
  239. font-size: 28rpx;
  240. }
  241. .trial-video-fullscreen {
  242. width: 100vw;
  243. height: 100vh;
  244. }
  245. .submit-tip {
  246. position: fixed;
  247. left: 50%;
  248. top: 50%;
  249. transform: translate(-50%, -50%);
  250. max-width: 620rpx;
  251. background: rgba(0, 0, 0, 0.78);
  252. border-radius: 12rpx;
  253. padding: 14rpx 20rpx;
  254. z-index: 120;
  255. box-sizing: border-box;
  256. }
  257. .submit-tip-text {
  258. display: block;
  259. color: #ffffff;
  260. font-size: 24rpx;
  261. line-height: 1.5;
  262. text-align: center;
  263. }