|
@@ -117,10 +117,12 @@ export default {
|
|
|
</script>
|
|
|
|
|
|
<style rel="stylesheet/scss" lang="scss" scoped>
|
|
|
-$bg: #2d3a4b;
|
|
|
-$light_gray: #eee;
|
|
|
-$dark_gray: #889aa4;
|
|
|
-$light_gray: #eee;
|
|
|
+// 定义新的配色变量
|
|
|
+$primary-color: #a9b1b8; // 主色调,蓝色
|
|
|
+$secondary-color: #eabc48; // 次色调,深蓝色
|
|
|
+$light-gray: #f5f5f5; // 浅灰色
|
|
|
+$dark-gray: #9f8787; // 深灰色
|
|
|
+$background-color: #c37a7a; // 背景色,灰色
|
|
|
|
|
|
/* reset element-ui css */
|
|
|
.login-container {
|
|
@@ -129,7 +131,7 @@ $light_gray: #eee;
|
|
|
width: 100%;
|
|
|
top: 0;
|
|
|
left: 0;
|
|
|
- background-image: url("../../assets/images/bg.png");
|
|
|
+ background: linear-gradient(to bottom right, $primary-color, $secondary-color);
|
|
|
background-position: center;
|
|
|
color: #ffffff;
|
|
|
|
|
@@ -144,18 +146,18 @@ $light_gray: #eee;
|
|
|
-webkit-appearance: none;
|
|
|
border-radius: 0px;
|
|
|
padding: 12px 5px 12px 15px;
|
|
|
- color: $light_gray;
|
|
|
+ color: $light-gray;
|
|
|
height: 47px;
|
|
|
|
|
|
&:-webkit-autofill {
|
|
|
- -webkit-box-shadow: 0 0 0px 1000px $bg inset !important;
|
|
|
- -webkit-text-fill-color: #fff !important;
|
|
|
+ -webkit-box-shadow: 0 0 0px 1000px $background-color inset !important;
|
|
|
+ -webkit-text-fill-color: $light-gray !important;
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
|
|
|
::v-deep .el-form-item {
|
|
|
- border: 1px solid rgba(255, 255, 255, 0.1);
|
|
|
+ border: 1px solid rgba(255, 255, 255, 0.3);
|
|
|
background: rgba(0, 0, 0, 0.1);
|
|
|
border-radius: 5px;
|
|
|
color: #454545;
|
|
@@ -172,13 +174,9 @@ $light_gray: #eee;
|
|
|
margin: 150px auto;
|
|
|
align-items: center;
|
|
|
color: white;
|
|
|
- backdrop-filter: saturate(180%) blur(20px);
|
|
|
- background: rgba(0, 0, 0, .65);
|
|
|
+ background-color: rgba(255, 255, 255, 0.1);
|
|
|
border-radius: 10px;
|
|
|
- box-shadow: 0 0.4px 0.6px rgba(0, 0, 0, 0.141),
|
|
|
- 0 1px 1.3px rgba(0, 0, 0, 0.202), 0 1.9px 2.5px rgba(0, 0, 0, 0.25),
|
|
|
- 0 3.4px 4.5px rgba(0, 0, 0, 0.298), 0 6.3px 8.4px rgba(0, 0, 0, 0.359),
|
|
|
- 0 15px 20px rgba(0, 0, 0, .26);
|
|
|
+
|
|
|
.login-btn {
|
|
|
.btn {
|
|
|
position: relative;
|
|
@@ -187,8 +185,8 @@ $light_gray: #eee;
|
|
|
margin: 10px 0 36px 0;
|
|
|
font-size: 1.2em;
|
|
|
color: white;
|
|
|
- background: transparent;
|
|
|
- border: 2px solid #ffffff;
|
|
|
+ background: linear-gradient(to right, $primary-color, $secondary-color);
|
|
|
+ border: none;
|
|
|
outline: none;
|
|
|
cursor: pointer;
|
|
|
overflow: hidden;
|
|
@@ -203,16 +201,12 @@ $light_gray: #eee;
|
|
|
height: 100%;
|
|
|
background: linear-gradient(120deg,
|
|
|
transparent,
|
|
|
- hsla(204, 70%, 53%, 0.5),
|
|
|
+ hsla(207, 90%, 72%, 0.5),
|
|
|
transparent);
|
|
|
transform: translateX(-100%);
|
|
|
transition: 0.5s;
|
|
|
}
|
|
|
|
|
|
- &:hover {
|
|
|
- box-shadow: 0 0 20px 10px hsla(204, 70%, 53%, 0.5);
|
|
|
- }
|
|
|
-
|
|
|
&:hover::before {
|
|
|
transform: translateX(100%);
|
|
|
}
|
|
@@ -233,14 +227,14 @@ $light_gray: #eee;
|
|
|
|
|
|
.tips {
|
|
|
font-size: 14px;
|
|
|
- color: #fff;
|
|
|
+ color: $light-gray;
|
|
|
margin-bottom: 10px;
|
|
|
text-align: center;
|
|
|
}
|
|
|
|
|
|
.svg-container {
|
|
|
padding: 6px 5px 6px 15px;
|
|
|
- color: $dark_gray;
|
|
|
+ color: $dark-gray;
|
|
|
vertical-align: middle;
|
|
|
width: 30px;
|
|
|
display: inline-block;
|
|
@@ -252,7 +246,7 @@ $light_gray: #eee;
|
|
|
.title {
|
|
|
font-size: 26px;
|
|
|
font-weight: 400;
|
|
|
- color: $light_gray;
|
|
|
+ color: $light-gray;
|
|
|
margin: 0px auto 20px auto;
|
|
|
text-align: center;
|
|
|
font-weight: bold;
|
|
@@ -263,10 +257,10 @@ $light_gray: #eee;
|
|
|
right: 10px;
|
|
|
top: 7px;
|
|
|
font-size: 16px;
|
|
|
- color: $dark_gray;
|
|
|
+ color: $dark-gray;
|
|
|
cursor: pointer;
|
|
|
user-select: none;
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
-</style>
|
|
|
+</style>
|