login.scss 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. .pw-login-wrap, .forget-wrap, .apply-wrap{
  2. background-color: #FFFFFF;
  3. width: 100%;
  4. height: 100vh;
  5. box-sizing: border-box;
  6. position: relative;
  7. .logo{
  8. display: flex;
  9. justify-content: center;
  10. padding-top: 20vh;
  11. padding-bottom: 100upx;
  12. }
  13. .login-form{
  14. display: block;
  15. width: 80%;
  16. margin: 0 auto;
  17. .form-item{
  18. margin-bottom: 20upx;
  19. position: relative;
  20. display: flex;
  21. align-items: center;
  22. border: 1upx solid #dcdee2;
  23. border-radius: 80upx;
  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: 14upx 20upx;
  36. }
  37. .getcode-btn{
  38. position: absolute;
  39. right: 0upx;
  40. top: 0;
  41. font-size: 24upx;
  42. background: #999;
  43. color: #FFFFFF;
  44. border: 0;
  45. border-top-left-radius: 0;
  46. border-bottom-left-radius: 0;
  47. line-height: 3;
  48. z-index: 10;
  49. }
  50. }
  51. .flex-box{
  52. display: flex;
  53. justify-content: space-between;
  54. font-size: 26upx;
  55. }
  56. .form-btn-con{
  57. margin-top: 60upx;
  58. .form-btn{
  59. font-size: 32upx;
  60. display: block;
  61. line-height: 75upx;
  62. margin: 0 auto;
  63. background-color: #07c160;
  64. color: #fff;
  65. }
  66. uni-button.form-btn:after{
  67. border: none;
  68. }
  69. .apply-btn{
  70. display: block;
  71. text-align: center;
  72. margin-top: 50upx;
  73. }
  74. }
  75. }
  76. .ysxy{
  77. font-size: 24upx;
  78. text-align: center;
  79. width: 100%;
  80. position: absolute;
  81. bottom: 160upx;
  82. left: 0;
  83. text{
  84. color: #00aaff;
  85. }
  86. }
  87. }