@charset "UTF-8";

.wyhui-login {

    width: 450px;

    min-height: 200px;

    margin: 110px auto;

    padding: 0;

    font-size: 12px;

    color: #333;

    background: #f1f1f1;

    box-shadow: 0px 0px 18px #333;

}



@media screen and (max-width:768px){

	.wyhui-login {

		width:95%;

	}

}



.wyhui-login-header {

    font-size: 26px;

    height: 30px;

    line-height: 30px;

    border-bottom: 1px solid #aaa;

    font-weight: 400;

	font-family: 微软雅黑;

    color: #666;

    text-align: center;

}



.wyhui-login>* {

    padding: 15px;

}



.wyhui-col-space10 .wyhui-login-input-icon {

    left: 6px;

    top: 6px;

}



.wyhui-login-input-icon {

    position: absolute;

    left: 1px;

    top: 1px;

    width: 38px;

    line-height: 36px;

    text-align: center;

    color: #aaa;

}



.wyhui-login-body .wyhui-input {

    padding-left: 38px;

}

/* 登录界面新的样式 */
.login-container{
  width: 100vw;
  height: 100vh;
  background-image: url(../images/loginbg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}
.login-box{
  background-color: #FFFFFF;
  width: 680px;
  height: 400px;
  position: absolute;
  top: 6%;
  right: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.form-box{
  margin-right: 50px;
}
.login-box .img{
  width: 390px;
  height: 240px;
  background-image: url(../images/loginimg.png);
  background-size: 100% 100%;
}
.form-box .input-box{
  height: 46px;
  width: 270px;
  padding-left: 55px;
  box-sizing: border-box;
  outline: none;
  background: #eef6fd;
  border-bottom: 2px #d6e7fa solid;
  margin-bottom: 10px;
  position: relative;
}
.form-box .input-box span{
   width: 55px;
   height: 46px;
   position: absolute;
   left: 0;
   top: 0;
   background-size: 34px 34px;
   background-repeat: no-repeat;
   background-position: center center;
}
.form-box .input-box span.icon-user{
  background-image: url(../images/yhm.png);
}
.form-box .input-box span.icon-pwd{
  background-image: url(../images/mm.png);
}
.form-box .input-box input{
  border: none;
  background-color: transparent;
  height: 100%;
  width: 100%;
  outline: none;
}
.form-box .login-btn{
    color: #fff;
    width: 270px;
    cursor: pointer;
    text-align: center;
    line-height: 46px;
    text-align: center;
    background-color: #1592ef;
    border-radius: 3px;
    text-shadow: 2px 2px 1px rgb(0 0 0 / 20%);
    box-shadow: 2px 2px 1px rgb(0 0 0 / 20%);
    font-size: 20px;
}