loginPw.scss 1.3 KB

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