index.less 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  1. .login {
  2. display: flex;
  3. flex-direction: column;
  4. background: linear-gradient(35deg, #a5d9f4, #fff 65%, #f8e7e7);
  5. &-navback {
  6. >.van-icon {
  7. color: #333;
  8. }
  9. }
  10. &-luanguage {
  11. position: fixed;
  12. right: 0;
  13. top: 0;
  14. z-index: 1;
  15. display: inline-flex;
  16. .app-luanguage {
  17. display: inline-flex;
  18. justify-content: center;
  19. align-items: center;
  20. height: var(--navbar-height);
  21. padding: 0 14px;
  22. }
  23. }
  24. &-logo {
  25. text-align: center;
  26. padding: 50px 0;
  27. img {
  28. height: 60px;
  29. }
  30. }
  31. &-form {
  32. background-color: #fff;
  33. border-radius: 16px;
  34. padding: 16px;
  35. margin: 0 18px;
  36. .van-cell {
  37. &::after {
  38. display: none;
  39. }
  40. &-group--inset {
  41. margin: 0;
  42. }
  43. }
  44. .van-field {
  45. &__control {
  46. background-color: #f3f8fa;
  47. border-radius: 5px;
  48. padding: 6px 10px;
  49. }
  50. }
  51. .button {
  52. &-link {
  53. display: flex;
  54. justify-content: space-between;
  55. padding: 16px 0;
  56. a {
  57. color: #333;
  58. }
  59. }
  60. &-submit {
  61. --van-button-primary-background: #00577c;
  62. //--van-button-primary-background: linear-gradient(to right, #dc364a, #1973e1);
  63. padding: 12px;
  64. }
  65. }
  66. }
  67. &-link {
  68. display: flex;
  69. justify-content: space-between;
  70. font-size: 13px;
  71. padding: 14px 24px;
  72. margin: 0 24px;
  73. span:only-child {
  74. margin-left: auto;
  75. }
  76. }
  77. &-footer {
  78. padding: 18px;
  79. margin-top: auto;
  80. &__trem {
  81. display: flex;
  82. justify-content: center;
  83. align-items: center;
  84. flex-wrap: wrap;
  85. font-size: 12px;
  86. .van-checkbox {
  87. margin-right: 6px;
  88. }
  89. }
  90. &__version {
  91. font-size: 12px;
  92. color: #999;
  93. text-align: center;
  94. margin-top: 4px;
  95. }
  96. }
  97. }