login.scss 2.2 KB

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