style.scss 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. // 操作按钮
  2. .form-btn {
  3. width: 100%;
  4. height: 90rpx;
  5. color: white;
  6. font-size: $wk-font-large;
  7. text-align: center;
  8. line-height: 90rpx;
  9. border-radius: 45rpx;
  10. margin-top: 70rpx;
  11. }
  12. // 返回按钮
  13. .back-box {
  14. font-size: $wk-font-large;
  15. line-height: 1;
  16. margin: 25rpx 0;
  17. @include left;
  18. .wk {
  19. font-size: 46rpx;
  20. color: #6d6d6d;
  21. transform: rotate(180deg);
  22. margin-right: 10rpx;
  23. }
  24. }
  25. .logo-box {
  26. width: 138rpx;
  27. height: 138rpx;
  28. box-shadow: 4rpx 4rpx 24rpx rgba(108, 108, 108, 0.16);
  29. background-color: white;
  30. border-radius: 28rpx;
  31. margin: 50rpx auto 0;
  32. @include center;
  33. .logo {
  34. width: 90rpx;
  35. height: 90rpx;
  36. }
  37. }
  38. .app-name {
  39. width: 100%;
  40. font-size: 42rpx;
  41. text-align: center;
  42. margin-top: 20rpx;
  43. }
  44. .subhead {
  45. width: 100%;
  46. font-size: $wk-font-base;
  47. color: $gray;
  48. text-align: center;
  49. margin: 10rpx 0;
  50. }
  51. .wx-self-cloud {
  52. position: fixed;
  53. bottom: 130rpx;
  54. bottom: calc(130rpx + constant(safe-area-inset-bottom));
  55. bottom: calc(130rpx + env(safe-area-inset-bottom));
  56. left: 50%;
  57. transform: translateX(-50%);
  58. width: 180rpx;
  59. height: 66rpx;
  60. font-size: $wk-font-base;
  61. color: $theme-color;
  62. border-radius: 66rpx;
  63. border: 1rpx solid $theme-color;
  64. @include center;
  65. }
  66. .law {
  67. position: fixed;
  68. bottom: 15rpx;
  69. // bottom: calc(20rpx + constant(safe-area-inset-bottom));
  70. // bottom: calc(20rpx + env(safe-area-inset-bottom));
  71. left: 0;
  72. width: 100%;
  73. font-size: $wk-font-mini;
  74. color: $gray;
  75. text-align: center;
  76. padding-left: 10rpx;
  77. margin: 30rpx auto;
  78. @include center;
  79. .icon {
  80. color: #e1e1e1;
  81. font-size: 28rpx;
  82. margin-right: 15rpx;
  83. &.active {
  84. color: $theme-color;
  85. }
  86. }
  87. .special {
  88. color: inherit;
  89. padding: 0 5rpx;
  90. }
  91. }