Browse Source

init

master
han\hanst 6 months ago
parent
commit
2a1e7d6f27
  1. 18
      src/views/common/login.vue

18
src/views/common/login.vue

@ -21,8 +21,8 @@
<div class="logo-area">
<svg viewBox="0 0 48 48">
<path fill="#2196F3" d="M24 6L6 24l18 18 18-18z"/>
<path fill="#1976D2" d="M24 6v36l18-18z"/>
<path fill="#17B3A3" d="M24 6L6 24l18 18 18-18z"/>
<path fill="#17B3A3" d="M24 6v36l18-18z"/>
</svg>
<h1>{{ $t('home.pdaName') }}</h1>
</div>
@ -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 {

Loading…
Cancel
Save