|
@@ -1,20 +1,25 @@
|
|
|
.Login {
|
|
|
width: 100%;
|
|
|
height: 100%;
|
|
|
- display: flex;
|
|
|
background-image: url("../../assets/img/loginBac.jpg");
|
|
|
background-size: 100% 100%;
|
|
|
|
|
|
:global {
|
|
|
+ .loginLogo {
|
|
|
+ position: absolute;
|
|
|
+ top: 100px;
|
|
|
+ left: 100px;
|
|
|
+ }
|
|
|
|
|
|
|
|
|
.mainRight {
|
|
|
position: absolute;
|
|
|
- right: 240px;
|
|
|
+ left: 50%;
|
|
|
top: 50%;
|
|
|
- transform: translateY(-50%);
|
|
|
+ transform: translate(-50%, -50%);
|
|
|
width: 530px;
|
|
|
- background-color: rgba(166, 71, 53, 0.80);
|
|
|
+ background-color: rgba(255, 255, 255, 0.50);
|
|
|
+ backdrop-filter: blur(10px);
|
|
|
display: flex;
|
|
|
justify-content: center;
|
|
|
align-items: center;
|
|
@@ -26,9 +31,13 @@
|
|
|
text-align: center;
|
|
|
padding: 0 100px 70px;
|
|
|
|
|
|
- .loginLogo {
|
|
|
- margin-top: 40px;
|
|
|
- width: 240px;
|
|
|
+ .loginTit {
|
|
|
+ margin-top: 15px;
|
|
|
+ letter-spacing: 3px;
|
|
|
+ font-weight: 700;
|
|
|
+ font-size: 26px;
|
|
|
+ color: var(--themeColor);
|
|
|
+ text-align: center;
|
|
|
}
|
|
|
|
|
|
.inputBox {
|
|
@@ -36,22 +45,22 @@
|
|
|
|
|
|
input::-webkit-input-placeholder {
|
|
|
/* WebKit browsers */
|
|
|
- color: rgba(255, 255, 255, .5);
|
|
|
+ color: rgba(0, 0, 0, .5);
|
|
|
}
|
|
|
|
|
|
input:-moz-placeholder {
|
|
|
/* Mozilla Firefox 4 to 18 */
|
|
|
- color: rgba(255, 255, 255, .5);
|
|
|
+ color: rgba(0, 0, 0, .5);
|
|
|
}
|
|
|
|
|
|
input::-moz-placeholder {
|
|
|
/* Mozilla Firefox 19+ */
|
|
|
- color: rgba(255, 255, 255, .5);
|
|
|
+ color: rgba(0, 0, 0, .5);
|
|
|
}
|
|
|
|
|
|
input:-ms-input-placeholder {
|
|
|
/* Internet Explorer 10+ */
|
|
|
- color: rgba(255, 255, 255, .5);
|
|
|
+ color: rgba(0, 0, 0, .5);
|
|
|
}
|
|
|
|
|
|
|
|
@@ -60,7 +69,7 @@
|
|
|
margin: 30px auto;
|
|
|
|
|
|
.ant-input-suffix .ant-input-password-icon {
|
|
|
- color: var(--themeColor2);
|
|
|
+ color: var(--themeColor);
|
|
|
font-size: 22px;
|
|
|
}
|
|
|
}
|
|
@@ -103,7 +112,7 @@
|
|
|
|
|
|
input:-webkit-autofill {
|
|
|
font-size: 18px !important;
|
|
|
- -webkit-text-fill-color: #fff !important;
|
|
|
+ -webkit-text-fill-color: black !important;
|
|
|
background-image: none;
|
|
|
-webkit-box-shadow: 0 0 0px 1000px transparent inset !important; //填充阴影,可以用来遮住背景色
|
|
|
background-color: transparent;
|
|
@@ -117,15 +126,15 @@
|
|
|
width: 100%;
|
|
|
height: 60px;
|
|
|
border: none;
|
|
|
- border-bottom: 1px solid var(--themeColor2);
|
|
|
+ border-bottom: 1px solid var(--themeColor);
|
|
|
border-radius: 0;
|
|
|
- color: var(--themeColor2);
|
|
|
+ color: var(--themeColor);
|
|
|
|
|
|
.ant-input {
|
|
|
background-color: transparent;
|
|
|
width: 100%;
|
|
|
height: 60px;
|
|
|
- color: #fff;
|
|
|
+ color: black;
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -138,7 +147,7 @@
|
|
|
|
|
|
.ant-btn {
|
|
|
color: black;
|
|
|
- background-color: #f0d99c;
|
|
|
+ background-color: var(--themeColor2);
|
|
|
border-radius: 25px;
|
|
|
font-size: 24px;
|
|
|
width: 375px;
|