beeMansLogin.css 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  1. html, body, div, p {padding: 0;margin: 0;}
  2. body {
  3. width: 100vw;
  4. height: 100vh;
  5. font-family: PingFangSC-Semibold, PingFang SC;
  6. }
  7. @media screen and (max-width: 750px) {
  8. html {
  9. font-size: calc(100vw / 7.5);
  10. }
  11. }
  12. @media screen and (min-width: 750px) {
  13. html {
  14. font-size: calc(450px / 7.5);
  15. }
  16. }
  17. .fcnc {
  18. display: flex;
  19. align-items: center;
  20. flex-direction: column;
  21. height: 100vh;
  22. position: relative;
  23. }
  24. .logo {width: 1.44rem;height: 1.44rem;margin-bottom: 0.24rem;margin-top: 1.96rem;}
  25. .login-title {color: #333;font-weight: 600;font-size: 0.36rem;line-height: 0.5rem;margin-bottom: 0.16rem;}
  26. .login-subtitle{color: #999;font-size: 0.28rem;line-height: 0.4rem;margin-bottom: 0.72rem;}
  27. .input-item{height: 0.8rem;width: 5.9rem;border: 2px solid #EAEDF5;border-radius: 0.5rem;overflow: hidden;display: flex;align-items: center;}
  28. .mb30{margin-bottom: 0.3rem;}.mb110{margin-bottom: 1.10rem;}
  29. .icon{width: 0.94rem;height: 0.8rem;text-align: center;line-height: 0.4rem;}
  30. .input-item input{border: none;outline: none;height: 0.28rem;padding-left: 0.1rem;border-left: 2px solid #e8e8e8;font-size: 0.28rem;color: #333;width: 3.66rem;}
  31. .icon-user{width: 0.44rem;height: 0.44rem;}
  32. .btn{width: 5.9rem;height: 1rem;background: #3B7FFF;border-radius: 0.6rem;letter-spacing: 2px;font-size: 0.36rem;line-height: 1rem;color: #fff;text-align: center;}
  33. #toast-container>.toast-error {background-image: none!important;}
  34. .toast-error {background-color: rgba(0, 0, 0, 0.7);}
  35. .toast-message {font-size: 0.28rem;line-height: 0.8rem;text-align: center;font-weight: 400;color: #FFFFFF;}
  36. #toast-container>div {width: 4rem;height: 0.8rem;opacity: 1;padding: 0 !important;border-radius: 0.2rem;box-shadow: none;}
  37. .toast-center-center {top: 50%;left: 50%;margin-top: -0.45rem;margin-left: -2rem;}
  38. .master {
  39. width: 100%;
  40. height: 100vh;
  41. position: fixed;
  42. top: 0;
  43. left: 0;
  44. display: none;
  45. }
  46. .loading {
  47. color: #fff;
  48. font-size: 0.28rem;
  49. text-align: center;
  50. background-color: rgba(0, 0, 0, 0.7);
  51. width: 2rem;
  52. height: 2rem;
  53. position: absolute;
  54. top: 50%;
  55. margin-top: -1rem;
  56. left: 50%;
  57. margin-left: -1rem;
  58. display: flex;
  59. align-items: center;
  60. justify-content: center;
  61. flex-direction: column;
  62. border-radius: 0.2rem;
  63. }
  64. .loadingSix {
  65. position: relative;
  66. width: 1rem;
  67. height: 1rem;
  68. overflow: hidden;
  69. margin-bottom: 0.2rem;
  70. }
  71. .loadingSix span {
  72. display: inline-block;
  73. width: 0.16rem;
  74. height: 0.16rem;
  75. border-radius: 50%;
  76. background: #ffffff;
  77. position: absolute;
  78. animation: load 1.04s ease infinite;
  79. -webkit-animation: load 1.04s ease infinite;
  80. }
  81. @keyframes load {
  82. 0%{
  83. opacity: 1;
  84. }
  85. 100%{
  86. opacity: 0.2;
  87. }
  88. }
  89. .loadingSix span:nth-child(1) {
  90. left: 0;
  91. top: 50%;
  92. margin-top:-0.08rem;
  93. animation-delay:0.13s;
  94. -webkit-animation-delay:0.13s;
  95. }
  96. .loadingSix span:nth-child(2) {
  97. left: 0.14rem;
  98. top: 0.14rem;
  99. animation-delay:0.26s;
  100. -webkit-animation-delay:0.26s;
  101. }
  102. .loadingSix span:nth-child(3) {
  103. left: 50%;
  104. top: 0;
  105. margin-left: -0.08rem;
  106. animation-delay:0.39s;
  107. -webkit-animation-delay:0.39s;
  108. }
  109. .loadingSix span:nth-child(4) {
  110. top: 0.14rem;
  111. right: 0.14rem;
  112. animation-delay: 0.52s;
  113. -webkit-animation-delay: 0.52s;
  114. }
  115. .loadingSix span:nth-child(5) {
  116. right: 0;
  117. top: 50%;
  118. margin-top: -0.08rem;
  119. animation-delay: 0.65s;
  120. -webkit-animation-delay: 0.65s;
  121. }
  122. .loadingSix span:nth-child(6) {
  123. right: 0.14rem;
  124. bottom: 0.14rem;
  125. animation-delay:0.78s;
  126. -webkit-animation-delay:0.78s;
  127. }
  128. .loadingSix span:nth-child(7) {
  129. bottom: 0;
  130. left: 50%;
  131. margin-left: -0.08rem;
  132. animation-delay:0.91s;
  133. -webkit-animation-delay:0.91s;
  134. }
  135. .loadingSix span:nth-child(8) {
  136. bottom: 0.14rem;
  137. left: 0.14rem;
  138. animation-delay:1.04s;
  139. -webkit-animation-delay:1.04s;
  140. }