This commit is contained in:
aaron 2025-02-28 22:12:55 +08:00
parent 0bf6f27c46
commit 052efdb81a

View File

@ -83,7 +83,7 @@ export default {
display: flex; display: flex;
flex-direction: column; flex-direction: column;
align-items: center; align-items: center;
justify-content: space-between; justify-content: flex-start;
padding: 20px 15px 30px; padding: 20px 15px 30px;
background: linear-gradient(to bottom, #FFCC00, #FFFFFF); background: linear-gradient(to bottom, #FFCC00, #FFFFFF);
position: relative; position: relative;
@ -100,6 +100,15 @@ export default {
margin-top: 30px; margin-top: 30px;
position: relative; position: relative;
z-index: 1; z-index: 1;
clip-path: none;
}
.card-bottom-cutout {
display: none;
}
.steps-card:after {
display: none;
} }
.step-item { .step-item {
@ -163,10 +172,9 @@ export default {
object-fit: contain; object-fit: contain;
} }
/* 响应式调整 */
@media (max-width: 480px) { @media (max-width: 480px) {
.steps-card { .steps-card {
padding: 15px 10px; clip-path: none;
} }
.step-item { .step-item {
@ -201,15 +209,9 @@ export default {
} }
} }
/* 添加额外的媒体查询,针对特别小的屏幕 */
@media (max-height: 640px) { @media (max-height: 640px) {
.how-to-use-container {
padding: 15px 10px 20px;
}
.steps-card { .steps-card {
margin-top: 15px; clip-path: none;
padding: 10px 8px;
} }
.step-item { .step-item {
@ -235,7 +237,7 @@ export default {
} }
.logo-container { .logo-container {
margin-top: 15px; margin-top: 20px;
} }
.logo-bee { .logo-bee {
@ -249,9 +251,11 @@ export default {
} }
} }
/* 添加针对超小屏幕的媒体查询 */
@media (max-height: 568px) { @media (max-height: 568px) {
/* iPhone 5/SE 等超小屏幕 */ .steps-card {
clip-path: none;
}
.logo-bee { .logo-bee {
width: 22px; width: 22px;
height: 22px; height: 22px;
@ -283,5 +287,9 @@ export default {
.step-description { .step-description {
font-size: 11px; font-size: 11px;
} }
.logo-container {
margin-top: 15px;
}
} }
</style> </style>