login.scss 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. .title{
  2. padding-top: 160rpx;
  3. font-size: 50rpx;
  4. color: #FFF;
  5. text-align: center;
  6. margin-bottom: 90rpx;
  7. }
  8. .u-form-item{
  9. color: #fff;
  10. border: 1px solid rgba(255,255,255,.5);
  11. border-radius: 62rpx;
  12. padding-left: 65rpx;
  13. margin-bottom: 36rpx;
  14. /deep/ input{
  15. color: #fff;
  16. }
  17. /deep/ .u-iconfont{
  18. color: rgba(255, 255, 255, 0.5)!important;
  19. font-size: 40rpx!important;
  20. top: 6rpx!important;
  21. }
  22. }
  23. .pass-tool{
  24. padding: 0 32rpx;
  25. color: #fff;
  26. display: flex;
  27. align-items: center;
  28. justify-content: space-between;
  29. margin-bottom: 70rpx;
  30. /deep/ .u-checkbox__label{
  31. color: #fff;
  32. }
  33. }
  34. .login-btn{
  35. position: relative;
  36. height: 118rpx;
  37. line-height: 118rpx;
  38. // background: #6BDAED url(../../static/img/login-btn.png) no-repeat;
  39. background-color: #6BDAED;
  40. background-size: contain;
  41. text-align: center;
  42. font-size: 32rpx;
  43. letter-spacing: 1px;
  44. color: #fff;
  45. border-radius: 80rpx;
  46. overflow: hidden;
  47. &::after{
  48. content: '';
  49. width: 40%;
  50. height: 100%;
  51. background-color: #78E0F1;
  52. position: absolute;
  53. right: -8%;
  54. bottom: 0;
  55. transform: skewX(310deg);
  56. }
  57. }
  58. .pages{
  59. position: relative;
  60. height: 100vh;
  61. background-color: #008CFF;
  62. background-image:url(../../static/img/login-top-bg.png),url(../../static/img/login-bottom-bg.png);
  63. background-repeat: no-repeat;
  64. background-size: 987rpx 626rpx,737rpx 519rpx;
  65. background-position: -69rpx -228rpx,0 bottom;
  66. }