login.scss 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  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: 150upx;
  9. height: 150upx;
  10. padding-top: 120upx;
  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: #2ab4e5;
  58. // background-color: #298bf2;
  59. color: #fff;
  60. }
  61. uni-button.form-btn:after{
  62. border: none;
  63. }
  64. .apply-btn{
  65. display: block;
  66. text-align: center;
  67. margin-top: 50upx;
  68. }
  69. }
  70. }
  71. .authUserYs{
  72. text-align: center;
  73. position: absolute;
  74. bottom: 5%;
  75. width: 100%;
  76. font-size: 24upx;
  77. text{
  78. color: #ff0000;
  79. }
  80. }
  81. }