login.scss 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  1. .login-h5 {
  2. box-sizing: border-box;
  3. background: #ffffff;
  4. padding: 17px 0;
  5. min-height: 100%;
  6. display: flex;
  7. flex-direction: column;
  8. .login {
  9. &-title {
  10. flex-direction: column;
  11. align-items: flex-start;
  12. padding: 60px 0 18px;
  13. p {
  14. padding-left: 0;
  15. font-size: 27px;
  16. line-height: 40px;
  17. }
  18. }
  19. &-form {
  20. flex: 1;
  21. &-item {
  22. font-size: 18px;
  23. }
  24. &-footer {
  25. display: flex;
  26. justify-content: center;
  27. padding: 14px 0;
  28. a {
  29. font-size: 16px;
  30. line-height: 27px;
  31. &::before {
  32. display: none;
  33. }
  34. }
  35. }
  36. }
  37. &-main {
  38. padding: 0;
  39. &-content {
  40. padding: 0 23px;
  41. background: url("@/static/login-bg.png") no-repeat;
  42. background-size: 65%;
  43. background-position-x: right;
  44. align-items: flex-start;
  45. }
  46. .checked-text {
  47. font-size: 14px;
  48. }
  49. }
  50. &-btn {
  51. padding-top: 16px;
  52. margin-bottom: 0;
  53. }
  54. &-footer {
  55. background: none;
  56. padding: 10px 10px;
  57. &-list {
  58. flex: 1;
  59. display: flex;
  60. &-item {
  61. flex: 1;
  62. display: flex;
  63. background-size: 100% 100%;
  64. border: solid #96C3FF 1px;
  65. &:last-child {
  66. background-size: 100% 100%;
  67. }
  68. &-link {
  69. flex: 1;
  70. display: flex;
  71. justify-content: space-around;
  72. align-items: center;
  73. box-sizing: border-box;
  74. padding: 20px;
  75. .span {
  76. padding: 5px 20px;
  77. background: #147AFF;
  78. box-shadow: 0 4px 5px 0 rgba(255, 255, 255, 0.70), 0 3px 8px 0 rgba(20, 122, 255, 0.55);
  79. border-radius: 30.5px;
  80. display: flex;
  81. align-items: center;
  82. justify-content: center;
  83. .text {
  84. font-family: PingFangSC-Regular;
  85. font-weight: 400;
  86. font-size: 15px;
  87. color: #FFFFFF;
  88. letter-spacing: 0;
  89. }
  90. }
  91. .aside {
  92. display: flex;
  93. flex-direction: column;
  94. .h1 {
  95. font-family: PingFangSC-Regular;
  96. font-size: 16px;
  97. color: #000000;
  98. letter-spacing: 0;
  99. }
  100. .sub {
  101. align-self: flex-end;
  102. }
  103. }
  104. }
  105. }
  106. }
  107. }
  108. }
  109. }