.consult-dock {
    position: fixed;
    right: 18px;
    bottom: 96px;
    z-index: 950;
    display: grid;
    width: 92px;
    border: 1px solid var(--line, #e5e7eb);
    background: #fff;
    box-shadow: 0 8px 24px rgba(22, 32, 51, 0.12);
}

.consult-dock a {
    display: grid;
    place-items: center;
    min-height: 66px;
    padding: 8px;
    color: var(--ink-soft, #1f2937);
    border-bottom: 1px solid var(--line, #e5e7eb);
    font-family: "Microsoft YaHei UI", "PingFang SC", Arial, sans-serif;
    font-size: 12px;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
}

.consult-dock a:last-child {
    border-bottom: 0;
    color: #fff;
    background: var(--green-dark, #c84d08);
}

.consult-dock i {
    margin-bottom: 5px;
    font-size: 18px;
}

@media (max-width: 640px) {
    .consult-dock {
        position: static;
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        width: calc(100% - 32px);
        margin: 24px 16px;
    }

    .consult-dock a {
        min-height: 54px;
        border-right: 1px solid var(--line, #e5e7eb);
        border-bottom: 0;
        font-size: 10px;
    }
}
