更新提示

This commit is contained in:
dzl
2025-09-03 14:44:04 +08:00
parent 376f701422
commit 23e77c5186
2 changed files with 49 additions and 10 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 96 KiB

After

Width:  |  Height:  |  Size: 210 KiB

View File

@@ -78,7 +78,7 @@
<el-dialog <el-dialog
v-model="showWelcomeDialog" v-model="showWelcomeDialog"
width="90%" width="90%"
:style="{ maxWidth: '400px' }" :style="{ height: '425px' }"
:show-close="true" :show-close="true"
:close-on-click-modal="true" :close-on-click-modal="true"
:close-on-press-escape="true" :close-on-press-escape="true"
@@ -453,12 +453,13 @@ export default {
/* 欢迎弹窗样式 */ /* 欢迎弹窗样式 */
:deep(.welcome-dialog .el-dialog__body) { :deep(.welcome-dialog .el-dialog__body) {
background-image: url('/imgs/mainpage/gengxintishi.png'); background-image: url('/imgs/mainpage/gengxintishi.png');
background-size: 100% 108%; background-size: 100% 100%;
background-position: center; background-position: center bottom;
background-repeat: no-repeat; background-repeat: no-repeat;
position: relative; position: relative;
/* 调整背景图透明度值范围0-10为完全透明1为完全不透明 */ /* 调整背景图透明度值范围0-10为完全透明1为完全不透明 */
opacity: 1; opacity: 1;
padding-bottom: 60px;
} }
:deep(.welcome-dialog .el-dialog__body::before) { :deep(.welcome-dialog .el-dialog__body::before) {
@@ -475,9 +476,14 @@ export default {
.welcome-content { .welcome-content {
text-align: center; text-align: center;
padding: 20px 0; padding: 40px 20px 0 20px;
position: relative; position: relative;
z-index: 2; z-index: 2;
height: calc(100% - 80px);
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
} }
.welcome-icon { .welcome-icon {
@@ -488,9 +494,9 @@ export default {
.welcome-content h3 { .welcome-content h3 {
color: var(--primary-color); color: var(--primary-color);
font-size: 24px; font-size: 26px;
font-weight: 600; font-weight: 600;
margin: 0 0 12px 0; margin: 0 0 20px 0;
} }
.welcome-content p { .welcome-content p {
@@ -503,8 +509,8 @@ export default {
.welcome-features { .welcome-features {
display: flex; display: flex;
flex-direction: column; flex-direction: column;
gap: 16px; gap: 20px;
margin-top: 20px; margin-top: 30px;
} }
.feature-item { .feature-item {
@@ -528,10 +534,28 @@ export default {
text-align: center; text-align: center;
} }
:deep(.welcome-dialog .el-dialog__footer) {
padding: 15px 20px;
border-top: none;
background: transparent;
position: absolute;
bottom: 10;
left: 0;
right: 0;
z-index: 3;
}
.dialog-footer { .dialog-footer {
display: flex; display: flex;
justify-content: center; justify-content: center;
gap: 12px; gap: 12px;
padding: 0;
position: absolute;
bottom: 10;
left: 0;
right: 0;
background: transparent;
z-index: 3;
} }
@keyframes bounce { @keyframes bounce {
@@ -549,7 +573,8 @@ export default {
/* 弹窗响应式样式 */ /* 弹窗响应式样式 */
@media (max-width: 480px) { @media (max-width: 480px) {
.welcome-content { .welcome-content {
padding: 16px 0; padding: 30px 15px 0 15px;
height: calc(100% - 70px);
} }
.welcome-icon { .welcome-icon {
@@ -557,13 +582,19 @@ export default {
} }
.welcome-content h3 { .welcome-content h3 {
font-size: 20px; font-size: 22px;
margin: 0 0 15px 0;
} }
.welcome-content p { .welcome-content p {
font-size: 14px; font-size: 14px;
} }
.welcome-features {
gap: 15px;
margin-top: 25px;
}
.feature-item { .feature-item {
padding: 10px 12px; padding: 10px 12px;
} }
@@ -572,5 +603,13 @@ export default {
font-size: 18px; font-size: 18px;
margin-right: 10px; margin-right: 10px;
} }
:deep(.welcome-dialog .el-dialog__footer) {
padding: 10px 15px;
}
:deep(.welcome-dialog .el-dialog__body) {
padding-bottom: 50px;
}
} }
</style> </style>