login.css 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. body {
  2. }
  3. .login {
  4. min-width: 1180px;
  5. width: 100vw;
  6. height: 100vh;
  7. background-color: #F6F6F6;
  8. display: flex;
  9. align-items: center;
  10. justify-content: center;
  11. }
  12. .login-form-box {
  13. display: flex;
  14. }
  15. .logo {
  16. position: fixed;
  17. top: 10px;
  18. left: 40px;
  19. }
  20. .login-left .login-left-img{
  21. width: 500px;
  22. height: 500px;
  23. }
  24. .login-left .login-left-img img{
  25. width: 100%;
  26. height: 100%;
  27. }
  28. .login-right {
  29. width: 500px;
  30. height: 500px;
  31. background-color: white;
  32. }
  33. .login-title {
  34. font-size: 24px;
  35. font-weight: 500;
  36. margin-top: 40px;
  37. margin-bottom: 50px;
  38. }
  39. .login-form {
  40. display: flex;
  41. flex-direction: column;
  42. justify-content: center;
  43. align-items: center;
  44. }
  45. .form-box-item {
  46. width: 346px;
  47. display: flex;
  48. align-items: center;
  49. height: 40px;
  50. border:1px solid rgba(229,229,229,1);
  51. margin-top: 16px;
  52. }
  53. .form-box-checked {
  54. width: 346px;
  55. display: flex;
  56. align-items: center;
  57. justify-content: space-between;
  58. margin-top: 16px;
  59. height: 40px;
  60. }
  61. .submit-btn {
  62. width:346px;
  63. height:44px;
  64. display: flex;
  65. justify-content: center;
  66. align-items: center;
  67. color: white;
  68. background-color: #2ad3b6;
  69. border: none;
  70. }
  71. .icon {
  72. width: 45px;
  73. height: 40px;
  74. display: flex;
  75. align-items: center;
  76. justify-content: center;
  77. border:1px solid rgba(229,229,229,1);
  78. }
  79. footer {
  80. position: fixed;
  81. bottom: 20px;
  82. left: 40%;
  83. font-size:12px;
  84. color:rgba(112,112,112,1);
  85. font-weight:400;
  86. }