diff --git a/src/views/common/login.vue b/src/views/common/login.vue
index 61505d7..3b8a0d6 100644
--- a/src/views/common/login.vue
+++ b/src/views/common/login.vue
@@ -21,8 +21,8 @@
{{ $t('home.pdaName') }}
@@ -151,7 +151,7 @@ export default {
display: flex;
justify-content: center;
align-items: center;
- background: linear-gradient(to right, #e0f7fa, #f1f8e9);
+ background: #f5f5f5; /* 修改为与 index.vue 一致的背景色 */
font-family: 'Segoe UI', sans-serif;
}
@@ -174,7 +174,7 @@ export default {
.lang-text {
cursor: pointer;
font-size: 14px;
- color: #1890ff;
+ color: #17B3A3; /* 修改为与 index.vue 一致的主色系 */
}
.logo-area {
@@ -185,7 +185,7 @@ export default {
.logo-area svg {
width: 64px;
height: 64px;
- filter: drop-shadow(0 2px 4px rgba(33, 150, 243, 0.3));
+ filter: drop-shadow(0 2px 4px rgba(23, 179, 163, 0.3)); /* 修改阴影颜色 */
}
h1 {
@@ -202,7 +202,7 @@ h1 {
}
.input-group.focus {
- border-color: #1890ff;
+ border-color: #17B3A3; /* 修改为与 index.vue 一致的主色系 */
}
.input-group input {
@@ -225,7 +225,7 @@ h1 {
transform: translateY(-50%);
background: none;
border: none;
- color: #1890ff;
+ color: #17B3A3; /* 修改为与 index.vue 一致的主色系 */
font-size: 12px;
cursor: pointer;
}
@@ -233,7 +233,7 @@ h1 {
.login-btn {
width: 100%;
padding: 12px;
- background: #1890ff;
+ background: #17B3A3; /* 修改为与 index.vue 一致的主色系 */
color: white;
border: none;
border-radius: 8px;
@@ -243,7 +243,7 @@ h1 {
}
.login-btn:hover {
- background: #40a9ff;
+ background: #1dc5ef; /* 修改为与 index.vue 一致的渐变色 */
}
.login-btn:disabled {