/* CSS Reset */
*, *::before, *::after {
  margin: 0; /* 移除所有元素的外边距 */
  padding: 0; /* 移除所有元素的内边距 */
  box-sizing: inherit; /* 继承父元素的box-sizing属性值 */
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: 'Microsoft Yahei', Arial, sans-serif; /* 设置全局字体族 */
  font-size: 14px;
  line-height: 1.5; /* 设置文本行高 */
  color: #333;
  overflow-y: scroll;
  background-image: url("../images/erploginbg.jpg");
  background-position: center top;
  background-repeat: no-repeat;
}
body, h1, h2, h3, h4, h5, h6, hr, p, blockquote, dl, dt, dd, ul, ol, li, pre, fieldset, button, input, textarea, form, th, td, br {
  margin: 0;
  padding: 0
}
h1, h2, h3, h4, h5, h6 {
  font-weight: normal; /* 取消标题元素的加粗效果 */
}
a {
  text-decoration: none; /* 去除超链接的下划线 */
  color: #36393e;
}
a:hover {
  color: #136ef7;
}
ul, ol {
  list-style: none; /* 移除列表项前面的符号 */
}
i, em {
  font-style: normal;
}
img {
  /* max-width: 100%;  */
  height: auto; /* 根据比例自动调整图片高度 */
}
textarea {
  border: none;
}
button {
  cursor: pointer; /* 改变光标形状为手型 */
  background-color: transparent; /* 按钮没有背景色 */
  border: none; /* 无边框 */
  outline: none; /* 不显示点击时的虚线框 */
}
input {
  outline: none;
  border: none;
}
input[type="button"] {
  cursor: pointer;
}
input::-webkit-input-placeholder {
  color: #999;
}
input:-moz-placeholder {
  color: #999;
  opacity: 1 !important;
}
input::-moz-placeholder {
  color: #999;
  opacity: 1 !important;
}
input:-ms-input-placeholder {
  color: #999;
}
textarea::-webkit-input-placeholder {
  color: #999;
}
textarea:-moz-placeholder {
  color: #999;
}
textarea::-moz-placeholder {
  color: #999;
}
textarea:-ms-input-placeholder {
  color: #999;
}
textarea {
  outline: none;
}
.login-form {
  position: relative;
  width: 520px;
  max-width: 100%;
  padding: 35px 35px 35px 35px;
  margin: 0 auto;
  overflow: hidden;
  top: 165px;
  background: #fff;
  border-radius: 5px
}
.title-container {
  margin-bottom: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: end
}
.title-container .title-container-logo {
  -o-object-fit: cover;
  object-fit: cover;
  margin-right: 10px
}
.title-container .title {
  font-size: 26px;
  color: #3b9cff;
  margin: 0;
  text-align: center;
  font-weight: 700
}
.el-form-item {
  border: 1px solid rgba(0, 0, 0, .1);
  background: hsla(0, 0%, 100%, .1);
  border-radius: 5px;
  color: #454545;
  margin-bottom: 18px;
  overflow: hidden
}
.el-form-item .iconl {
  padding: 0px 0px 0 15px;
}
.el-input {
  display: inline-block;
  height: 48px;
}
.el-input input {
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  border-radius: 0;
  padding: 8px 5px 8px 10px;
  color: #333;
  height: 32px;
  caret-color: #333;
  width: 430px;
}
.el-button {
  padding: 10px 0px;
  font-size: 16px;
  border-radius: 4px;
  color: #fff;
  background-color: #3b9cff;
  border-color: #3b9cff;
  width: 100%;
}
.el-button:focus, .el-button:hover {
  background: #62b0ff;
  border-color: #62b0ff;
  color: #fff
}
	  
	  
	  
	  
	  
	  
	  
	  