.enterprise-settle-float {
    position: fixed;
    right: 12px;
    bottom: 24px;
    z-index: 9998;
    width: 190px;
    color: #326aeb;
    font-family: Arial, "Microsoft YaHei", sans-serif;
    transition: width 0.22s ease;
}

.enterprise-settle-float.is-hovered,
.enterprise-settle-float.is-focused,
.enterprise-settle-float.is-expanded {
    width: 320px;
}

.enterprise-settle-card {
    width: 100%;
    background: rgba(232, 237, 244, 0.68);
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 20px;
    box-shadow: 0 18px 42px rgba(25, 35, 45, 0.16);
    -webkit-backdrop-filter: blur(18px) saturate(130%);
    backdrop-filter: blur(18px) saturate(130%);
    transform: scale(0.75);
    transform-origin: right bottom;
    overflow: hidden;
}

.enterprise-settle-head {
    display: flex;
    width: 100%;
    height: 80px;
    align-items: center;
    gap: 12px;
    padding: 11px 20px;
    border: 0;
    background: transparent;
    color: inherit;
    cursor: pointer;
    text-align: left;
    box-sizing: border-box;
    overflow: hidden;
}

.enterprise-settle-icon {
    position: relative;
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.28);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.32);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
}

.enterprise-settle-icon::before {
    content: "";
    position: absolute;
    left: 16px;
    top: 15px;
    width: 15px;
    height: 19px;
    border: 2px solid #326aeb;
    border-radius: 2px;
    box-sizing: border-box;
}

.enterprise-settle-icon::after {
    content: "";
    position: absolute;
    left: 21px;
    top: 20px;
    width: 3px;
    height: 3px;
    background: #326aeb;
    box-shadow: 6px 0 0 #326aeb, 0 6px 0 #326aeb, 6px 6px 0 #326aeb, 3px 13px 0 #326aeb;
}

.enterprise-settle-dot {
    position: absolute;
    right: -2px;
    top: -2px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #5ee275;
    border: 2px solid rgba(249, 251, 255, 0.9);
}

.enterprise-settle-title {
    flex: 1 1 auto;
    min-width: 0;
}

.enterprise-settle-title strong {
    display: block;
    font-size: 18px;
    line-height: 22px;
    font-weight: 700;
    color: #326aeb;
    white-space: nowrap;
}

.enterprise-settle-title span {
    display: block;
    margin-top: 2px;
    font-size: 14px;
    line-height: 16px;
    letter-spacing: 0;
    color: #111827;
    white-space: nowrap;
}

.enterprise-settle-hot {
    flex: 0 0 0;
    width: 0;
    min-width: 0;
    height: 22px;
    padding: 0;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.28);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.36);
    color: #111827;
    font-size: 13px;
    line-height: 22px;
    font-weight: 700;
    text-align: center;
    box-sizing: border-box;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: width 0.22s ease, min-width 0.22s ease, padding 0.22s ease, opacity 0.18s ease, visibility 0.18s ease;
}

.enterprise-settle-arrow {
    position: relative;
    flex: 0 0 0;
    width: 0;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.26);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.28);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: width 0.22s ease, flex-basis 0.22s ease, opacity 0.18s ease, visibility 0.18s ease;
}

.enterprise-settle-float.is-hovered .enterprise-settle-hot,
.enterprise-settle-float.is-hovered .enterprise-settle-arrow,
.enterprise-settle-float.is-focused .enterprise-settle-hot,
.enterprise-settle-float.is-focused .enterprise-settle-arrow,
.enterprise-settle-float.is-expanded .enterprise-settle-hot,
.enterprise-settle-float.is-expanded .enterprise-settle-arrow {
    opacity: 1;
    visibility: visible;
}

.enterprise-settle-float.is-hovered .enterprise-settle-hot,
.enterprise-settle-float.is-focused .enterprise-settle-hot,
.enterprise-settle-float.is-expanded .enterprise-settle-hot {
    flex-basis: 50px;
    width: 50px;
    min-width: 50px;
    padding: 0 10px;
}

.enterprise-settle-float.is-hovered .enterprise-settle-arrow,
.enterprise-settle-float.is-focused .enterprise-settle-arrow,
.enterprise-settle-float.is-expanded .enterprise-settle-arrow {
    flex-basis: 28px;
    width: 28px;
}

.enterprise-settle-arrow::before {
    content: "";
    position: absolute;
    left: 10px;
    top: 9px;
    width: 7px;
    height: 7px;
    border-right: 2px solid #111827;
    border-bottom: 2px solid #111827;
    transform: rotate(45deg);
    transition: transform 0.2s ease, top 0.2s ease;
}

.enterprise-settle-body {
    display: none;
    padding: 0 20px 20px;
}

.enterprise-settle-float.is-expanded .enterprise-settle-card {
    border-radius: 20px;
}

.enterprise-settle-float.is-expanded .enterprise-settle-head {
    height: 80px;
}

.enterprise-settle-float.is-expanded .enterprise-settle-arrow::before {
    top: 11px;
    transform: rotate(225deg);
}

.enterprise-settle-float.is-expanded .enterprise-settle-body {
    display: block;
    max-height: calc(100vh - 164px);
    overflow-y: auto;
}

.enterprise-settle-desc {
    margin: 10px 0 18px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.22);
    color: #111827;
    font-size: 15px;
    line-height: 25px;
}

.enterprise-settle-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 9px;
    margin-bottom: 18px;
}

.enterprise-settle-stat {
    min-height: 70px;
    padding: 13px 8px 10px;
    border-radius: 9px;
    background: rgba(255, 255, 255, 0.24);
    border: 1px solid rgba(255, 255, 255, 0.26);
    text-align: center;
    box-sizing: border-box;
}

.enterprise-settle-stat strong {
    display: block;
    font-size: 21px;
    line-height: 22px;
    font-weight: 800;
    color: #326aeb;
}

.enterprise-settle-stat span {
    display: block;
    margin-top: 7px;
    font-size: 13px;
    line-height: 14px;
    color: #111827;
}

.enterprise-settle-section-title {
    margin: 0 0 12px;
    color: #111827;
    font-size: 15px;
    line-height: 18px;
    font-weight: 700;
}

.enterprise-settle-steps {
    margin: 0;
    padding: 0;
    list-style: none;
}

.enterprise-settle-step {
    position: relative;
    display: flex;
    gap: 12px;
    padding-bottom: 14px;
}

.enterprise-settle-step:not(:last-child)::after {
    content: "";
    position: absolute;
    left: 11px;
    top: 24px;
    bottom: 0;
    width: 1px;
    background: rgba(255, 255, 255, 0.24);
}

.enterprise-settle-step-num {
    position: relative;
    z-index: 1;
    flex: 0 0 24px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    color: #326aeb;
    font-size: 14px;
    line-height: 24px;
    font-weight: 700;
    text-align: center;
}

.enterprise-settle-step:nth-child(3) .enterprise-settle-step-num {
    background: rgba(255, 255, 255, 0.34);
    color: #326aeb;
}

.enterprise-settle-step-text strong {
    display: block;
    color: #326aeb;
    font-size: 15px;
    line-height: 18px;
    font-weight: 700;
}

.enterprise-settle-step-text span {
    display: block;
    margin-top: 2px;
    color: #111827;
    font-size: 13px;
    line-height: 16px;
}

.enterprise-settle-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin: 2px 0 18px;
}

.enterprise-settle-tags span {
    min-width: 60px;
    height: 24px;
    padding: 0 10px;
    background: rgba(255, 255, 255, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.34);
    border-radius: 13px;
    color: #111827;
    font-size: 13px;
    line-height: 22px;
    text-align: center;
    box-sizing: border-box;
}

.enterprise-settle-cta {
    display: flex;
    width: 100%;
    height: 46px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.36);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.28);
    color: #111827;
    font-size: 17px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 12px 22px rgba(255, 255, 255, 0.12);
    box-sizing: border-box;
}

.enterprise-settle-cta:hover {
    color: #111827;
    background: rgba(255, 255, 255, 0.36);
}

@media (max-width: 767px) {
    .enterprise-settle-float {
        right: 10px;
        bottom: 16px;
        width: calc(100vw - 20px);
        max-width: 320px;
    }

    .enterprise-settle-head {
        padding: 11px 16px;
    }

    .enterprise-settle-body {
        padding: 0 16px 16px;
    }
}

@media (hover: none) {
    .enterprise-settle-float {
        width: calc(100vw - 20px);
        max-width: 320px;
    }

    .enterprise-settle-hot,
    .enterprise-settle-arrow {
        opacity: 1;
        visibility: visible;
    }

    .enterprise-settle-hot {
        flex-basis: 50px;
        width: 50px;
        min-width: 50px;
        padding: 0 10px;
    }

    .enterprise-settle-arrow {
        flex-basis: 28px;
        width: 28px;
    }
}
