login.scss 1.3 KB

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