login.scss 1.3 KB

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