Add custom servo contact path

This commit is contained in:
Jacky Ser
2026-08-11 00:00:14 +08:00
parent 9ab7d7c195
commit 0351c47684
2 changed files with 95 additions and 3 deletions

View File

@@ -218,6 +218,22 @@ select:focus, input:focus, textarea:focus { border-color: var(--blue); box-shado
.success-card h3 { margin: 0; }
.success-card > p:not(.step-kicker) { color: #66776f; font-size: 10px; }
.success-card .outline-button { min-height: 38px; }
.custom-result-card {
padding: 22px;
display: grid;
grid-template-columns: 58px 1fr;
gap: 10px 16px;
border: 1px solid #bdd0f2;
border-radius: 15px;
background: linear-gradient(145deg, #f7faff, #edf4ff);
}
.custom-result-mark { width: 58px; height: 58px; display: grid; place-items: center; border-radius: 16px; color: white; background: linear-gradient(145deg, #397fff, #1454d0); font-size: 13px; font-weight: 850; box-shadow: 0 10px 22px rgba(24,94,232,.2); }
.custom-result-card > div:nth-child(2) > span { color: var(--blue); font-size: 9px; font-weight: 800; letter-spacing: .08em; }
.custom-result-card h3 { margin: 4px 0 7px; font-size: 18px; line-height: 1.35; }
.custom-result-card > div:nth-child(2) > p { margin: 0; color: #6d7b91; font-size: 10px; line-height: 1.65; }
.custom-requirement-grid { grid-column: 1 / -1; margin-top: 8px; }
.custom-notes { grid-column: 1 / -1; margin: 2px 0 0; padding: 10px 12px; border-radius: 8px; color: #5d6c82; background: rgba(255,255,255,.8); font-size: 9px; line-height: 1.6; }
.custom-contact-form { border-color: #afc8f2; }
.capability-strip { padding: 28px max(32px, calc((100vw - 1120px) / 2)); display: grid; grid-template-columns: repeat(4, 1fr); background: var(--ink); color: white; }
.capability-strip div { display: grid; gap: 4px; text-align: center; border-right: 1px solid rgba(255,255,255,.13); }