This commit is contained in:
gaofeng
2026-05-13 09:21:57 +08:00
parent 91a412aded
commit 370cc15d25
4 changed files with 28 additions and 5 deletions

View File

@@ -380,6 +380,7 @@ footer a:hover{ color:#fff; text-decoration:underline; }
bottom: 18px;
z-index: 2000;
display:flex;
align-items: flex-end;
flex-direction: column;
gap: 10px;
}
@@ -393,6 +394,27 @@ footer a:hover{ color:#fff; text-decoration:underline; }
color: rgba(15,23,42,.75);
}
.float-btn:hover{ color: var(--brand); border-color: rgba(11,95,168,.25); }
.float-phone{
gap: 8px;
overflow: hidden;
white-space: nowrap;
transition: width .2s ease, padding .2s ease;
}
.float-phone .float-phone-text{
max-width: 0;
opacity: 0;
overflow: hidden;
transition: max-width .2s ease, opacity .2s ease;
}
.float-phone:hover{
width: auto;
min-width: 46px;
padding: 0 14px;
}
.float-phone:hover .float-phone-text{
max-width: 180px;
opacity: 1;
}
/* ===== Flow Stepper v2 ===== */
.flow2{
border: 1px solid var(--line);