|
@@ -13,9 +13,83 @@ body {
|
|
|
#mainContainer {
|
|
|
width: 100%;
|
|
|
height: 100%;
|
|
|
- background-image: url(./img/bg.png);
|
|
|
- background-repeat: no-repeat;
|
|
|
- background-size: 100% 100%;
|
|
|
+ flex-direction: column;
|
|
|
+ justify-content: center;
|
|
|
+ align-items: center;
|
|
|
+ background: url("./img/background.png") no-repeat fixed center/100%;
|
|
|
+ background-size: cover;
|
|
|
+}
|
|
|
+.company-name {
|
|
|
+ font-family: PingFang SC,Source Han Sans CN,Microsoft YaHei,Arial,sans-serif;
|
|
|
+ line-height: 1.1;
|
|
|
+ position: absolute;
|
|
|
+ font-size: 40px;
|
|
|
+ color: white;
|
|
|
+ font-weight: 500;
|
|
|
+ letter-spacing: 4px;
|
|
|
+ width: 100%;
|
|
|
+ text-align: center;
|
|
|
+ top: calc((100% - 534px) / 2);
|
|
|
+ -webkit-box-reflect: below 1px -webkit-gradient(linear, 0 0, 0 50%, from(transparent), color-stop(0.2, transparent), to(rgba(3, 3, 3, 0.1)));
|
|
|
+}
|
|
|
+.fill-container {
|
|
|
+ position: relative;
|
|
|
+ width: 926px;
|
|
|
+ height: 434px;
|
|
|
+ border-radius: 10px;
|
|
|
+ background-color: rgb(228, 242, 255);
|
|
|
+ left: calc((100% - 926px) / 2);
|
|
|
+ top: calc((100% - 334px) / 2);
|
|
|
+}
|
|
|
+.fill-container .left {
|
|
|
+ position: relative;
|
|
|
+ float: left;
|
|
|
+ width: 538px;
|
|
|
+ overflow: hidden;
|
|
|
+}
|
|
|
+.fill-container .right {
|
|
|
+ width: 388px;
|
|
|
+ width: 388px;
|
|
|
+ position: relative;
|
|
|
+ float: left;
|
|
|
+}
|
|
|
+.fill-container .right .top {
|
|
|
+ font-family: PingFang SC,Source Han Sans CN,Microsoft YaHei,Arial,sans-serif;
|
|
|
+ font-size: 25px;
|
|
|
+ font-weight: 700;
|
|
|
+ color: rgb(45, 116, 231);
|
|
|
+ text-align: center;
|
|
|
+ width: 100%;
|
|
|
+ top: 50px;
|
|
|
+ position: relative;
|
|
|
+ float: left;
|
|
|
+}
|
|
|
+.fill-container .right .top > span {
|
|
|
+ line-height: 30px;
|
|
|
+}
|
|
|
+.fill-container .right .top > span:nth-of-type(2) {
|
|
|
+ margin-top: 16px;
|
|
|
+}
|
|
|
+.middle {
|
|
|
+ width: 320px;
|
|
|
+ margin-bottom: 80px;
|
|
|
+ position: relative;
|
|
|
+ left: calc((100% - 320px) / 2);
|
|
|
+ top: 100px;
|
|
|
+}
|
|
|
+.bottom{
|
|
|
+ position: relative;
|
|
|
+ top:35px;
|
|
|
+}
|
|
|
+.middle > .form-input {
|
|
|
+ height: 36px;
|
|
|
+ line-height: 36px;
|
|
|
+}
|
|
|
+.middle > .form-input :nth-of-type(2) {
|
|
|
+ margin-top: 15px;
|
|
|
+}
|
|
|
+.middle > .form-input :nth-of-type(3) {
|
|
|
+ margin-top: 15px;
|
|
|
}
|
|
|
.username,
|
|
|
.password {
|
|
@@ -27,21 +101,26 @@ body {
|
|
|
height: 44px;
|
|
|
|
|
|
|
|
|
- border: none;
|
|
|
}
|
|
|
-input.username::-webkit-input-placeholder{
|
|
|
- color:#999999;
|
|
|
+.title{
|
|
|
+ display: inline-block;
|
|
|
}
|
|
|
-input.password::-webkit-input-placeholder{
|
|
|
- color:#999999;
|
|
|
+input.title:focus{
|
|
|
+ box-shadow: none;
|
|
|
+}
|
|
|
+input.username::-webkit-input-placeholder {
|
|
|
+ color: #999999;
|
|
|
+}
|
|
|
+input.password::-webkit-input-placeholder {
|
|
|
+ color: #999999;
|
|
|
}
|
|
|
.login {
|
|
|
border: none;
|
|
|
color: white;
|
|
|
padding: 0px;
|
|
|
- letter-spacing: 8px;
|
|
|
- background: #1ed7e5;
|
|
|
- text-indent: 8px;
|
|
|
+ background: #2467d3;
|
|
|
+ border-radius: 22px;
|
|
|
+ margin-top: 20px;
|
|
|
}
|
|
|
.login .loginLoading {
|
|
|
display: none;
|
|
@@ -57,8 +136,7 @@ input.password::-webkit-input-placeholder{
|
|
|
}
|
|
|
.login p {
|
|
|
text-align: center;
|
|
|
- font-size: 20px;
|
|
|
- font-weight: 600;
|
|
|
+ font-size: 16px;
|
|
|
vertical-align: middle;
|
|
|
line-height: 44px;
|
|
|
height: 44px;
|
|
@@ -75,12 +153,8 @@ input.password::-webkit-input-placeholder{
|
|
|
border: none;
|
|
|
border-radius: 0;
|
|
|
background-color: transparent;
|
|
|
- position: absolute;
|
|
|
height: 40px;
|
|
|
- top: calc(71.5% + 110px);
|
|
|
- left: calc(19% + 50px);
|
|
|
- text-align: center;
|
|
|
- font-size: 14px;
|
|
|
+ font-size: 12px;
|
|
|
display: none;
|
|
|
color: #ff0000;
|
|
|
}
|
|
@@ -93,20 +167,20 @@ input.password::-webkit-input-placeholder{
|
|
|
font-weight: bold;
|
|
|
color: #1cecfc;
|
|
|
text-shadow: 0px 0px 2px rgba(7, 61, 104, 0.24);
|
|
|
- width:157px;
|
|
|
+ width: 157px;
|
|
|
}
|
|
|
-.feedback span{
|
|
|
+.feedback span {
|
|
|
padding-bottom: 1px;
|
|
|
- border-bottom:1px solid #1DDDEB;
|
|
|
- cursor: pointer;
|
|
|
+ border-bottom: 1px solid #1dddeb;
|
|
|
+ cursor: pointer;
|
|
|
}
|
|
|
-.feedback span:hover{
|
|
|
- color:#3cd5e0ed;
|
|
|
+.feedback span:hover {
|
|
|
+ color: #3cd5e0ed;
|
|
|
}
|
|
|
-span.pwspan{
|
|
|
+span.pwspan {
|
|
|
float: left;
|
|
|
}
|
|
|
-span.feedspan{
|
|
|
+span.feedspan {
|
|
|
float: right;
|
|
|
}
|
|
|
|
|
@@ -136,33 +210,34 @@ span.feedspan{
|
|
|
}
|
|
|
.shadow {
|
|
|
|
|
|
- height:18.78%;
|
|
|
+ height: 18.78%;
|
|
|
width: calc(59% - 50px);
|
|
|
position: absolute;
|
|
|
left: calc(19% + 50px);
|
|
|
top: 70.5%;
|
|
|
}
|
|
|
-.shadow .loginitem{
|
|
|
+.loginitem {
|
|
|
flex-flow: row nowrap;
|
|
|
}
|
|
|
-.shadow .loginimg {
|
|
|
+.loginimg {
|
|
|
position: absolute;
|
|
|
left: 10px;
|
|
|
height: 44px;
|
|
|
text-align: center;
|
|
|
}
|
|
|
-.shadow .form-inline .form-control {
|
|
|
+.form-inline .form-control {
|
|
|
+ display: inline-block;
|
|
|
width: 100%;
|
|
|
}
|
|
|
.usernameContainer,
|
|
|
.passwordContainer,
|
|
|
-.loginContainer {
|
|
|
+.loginContainer,.codeContainer {
|
|
|
position: relative;
|
|
|
}
|
|
|
.msginfo {
|
|
|
padding-right: 90px;
|
|
|
}
|
|
|
-.usernameContainer .msgBtn {
|
|
|
+.codeContainer .msgBtn {
|
|
|
height: 44px;
|
|
|
position: absolute;
|
|
|
top: 0;
|
|
@@ -189,10 +264,9 @@ span.feedspan{
|
|
|
|
|
|
.loginContainer {
|
|
|
|
|
|
- width: 156px;
|
|
|
height: 44px;
|
|
|
- margin-left: 70px;
|
|
|
+ margin-top: 30px;
|
|
|
}
|
|
|
-.shadow .loginimg img:last-child {
|
|
|
+.loginimg img:last-child {
|
|
|
margin-left: 10px;
|
|
|
}
|