login.scss 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. .content{
  2. width: 100vw;
  3. height: 100vh;
  4. background: url('../../static/u5.png') no-repeat top center ;
  5. background-size: 140%;
  6. box-sizing: border-box;
  7. }
  8. .setting{
  9. position: absolute;
  10. top: 80rpx;
  11. right: 40rpx;
  12. }
  13. .content{
  14. // position: fixed;
  15. // height: 100%;
  16. }
  17. .login-title{
  18. position: absolute;
  19. bottom: 40%;
  20. width: 100%;
  21. text-align: center;
  22. }
  23. .login-title label{
  24. display: block;
  25. color: #fff;
  26. font-size: 50rpx;
  27. padding-bottom: 22rpx;
  28. }
  29. .login-title text{
  30. color: #fff;
  31. font-size: 32rpx;
  32. }
  33. //登录输入区域
  34. .login-content{
  35. width: 100%;
  36. height: 35%;
  37. position: fixed;
  38. bottom:0;
  39. background-color: #fff;
  40. border-top-right-radius: 35rpx;
  41. border-top-left-radius: 35rpx;
  42. left: 0;
  43. right: 0;
  44. .password-memo{
  45. text-align: center;
  46. padding-top: 10rpx;
  47. /deep/uni-checkbox .uni-checkbox-input {
  48. border-radius: 0 !important;
  49. }
  50. }
  51. button{
  52. // background-color: $j-primary-green;
  53. background-color: #157A2C;
  54. color: #fff;
  55. margin-top: 40rpx;
  56. height: 90rpx;
  57. line-height: 90rpx;
  58. font-size: 32rpx;
  59. &[disabled]{
  60. background-color: rgba($color: #157A2C, $alpha: 0.5);
  61. }
  62. }
  63. .form{
  64. position: absolute;
  65. width:80%;
  66. left: 50%;
  67. transform: translateX(-50%);
  68. }
  69. .login-input{
  70. height: 130rpx;
  71. line-height: 130rpx;
  72. border-bottom: 1rpx solid $uni-border-color;
  73. display: flex;
  74. flex-direction: row;
  75. justify-content: flex-start;
  76. align-items: flex-start;
  77. span{
  78. margin-top: 12rpx;
  79. }
  80. .icon-lable{
  81. width: 45rpx;
  82. height: 100%;
  83. background:url(../../static/acount.png) no-repeat left 65%;
  84. background-size: 35rpx;
  85. }
  86. .icon-lable2{
  87. width: 45rpx;
  88. height: 100%;
  89. background:url(../../static/password.png) no-repeat left 65%;
  90. background-size: 35rpx;
  91. }
  92. input{
  93. height: 160rpx;
  94. font-size: 28rpx;
  95. color: $uni-text-color;
  96. }
  97. }
  98. }