register.css 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. .login_banner {
  2. display: flex;
  3. flex-direction: column;
  4. align-items: center;
  5. justify-content: center;
  6. }
  7. .login_banner .register_form {
  8. width: 506px;
  9. height: 450px;
  10. background-color: #fff;
  11. display: flex;
  12. flex-direction: column;
  13. align-items: center;
  14. }
  15. .login_banner .register_form h1 {
  16. color: #e77e11;
  17. margin: 15px 0;
  18. }
  19. .login_banner .register_form form {
  20. width: 100%;
  21. height: 100%;
  22. font-size: 16px;
  23. display: flex;
  24. flex-direction: column;
  25. align-items: center;
  26. }
  27. .login_banner .register_form form .form-item {
  28. display: flex;
  29. width: 346px;
  30. flex-direction: column;
  31. margin: 0;
  32. }
  33. .login_banner .register_form form .form-item div {
  34. margin: 0;
  35. display: flex;
  36. align-items: center;
  37. justify-content: space-between;
  38. }
  39. .login_banner .register_form form .form-item div input {
  40. width: 262px;
  41. height: 40px;
  42. border: 1px #e3e3e3 solid;
  43. outline: none;
  44. }
  45. .login_banner .register_form form .form-item .errMess {
  46. font-size: 12px;
  47. color: red;
  48. /*visibility: hidden;*/
  49. margin: 2px 0;
  50. }
  51. .login_banner .register_form form .form-item:nth-last-child(2) .verify {
  52. width: 268px;
  53. }
  54. .login_banner .register_form form .form-item:nth-last-child(2) .verify input {
  55. width: 146px;
  56. }
  57. .login_banner .register_form form .btn {
  58. width: 360px;
  59. height: 40px;
  60. background-color: #e77e11;
  61. color: #fff;
  62. outline: none;
  63. border: none;
  64. margin-top: 10px;
  65. }