login.scss 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. .pw-login-wrap, .forget-wrap, .apply-wrap{
  2. background-color: #FFFFFF;
  3. width: 100%;
  4. height: 100vh;
  5. box-sizing: border-box;
  6. position: relative;
  7. .logo{
  8. display: flex;
  9. justify-content: center;
  10. padding: 100upx 0;
  11. }
  12. .login-form{
  13. display: block;
  14. width: 80%;
  15. margin: 0 auto;
  16. .form-item{
  17. margin-bottom: 20upx;
  18. position: relative;
  19. display: flex;
  20. align-items: center;
  21. border: 1upx solid #dcdee2;
  22. border-radius: 15upx;
  23. .require-tip{
  24. position: absolute;
  25. left: 0;
  26. top: 26upx;
  27. color: red;
  28. }
  29. .item-inp{
  30. flex-grow: 1;
  31. }
  32. .item-inp, .item-picker{
  33. font-size: 30upx;
  34. padding: 14upx 20upx;
  35. }
  36. .getcode-btn{
  37. position: absolute;
  38. right: 0upx;
  39. top: 0;
  40. font-size: 24upx;
  41. background: #999;
  42. color: #FFFFFF;
  43. border: 0;
  44. border-top-left-radius: 0;
  45. border-bottom-left-radius: 0;
  46. line-height: 3;
  47. z-index: 10;
  48. }
  49. }
  50. .flex-box{
  51. display: flex;
  52. justify-content: space-between;
  53. font-size: 26upx;
  54. }
  55. .form-btn-con{
  56. margin-top: 60upx;
  57. .form-btn{
  58. font-size: 32upx;
  59. display: block;
  60. line-height: 75upx;
  61. margin: 0 auto;
  62. background-color: #07c160;
  63. color: #fff;
  64. }
  65. uni-button.form-btn:after{
  66. border: none;
  67. }
  68. .apply-btn{
  69. display: block;
  70. text-align: center;
  71. margin-top: 50upx;
  72. }
  73. }
  74. }
  75. .ysxy{
  76. font-size: 24upx;
  77. text-align: center;
  78. width: 100%;
  79. position: absolute;
  80. bottom: 160upx;
  81. left: 0;
  82. text{
  83. color: #07c160;
  84. }
  85. }
  86. }