index.wxss 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. @import "/css/form.wxss";
  2. /* 根目录按钮样式 */
  3. .login-custom-class {
  4. font-size: 42rpx !important;
  5. font-family: PingFangSC-Medium, PingFang SC !important;
  6. font-weight: 500;
  7. line-height: 58rpx;
  8. box-shadow: 0px 0px 20rpx 0px rgba(0, 0, 0, 0.2);
  9. }
  10. /* 输入提示定位 */
  11. .input_text_tips {
  12. position: absolute;
  13. top: 0;
  14. left: 200rpx;
  15. transform: translate(0, -63%);
  16. }
  17. /* logo */
  18. .login_logo {
  19. display: block;
  20. width: 186rpx !important;
  21. height: 160rpx !important;
  22. margin: 60rpx auto 0;
  23. }
  24. /* 按钮 */
  25. .input_text_but {
  26. width: 340rpx;
  27. height: 98rpx;
  28. margin: 70rpx auto 0;
  29. border-radius: 49rpx;
  30. }
  31. /* 跳过 */
  32. .jump-over {
  33. display: flex;
  34. justify-content: center;
  35. width: 100vw;
  36. font-size: 32rpx;
  37. margin-top: 15rpx;
  38. color: #000000;
  39. opacity: .5;
  40. }
  41. /* 用户隐私协议 */
  42. .rules {
  43. height: 44rpx;
  44. font-size: 24rpx;
  45. font-family: PingFangSC-Regular, PingFang SC;
  46. line-height: 44rpx;
  47. width: 100%;
  48. display: flex;
  49. justify-content: center;
  50. align-items: center;
  51. margin-top: -15rpx;
  52. color: #4CBECF;
  53. margin-bottom: -40rpx;
  54. }
  55. .rules .view {
  56. margin-left: -20rpx;
  57. }
  58. .rules text {
  59. text-decoration: underline;
  60. }