/*
 * www-common.css
 * 头部菜单 / 右侧悬浮窗 / 页脚 三块所需样式，最初从 web-www/public/css/common.css 精简而来。
 * 依赖 tailwind-preflight.css 提供基础 reset。
 *
 * 【维护约定】此文件为手工维护的源文件，请勿整份覆盖/重新生成。
 * 需要补 web-www 的规则时，只做定点新增（不要重跑抽取脚本冲掉本地改动）。
 */

.newBobileBridge {
    display: none;
}

.layout-center {
    max-width: 1200px;
    margin: 0 auto;
}

.headerbox {
    top: 0;
    z-index: 50;
    position: fixed;
    width: 100%;
    background: #F7FAFE;
}

.headerbox-padding-top {
    height: 80px;
}

/* 桌面营销页的透明/滚动/实色 Header 状态；手机端使用独立抽屉头部，不进入这里。 */
@media screen and (min-width: 769px) {
    .site-shell--overlay-header .headerbox {
        background-color: rgba(247, 250, 254, 0);
        box-shadow:
            inset 0 -1px 0 rgba(196, 211, 232, 0),
            0 6px 20px rgba(23, 37, 68, 0);
        -webkit-backdrop-filter: blur(0);
        backdrop-filter: blur(0);
        transition:
            background-color 240ms ease,
            box-shadow 240ms ease,
            -webkit-backdrop-filter 240ms ease,
            backdrop-filter 240ms ease;
    }
    .site-shell--overlay-header .headerbox--scrolled {
        background-color: rgba(247, 250, 254, .94);
        box-shadow:
            inset 0 -1px 0 rgba(196, 211, 232, .55),
            0 6px 20px rgba(23, 37, 68, .08);
        -webkit-backdrop-filter: blur(14px);
        backdrop-filter: blur(14px);
    }
    .site-shell--overlay-header .headerbox-padding-top {
        height: 0;
    }
    .site-shell--overlay-header.site-shell--solid-header .headerbox {
        background-color: rgba(247, 250, 254, .94);
        box-shadow:
            inset 0 -1px 0 rgba(196, 211, 232, .55),
            0 6px 20px rgba(23, 37, 68, .08);
        -webkit-backdrop-filter: blur(14px);
        backdrop-filter: blur(14px);
    }
}

@media screen and (min-width: 769px) and (prefers-reduced-motion: reduce) {
    .site-shell--overlay-header .headerbox {
        transition: none;
    }
}

.ec-site-header__desktop {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 1380px;
    height: 80px;
    margin: 0 auto;
    padding: 0 72px;
    gap: 40px;
    box-sizing: border-box;
    position: relative;
}

.ec-site-header__nav {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
}

.ec-site-header__nav-item {
    position: relative;
    margin: 0;
}

.ec-site-header__nav-link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 20px;
    color: #272B34;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    position: relative;
    white-space: nowrap;
}

.ec-site-header__nav-link.active,
.ec-site-header__nav-link.is-current {
    color: #1A76FF;
}

.ec-site-header__nav-link.is-current {
    font-size: 18px;
    font-weight: 500;
    line-height: 26px;
}

.ec-site-header__nav-link.is-current::before {
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 32px;
    height: 4px;
    border-radius: 4px;
    background: #1A76FF;
    content: '';
    transform: translateX(-50%);
}

/* 所有桌面下拉统一使用同一个 BEM Element；旧类仅供现有 JS 识别。 */
.ec-site-header__dropdown {
    position: absolute;
    z-index: 100;
    top: 100%;
    left: 0;
    right: auto;
    display: none;
    width: max-content;
    min-width: 176px;
    max-width: calc(100vw - 32px);
    margin: 0;
    padding: 14px;
    overflow: hidden;
    box-sizing: border-box;
    background: #fff;
    border: 1px solid #E4EAF3;
    border-radius: 16px;
    box-shadow: 0 18px 48px rgba(23, 37, 68, 0.16);
    list-style: none;
}

.ec-site-header__nav-item.is-open > .ec-site-header__dropdown {
    display: block;
}

.ec-site-header__nav-link:focus-visible,
.ec-site-header__dropdown-link:focus-visible {
    border-radius: 8px;
    outline: 2px solid #1A76FF !important;
    outline-offset: 2px;
}

.ec-site-header__dropdown-link {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 42px;
    padding: 0 14px;
    box-sizing: border-box;
    color: #252B36;
    border-radius: 9px;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    text-align: left;
    transition: color .2s ease, background-color .2s ease;
}

.ec-site-header__dropdown-link:hover,
.ec-site-header__dropdown-link.is-active {
    color: #1A76FF;
}

.ec-site-header__dropdown--compact {
    width: 176px;
}

/* 解决方案当前为单列，宽高跟随内容。 */
.ec-site-header__dropdown--solution {
    min-width: 0;
}

.ec-site-header__dropdown--solution .ec-site-header__dropdown-group {
    display: block;
    width: max-content;
    min-width: 0;
}

.ec-site-header__dropdown-heading {
    margin: 0 0 8px;
    padding: 2px 10px 12px;
    color: #7A8496;
    border-bottom: 1px solid #EDF1F6;
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
}

.ec-site-header__dropdown--solution .ec-site-header__dropdown-link {
    width: auto;
    min-width: 0;
    min-height: 48px;
    margin: 0 0 4px;
    padding: 8px 10px;
    gap: 12px;
    white-space: nowrap;
}

.ec-solution-menu__icon {
    display: inline-flex;
    flex: 0 0 24px;
    align-items: center;
    justify-content: center;
}

.ec-solution-menu__image {
    display: block;
    width: 20px;
    height: 20px;
    object-fit: contain;
}

/* 产品下拉只保留多列内容变体，外壳完全复用 ec-site-header__dropdown。 */
.ec-site-header__dropdown--product {
    min-width: 0;
}

.ec-site-header__dropdown-groups {
    display: flex;
    align-items: stretch;
    margin: 0;
    padding: 0;
    list-style: none;
}

.ec-site-header__dropdown--product .ec-site-header__dropdown-group {
    display: block;
    width: auto;
    min-width: 240px;
    padding: 0 12px;
    box-sizing: border-box;
}

.ec-site-header__dropdown--product .ec-site-header__dropdown-group:first-child {
    padding-left: 0;
}

.ec-site-header__dropdown--product .ec-site-header__dropdown-group:last-child {
    padding-right: 0;
}

.ec-site-header__dropdown--product .ec-site-header__dropdown-group + .ec-site-header__dropdown-group {
    border-left: 1px solid #EDF1F6;
}

.ec-site-header__dropdown--product .ec-site-header__dropdown-link {
    display: grid;
    grid-template-columns: 24px minmax(0, 1fr);
    column-gap: 12px;
    align-items: flex-start;
    min-height: 56px;
    margin-bottom: 4px;
    padding: 8px;
}

.ec-site-header__dropdown--product .ec-site-header__dropdown-link:hover {
    padding-left: 8px;
    background: #F2F7FF;
}

.ec-site-header__dropdown-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 32px;
}

.ec-site-header__dropdown-icon img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.ec-site-header__dropdown-content {
    min-width: 0;
}

.ec-site-header__dropdown-title {
    color: #252B36;
    font-size: 14px;
    font-weight: 500;
    line-height: 21px;
}

.ec-site-header__dropdown-description {
    overflow: hidden;
    padding-top: 2px;
    color: #7A8496;
    font-size: 12px;
    line-height: 18px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ec-site-header__actions {
    display: flex;
    align-items: center;
    margin-left: auto;
    gap: 16px;
    color: #272B34;
}

.ec-site-header__phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #505668;
    font-size: 16px;
    line-height: 24px;
    white-space: nowrap;
}

.ec-site-header__phone-icon {
    width: 22px;
    height: 22px;
}

.ec-site-header__appointment-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: 36px;
    padding: 0 16px;
    color: #fff;
    background: #1A76FF;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    text-align: center;
    white-space: nowrap;
}

.ec-site-header__divider {
    display: block;
    width: 1px;
    height: 16px;
    flex: 0 0 1px;
    background: #D5D9DF;
}

.ec-site-header__login-link,
.ec-site-header__login-label {
    color: #272B34;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}

.ec-site-header__login-label {
    cursor: pointer;
}

.headerbox .header .alreday_login {
    position: relative;
    align-items: center;
}

.headerbox .header .ec-account-menu__trigger {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
    min-height: 40px;
    padding: 4px 9px 4px 4px;
    margin: 0;
    color: #272B34;
    font: inherit;
    background: transparent;
    border: 1px solid transparent;
    border-radius: 999px;
    cursor: pointer;
    appearance: none;
    transition: color .2s ease, background-color .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.headerbox .header .ec-account-menu__trigger:hover,
.headerbox .header .ec-account-menu__trigger:focus-visible,
.headerbox .header .ec-account-menu.is-open .ec-account-menu__trigger {
    color: #1A76FF;
    background: rgba(255, 255, 255, .72);
    border-color: rgba(26, 118, 255, .18);
    box-shadow: 0 8px 24px rgba(31, 92, 181, .1);
    outline: none;
}

.headerbox .header .ec-account-menu__avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
    color: #1A76FF;
    background: linear-gradient(145deg, #F2F7FF 0%, #E3EFFF 100%);
    border: 1px solid rgba(26, 118, 255, .14);
    border-radius: 50%;
}

.headerbox .header .ec-account-menu__avatar svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.headerbox .header .ec-account-menu__name {
    display: block;
    max-width: 92px;
    overflow: hidden;
    color: inherit;
    font-weight: 500;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.headerbox .header .ec-account-menu__chevron {
    width: 14px;
    height: 14px;
    flex: 0 0 14px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform .2s ease;
}

.headerbox .header .ec-account-menu.is-open .ec-account-menu__chevron {
    transform: rotate(180deg);
}

.headerbox .header .ec-account-menu__panel {
    position: absolute;
    z-index: 1200;
    top: calc(100% + 10px);
    right: 0;
    display: block;
    box-sizing: border-box;
    width: 184px;
    min-width: 184px;
    padding: 8px;
    margin: 0;
    color: #252B36;
    background: rgba(255, 255, 255, .98);
    border: 1px solid #E4EAF3;
    border-radius: 14px;
    box-shadow: 0 18px 48px rgba(23, 37, 68, .16);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-6px);
    transition: opacity .18s ease, visibility .18s ease, transform .18s ease;
}

.headerbox .header .ec-account-menu__panel::before {
    content: '';
    position: absolute;
    top: -5px;
    right: 24px;
    width: 10px;
    height: 10px;
    background: #fff;
    border-top: 1px solid #E4EAF3;
    border-left: 1px solid #E4EAF3;
    transform: rotate(45deg);
}

.headerbox .header .ec-account-menu.is-open .ec-account-menu__panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.headerbox .header .ec-account-menu__item {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    box-sizing: border-box;
    width: 100%;
    min-height: 44px;
    padding: 6px 10px;
    margin: 0;
    color: #303746;
    font-family: inherit;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    text-align: left;
    text-decoration: none;
    background: transparent;
    border: 0;
    border-radius: 10px;
    cursor: pointer;
    appearance: none;
    transition: color .18s ease, background-color .18s ease;
}

.headerbox .header .ec-account-menu__item:hover,
.headerbox .header .ec-account-menu__item:focus-visible {
    color: #1A76FF;
    background: #F2F7FF;
    outline: none;
}

.headerbox .header .ec-account-menu__item-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
    color: #6A7282;
    background: #F5F7FA;
    border-radius: 9px;
    transition: color .18s ease, background-color .18s ease;
}

.headerbox .header .ec-account-menu__item:hover .ec-account-menu__item-icon,
.headerbox .header .ec-account-menu__item:focus-visible .ec-account-menu__item-icon {
    color: #1A76FF;
    background: #E8F2FF;
}

.headerbox .header .ec-account-menu__item-icon svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.65;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.headerbox .header .ec-account-menu__item-arrow {
    width: 14px;
    height: 14px;
    margin-left: auto;
    fill: none;
    stroke: #A5ADBA;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.headerbox .header .ec-account-menu__separator {
    display: block;
    height: 1px;
    margin: 5px 8px;
    background: #EDF0F5;
}

.headerbox .header .ec-account-menu__item--logout:hover,
.headerbox .header .ec-account-menu__item--logout:focus-visible {
    color: #E5484D;
    background: #FFF4F3;
}

.headerbox .header .ec-account-menu__item--logout:hover .ec-account-menu__item-icon,
.headerbox .header .ec-account-menu__item--logout:focus-visible .ec-account-menu__item-icon {
    color: #E5484D;
    background: #FFE9E7;
}

.ec-marketing-shell .min-navbox,
.ec-marketing-shell .footer-mobile-title-box,
.ec-marketing-shell .min-foot-item,
.ec-marketing-shell .newBobileBridge,
.ec-marketing-shell #quick_links_pop {
    display: none !important;
}

.ec-marketing-shell .clearfix {
    display: block;
    clear: both;
}

.ec-marketing-shell .ec-footer,
.ec-marketing-shell .float_tool_bar {
    font-size: 14px;
    line-height: normal;
}

.ec-marketing-shell .ec-footer .copy-right {
    clear: both;
    box-sizing: border-box;
    width: 100%;
    text-align: center;
}

.ec-marketing-shell .ec-footer .copy-right a {
    color: #4CB4E7;
}

.ec-dialog-open {
    overflow: hidden;
}

.ec-dialog {
    position: fixed;
    z-index: 4000;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    padding: 24px;
    opacity: 0;
    transition: opacity .18s ease;
}

.ec-dialog.is-visible {
    opacity: 1;
}

.ec-dialog__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(17, 28, 50, .46);
    backdrop-filter: blur(5px);
}

.ec-dialog__panel {
    position: relative;
    z-index: 1;
    box-sizing: border-box;
    width: 400px;
    max-width: calc(100vw - 48px);
    max-height: calc(100vh - 48px);
    color: #252B36;
    background: #fff;
    border: 1px solid rgba(222, 230, 242, .9);
    border-radius: 20px;
    box-shadow: 0 28px 80px rgba(18, 45, 91, .24);
    outline: none;
    transform: translateY(8px) scale(.985);
    transition: transform .18s ease;
}

.ec-dialog.is-visible .ec-dialog__panel {
    transform: translateY(0) scale(1);
}

.ec-dialog__panel--confirm {
    display: grid;
    grid-template-columns: 46px 1fr;
    column-gap: 16px;
    padding: 28px;
}

.ec-dialog__status-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    color: #1A76FF;
    background: linear-gradient(145deg, #F2F7FF 0%, #E3EFFF 100%);
    border-radius: 14px;
}

.ec-dialog__status-icon svg {
    width: 26px;
    height: 26px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.ec-dialog__copy {
    min-width: 0;
    padding-top: 1px;
}

.ec-dialog__title {
    margin: 0;
    color: #202633;
    font-size: 20px;
    font-weight: 600;
    line-height: 28px;
}

.ec-dialog__message {
    margin: 8px 0 0;
    color: #6A7282;
    font-size: 14px;
    line-height: 22px;
}

.ec-dialog__actions {
    grid-column: 1 / -1;
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 26px;
}

.ec-dialog__button {
    min-width: 92px;
    height: 40px;
    padding: 0 18px;
    margin: 0;
    font-family: inherit;
    font-size: 14px;
    font-weight: 500;
    line-height: 38px;
    text-align: center;
    border-radius: 999px;
    cursor: pointer;
    appearance: none;
    transition: border-color .18s ease, color .18s ease, background-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.ec-dialog__button:active {
    transform: translateY(1px);
}

.ec-dialog__button:focus-visible {
    outline: 3px solid rgba(26, 118, 255, .2);
    outline-offset: 2px;
}

.ec-dialog__button--secondary {
    color: #505868;
    background: #fff;
    border: 1px solid #DCE2EA;
}

.ec-dialog__button--secondary:hover {
    color: #1A76FF;
    border-color: #9FC5FF;
    background: #F8FBFF;
}

.ec-dialog__button--primary {
    color: #fff;
    background: #1A76FF;
    border: 1px solid #1A76FF;
    box-shadow: 0 8px 20px rgba(26, 118, 255, .24);
}

.ec-dialog__button--primary:hover {
    background: #0D68ED;
    border-color: #0D68ED;
    box-shadow: 0 10px 24px rgba(26, 118, 255, .3);
}

.ec-dialog__panel--media {
    width: 64%;
    height: 75%;
    max-width: 1120px;
    overflow: visible;
    background: #080B12;
    border: 0;
    border-radius: 18px;
}

.ec-dialog__content {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: inherit;
}

.ec-dialog__panel--media .common-video-erp-box {
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    width: 100%;
    max-width: none;
    height: 100%;
    padding: 0;
    margin: 0;
}

.ec-dialog__panel--media .common-video-erp-box video {
    display: block;
    width: 100%;
    max-width: 100%;
    max-height: 100%;
    background: #080B12;
    object-fit: contain;
}

.ec-dialog__close {
    position: absolute;
    z-index: 2;
    top: -14px;
    right: -14px;
    width: 36px;
    height: 36px;
    padding: 0;
    margin: 0;
    color: #505868;
    background: #fff;
    border: 1px solid #E1E7F0;
    border-radius: 50%;
    box-shadow: 0 10px 28px rgba(17, 28, 50, .2);
    cursor: pointer;
    appearance: none;
    transition: color .18s ease, background-color .18s ease, transform .18s ease;
}

.ec-dialog__close:hover,
.ec-dialog__close:focus-visible {
    color: #1A76FF;
    background: #F2F7FF;
    outline: none;
    transform: rotate(4deg);
}

.ec-dialog__close span::before,
.ec-dialog__close span::after {
    content: '';
    position: absolute;
    top: 17px;
    left: 10px;
    width: 15px;
    height: 1.5px;
    background: currentColor;
    border-radius: 2px;
}

.ec-dialog__close span::before {
    transform: rotate(45deg);
}

.ec-dialog__close span::after {
    transform: rotate(-45deg);
}

.ec-toast-region {
    position: fixed;
    z-index: 4100;
    top: 92px;
    left: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: max-content;
    max-width: calc(100vw - 32px);
    pointer-events: none;
    transform: translateX(-50%);
}

.ec-toast {
    display: flex;
    align-items: center;
    gap: 10px;
    box-sizing: border-box;
    min-height: 44px;
    max-width: 420px;
    padding: 10px 16px;
    color: #303746;
    background: rgba(255, 255, 255, .98);
    border: 1px solid #E3E9F2;
    border-radius: 12px;
    box-shadow: 0 14px 38px rgba(23, 37, 68, .16);
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity .16s ease, transform .16s ease;
}

.ec-toast.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.ec-toast__icon {
    position: relative;
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
    color: #1A76FF;
    background: #E8F2FF;
    border-radius: 50%;
}

.ec-toast--success .ec-toast__icon {
    color: #19A974;
    background: #E7F8F1;
}

.ec-toast--error .ec-toast__icon {
    color: #E5484D;
    background: #FFE9E7;
}

.ec-toast__icon::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 7px;
    width: 5px;
    height: 8px;
    border-right: 1.8px solid currentColor;
    border-bottom: 1.8px solid currentColor;
    transform: rotate(45deg);
}

.ec-toast--info .ec-toast__icon::before {
    content: 'i';
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    font-size: 13px;
    font-weight: 600;
    line-height: 20px;
    text-align: center;
    border: 0;
    transform: none;
}

.ec-toast--error .ec-toast__icon::before,
.ec-toast--error .ec-toast__icon::after {
    content: '';
    position: absolute;
    top: 9px;
    left: 5px;
    width: 10px;
    height: 1.6px;
    background: currentColor;
    border: 0;
    transform: rotate(45deg);
}

.ec-toast--error .ec-toast__icon::after {
    transform: rotate(-45deg);
}

.ec-toast__text {
    min-width: 0;
    color: inherit;
    font-size: 14px;
    line-height: 22px;
}

@media (prefers-reduced-motion: reduce) {
    .headerbox .header .ec-account-menu__trigger,
    .headerbox .header .ec-account-menu__chevron,
    .headerbox .header .ec-account-menu__panel,
    .headerbox .header .ec-account-menu__item,
    .headerbox .header .ec-account-menu__item-icon,
    .ec-dialog,
    .ec-dialog__panel,
    .ec-dialog__button,
    .ec-dialog__close,
    .ec-toast {
        transition: none;
    }
}

@media screen and (max-width: 1023px) {
    .ec-site-header__desktop {
        padding: 0 20px;
        gap: 16px;
    }
    .ec-site-header__brand-image {
        width: 96px;
    }
    .ec-site-header__nav-link {
        padding: 16px 10px;
    }
    .ec-site-header__actions {
        gap: 8px;
    }
    .ec-site-header__phone {
        gap: 6px;
        font-size: 14px;
    }
    .ec-site-header__phone-icon {
        width: 18px;
        height: 18px;
    }
}

.navbox_menu {
    display: none;
    position: absolute;
    z-index: 3;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    overflow: hidden;
}

.headerbox .header .denglu_ a {
    color: #fff;
    font-size: 14px;
}

.ec-site-header__nav-link:hover,
.ec-site-header__dropdown-link:hover {
    text-decoration: none;
}

.layout-main .banner-text {
    /*height: 75px;*/
    line-height: 75px;
    color: #fff;
    font-size: 18px;
    background: #42b4dd;
}

.layout-main .banner-text .btn {
    padding: 6px 46px;
    color: #fff;
    background: transparent;
    border: 2px solid #fff;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    margin-top: 22px;
    margin-bottom: 12px;
}

.min-navbar {
    display: none;
    opacity: 0;
}

.min-navbox {
    position: absolute;
    top: 60px;
    width: 100%;
    height: 505px;
    overflow: auto;
    z-index: 51;
    opacity: 0;

}

.submenu-panel .panel-title>a {
    padding: 0 20px;
}

.submenu-panel .panel-body {
    padding: 0;
}

.min-foot-item {
    display: none;
}

.min-foot-item .contact-way {
    text-align: center;
    padding: 2rem 1.5rem;
    display: flex;
    justify-content: space-between;

}

.min-foot-item .contact-way a {
    border: 1px solid #979797;
    border-radius: 8px;
    font-weight: 400;
    font-size: 16px;
    color: #FFFFFF;
    padding: 10px 0px;
    text-align: center;
    width: 48%;
    display: inline-block;
}

.min-foot-item .contact-way a img {
    width: 1.6rem;
    height: 1.6rem;
    margin-right: 0.5rem;
}

.servce_bigbox~.headerbox {
    background-color: blue;
}

.ec-footer {
    background: #14181E;
    position: relative;
}

.ec-footer .footer-mobile-title-box {
    display: none;
}

.ec-footer .foot-company-contact-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.28);

}

.ec-footer .foot-company-contact-box .company-logo-box img {
    height: 77px;
    object-fit: contain;
}

.ec-footer .foot-company-contact-box .contact-box {
    font-weight: 400;
    font-size: 14px;
    color: #FFFFFF;
    line-height: 28px;
}

.ec-footer .foot-company-contact-box .contact-box img {
    margin-right: 10px;
    width: 20px;
    height: 20px;

}

.ec-footer .foot-company-contact-box .contact-box img.icon-phone {
    margin-left: 20px;
}

.ec-footer .foot-item {
    color: #fff;
    display: flex;
    height: 350px;
    justify-content: space-between;
    padding-bottom: 51px;
    border-bottom: 1px solid rgba(223, 225, 230, 0.1);
    box-sizing: border-box;

}

.ec-footer .foot-item .foot-company-description {
    width: 215px;
    color: rgba(199, 199, 199, 0.85);
    font-weight: 400;
    font-size: 14px;
    color: #FFFFFF;
    line-height: 24px;
    margin-top: 20px;

}

.ec-footer .foot-item .foot-company-description .company-logo-box img {
    width: 160px;
    height: 64px;
}

.ec-footer .foot-item .foot-company-description .company-description {
    margin-top: 10px;
    text-align: justify;
}

.ec-footer .foot-item .foot-company-description .company-description a {
    color: rgba(199, 199, 199, 0.85);
}

.ec-footer .foot-item .foot-company-description .company-description a:hover {
    color: #777;
}

.ec-footer .foot-item .foot-nav-box {
    padding-top: 35px;
    flex-shrink: 0;
}

.ec-footer .foot-item>.foot-nav-box:nth-child(2) {
    width: 72.52px;
}

.ec-footer .foot-item>.foot-nav-box:nth-child(3) {
    width: 140px;
}

.ec-footer .foot-item>.foot-nav-box:nth-child(4) {
    width: 70px;
}

.ec-footer .foot-item>.foot-nav-box:nth-child(5) {
    width: 56px;
}

.ec-footer .foot-item .foot-nav-box.foot-contact-info {
    width: 237.33px;
}

.ec-footer .foot-item .foot-nav-box .nav-list {
    font-weight: 500;
    line-height: 32px;
    margin-top: 16px;
    font-size: 14px;
    color: rgba(199, 199, 199, 0.85);
}

.ec-footer .foot-item .foot-nav-box .nav-list li a {
    font-size: 14px;
    color: rgba(199, 199, 199, 0.85);
    white-space: nowrap;
}

.ec-footer .foot-item .foot-contact-info .qr-code-box {
    margin-top: 10px;
    display: flex;
    justify-content: space-between;
    text-align: center;
    line-height: 32px;
    gap: 12px;
}

.ec-footer .foot-item .foot-contact-info .qr-code-box img {
    width: 94px;
    height: 94px;
    object-fit: cover;
    border-radius: 4px;
    display: block;
}

.ec-footer .foot-item .foot-contact-info .nav-list {
    margin-top: 10px;
    padding-top: 6px;
}

.ec-footer .foot-item .foot-contact-info .nav-list li {
    display: block;
    white-space: nowrap;
}

.ec-footer .foot-item .foot-contact-info .nav-list li i {
    font-size: 12px;
    color: rgba(199, 199, 199, 0.6);
    width: 14px;
    text-align: center;
}

.ec-footer .copy-right {
    padding: 12px 0;
    border-top: 1px solid #4b5154;
    font-size: 12px;
    color: #CCCCCC;
}

.ec-footer .foot-link-box {
    line-height: 30px;
    padding: 15px 0;
    box-sizing: border-box;
}

.ec-footer .foot-link-box .link-title {
    display: flex;
    height: 30px;
    align-items: flex-start;
    gap: 10px;
    font-weight: 400;
    font-size: 14px;
    color: #808080;

}

.ec-footer .foot-link-box .link-title .link-nav {
    padding: 0;
    margin-right: 0;
    position: relative;
    cursor: pointer;
}

.ec-footer .foot-link-box .link-title .link-nav.active:before {
    content: '';
    position: absolute;
    background: #3073FF;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    width: 100%;
}

.ec-footer .foot-link-box .link-content {
    overflow: hidden;
}

.ec-footer .foot-link-box .link-content2 {
    display: none;
}

.ec-footer .foot-link-box a {
    display: inline-block;
    font-weight: 400;
    font-size: 14px;
    color: #808080;
    margin-right: 10px;

}

@media only screen and (max-width: 1200px) {
    .layout-main .banner-text {
        line-height: 45px;
    }
    .appointment_demonstration {
        display: none;
    }
}

@media only screen and (max-width: 1180px) {
    .login_btn {
        display: none !important;
    }
    .header-login-divider {
        display: none !important;
    }
}

@media screen and (max-width: 768px) {
    .ec-footer .foot-company-contact-box {
        display: none;
    }
    .headerbox {
        position: fixed !important;
        background: #FFFFFF;
        box-shadow: 0px 0px 7px 1px rgba(0, 0, 0, 0.1);
        top: 0;
        z-index: 50;
        height: 60px;
        width: 100%;
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#4c000000, endColorstr=#4c000000);

    }
    .headerbox .navbox_menu {
        background: #fff;
    }
    .headerbox .navbox_menu .logo_ img {
        width: 90px;
        margin-left: 5px;
    }
    .headerbox .navbox_menu .navbox_yanshi_ {
        margin-left: auto;
    }
    .headerbox .navbox_menu .navbox_yanshi_ img {
        height: 23px;
    }
    #ec-navbar .submenu-panel .panel-title>a {
        font-weight: 400;
        font-size: 1.6rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    #ec-navbar .submenu-panel .panel-title>a i {
        font-size: 2.4rem;
        color: rgba(80, 86, 104, 0.5);
    }
}

@media only screen and (max-width: 768px) {
    .navbox_menu {
        display: flex;
        align-items: center;
    }
    .navbox_menu .menu {
        left: unset;
        position: unset;
        z-index: 2;
        top: unset;
        padding: 14px 20px;
    }
    .ec-site-header__desktop {
        display: none;
    }
    .navbox li {
        color: #ffffff;
        float: none;
        margin-left: 0;
        display: block;
    }
    .navbox li a {
        display: block;
        color: #ffffff;
        border-bottom: 1px solid #444;
        line-height: 50px;
        padding: 0;
    }
    .ec-footer .footer-title-box,
    .ec-footer .foot-item,
    .ec-footer .foot-link-box {
        display: none;
    }
    .ec-footer .footer-mobile-title-box {
        padding: 20px 15px;
        color: #fff;
        display: inline-block;
        width: 100%;
    }
    .ec-footer .footer-mobile-title-box img {
        width: 90px;
    }
    .ec-footer .footer-mobile-title-box p {
        margin-top: 20px;
    }
    .min-foot-item {
        display: block;
    }
    .min-foot-item a:focus,
    .min-foot-item a:hover {
        text-decoration: none;
        outline: none;
        color: #fff;
    }
    .min-foot-item .panel-default>.panel-heading {
        background: #14181E;
    }
    .min-foot-item .panel-heading:first-child {
        border-top: 1px solid rgba(255, 255, 255, 0.04);
    }
    .newBobileBridge {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        margin: auto;
        width: 100%;
        justify-content: space-between;
        height: 6.4rem;
        padding: 1rem 2rem;
        z-index: 99999999999;
    }
    .newBobileBridge a {
        display: inline-block;
        background: #008bff;
        color: #ffffff;
        width: 31.5%;
        height: 4.2rem;
        line-height: 4.2rem;
        text-align: center;
        font-size: 1em;
    }
}

.menu_dropdown_title {
    width: 100%;
}

.float_tool_bar {
    position: fixed;
    z-index: 99999900;
    top: 50vh;
    right: 10px;
    width: 68px;
    margin-top: -110px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.16);
}

.float_tool_bar>a:first-child {
    border-radius: 8px 8px 0 0;
}

.float_tool_bar>a:nth-child(4),
.float_tool_bar>a:last-child {
    border-radius: 0px 0px 8px 8px;
}

.float_tool_bar .item {
    position: relative;
    display: block;
    cursor: pointer;
    color: #808080;
    text-align: center;
    font-size: 12px;
    width: 100%;
}

.float_tool_bar .item .over {
    display: block;
    overflow: hidden;
    width: 68px;
    height: 65px;
    padding: 8px 0;
}

.float_tool_bar .item .icon {
    width: 100%;
    height: 100%;
    -webkit-transition: .1s ease;
    transition: .1s ease
}

.float_tool_bar .item .icon .img {
    width: 26px;
    height: 26px;
    background: no-repeat center;
    margin: 2px auto;
    background-size: 100%;
}

.float_tool_bar .item .icon .kefu-img {
    background-image: url("/pc/www/images/eccang-chat-icon.png");
}

.float_tool_bar .item .icon .qq-img {
    background-image: url("/pc/www/images/home-icon/qq.png");
}

.float_tool_bar .item .icon .phone-img {
    background-image: url("/pc/www/images/eccang-floating-toolbar-phone.png");
}

.float_tool_bar .item .icon .weixin-img {
    background-image: url("/pc/www/images/eccang-floating-toolbar-wechat.png");
}

.float_tool_bar .item .icon .yuyue-img {
    background-image: url("/pc/www/images/eccang-floating-toolbar-appointment.png");
}

.float_tool_bar .item .icon .top-img {
    background-image: url("/pc/www/images/eccang-floating-toolbar-back-to-top.png");
}

.float_tool_bar .item:hover .icon .qq-img {
    background-image: url("/pc/www/images/external/img-kuajingyan/uploadImg/home/article/20200324/15850496153673.png");
}

.float_tool_bar .item:hover .detail {
    display: block
}

.float_tool_bar .item .detail {
    position: absolute;
    top: 0;
    right: 80px;
    display: none;
    overflow: hidden;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 12px 32px rgba(0, 69, 173, .14);
    font-size: 14px;
    line-height: 1.5;
    text-align: left;
    color: #16171a;
}

.float_tool_bar .item .detail::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4086ff 0%, #1a76ff 100%);
}

.float_tool_bar .item .detail .sub-font {
    font-size: 14px;
    color: #666;
}

.float_tool_bar .item .detail.detail-phone {
    width: 288px;
}

.float_tool_bar .item .detail.detail-phone dl {
    margin: 0;
}

.float_tool_bar .item .detail.detail-phone dt {
    display: none;
}

.float_tool_bar .item .detail.detail-phone dd:first-of-type {
    margin: 0 0 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid #f0f3f8;
    color: #7e8288;
    font-size: 13px;
    line-height: 20px;
}

.float_tool_bar .item .detail.detail-phone dd.sub-font {
    display: flex;
    align-items: center;
    margin: 0;
    color: #16171a;
    font-size: 14px;
    line-height: 1.4;
}

.float_tool_bar .item .detail.detail-phone dd.sub-font img {
    flex: 0 0 auto;
    width: 15px;
    height: 18px;
    margin: 0 10px 0 0;
    vertical-align: middle;
}

.float_tool_bar .item .detail.detail-phone dd.sub-font span {
    color: #16171a;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: .5px;
    font-family: "DIN Pro", "Arial Narrow", "PingFang SC", sans-serif;
}

.float_tool_bar .item .detail.detail-weixin {
    width: 220px;
    height: auto;
    text-align: center;
}

.float_tool_bar .item .detail.detail-weixin img.weixin_zixun {
    display: block;
    width: 148px;
    height: 148px;
    margin: 0 auto;
    padding: 8px;
    border: 1px solid #e6eefc;
    border-radius: 10px;
    background: #fbfcfe;
    box-sizing: border-box;
}

.float_tool_bar .item .detail.detail-weixin .weixin-txt {
    margin-top: 14px;
    text-align: center;
}

.float_tool_bar .item .detail.detail-weixin .weixin-txt p {
    margin: 0;
    color: #16171a;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
}

.float_tool_bar .item .detail.detail-weixin .weixin-txt p.sub-font {
    margin-top: 4px;
    color: #7e8288;
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
}

[class*=icon_],
[class^=icon_] {
    font-family: iconfont !important;
    speak: none;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

.icon_close_2::before {
    content: "\2716"
}

.tips {
    position: absolute;
    top: 10px;
    right: 80px;
    border-radius: 4px;
    width: 160px;
    background: #fff;
    padding: 12px;
    box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.1);
}

.tips:before {
    position: absolute;
    width: 202px;
    top: -14px;
    right: -15px;
    height: 60px;
    z-index: -1;
    content: "";
}

.tips:after {
    position: absolute;
    top: 8px;
    right: -12px;
    width: 0;
    border: 6px solid transparent;
    content: "";
    border-left-color: #fff;
}

.tips_pop_in {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    font-size: 14px;
    text-align: left;
}

.tips .service_click {
    color: #1a76ff;
    cursor: pointer;
}

.tips_close {
    flex: 0 0 auto;
    margin-left: 8px;
    color: #999;
    cursor: pointer;
    line-height: 1;
}

.tips_close:hover {
    color: #666;
}

.ec-mobile-header,
.ec-mobile-menu,
.ec-mobile-footer {
    display: none;
}

@media screen and (max-width: 768px) {
    body.ec-marketing-shell {
        min-width: 0;
        padding-top: 72px;
        overflow-x: hidden;
    }
    body.ec-marketing-shell.ec-mobile-menu-open {
        overflow: hidden;
    }
    .ec-marketing-shell .headerbox {
        position: fixed !important;
        z-index: 1000;
        top: 0;
        right: 0;
        left: 0;
        width: 100%;
        height: 72px;
        background: transparent;
        box-shadow: none;
    }
    .ec-marketing-shell .headerbox .header,
    .ec-marketing-shell .headerbox-padding-top {
        display: none !important;
    }
    .ec-marketing-shell .ec-mobile-header {
        display: flex;
        width: 100%;
        height: 72px;
        align-items: center;
        justify-content: space-between;
        padding: 0 20px;
        background: #fff;
        box-shadow: 0 2px 16px rgba(22, 23, 26, .08);
    }
    .ec-marketing-shell .ec-mobile-header__brand,
    .ec-marketing-shell .ec-mobile-menu__brand {
        display: inline-flex;
        width: 104px;
        height: 38px;
        align-items: center;
    }
    .ec-marketing-shell .ec-mobile-header__brand img,
    .ec-marketing-shell .ec-mobile-menu__brand img {
        display: block;
        width: 104px;
        height: auto;
    }
    .ec-marketing-shell .ec-mobile-header__toggle,
    .ec-marketing-shell .ec-mobile-menu__close {
        display: inline-flex;
        width: 40px;
        height: 40px;
        align-items: center;
        justify-content: center;
        margin: 0;
        padding: 0;
        border: 0;
        border-radius: 20px;
        background: #f1f6fd;
        cursor: pointer;
    }
    .ec-marketing-shell .ec-mobile-header__toggle {
        flex-direction: column;
        gap: 4px;
    }
    .ec-marketing-shell .ec-mobile-header__toggle span {
        display: block;
        width: 18px;
        height: 2px;
        border-radius: 2px;
        background: #272b34;
    }
    .ec-marketing-shell .ec-mobile-menu {
        position: fixed;
        z-index: 1100;
        inset: 0;
        display: block;
        visibility: hidden;
        pointer-events: none;
    }
    .ec-marketing-shell .ec-mobile-menu.is-open {
        visibility: visible;
        pointer-events: auto;
    }
    .ec-marketing-shell .ec-mobile-menu__backdrop {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        margin: 0;
        padding: 0;
        border: 0;
        opacity: 0;
        background: rgba(7, 16, 31, .46);
        transition: opacity .24s ease;
    }
    .ec-marketing-shell .ec-mobile-menu.is-open .ec-mobile-menu__backdrop {
        opacity: 1;
    }
    .ec-marketing-shell .ec-mobile-menu__panel {
        position: absolute;
        top: 0;
        right: 0;
        display: flex;
        width: min(100%, 393px);
        height: 100%;
        flex-direction: column;
        overflow: hidden;
        color: #fff;
        background: #272b34;
        box-shadow: -16px 0 40px rgba(0, 0, 0, .2);
        transform: translateX(100%);
        transition: transform .28s cubic-bezier(.22, .61, .36, 1);
    }
    .ec-marketing-shell .ec-mobile-menu.is-open .ec-mobile-menu__panel {
        transform: translateX(0);
    }
    .ec-marketing-shell .ec-mobile-menu__head {
        display: flex;
        height: 72px;
        flex: 0 0 72px;
        align-items: center;
        justify-content: space-between;
        padding: 0 20px;
        border-bottom: 1px solid #46505e;
    }
    .ec-marketing-shell .ec-mobile-menu__close {
        position: relative;
        background: #343b48;
    }
    .ec-marketing-shell .ec-mobile-menu__close span::before,
    .ec-marketing-shell .ec-mobile-menu__close span::after {
        position: absolute;
        top: 19px;
        left: 11px;
        width: 18px;
        height: 2px;
        border-radius: 2px;
        background: #fff;
        content: '';
    }
    .ec-marketing-shell .ec-mobile-menu__close span::before { transform: rotate(45deg); }
    .ec-marketing-shell .ec-mobile-menu__close span::after { transform: rotate(-45deg); }
    .ec-marketing-shell .ec-mobile-menu__content {
        flex: 1 1 auto;
        overflow-y: auto;
        padding: 24px 20px 16px;
        -webkit-overflow-scrolling: touch;
    }
    .ec-marketing-shell .ec-mobile-menu a {
        color: inherit;
        text-decoration: none;
    }
    .ec-marketing-shell .ec-mobile-menu__home,
    .ec-marketing-shell .ec-mobile-menu__utility-links a {
        display: block;
        padding: 15px 0;
        color: #fff;
        font-size: 16px;
        font-weight: 600;
        line-height: 24px;
    }
    .ec-marketing-shell .ec-mobile-menu__home.is-current {
        color: #8ab8ff;
    }
    .ec-marketing-shell .ec-mobile-menu__group {
        margin-top: 12px;
        padding: 20px 0;
        border-top: 1px solid #46505e;
    }
    .ec-marketing-shell .ec-mobile-menu__group h2 {
        margin: 0 0 14px;
        color: #fff;
        font-size: 16px;
        font-weight: 600;
        line-height: 24px;
    }
    .ec-marketing-shell .ec-mobile-menu__links {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 4px 12px;
    }
    .ec-marketing-shell .ec-mobile-menu__links a {
        min-width: 0;
        padding: 8px 0;
        overflow: hidden;
        color: #bfc7d4;
        font-size: 13px;
        line-height: 20px;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    .ec-marketing-shell .ec-mobile-menu__utility-links {
        padding-top: 6px;
        border-top: 1px solid #46505e;
    }
    .ec-marketing-shell .ec-mobile-menu__footer {
        flex: 0 0 auto;
        padding: 16px 20px 22px;
        border-top: 1px solid #46505e;
    }
    .ec-marketing-shell .ec-mobile-menu__appointment,
    .ec-marketing-shell .ec-mobile-footer__appointment {
        display: flex;
        min-height: 48px;
        align-items: center;
        justify-content: center;
        border-radius: 24px;
        color: #fff;
        background: #1a76ff;
        font-size: 14px;
        font-weight: 600;
        line-height: 20px;
        text-decoration: none;
    }
    .ec-marketing-shell .ec-mobile-menu__phone {
        display: block;
        margin-top: 14px;
        color: #bfc7d4;
        font-size: 13px;
        line-height: 20px;
        text-align: center;
    }
    .ec-marketing-shell .ec-footer {
        background: #f5f8fd;
    }
    .ec-marketing-shell .ec-footer .foot-company-contact-box,
    .ec-marketing-shell .ec-footer .foot-item,
    .ec-marketing-shell .ec-footer .foot-link-box,
    .ec-marketing-shell .ec-footer .footer-mobile-title-box,
    .ec-marketing-shell .ec-footer .min-foot-item,
    .ec-marketing-shell .ec-footer .copy-right,
    .ec-marketing-shell .ec-footer .newBobileBridge {
        display: none !important;
    }
    .ec-marketing-shell .ec-mobile-footer {
        display: block;
        padding: 48px 20px 36px;
        color: #535d6d;
        text-align: left;
    }
    .ec-marketing-shell .ec-mobile-footer__brand {
        display: inline-flex;
        width: 112px;
        height: 42px;
        align-items: center;
    }
    .ec-marketing-shell .ec-mobile-footer__brand img {
        display: block;
        width: 112px;
        height: auto;
    }
    .ec-marketing-shell .ec-mobile-footer__intro {
        margin: 18px 0 28px;
        color: #7e8288;
        font-size: 13px;
        line-height: 22px;
    }
    .ec-marketing-shell .ec-mobile-footer__group {
        border-top: 1px solid #dce5f1;
    }
    .ec-marketing-shell .ec-mobile-footer__group summary {
        position: relative;
        padding: 17px 28px 17px 0;
        color: #191c27;
        font-size: 15px;
        font-weight: 600;
        line-height: 24px;
        cursor: pointer;
        list-style: none;
    }
    .ec-marketing-shell .ec-mobile-footer__group summary::-webkit-details-marker { display: none; }
    .ec-marketing-shell .ec-mobile-footer__group summary::after {
        position: absolute;
        top: 23px;
        right: 5px;
        width: 8px;
        height: 8px;
        border: solid #7e8288;
        border-width: 0 1px 1px 0;
        content: '';
        transform: rotate(45deg);
        transition: transform .2s ease;
    }
    .ec-marketing-shell .ec-mobile-footer__group[open] summary::after {
        top: 26px;
        transform: rotate(-135deg);
    }
    .ec-marketing-shell .ec-mobile-footer__group div {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px 18px;
        padding: 0 0 18px;
    }
    .ec-marketing-shell .ec-mobile-footer__group a {
        color: #7e8288;
        font-size: 13px;
        line-height: 20px;
        text-decoration: none;
    }
    .ec-marketing-shell .ec-mobile-footer__appointment {
        width: 100%;
        margin-top: 28px;
    }
    .ec-marketing-shell .ec-mobile-footer__phone,
    .ec-marketing-shell .ec-mobile-footer__copyright {
        display: block;
        margin: 16px 0 0;
        color: #7e8288;
        font-size: 12px;
        line-height: 20px;
        text-align: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ec-mobile-menu__backdrop,
    .ec-mobile-menu__panel,
    .ec-mobile-footer__group summary::after {
        transition: none !important;
    }
}
