login.scss 1.9 KB

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