login.wxss 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. /* pages/login/login.wxss */
  2. Page {
  3. background-color: #fff;
  4. }
  5. .login {
  6. display: flex;
  7. align-items: center;
  8. flex-direction: column;
  9. }
  10. .login .img {
  11. width: 488rpx;
  12. height: 120rpx;
  13. padding-top: 218rpx;
  14. margin-bottom: 200rpx;
  15. }
  16. .login .phone-btn {
  17. width: 690rpx;
  18. margin-bottom: 30rpx;
  19. background: rgba(255, 255, 255, 1);
  20. border-radius: 2rpx;
  21. border: 2rpx solid rgba(5, 193, 95, 1);
  22. font-size: 36rpx;
  23. font-family: PingFangSC-Regular;
  24. font-weight: 400;
  25. color: rgba(5, 193, 95, 1);
  26. }
  27. .login .wx-btn {
  28. width: 690rpx;
  29. margin-bottom: 30rpx;
  30. background: rgba(5, 193, 95, 1);
  31. border-radius: 2rpx;
  32. font-size: 36rpx;
  33. font-family: PingFangSC-Regular;
  34. font-weight: 400;
  35. color: rgba(255, 255, 255, 1);
  36. text-align: center;
  37. border: 2rpx solid rgba(5, 193, 95, 1);
  38. }
  39. .login .no-login-btn {
  40. width: 232rpx;
  41. height: 64rpx;
  42. line-height: 36rpx;
  43. background: rgba(246, 246, 246, 1);
  44. border-radius: 44rpx;
  45. font-size: 28rpx;
  46. font-family: PingFangSC-Regular;
  47. font-weight: 400;
  48. color: rgba(255, 179, 85, 1);
  49. }
  50. .mask {
  51. position: fixed;
  52. top: 0;
  53. left: 0;
  54. bottom: 0;
  55. right: 0;
  56. z-index: 9999;
  57. min-height: 375rpx;
  58. background-color: rgba(0, 0, 0, 0.6);
  59. display: flex;
  60. align-items: center;
  61. flex-direction: column;
  62. }
  63. .authorize-toast-wrap {
  64. display: flex;
  65. align-items: center;
  66. flex-direction: column;
  67. background-color: #ffffff;
  68. margin: 200rpx 46rpx;
  69. }
  70. .authorize-toast-wrap .head-line {
  71. font-size: 36rpx;
  72. font-family: PingFangSC-Medium;
  73. font-weight: 500;
  74. color: rgba(34, 34, 34, 1);
  75. height: 90rpx;
  76. line-height: 90rpx;
  77. width: 100%;
  78. text-align: center;
  79. border-bottom: 1rpx solid #dedede;
  80. margin-bottom: 30rpx;
  81. }
  82. .authorize-toast-wrap .txt {
  83. font-size: 28rpx;
  84. font-family: PingFangSC-Regular;
  85. font-weight: 400;
  86. color: rgba(153, 153, 153, 1);
  87. }
  88. .authorize-toast-wrap .tip-img {
  89. width: 464rpx;
  90. height: 396rpx;
  91. margin: 60rpx 96rpx;
  92. }
  93. .authorize-toast-wrap .auth-btn {
  94. width: 544rpx;
  95. height: 88rpx;
  96. background: rgba(5, 193, 95, 1);
  97. border-radius: 4rpx;
  98. font-size: 36rpx;
  99. font-family: PingFangSC-Regular;
  100. font-weight: 400;
  101. color: rgba(255, 255, 255, 1);
  102. margin-bottom: 60rpx;
  103. }