login.scss 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. .login {
  2. &-main {
  3. flex: 1;
  4. display: flex;
  5. flex-direction: column;
  6. justify-content: space-between;
  7. align-items: center;
  8. padding: 0 5vw 6vh;
  9. &-content {
  10. box-sizing: border-box;
  11. flex: 1;
  12. width: 100%;
  13. max-width: 100rem;
  14. margin: 0 auto;
  15. display: flex;
  16. justify-content: space-between;
  17. align-items: center;
  18. }
  19. .checked-text {
  20. display: flex;
  21. flex-wrap: wrap;
  22. font-size: 0.88rem;
  23. line-height: 1.73rem;
  24. }
  25. &-footer {
  26. box-sizing: border-box;
  27. padding: 0 1.6rem;
  28. width: 100%;
  29. max-width: 100rem;
  30. display: flex;
  31. align-items: center;
  32. }
  33. }
  34. &-form {
  35. box-sizing: border-box;
  36. width: 22.41rem;
  37. &-footer {
  38. padding-top: 0.5rem;
  39. a {
  40. font-size: 1.13rem;
  41. padding: 0 1.2rem;
  42. &:last-child {
  43. position: relative;
  44. &::before {
  45. content: "";
  46. position: absolute;
  47. width: 1px;
  48. height: 1.65rem;
  49. top: 0;
  50. left: 0;
  51. bottom: 0;
  52. margin: auto 0;
  53. }
  54. }
  55. }
  56. }
  57. .login-title {
  58. display: flex;
  59. }
  60. .login-title img {
  61. width: 4.61rem;
  62. height: 3.23rem;
  63. }
  64. .login-title p {
  65. padding-left: 10.5px;
  66. font-size: 1.8rem;
  67. line-height: 2.7rem;
  68. align-items: center;
  69. display: flex;
  70. }
  71. .login-from-item {
  72. margin: 18px 0;
  73. .input-with-select {
  74. margin-top: 14px;
  75. input {
  76. height: 40px;
  77. }
  78. }
  79. }
  80. &-btn {
  81. button {
  82. flex: 1;
  83. font-size: 20px;
  84. }
  85. }
  86. }
  87. @media screen and (min-width: 1920px) {
  88. .login-main-content {
  89. background-position: 6rem;
  90. }
  91. }
  92. }