login.wxss 1.8 KB

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