login.wxss 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  1. /* pages/login/login.wxss */
  2. page {
  3. position: relative;
  4. width: 100%;
  5. height: 100%;
  6. }
  7. .login-container {
  8. position: relative;
  9. height: 100%;
  10. width: 100%;
  11. padding-top: 50%;
  12. box-sizing: border-box;
  13. }
  14. image {
  15. display: block;
  16. width: 150rpx;
  17. height: 150rpx;
  18. margin: auto;
  19. border-radius: 50%;
  20. }
  21. view.msg {
  22. font-size: 24rpx;
  23. color: #666;
  24. width: 100%;
  25. text-align: center;
  26. margin-top: 10rpx;
  27. }
  28. view.title {
  29. font-size: 28rpx;
  30. color: #333;
  31. width: 100%;
  32. text-align: center;
  33. margin-top: 20rpx;
  34. }
  35. button {
  36. margin-top: 30rpx;
  37. width: 450rpx;
  38. height: 85rpx;
  39. line-height: 85rpx;
  40. color: #fff;
  41. }
  42. .button-hover {
  43. background-color: #fff;
  44. color: #0ab906;
  45. }
  46. button::after{
  47. border: 0 !important;
  48. }
  49. .authorized-btn {
  50. width: 88%;
  51. margin: 0 auto;
  52. text-align: center;
  53. background-color: #0ab906;
  54. border: 1rpx solid #0ab906;
  55. color: #fff;
  56. border-radius: 6rpx;
  57. font-size: 26rpx;
  58. }
  59. .hole-btn{
  60. color: #0ab906;
  61. background-color: #fff;
  62. }
  63. .login-phone {
  64. width: 100%;
  65. margin: 30rpx auto;
  66. }
  67. .login-bottom {
  68. position: absolute;
  69. bottom: 5%;
  70. left: 6%;
  71. display: flex;
  72. justify-content: space-between;
  73. width: 88%;
  74. }
  75. .bottom-btn {
  76. background: #fff;
  77. border: 1rpx solid #e43130;
  78. color: #e43130;
  79. }
  80. .bottom-btn:last-child {
  81. margin-left: 6%;
  82. color: #000;
  83. border: 1rpx solid #000;
  84. }
  85. .bind-tips {
  86. position: absolute;
  87. z-index: 2;
  88. width: 100%;
  89. height: 100%;
  90. top: 20%;
  91. left: 0;
  92. }
  93. .user-info{
  94. margin: auto;
  95. }
  96. .head-img{
  97. display:block;
  98. overflow:hidden;
  99. border-radius: 50%;
  100. width: 156rpx;
  101. height: 156rpx;
  102. margin: 0 auto;
  103. }
  104. .userNickName{
  105. display:block;
  106. margin: 20rpx 0 180rpx 0;
  107. text-align: center;
  108. }