.enterprise-page {
    --enterprise-blue: #2675ed;
    --enterprise-blue-dark: #155bd4;
    --enterprise-sky: #eef6ff;
    --enterprise-ink: #172033;
    --enterprise-muted: #667085;
    --enterprise-line: #e7edf6;
    --enterprise-soft: #f7faff;
    min-height: 720px;
    background: #f6f9fd;
    color: var(--enterprise-ink);
}

.enterprise-wrap {
    width: 1280px;
    max-width: calc(100% - 48px);
    margin: 0 auto;
}

.enterprise-hero {
    padding: 56px 0 36px;
    background: linear-gradient(180deg, #ffffff 0%, #f3f7ff 100%);
}

.enterprise-title {
    margin: 0;
    font-size: 42px;
    line-height: 1.2;
    text-align: center;
    font-weight: 800;
    color: var(--enterprise-ink);
}

.enterprise-subtitle {
    margin: 14px auto 0;
    max-width: 720px;
    text-align: center;
    font-size: 16px;
    line-height: 1.8;
    color: var(--enterprise-muted);
}

.enterprise-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin: 32px auto 0;
    max-width: 980px;
}

.enterprise-stat {
    min-height: 92px;
    padding: 18px 20px;
    border: 1px solid var(--enterprise-line);
    border-radius: 8px;
    background: #fff;
    text-align: center;
}

.enterprise-stat strong {
    display: block;
    font-size: 28px;
    line-height: 1;
    color: var(--enterprise-blue);
}

.enterprise-stat span {
    display: block;
    margin-top: 10px;
    font-size: 14px;
    color: var(--enterprise-muted);
}

.enterprise-hero-actions {
    display: flex;
    justify-content: center;
    margin-top: 26px;
}

.enterprise-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 138px;
    min-height: 42px;
    padding: 0 20px;
    border: 1px solid var(--enterprise-blue);
    border-radius: 6px;
    background: var(--enterprise-blue);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: background .18s ease, border-color .18s ease, transform .18s ease;
}

.enterprise-btn:hover {
    color: #fff;
    background: var(--enterprise-blue-dark);
    border-color: var(--enterprise-blue-dark);
    transform: translateY(-1px);
}

.enterprise-btn.is-outline {
    background: #fff;
    color: var(--enterprise-blue);
}

.enterprise-btn.is-outline:hover {
    background: var(--enterprise-sky);
    color: var(--enterprise-blue-dark);
}

.enterprise-filter {
    margin: 28px auto 30px;
    padding: 22px;
    border: 1px solid var(--enterprise-line);
    border-radius: 8px;
    background: #fff;
}

.enterprise-filter-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
}

.enterprise-field label {
    display: block;
    margin-bottom: 8px;
    font-size: 13px;
    color: var(--enterprise-muted);
}

.enterprise-field input,
.enterprise-field select,
.enterprise-field textarea {
    width: 100%;
    height: 42px;
    border: 1px solid var(--enterprise-line);
    border-radius: 6px;
    padding: 0 12px;
    background: #fff;
    color: var(--enterprise-ink);
    box-sizing: border-box;
}

.enterprise-field textarea {
    height: 160px;
    padding-top: 12px;
    resize: vertical;
    line-height: 1.7;
}

.enterprise-filter-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 18px;
}

.enterprise-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    margin-bottom: 34px;
}

.enterprise-card {
    display: flex;
    flex-direction: column;
    min-height: 232px;
    border: 1px solid var(--enterprise-line);
    border-radius: 8px;
    background: #fff;
    color: var(--enterprise-ink);
    overflow: hidden;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.enterprise-card:hover {
    color: var(--enterprise-ink);
    border-color: #c9d9f0;
    box-shadow: 0 16px 34px rgba(31, 75, 140, .1);
    transform: translateY(-3px);
}

.enterprise-card-head {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 22px 22px 16px;
}

.enterprise-avatar {
    flex: 0 0 52px;
    width: 52px;
    height: 52px;
    border-radius: 8px;
    background: linear-gradient(135deg, #3e8bff, #185bd8);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
}

.enterprise-card-name {
    margin: 0;
    font-size: 18px;
    line-height: 1.35;
    font-weight: 800;
}

.enterprise-card-meta {
    margin-top: 7px;
    color: var(--enterprise-muted);
    font-size: 13px;
}

.enterprise-card-body {
    padding: 0 22px 20px;
    color: #4f5b6f;
    line-height: 1.8;
    font-size: 14px;
    flex: 1;
}

.enterprise-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}

.enterprise-tag {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 0 9px;
    border: 1px solid #dce8f8;
    border-radius: 4px;
    background: #f7fbff;
    color: #376398;
    font-size: 12px;
}

.enterprise-empty {
    padding: 70px 20px;
    border: 1px dashed #cdd9eb;
    border-radius: 8px;
    text-align: center;
    color: var(--enterprise-muted);
    background: #fff;
    margin-bottom: 34px;
}

.enterprise-form-shell,
.enterprise-detail-section {
    margin: 28px auto 44px;
    padding: 34px;
    border: 1px solid var(--enterprise-line);
    border-radius: 8px;
    background: #fff;
}

.enterprise-section-title {
    margin: 0 0 20px;
    font-size: 24px;
    line-height: 1.3;
    font-weight: 800;
}

.enterprise-business-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 20px;
}

.enterprise-business-card {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 62px;
    padding: 0 24px 0 34px;
    border: 1px solid #dce7f6;
    border-radius: 6px;
    background: #fbfcff;
    box-sizing: border-box;
    overflow: hidden;
}

.enterprise-business-card::before {
    content: "";
    position: absolute;
    top: -1px;
    bottom: -1px;
    left: -1px;
    width: 7px;
    background: var(--enterprise-blue);
    border-radius: 6px 0 0 6px;
}

.enterprise-business-title {
    margin: 0;
    color: var(--enterprise-ink);
    font-size: 18px;
    line-height: 1.35;
    font-weight: 800;
    word-break: break-word;
}

.enterprise-form-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.enterprise-form-grid + .enterprise-section-title {
    margin-top: 34px;
}

.enterprise-checkboxes {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}

.enterprise-checkboxes label {
    min-height: 38px;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--enterprise-line);
    border-radius: 6px;
    padding: 0 12px;
    color: #4f5b6f;
}

.enterprise-upload-list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.enterprise-upload-item {
    min-height: 92px;
    border: 1px solid var(--enterprise-line);
    border-radius: 6px;
    padding: 12px;
    background: var(--enterprise-soft);
}

.enterprise-upload-item img {
    width: 100%;
    height: 118px;
    object-fit: cover;
    border-radius: 4px;
    background: #eaf1fb;
}

.enterprise-upload-preview {
    display: block;
    width: 100%;
    border: 0;
    padding: 0;
    background: transparent;
    cursor: zoom-in;
    line-height: 0;
}

.enterprise-preview-layer .layui-layer-content {
    line-height: 0;
}

.enterprise-preview-dialog img {
    display: block;
    width: auto;
    height: auto;
    max-width: 92vw;
    max-height: 82vh;
    background: #fff;
}

.enterprise-upload-action {
    min-height: 92px;
    border: 1px dashed #b8c8df;
    border-radius: 6px;
    background: #fbfdff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--enterprise-blue);
    cursor: pointer;
    font-weight: 700;
}

.enterprise-form-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 32px;
}

.enterprise-status {
    margin: 22px 0;
    padding: 16px 18px;
    border-radius: 6px;
    background: #fff8e7;
    border: 1px solid #f6dfaa;
    color: #8a5a00;
}

.enterprise-status.is-approved {
    background: #edf9f1;
    border-color: #c4ead0;
    color: #1d7a3a;
}

.enterprise-detail-hero {
    color: #fff;
}

.enterprise-detail-hero .enterprise-wrap {
    padding: 46px 34px;
    background: linear-gradient(135deg, #3188ff 0%, #1458df 100%);
    border-radius: 8px;
    box-sizing: border-box;
}

.enterprise-detail-hero h1 {
    margin: 0;
    font-size: 42px;
    line-height: 1.2;
}

.enterprise-detail-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 24px;
    font-size: 16px;
}

.enterprise-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.enterprise-contact-item {
    min-height: 74px;
    background: var(--enterprise-soft);
    border-radius: 6px;
    padding: 15px 18px;
}

.enterprise-contact-item span {
    display: block;
    color: var(--enterprise-muted);
    font-size: 13px;
    margin-bottom: 7px;
}

.enterprise-contact-item strong {
    font-size: 20px;
    word-break: break-all;
}

.enterprise-list-page {
    --enterprise-list-blue: #2f7cf1;
    --enterprise-list-blue-dark: #2357d4;
    --enterprise-list-ink: #142033;
    --enterprise-list-muted: #6f7b8d;
    --enterprise-list-line: #e7edf6;
    --enterprise-list-soft: #f7faff;
    background: #fff;
}

.enterprise-list-wrap {
    width: 1104px;
    max-width: calc(100% - 48px);
    margin: 0 auto;
}

.enterprise-list-content {
    width: 1232px;
}

.enterprise-list-hero {
    padding: 36px 0 30px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.enterprise-list-title {
    margin: 0;
    color: var(--enterprise-list-ink);
    font-size: 42px;
    line-height: 1.22;
    font-weight: 800;
    text-align: center;
}

.enterprise-list-cta {
    width: 246px;
    height: 46px;
    border-radius: 8px;
    background: linear-gradient(135deg, #256deb 0%, #1497e7 100%);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 800;
    box-shadow: 0 12px 28px rgba(37, 109, 235, .24);
}

.enterprise-list-cta:hover {
    color: #fff;
    background: linear-gradient(135deg, #1f62dd 0%, #118bd7 100%);
}

.enterprise-list-filter {
    margin: 24px 0 0;
    padding: 24px;
    border: 1px solid #dfe8f6;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 0 16px rgba(54, 116, 205, .14);
}

.enterprise-list-filter-grid {
    display: grid;
    grid-template-columns: 334px 334px 246px;
    gap: 26px;
    margin: 0 auto;
    max-width: 966px;
}

.enterprise-list-field label {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
}

.enterprise-list-field input,
.enterprise-list-field select {
    height: 46px;
    border: 1px solid #dfe7f3;
    border-radius: 6px;
    color: #667084;
    font-size: 13px;
    background-color: #fff;
}

.enterprise-filter-submit {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    border: 0;
    clip: rect(0, 0, 0, 0);
}

.enterprise-reset-btn {
    width: 114px;
    min-width: 114px;
    height: 46px;
    border: 1px solid #dfe7f3;
    border-radius: 6px;
    background: #fbfdff;
    color: #5d6676;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
}

.enterprise-reset-btn:hover {
    border-color: #cbd8ea;
    color: var(--enterprise-list-blue);
}

.enterprise-list-search-row {
    display: grid;
    grid-template-columns: 694px 26px 118px 14px 114px;
    gap: 0;
    margin: 18px auto 0;
    max-width: 966px;
}

@media screen and (min-width: 1025px) {
    .enterprise-list-search-field {
        grid-column: 1;
    }

    .enterprise-search-submit {
        grid-column: 3;
    }

    .enterprise-reset-btn {
        grid-column: 5;
    }
}

.enterprise-search-submit {
    height: 46px;
    border: 1px solid var(--enterprise-list-blue);
    border-radius: 6px;
    background: var(--enterprise-list-blue);
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
}

.enterprise-search-submit:hover,
.enterprise-search-submit:focus {
    border-color: var(--enterprise-list-blue-dark);
    background: var(--enterprise-list-blue-dark);
}

.enterprise-card-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px 18px;
    margin-top: 32px;
    margin-bottom: 40px;
}

.enterprise-company-card {
    min-height: 132px;
    border: 1px solid #e3e8f1;
    border-radius: 8px;
    background: #fff;
    color: var(--enterprise-list-ink);
    display: grid;
    grid-template-columns: 112px minmax(0, 1fr);
    gap: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(34, 73, 130, .04);
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.enterprise-company-card:hover,
.enterprise-company-card:focus {
    color: var(--enterprise-list-ink);
    border-color: #cddaf0;
    box-shadow: 0 14px 30px rgba(34, 73, 130, .1);
    transform: translateY(-2px);
}

.enterprise-company-card:focus {
    outline: none;
}

.enterprise-company-card:focus-visible {
    outline: 3px solid rgba(47, 124, 241, .34);
    outline-offset: 3px;
}

.enterprise-company-media {
    min-height: 132px;
    background: #eef3f9;
}

.enterprise-company-media img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 132px;
    object-fit: cover;
}

.enterprise-company-info {
    position: relative;
    min-width: 0;
    padding: 12px 12px 12px 0;
    display: flex;
    flex-direction: column;
}

.enterprise-company-name {
    margin: 0;
    overflow: hidden;
    display: -webkit-box;
    color: var(--enterprise-list-ink);
    font-size: 16px;
    line-height: 1.35;
    font-weight: 800;
    word-break: break-word;
    overflow-wrap: anywhere;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.enterprise-company-phone,
.enterprise-company-region {
    margin: 0;
    overflow: hidden;
    color: #647084;
    font-size: 13px;
    line-height: 1.4;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.enterprise-company-phone {
    margin-top: 10px;
    color: var(--enterprise-list-blue);
    font-weight: 800;
}

.enterprise-private-mask,
.enterprise-private-tip {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.enterprise-private-tip {
    margin-top: 2px;
}

.enterprise-company-region {
    margin-top: auto;
    padding-top: 8px;
    text-align: right;
}

.enterprise-list-empty {
    margin: 32px 0 40px;
}

.enterprise-list-pagination {
    margin-bottom: 42px;
    text-align: center;
}

@media screen and (max-width: 1024px) {
    .enterprise-stats,
    .enterprise-grid,
    .enterprise-filter-grid,
    .enterprise-form-grid,
    .enterprise-upload-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .enterprise-list-filter-grid,
    .enterprise-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .enterprise-list-search-row {
        grid-template-columns: minmax(0, 1fr) 118px 114px;
        max-width: none;
    }

    .enterprise-list-cta {
        grid-column: 1 / -1;
        justify-self: start;
    }
}

@media screen and (max-width: 640px) {
    .enterprise-wrap {
        max-width: calc(100% - 24px);
    }

    .enterprise-detail-hero .enterprise-wrap {
        padding: 34px 22px;
    }

    .enterprise-title,
    .enterprise-detail-hero h1 {
        font-size: 30px;
    }

    .enterprise-stats,
    .enterprise-grid,
    .enterprise-filter-grid,
    .enterprise-form-grid,
    .enterprise-upload-list,
    .enterprise-business-grid,
    .enterprise-detail-grid,
    .enterprise-checkboxes {
        grid-template-columns: 1fr;
    }

    .enterprise-form-shell,
    .enterprise-detail-section {
        padding: 22px;
    }

    .enterprise-list-wrap {
        max-width: calc(100% - 24px);
    }

    .enterprise-list-title {
        font-size: 32px;
    }

    .enterprise-list-filter-grid,
    .enterprise-card-grid {
        grid-template-columns: 1fr;
    }

    .enterprise-list-filter {
        padding: 16px;
    }

    .enterprise-list-search-row {
        grid-template-columns: 1fr;
        max-width: none;
    }

    .enterprise-list-cta,
    .enterprise-reset-btn,
    .enterprise-search-submit {
        width: 100%;
    }

    .enterprise-company-card {
        grid-template-columns: 112px minmax(0, 1fr);
        min-height: 116px;
    }

    .enterprise-company-card:hover,
    .enterprise-company-card:focus {
        box-shadow: none;
        transform: none;
    }

    .enterprise-company-media,
    .enterprise-company-media img {
        min-height: 116px;
    }

    .enterprise-company-info {
        padding: 10px 12px 10px 0;
    }

    .enterprise-company-name {
        font-size: 16px;
    }
}

/* 企业详情展示页 */
.enterprise-showcase-body {
    padding-top: 0 !important;
    background: #f7f9fc !important;
}

.enterprise-showcase-body .ihead,
.enterprise-showcase-body .enterprise-settle-float,
.enterprise-showcase-body .footer {
    display: none !important;
}

.enterprise-showcase-page {
    --showcase-blue: #2563eb;
    --showcase-blue-dark: #1d4ed8;
    --showcase-ink: #07142b;
    --showcase-body: #334155;
    --showcase-muted: #64748b;
    --showcase-line: #e5eaf2;
    --showcase-bg: #f7f9fc;
    --showcase-orange: #f97316;
    min-height: 100vh;
    overflow: hidden;
    background: var(--showcase-bg);
    color: var(--showcase-ink);
    font-family: "Microsoft YaHei", Arial, sans-serif;
}

.enterprise-showcase-wrap {
    width: 1058px;
    max-width: calc(100% - 48px);
    margin: 0 auto;
}

.enterprise-showcase-hero {
    position: relative;
    height: 560px;
    overflow: hidden;
    color: #fff;
    background: #1d4ed8;
}

.enterprise-showcase-slides,
.enterprise-showcase-slide {
    position: absolute;
    inset: 0;
}

.enterprise-showcase-slide {
    opacity: 0;
    transition: opacity .35s ease;
}

.enterprise-showcase-slide.is-active {
    opacity: 1;
}

.enterprise-showcase-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.enterprise-showcase-slide.is-placeholder {
    background:
        linear-gradient(90deg, rgba(37, 99, 235, .8), rgba(37, 99, 235, .24)),
        linear-gradient(135deg, #214fba 0%, #7b91c8 100%);
}

.enterprise-showcase-hero-shade {
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        linear-gradient(90deg, rgba(37, 99, 235, .78) 0%, rgba(37, 99, 235, .58) 34%, rgba(37, 99, 235, .2) 100%),
        rgba(31, 88, 214, .12);
}

.enterprise-showcase-hero-content {
    position: relative;
    z-index: 3;
    width: 480px;
    padding-top: 168px;
    margin-left: calc((100% - 1058px) / 2);
}

.enterprise-showcase-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 88px;
    height: 34px;
    padding: 0 18px;
    border: 1px solid rgba(255, 255, 255, .45);
    border-radius: 18px;
    background: rgba(255, 255, 255, .16);
    color: #fff;
    font-size: 14px;
    line-height: 1;
    box-shadow: inset 0 0 16px rgba(255, 255, 255, .1);
}

.enterprise-showcase-hero h1 {
    margin: 23px 0 0;
    max-width: 430px;
    color: #fff;
    font-size: 42px;
    line-height: 1.14;
    font-weight: 800;
    letter-spacing: 0;
}

.enterprise-showcase-hero p {
    margin: 14px 0 0;
    max-width: 520px;
    color: rgba(255, 255, 255, .9);
    font-size: 18px;
    line-height: 1.7;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.enterprise-showcase-arrow {
    position: absolute;
    top: 50%;
    z-index: 4;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, .35);
    border-radius: 50%;
    background: rgba(255, 255, 255, .16);
    color: #fff;
    padding: 0;
    box-sizing: border-box;
    font-size: 0;
    line-height: 1;
    cursor: pointer;
    transform: translateY(-50%);
}

.enterprise-showcase-arrow::before {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    width: 12px;
    height: 12px;
    border-top: 2px solid currentColor;
    border-left: 2px solid currentColor;
    box-sizing: border-box;
}

.enterprise-showcase-arrow.is-prev {
    left: 16px;
}

.enterprise-showcase-arrow.is-prev::before {
    transform: translate(-42%, -50%) rotate(-45deg);
}

.enterprise-showcase-arrow.is-next {
    right: 16px;
}

.enterprise-showcase-arrow.is-next::before {
    transform: translate(-58%, -50%) rotate(135deg);
}

.enterprise-showcase-dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 34px;
    z-index: 4;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.enterprise-showcase-dots button {
    width: 24px;
    height: 6px;
    border: 0;
    border-radius: 6px;
    background: rgba(255, 255, 255, .42);
    cursor: pointer;
}

.enterprise-showcase-dots button.is-active {
    background: var(--showcase-blue);
}

.enterprise-showcase-section {
    background: #fff;
}

.enterprise-showcase-page.is-reveal-ready .enterprise-reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity .72s ease, transform .72s cubic-bezier(.2, .78, .22, 1);
    will-change: opacity, transform;
}

.enterprise-showcase-page.is-reveal-ready .enterprise-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.enterprise-showcase-page.is-reveal-ready .enterprise-reveal-delay-1 {
    transition-delay: .08s;
}

.enterprise-showcase-page.is-reveal-ready .enterprise-reveal-delay-2 {
    transition-delay: .16s;
}

.enterprise-showcase-page.is-reveal-ready .enterprise-reveal-delay-3 {
    transition-delay: .24s;
}

.enterprise-showcase-profile {
    padding: 114px 0 76px;
}

.enterprise-showcase-heading {
    text-align: center;
}

.enterprise-showcase-heading span {
    display: block;
    color: #2563eb;
    font-size: 14px;
    line-height: 1;
    letter-spacing: 1px;
    font-weight: 500;
    text-transform: uppercase;
}

.enterprise-showcase-heading h2 {
    position: relative;
    margin: 15px 0 0;
    padding-bottom: 21px;
    color: var(--showcase-ink);
    font-size: 36px;
    line-height: 1.15;
    font-weight: 800;
}

.enterprise-showcase-heading h2::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 64px;
    height: 4px;
    border-radius: 4px;
    background: #3b82f6;
    transform: translateX(-50%);
}

.enterprise-profile-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 496px;
    gap: 64px;
    align-items: center;
    margin-top: 64px;
}

.enterprise-profile-copy p {
    margin: 0 0 28px;
    color: var(--showcase-body);
    font-size: 18px;
    line-height: 1.65;
}

.enterprise-profile-copy strong {
    color: #1d4ed8;
    font-weight: 800;
}

.enterprise-profile-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.enterprise-profile-tags span {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 14px;
    border-radius: 7px;
    background: #eef4ff;
    color: #1d4ed8;
    font-size: 14px;
}

.enterprise-profile-tags span:nth-child(5n) {
    background: #fff3e9;
    color: #ea580c;
}

.enterprise-profile-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.enterprise-profile-stat {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 126px;
    padding: 20px 24px;
    border: 1px solid var(--showcase-line);
    border-radius: 14px;
    background: #fff;
    box-sizing: border-box;
    box-shadow: 0 8px 22px rgba(15, 23, 42, .03);
}

.enterprise-profile-stat strong {
    display: block;
    color: #3f4650;
    font-size: 30px;
    line-height: 1.12;
    font-weight: 800;
    overflow-wrap: break-word;
}

.enterprise-profile-stat span {
    display: block;
    margin-top: 12px;
    color: #4b5563;
    font-size: 14px;
    line-height: 1.25;
    font-weight: 700;
}

.enterprise-profile-stat.is-primary {
    border-color: transparent;
    background: #2f55d4;
}

.enterprise-profile-stat.is-primary strong,
.enterprise-profile-stat.is-primary span,
.enterprise-profile-stat.is-orange strong,
.enterprise-profile-stat.is-orange span {
    color: #fff;
}

.enterprise-profile-stat.is-orange {
    border-color: transparent;
    background: #ff7317;
}

.enterprise-profile-stat.is-orange strong {
    white-space: nowrap;
}

.enterprise-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-top: 78px;
}

.enterprise-feature-card {
    min-height: 216px;
    padding: 32px;
    border: 1px solid var(--showcase-line);
    border-radius: 14px;
    background: #fff;
    box-sizing: border-box;
    box-shadow: 0 10px 24px rgba(15, 23, 42, .03);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
    will-change: transform;
}

.enterprise-feature-card:hover,
.enterprise-feature-card:focus-within {
    border-color: rgba(37, 99, 235, .18);
    box-shadow: 0 18px 36px rgba(15, 23, 42, .1);
    transform: translateY(-8px);
}

.enterprise-feature-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #eff6ff;
}

.enterprise-feature-icon::before {
    content: "";
    width: 22px;
    height: 22px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.enterprise-feature-icon.is-blue::before {
    background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7.2 17.6V8.7L12 5.8L16.8 8.7V17.6L12 20.4L7.2 17.6Z' stroke='%232563eb' stroke-width='2' stroke-linejoin='round'/%3E%3Cpath d='M12 5.8V13.1L16.8 17.6' stroke='%232563eb' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M12 13.1L7.2 17.6' stroke='%232563eb' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.enterprise-feature-icon.is-cyan {
    background: #eef6ff;
}

.enterprise-feature-icon.is-cyan::before {
    background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='12' cy='7' r='3' stroke='%232563eb' stroke-width='2'/%3E%3Ccircle cx='7' cy='16.5' r='2.5' stroke='%232563eb' stroke-width='2'/%3E%3Ccircle cx='17' cy='16.5' r='2.5' stroke='%232563eb' stroke-width='2'/%3E%3Cpath d='M10.7 9.7L8.1 14.2M13.3 9.7L15.9 14.2M9.5 16.5H14.5' stroke='%232563eb' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
}

.enterprise-feature-icon.is-orange {
    background: #fff4e8;
}

.enterprise-feature-icon.is-orange::before {
    background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 3.8L18.2 6.2V11.2C18.2 15.4 15.7 18.9 12 20.4C8.3 18.9 5.8 15.4 5.8 11.2V6.2L12 3.8Z' stroke='%23f97316' stroke-width='2' stroke-linejoin='round'/%3E%3Cpath d='M9.1 11.8L11.2 13.9L15.2 9.7' stroke='%23f97316' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.enterprise-feature-card h3 {
    margin: 22px 0 0;
    color: var(--showcase-ink);
    font-size: 22px;
    line-height: 1.25;
    font-weight: 800;
}

.enterprise-feature-card p {
    margin: 14px 0 0;
    color: #475569;
    font-size: 15px;
    line-height: 1.75;
}

.enterprise-info-card {
    min-height: 168px;
    padding: 28px 32px;
    overflow: hidden;
}

.enterprise-info-card h3 {
    margin-top: 0;
}

.enterprise-license-preview {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 112px;
    margin-top: 16px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    background: #f8fafc;
}

.enterprise-license-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.enterprise-license-file {
    display: inline-block;
    max-width: 100%;
    margin-top: 18px;
    color: #2563eb;
    font-size: 15px;
    line-height: 1.5;
    font-weight: 700;
}

.enterprise-info-empty {
    color: #94a3b8;
}

.enterprise-info-text {
    overflow-wrap: break-word;
    word-break: break-all;
}

.enterprise-info-contact {
    color: var(--showcase-ink);
    font-size: 18px;
    font-weight: 800;
}

.enterprise-showcase-cases {
    padding: 94px 0 110px;
    background: var(--showcase-bg);
}

.enterprise-case-carousel {
    position: relative;
    --case-gap: 24px;
    margin: 50px auto 0;
}

.enterprise-case-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-top: 50px;
}

.enterprise-case-viewport {
    overflow: hidden;
}

.enterprise-case-track {
    display: flex;
    gap: var(--case-gap);
    transition: transform .28s ease;
}

.enterprise-case-card {
    flex: 0 0 calc((100% - 48px) / 3);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--showcase-line);
    border-radius: 13px;
    background: #fff;
    box-shadow: 0 14px 28px rgba(15, 23, 42, .05);
    transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
    will-change: transform;
}

.enterprise-case-media {
    position: relative;
    display: block;
    width: 100%;
    height: 208px;
    padding: 0;
    border: 0;
    overflow: hidden;
    background: #dbe7f4;
    cursor: zoom-in;
}

.enterprise-case-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .28s ease;
}

.enterprise-case-file {
    color: var(--showcase-blue);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-decoration: none;
    cursor: pointer;
}

.enterprise-case-file-icon {
    min-width: 72px;
    height: 48px;
    padding: 0 14px;
    border-radius: 8px;
    background: #fff;
    color: var(--showcase-blue);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    line-height: 1;
    font-weight: 800;
    box-shadow: 0 10px 24px rgba(37, 99, 235, .12);
    box-sizing: border-box;
}

.enterprise-case-file-text {
    color: #475569;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 700;
}

.enterprise-case-body {
    padding: 22px 20px 24px;
}

.enterprise-case-body h3 {
    margin: 0;
    overflow: hidden;
    color: var(--showcase-ink);
    font-size: 18px;
    line-height: 1.35;
    font-weight: 800;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.enterprise-case-card:hover,
.enterprise-case-card:focus-within {
    border-color: rgba(37, 99, 235, .16);
    box-shadow: 0 20px 38px rgba(15, 23, 42, .12);
    transform: translateY(-10px);
}

.enterprise-case-card:hover .enterprise-case-media img,
.enterprise-case-card:focus-within .enterprise-case-media img {
    transform: scale(1.04);
}

.enterprise-case-arrow {
    position: absolute;
    top: 50%;
    z-index: 3;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(37, 99, 235, .18);
    border-radius: 50%;
    background: #fff;
    color: var(--showcase-blue);
    font-size: 34px;
    line-height: 1;
    box-shadow: 0 12px 24px rgba(15, 23, 42, .12);
    cursor: pointer;
    transform: translateY(-50%);
}

.enterprise-case-arrow.is-prev {
    left: -74px;
}

.enterprise-case-arrow.is-next {
    right: -74px;
}

.enterprise-case-arrow:hover,
.enterprise-case-arrow:focus {
    color: #fff;
    background: var(--showcase-blue);
}

.enterprise-case-lightbox {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 42px;
    background: rgba(15, 23, 42, .82);
    box-sizing: border-box;
}

.enterprise-case-lightbox.is-active {
    display: flex;
}

.enterprise-case-lightbox img {
    display: block;
    max-width: 92vw;
    max-height: 86vh;
    border-radius: 6px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, .35);
}

.enterprise-case-lightbox-close {
    position: absolute;
    top: 24px;
    right: 28px;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, .16);
    color: #fff;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}

.enterprise-case-lightbox-close:hover,
.enterprise-case-lightbox-close:focus {
    background: rgba(255, 255, 255, .28);
}

.enterprise-showcase-cta {
    padding: 92px 0 95px;
    background: #2456d9;
    color: #fff;
    text-align: center;
}

.enterprise-showcase-cta h2 {
    margin: 0;
    color: #fff;
    font-size: 36px;
    line-height: 1.2;
    font-weight: 800;
}

.enterprise-showcase-cta p {
    margin: 24px 0 0;
    color: rgba(255, 255, 255, .86);
    font-size: 18px;
    line-height: 1.6;
}

.enterprise-cta-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
}

.enterprise-cta-btn {
    min-width: 130px;
    height: 52px;
    padding: 0 28px;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 26px;
    background: rgba(255, 255, 255, .08);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 700;
}

.enterprise-cta-btn:hover {
    color: #fff;
    background: rgba(255, 255, 255, .16);
}

.enterprise-cta-btn.is-light {
    background: #fff;
    color: #1d4ed8;
}

.enterprise-cta-btn.is-light:hover {
    color: #1d4ed8;
    background: #f8fafc;
}

@media screen and (max-width: 1200px) {
    .enterprise-showcase-hero-content {
        margin-left: 56px;
    }
}

@media screen and (max-width: 1024px) {
    .enterprise-profile-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .enterprise-profile-stats,
    .enterprise-feature-grid,
    .enterprise-case-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .enterprise-case-carousel .enterprise-case-card {
        flex-basis: calc((100% - 24px) / 2);
    }

    .enterprise-case-arrow.is-prev {
        left: -56px;
    }

    .enterprise-case-arrow.is-next {
        right: -56px;
    }
}

@media screen and (max-width: 640px) {
    .enterprise-showcase-wrap {
        max-width: calc(100% - 28px);
    }

    .enterprise-showcase-hero {
        height: 520px;
    }

    .enterprise-showcase-hero-content {
        width: auto;
        margin: 0 28px;
        padding-top: 138px;
    }

    .enterprise-showcase-hero h1 {
        font-size: 34px;
    }

    .enterprise-showcase-hero p {
        font-size: 16px;
    }

    .enterprise-showcase-arrow {
        display: none;
    }

    .enterprise-showcase-profile,
    .enterprise-showcase-cases {
        padding-top: 72px;
        padding-bottom: 68px;
    }

    .enterprise-showcase-heading h2,
    .enterprise-showcase-cta h2 {
        font-size: 30px;
    }

    .enterprise-profile-copy p {
        font-size: 16px;
    }

    .enterprise-profile-stats,
    .enterprise-feature-grid,
    .enterprise-case-grid {
        grid-template-columns: 1fr;
    }

    .enterprise-profile-stat strong {
        font-size: 26px;
    }

    .enterprise-case-carousel {
        max-width: 100%;
    }

    .enterprise-case-carousel .enterprise-case-card {
        flex-basis: 100%;
    }

    .enterprise-case-arrow {
        top: 104px;
        width: 38px;
        height: 38px;
        font-size: 30px;
    }

    .enterprise-case-arrow.is-prev {
        left: 10px;
    }

    .enterprise-case-arrow.is-next {
        right: 10px;
    }

    .enterprise-case-lightbox {
        padding: 18px;
    }

    .enterprise-case-lightbox-close {
        top: 14px;
        right: 14px;
    }

    .enterprise-cta-actions {
        flex-direction: column;
        align-items: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    .enterprise-showcase-page.is-reveal-ready .enterprise-reveal,
    .enterprise-showcase-page.is-reveal-ready .enterprise-reveal.is-visible {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

.enterprise-template-page {
    --tpl-blue: #0b62d6;
    --tpl-blue-bright: #1d82ff;
    --tpl-dark: #111827;
    --tpl-panel: #ffffff;
    --tpl-muted: #64748b;
    min-height: 100vh;
    background: #fff;
    color: #111827;
    font-family: "Microsoft YaHei", Arial, sans-serif;
    overflow: hidden;
}

.enterprise-template-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    min-height: 74px;
    padding: 0 56px;
    display: grid;
    grid-template-columns: minmax(300px, 420px) 1fr minmax(300px, 420px);
    align-items: center;
    box-sizing: border-box;
    background: rgba(10, 10, 10, .72);
    color: #fff;
    transition: background .22s ease, color .22s ease, box-shadow .22s ease;
}

.enterprise-template-header[data-theme="light"] {
    background: rgba(255, 255, 255, .94);
    color: #111827;
    box-shadow: 0 8px 22px rgba(15, 23, 42, .12);
}

.enterprise-template-brand {
    display: flex;
    align-items: center;
    min-width: 0;
    color: inherit;
}

.enterprise-template-brand:hover {
    color: inherit;
}

.enterprise-template-brand span {
    font-size: 18px;
    font-weight: 800;
    line-height: 1.35;
    word-break: break-all;
}

.enterprise-template-nav {
    display: flex;
    justify-content: center;
    gap: 34px;
}

.enterprise-template-nav a {
    color: inherit;
    font-size: 16px;
    line-height: 1;
}

.enterprise-template-hero {
    position: relative;
    min-height: 100vh;
    background: #111;
    overflow: hidden;
}

.enterprise-template-slides,
.enterprise-template-slide {
    position: absolute;
    inset: 0;
}

.enterprise-template-slide {
    opacity: 0;
    transition: opacity .45s ease;
}

.enterprise-template-slide.is-active {
    opacity: 1;
}

.enterprise-template-slide img,
.enterprise-template-slide video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.enterprise-template-slide.is-placeholder {
    background: linear-gradient(135deg, #1f2937, #0b62d6);
}

.enterprise-template-hero-mask {
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        repeating-linear-gradient(65deg, rgba(255,255,255,.04) 0, rgba(255,255,255,.04) 1px, transparent 1px, transparent 4px),
        linear-gradient(90deg, rgba(0,0,0,.72), rgba(0,0,0,.34) 48%, rgba(0,0,0,.52));
}

.enterprise-template-hero-copy {
    position: relative;
    z-index: 3;
    width: min(900px, calc(100% - 96px));
    padding-top: 35vh;
    margin-left: 8vw;
}

.enterprise-template-hero-copy span {
    display: block;
    margin-bottom: 18px;
    color: #fff;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 0;
}

.enterprise-template-hero-copy h1 {
    margin: 0;
    color: #fff;
    font-size: 52px;
    line-height: 1.18;
    font-weight: 900;
}

.enterprise-template-hero-copy p {
    margin: 20px 0 0;
    color: rgba(255,255,255,.9);
    font-size: 22px;
    line-height: 1.6;
}

.enterprise-template-scroll {
    position: absolute;
    left: 50%;
    bottom: 26px;
    z-index: 4;
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    transform: translateX(-50%);
}

.enterprise-template-hero-controls {
    position: absolute;
    right: 7vw;
    bottom: 38px;
    z-index: 4;
    display: flex;
    gap: 20px;
}

.enterprise-template-hero-controls button {
    width: 50px;
    height: 50px;
    border: 1px solid rgba(255,255,255,.38);
    background: rgba(0,0,0,.15);
    cursor: pointer;
    position: relative;
}

.enterprise-template-hero-controls button:before {
    content: "";
    position: absolute;
    top: 18px;
    left: 19px;
    width: 12px;
    height: 12px;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
}

.enterprise-template-hero-controls .is-prev:before {
    transform: rotate(45deg);
}

.enterprise-template-hero-controls .is-next:before {
    transform: rotate(-135deg);
}

.enterprise-template-dots {
    position: absolute;
    left: 8vw;
    bottom: 52px;
    z-index: 4;
    display: flex;
    gap: 12px;
}

.enterprise-template-dots button {
    width: 12px;
    height: 12px;
    border: 0;
    border-radius: 50%;
    background: rgba(255,255,255,.32);
    cursor: pointer;
}

.enterprise-template-dots button.is-active {
    width: 30px;
    border-radius: 10px;
    background: #fff;
}

.enterprise-template-section-head {
    text-align: center;
}

.enterprise-template-section-head h2 {
    margin: 0;
    color: #2563eb;
    font-size: 42px;
    line-height: 1.2;
    font-weight: 900;
}

.enterprise-template-section-head p {
    margin: 12px 0 0;
    color: #1f2937;
    font-size: 20px;
}

.enterprise-template-section-head i,
.enterprise-template-band-copy i {
    display: block;
    width: 58px;
    height: 4px;
    margin: 16px auto 0;
    border-radius: 4px;
    background: linear-gradient(90deg, #186af0 0 45%, transparent 45% 55%, #42b8ff 55%);
}

.enterprise-template-services {
    padding: 106px 8vw 92px;
    background: #fff;
}

.enterprise-template-service-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 30px;
    max-width: 1570px;
    margin: 56px auto 0;
}

.enterprise-template-service-card {
    position: relative;
    min-height: 362px;
    border: 1px solid #e5e7eb;
    background: #fff;
    color: #111827;
    overflow: hidden;
    box-shadow: 0 16px 34px rgba(15, 23, 42, .08);
}

.enterprise-template-service-card:before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: #075bbd;
    transform: translateY(100%);
    transition: transform .32s ease;
}

.enterprise-template-service-card:hover:before,
.enterprise-template-service-card:focus:before {
    transform: translateY(0);
}

.enterprise-template-service-image {
    position: relative;
    z-index: 2;
    height: 214px;
    overflow: hidden;
    margin: 10px;
    background: #eef2f7;
}

.enterprise-template-service-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .34s ease;
}

.enterprise-template-service-card:hover img {
    transform: scale(1.08);
}

.enterprise-template-service-image span,
.enterprise-template-case-card div span {
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #243447, #0b62d6);
}

.enterprise-template-service-body {
    position: relative;
    z-index: 2;
    padding: 18px 24px 30px;
    text-align: center;
}

.enterprise-template-service-body h3 {
    margin: 0;
    color: #111827;
    font-size: 22px;
    font-weight: 900;
}

.enterprise-template-service-body p {
    margin: 16px 0 0;
    color: #64748b;
    font-size: 16px;
    line-height: 1.65;
}

.enterprise-template-service-card:hover h3 {
    color: #fff;
}

.enterprise-template-service-card:hover p {
    color: rgba(255,255,255,.86);
}

.enterprise-template-contact-band {
    position: relative;
    min-height: 520px;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.enterprise-template-contact-mask {
    position: absolute;
    inset: 0;
    background: rgba(11, 98, 214, .48);
}

.enterprise-template-band-copy {
    position: relative;
    z-index: 2;
    width: min(980px, calc(100% - 40px));
}

.enterprise-template-band-copy h2 {
    margin: 0;
    color: #fff;
    font-size: 40px;
    font-weight: 900;
}

.enterprise-template-band-copy p {
    margin: 26px auto 0;
    color: #fff;
    font-size: 18px;
    line-height: 1.7;
}

.enterprise-template-phones {
    display: flex;
    justify-content: center;
    gap: 28px;
    margin-top: 30px;
}

.enterprise-template-phones a {
    box-sizing: border-box;
    min-width: 230px;
    height: 54px;
    border-radius: 27px;
    background: rgba(255,255,255,.26);
    border: 1px solid rgba(255,255,255,.36);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 22px;
    font-weight: 900;
}

.enterprise-template-phone-icon {
    display: inline-block;
    width: 30px;
    height: 30px;
    flex: 0 0 auto;
    background: url("../../../../static/images/phone1111.png") center / contain no-repeat;
}

.enterprise-template-cases {
    padding: 98px 8vw 110px;
    background: #fff;
}

.enterprise-template-case-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 38px;
    margin-top: 26px;
}

.enterprise-template-case-tabs button {
    min-width: 234px;
    height: 50px;
    border: 1px solid #d1d5db;
    border-radius: 25px;
    background: #fff;
    color: #1f2937;
    font-size: 17px;
    cursor: pointer;
}

.enterprise-template-case-tabs button.is-active {
    border-color: #5c8dff;
    background: #075bbd;
    color: #fff;
}

.enterprise-template-case-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 30px;
    max-width: 1570px;
    margin: 74px auto 0;
}

.enterprise-template-case-card {
    padding: 20px;
    border: 1px solid #e5e7eb;
    color: #111827;
    background: #fff;
    box-shadow: 0 16px 34px rgba(15, 23, 42, .08);
}

.enterprise-template-case-card div {
    height: 260px;
    overflow: hidden;
    background: #eef2f7;
}

.enterprise-template-case-card img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .28s ease;
}

.enterprise-template-case-card:hover img {
    transform: scale(1.05);
}

.enterprise-template-case-card h3 {
    margin: 20px 0 0;
    min-height: 48px;
    background: #f3f6fb;
    color: #111827;
    font-size: 16px;
    line-height: 48px;
    text-align: center;
    font-weight: 700;
}

.enterprise-template-empty {
    margin-top: 60px;
    color: #9ca3af;
    text-align: center;
}

.enterprise-template-consult {
    padding: 56px 0 0;
    background: #e8f5ff;
}

.enterprise-template-consult-inner {
    width: min(1744px, calc(100% - 48px));
    margin: 0 auto;
    padding: 34px 86px 54px;
    border-radius: 8px;
    background: linear-gradient(120deg, #173ed1, #2e80ee);
    box-sizing: border-box;
    text-align: center;
}

.enterprise-template-consult-inner h2 {
    margin: 0;
    color: #fff;
    font-size: 40px;
    font-weight: 900;
}

.enterprise-template-consult-inner p {
    margin: 12px 0 30px;
    color: rgba(255,255,255,.72);
    font-size: 14px;
}

.enterprise-template-consult-form {
    display: grid;
    grid-template-columns: 250px 250px 250px 1fr 156px;
    gap: 10px;
}

.enterprise-template-consult-form label {
    position: relative;
    margin: 0;
}

.enterprise-template-consult-form span {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

.enterprise-template-consult-form input {
    width: 100%;
    height: 50px;
    border: 0;
    border-radius: 4px;
    padding: 0 18px 0 28px;
    background: rgba(255,255,255,.18);
    color: #fff;
    box-sizing: border-box;
}

.enterprise-template-consult-form input::placeholder {
    color: rgba(255,255,255,.86);
    opacity: 1;
}

.enterprise-template-consult-form button {
    border: 0;
    border-radius: 25px;
    background: #fff;
    color: #0e55d8;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
}

@media screen and (max-width: 1280px) {
    .enterprise-template-header {
        grid-template-columns: 220px 1fr 220px;
        padding: 0 24px;
    }

    .enterprise-template-service-grid,
    .enterprise-template-case-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .enterprise-template-consult-form {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .enterprise-template-consult-form button {
        height: 50px;
        grid-column: 1 / -1;
    }
}

@media screen and (max-width: 720px) {
    .enterprise-template-header {
        min-height: 64px;
        grid-template-columns: 1fr;
    }

    .enterprise-template-nav {
        display: none;
    }

    .enterprise-template-hero-copy {
        padding-top: 28vh;
        margin-left: 24px;
    }

    .enterprise-template-hero-copy h1 {
        font-size: 36px;
    }

    .enterprise-template-hero-copy p {
        font-size: 17px;
    }

    .enterprise-template-services,
    .enterprise-template-cases {
        padding-left: 18px;
        padding-right: 18px;
    }

    .enterprise-template-service-grid,
    .enterprise-template-case-grid,
    .enterprise-template-consult-form {
        grid-template-columns: 1fr;
    }

    .enterprise-template-contact-band {
        background-attachment: scroll;
    }

    .enterprise-template-phones {
        flex-direction: column;
        align-items: center;
    }

    .enterprise-template-case-tabs {
        gap: 12px;
    }

    .enterprise-template-case-tabs button {
        min-width: 100%;
    }

    .enterprise-template-consult-inner {
        width: calc(100% - 24px);
        padding: 28px 18px 32px;
    }
}
