login.scss 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  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: 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: 16upx 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. }
  47. }
  48. .flex-box{
  49. display: flex;
  50. justify-content: space-between;
  51. font-size: 26upx;
  52. }
  53. .form-btn-con{
  54. margin-top: 60upx;
  55. .form-btn{
  56. font-size: 32upx;
  57. display: block;
  58. line-height: 75upx;
  59. margin: 0 auto;
  60. background-color: #07c160;
  61. color: #fff;
  62. }
  63. uni-button.form-btn:after{
  64. border: none;
  65. }
  66. .apply-btn{
  67. display: block;
  68. text-align: center;
  69. margin-top: 50upx;
  70. }
  71. }
  72. }
  73. .authUserYs{
  74. text-align: center;
  75. position: absolute;
  76. bottom: 5%;
  77. width: 100%;
  78. font-size: 24upx;
  79. text{
  80. color: #ff0000;
  81. }
  82. }
  83. }