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.
123 lines
2.5 KiB
123 lines
2.5 KiB
/*
|
|
* @Author: zengjianqi
|
|
* @Date: 2020-02-26 08:30:12
|
|
* @Last Modified by: zengjianqi
|
|
* @Last Modified time: 2020-03-16 10:37:17
|
|
*/
|
|
|
|
.login-bg {
|
|
/*background: url(../images/work.jpg) no-repeat center;*/
|
|
/*background-size: cover;*/
|
|
/*overflow: hidden;*/
|
|
background-image: url(../images/work.jpg);
|
|
background-repeat: no-repeat;
|
|
background-position: center;
|
|
background-attachment: fixed;
|
|
background-size:cover;
|
|
/*height:100%;*/
|
|
background-color: #b9c8ff;
|
|
|
|
}
|
|
.login {
|
|
margin: 12vh auto 12vh auto;
|
|
min-height: 420px;
|
|
max-width: 420px;
|
|
padding: 40px;
|
|
background-color: rgba(255, 255, 255, 0.31);
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
border-radius: 4px;
|
|
/* overflow-x: hidden; */
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.login a.logo {
|
|
display: block;
|
|
height: 58px;
|
|
width: 167px;
|
|
margin: 0 auto 30px auto;
|
|
background-size: 167px 42px;
|
|
}
|
|
|
|
.login .message {
|
|
margin: 10px 0 0 -58px;
|
|
padding: 18px 10px 18px 60px;
|
|
background: #4079d1;
|
|
position: relative;
|
|
color: #fff;
|
|
font-size: 40px;
|
|
font-family: "华文行楷";
|
|
}
|
|
|
|
.login #darkbannerwrap {
|
|
background: url(../images/aiwrap.png);
|
|
width: 18px;
|
|
height: 10px;
|
|
margin: 0 0 20px -58px;
|
|
position: relative;
|
|
}
|
|
|
|
.login input[type=text],
|
|
.login input[type=file],
|
|
.login input[type=password],
|
|
.login input[type=email], select {
|
|
border: 1px solid #DCDEE0;
|
|
vertical-align: middle;
|
|
border-radius: 3px;
|
|
height: 50px;
|
|
padding: 0px 16px;
|
|
font-size: 14px;
|
|
color: #555555;
|
|
outline: none;
|
|
width: 100%;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.login input[type=text]:focus,
|
|
.login input[type=file]:focus,
|
|
.login input[type=password]:focus,
|
|
.login input[type=email]:focus, select:focus {
|
|
border: 1px solid #27A9E3;
|
|
}
|
|
|
|
.login input[type=submit],
|
|
.login input[type=button] {
|
|
display: inline-block;
|
|
vertical-align: middle;
|
|
padding: 12px 24px;
|
|
margin: 0px;
|
|
font-size: 18px;
|
|
line-height: 24px;
|
|
text-align: center;
|
|
white-space: nowrap;
|
|
vertical-align: middle;
|
|
cursor: pointer;
|
|
color: #ffffff;
|
|
background-color: #9f4546;
|
|
border-radius: 3px;
|
|
border: none;
|
|
-webkit-appearance: none;
|
|
outline: none;
|
|
width: 100%;
|
|
}
|
|
|
|
.login hr {
|
|
/*background: #fff url("../images") 0 0 no-repeat;*/
|
|
background-color: transparent;
|
|
}
|
|
|
|
.login hr.hr15 {
|
|
height: 15px;
|
|
border: none;
|
|
margin: 0px;
|
|
padding: 0px;
|
|
width: 100%;
|
|
}
|
|
|
|
.login hr.hr20 {
|
|
height: 20px;
|
|
border: none;
|
|
margin: 0px;
|
|
padding: 0px;
|
|
width: 100%;
|
|
}
|