You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

51 lines
951 B

  1. /*公共样式*/
  2. /*登录页*/
  3. .login-body{
  4. display: flex;
  5. align-items: center;
  6. height: 100vh;
  7. }
  8. .login-body .line {
  9. border-bottom: 1px solid #dadada;
  10. line-height: 0.1em;
  11. margin: 10px 0 20px;
  12. }
  13. .login-body .line span {
  14. background: #fff;
  15. padding: 0 10px;
  16. }
  17. .login-form {
  18. box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  19. margin: 0 auto;
  20. }
  21. .login-form h2{
  22. text-align: center;
  23. margin-bottom: 20px;
  24. }
  25. .login-form h6 {
  26. text-align: center;
  27. }
  28. /*修复select2插件 from表框颜色不生效*/
  29. .form-group.has-error .select2-selection, .form-group.has-error .select2-selection {
  30. border-color: #dd4b39;
  31. box-shadow: none;
  32. }
  33. .form-group.has-success .select2-selection, .form-group.has-success .select2-selection {
  34. border-color: #00a65a;
  35. box-shadow: none;
  36. }
  37. .icheck-label-group {
  38. padding-top: 2px;
  39. }
  40. .icheck-label-group label{
  41. margin-right: 20px;
  42. }