@charset "UTF-8";
/*
 * @kanway-css-index
 * 文件: css/shared/header.css
 * 层级: 全站公共
 * 引用页面: 所有 .html（site-shell 头尾 + 面包屑 + 内页 Banner 基础）
 * 依赖: 无（配合 boxicons.min.css）
 * 修改指引: 导航 .Nav / .navli；页脚 .footer；面包屑 .menu；版心 :root --kh-shell-*；浮动栏 .site-float-panel
 * 索引: css/00-样式文件索引.css
 */
/* ========== 全局基础重置 ========== */
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

fieldset, img {
    border: 0;
    max-width: 100%;
    height: auto;
}

ol, ul {
    list-style: none;
}

a {
    color: #666;
    text-decoration: none;
}

a:focus {
    outline: none;
}

/* ========== 基础工具类 ========== */
.clear::after {
    content: "";
    display: block;
    clear: both;
}

/*
 * 全站版心（以 header 为准，其它页面勿单独改 width/max-width）
 * 用于：.hdmid.container、.navUl、.menu .container、页脚 .container、各页正文 .container
 */
:root {
    --kh-shell-max: 1450px;
    --kh-shell-pad-x: 20px;
    --kh-fixed-header-h: 60px; /* 主导航条高度；吸顶紧凑态由 site-breadcrumb.js 实测覆盖 */
}

.container,
.navUl {
    width: 100%;
    max-width: var(--kh-shell-max);
    min-width: 0;
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--kh-shell-pad-x);
    padding-right: var(--kh-shell-pad-x);
    box-sizing: border-box;
}

.container {
    position: relative;
}

.fl { float: left; }
.fr { float: right; }

/* ========== 基础布局 ========== */
body {
    background: #fff;
    overflow-x: hidden;
    color: #333;
    font-size: 12px;
    font-family: "Arial", "Microsoft YaHei", "PingFang SC", "Hiragino Sans GB", sans-serif;
    line-height: 1.6;
}

/* ========== 顶栏工具条（与页头同色、浅灰分割线） ========== */
.site-utility-bar {
    width: 100%;
    background: #fff;
    color: #333;
    font-size: 12px;
    line-height: 1.4;
    position: relative;
    z-index: 10000;
    border-bottom: 1px solid #e8e8e8;
}

.site-utility-bar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 34px;
    padding-top: 5px;
    padding-bottom: 5px;
}

.site-utility-bar__welcome {
    margin: 0;
    flex: 1 1 auto;
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #666;
}

.site-utility-bar__tools {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex: 0 0 auto;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-utility-bar__item {
    position: relative;
    border-left: 1px solid #e8e8e8;
}

.site-utility-bar__item:first-child {
    border-left: none;
}

.site-utility-bar__item > a,
.site-utility-bar__trigger {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    color: #333;
    background: transparent;
    border: none;
    font: inherit;
    line-height: 1.4;
    cursor: pointer;
    white-space: nowrap;
    text-decoration: none;
}

.site-utility-bar__item > a:hover,
.site-utility-bar__trigger:hover {
    color: #1D5198;
}

.site-utility-bar__picker.is-open .site-utility-bar__trigger {
    color: #1D5198;
}

.site-utility-bar__item > a .bx,
.site-utility-bar__trigger .bx {
    font-size: 15px;
    color: #1D5198;
}

.site-utility-bar__caret {
    font-size: 14px;
    color: #666;
}

.site-utility-bar__picker.is-open .site-utility-bar__caret {
    transform: rotate(180deg);
}

.site-utility-bar__menu {
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 140px;
    margin: 0;
    padding: 6px 0;
    list-style: none;
    background: #fff;
    color: #333;
    border-radius: 2px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
    z-index: 10001;
}

.site-utility-bar__menu a,
.site-utility-bar__menu-current {
    display: block;
    padding: 8px 16px;
    color: #333;
    text-decoration: none;
    white-space: nowrap;
}

.site-utility-bar__menu a:hover {
    background: #f0f4fa;
    color: #1D5198;
}

.site-utility-bar__menu-current {
    background: #1D5198;
    color: #fff;
    font-weight: 600;
}

@media (max-width: 991px) {
    .site-utility-bar__welcome {
        display: none;
    }

    .site-utility-bar__item > a span {
        display: none;
    }

    .site-utility-bar__item > a,
    .site-utility-bar__trigger {
        padding-left: 10px;
        padding-right: 10px;
    }
}

/* ========== 头部样式 ========== */
.header {
    width: 100%;
    background: #fff;
    position: relative;
    z-index: 9999;
    color: #1D5198;
}

.hdmid {
    height: auto;
    min-height: 110px;
}

.hdmid .hdmid_l {
    float: left;
    overflow: hidden;
    margin-top: 25px;
    width: 82%;
}

.hdmid .hdmid_l h1 {
    float: left;
}

/* i 标签为行内元素，宽高无效，已优化 */
.hdmid .hdmid_l h1 i {
    display: inline-block;
    height: 64px;
    width: 1px;
    margin: 6px 0 0 12px;
    background: #d8d8d8;
    vertical-align: top;
}

.hdmid .hdmid_l > div {
    padding-left: 220px;
    padding-top: 6px;
}

.hdmid .hdmid_l > div h2 {
    font-size: 24px;
    color: #FC6B00;
}

.hdmid .hdmid_l > div p {
    overflow: hidden;
    margin-top: 8px;
}

.hdmid .hdmid_l > div p span {
    display: inline-block;
    font-size: 13px;
    color: #000;
    margin-right: 12px;
    height: 20px;
    line-height: 20px;
    padding-left: 16px;
    background: url(../gou.png) no-repeat left center;
}

.hdmid .hdmid_r {
    float: right;
    margin-top: 43px;
}

.hdmid .hdmid_r dt {
    float: left;
}

.hdmid .hdmid_r dd {
    padding-left: 40px;
}

.hdmid .hdmid_r dd span {
    font-size: 15px;
    color: #030303;
}

.hdmid .hdmid_r dd p {
    font-size: 22px;
    line-height: 28px;
    color: #1D5198;
}

/* ========== 字体图标（导航兜底；浮动栏与全站图标依赖 boxicons CDN） ========== */
.Nav .bx {
    font-weight: normal;
    font-style: normal;
    line-height: 1;
    vertical-align: middle;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ========== 主导航 NAV ========== */
.Nav {
    height: 60px;
    background: #fff;
    border-top: 1px solid #3266AD;
    border-bottom: 3px solid #295692;
    line-height: 60px;
}

.navUl {
    display: flex;
    height: 60px;
    list-style: none;
}

.navli {
    font-size: 16px;
    position: relative;
    border-left: 1px solid #e8e8e8;
    padding: 0 1.2rem;
    display: flex;
    align-items: center;
    height: 60px;
    white-space: nowrap;
}

.navli:first-child {
    border-left: none;
}

.navUl > li a {
    color: #000;
    text-decoration: none;
    display: block;
    text-align: center;
}

.navUl > li:hover,
.navUl > li.cur {
    background: #1D5198;
}

.navUl > li:hover a,
.navUl > li.cur a {
    color: #fff;
}

/* ========== 下拉菜单 ========== */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    opacity: 0;
    visibility: hidden;
    border-radius: 1px;
    box-shadow: 0 4px 12px 2px rgba(0,0,0,0.08);
    width: 260px;
    background: #1D5198;
    z-index: 9999;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.navli:hover > .dropdown-menu,
.navli:focus-within > .dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.dropdown-menu li {
    position: relative;
}

.dropdown-menu li a {
    font-size: 14px;
    color: #ffffff;
    padding: 0 15px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    display: block;
    text-align: left;
    line-height: 44px;
    white-space: nowrap;
    transition: background-color 0.2s ease;
}

.dropdown-menu li a:hover {
    background-color: rgba(232, 240, 252, 0.8);
    color: #000;
}

.dropdown-menu li:last-child a {
    border-bottom: none;
}

.dropdown-menu .dropdown-menu {
    left: 100%;
    top: 0;
    min-width: 260px;
}

.dropdown-menu .dropdown-menu li a {
    white-space: normal;
    line-height: 1.35;
    padding-top: 10px;
    padding-bottom: 10px;
}

.dropdown-menu li:hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;
}

/* Third-level flyout: open to the left when viewport is narrow (avoids clipping past the right edge) */
@media (max-width: 1480px) {
    .dropdown-menu .dropdown-menu {
        left: auto;
        right: 100%;
    }
}

/* ========== 临时：开放全部一级栏目二级下拉，三级仍隐藏 ==========
 * 全量恢复二三级：去掉 nav--primary-only，或删除本段样式。
 */
.Nav.nav--primary-only > .navUl > .navli > .dropdown-menu {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

/* 一级栏目：悬停延迟由 JS .is-nav-open 控制；键盘 focus-within 即时展开 */
.Nav.nav--primary-only > .navUl > .navli.is-nav-open > .dropdown-menu,
.Nav.nav--primary-only > .navUl > .navli:focus-within > .dropdown-menu {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
}

/* 全部三级（嵌套 .dropdown-menu）保持隐藏 */
.Nav.nav--primary-only .dropdown-menu .dropdown-menu {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

.Nav.nav--primary-only .dropdown-menu li:hover > .dropdown-menu,
.Nav.nav--primary-only .dropdown-menu li:focus-within > .dropdown-menu {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}







/* ========== 内页 Banner（.c-bgimg1 顶图 + 标题叠字）==========
 * HTML: <div class="c-bgimg1">…<div class="over-text">…
 * 补充: css/shared/page-banner.css 控制图片 min/max 高度
 */
[class^="c-"]:not(.c-inner)>.c-inner{position:relative}

.c-wrapper{position:relative;margin:0 auto;max-width:1450px}

.c-bgimg1--overlay-black-1>.c-inner>.c-bgimg1__bg:before{display:block;position:absolute;top:0;left:0;height:100%;width:100%;background-color:rgba(0,0,0,0.3);speak:none;content:" "}

.c-typo1--hero1 h1,.c-typo1--hero1 h2{font-family:"Avenir",sans-serif;font-size:52px;line-height:75px;font-weight:900}
.c-typo1--hero1 p{font-family:"Avenir",sans-serif;font-size:24px;line-height:36px;font-weight:300}

.c-typo1--hero1-white h1,.c-typo1--hero1-white h2,.c-typo1--hero1-white h3{color:#fff}
.c-typo1--hero1-white li,.c-typo1--hero1-white p{
	color:#fff;
	font-family: Verdana, Geneva, sans-serif;
	font-weight: bold;
}
.c-typo1--hero1-white ul li:before{background-color:rgba(255,255,255,0.5)}
.c-typo1--head1 h1,.c-typo1--head1 h2,.c-typo1--head1 h3,.c-typo1--head2 h3{color:#000;margin-bottom:5px}

.over-text{position:absolute;top:50%;left:50%;width:100%;transform:translate(-50%,-50%)}
.hero_over_text{position:absolute;top:40%;left:50%;width:100%;transform:translate(-50%,-50%)}



/* ========== 内页面包屑 .menu ==========
 * 结构: .menu > .homePage（首页图标）+ .p1（所属栏目，单链接）+ .p2（同级 Tab，当前项 .cur）
 * 全站由 js/shared/site-breadcrumb.js 按页面路径自动渲染；手工维护时在 .con 上加 data-breadcrumb="manual"
 * 图标/背景图: css/gou.png、icon01.png、icon02.png、f_nav_*.png（相对本文件 ../）
 * 吸顶: position:sticky + js/shared/site-breadcrumb.js（.menu-sticky-sentinel / .is-stuck）
 * 紧凑顶栏: 吸顶时 html.is-header-compact 收起 Logo 区，仅固定主导航（见下文）
 */
.menu{
	width: 100%;
	height: 62px;
	border-bottom: 1px solid #eaeaea;
	margin-bottom: 30px;
	position: sticky;
	top: 0;
	z-index: 9000;
	background-color: #fff;
	transition: box-shadow 0.2s ease;
}

.menu.is-stuck {
	box-shadow: 0 4px 14px rgba(15, 23, 42, 0.1);
}

.menu-sticky-sentinel {
	display: block;
	height: 0;
	margin: 0;
	padding: 0;
	border: 0;
	pointer-events: none;
	visibility: hidden;
}

/* ========== 吸顶紧凑顶栏（面包屑吸顶时收起 headerTop，仅固定主导航）========== */
html.is-header-compact #site-header-root {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 9999;
	background: #fff;
	box-shadow: 0 2px 12px rgba(15, 23, 42, 0.08);
}

html.is-header-compact #site-header-root > header[role="banner"] {
	display: none !important;
}

html.is-header-compact body {
	padding-top: var(--kh-fixed-header-h, 60px);
}

html.is-header-compact .menu {
	top: var(--kh-fixed-header-h, 60px);
}

.menu a.homePage{display: block;width: 64px;height: 62px;border-left: 1px solid #eaeaea;border-right: 1px solid #eaeaea;background: url(../icon01.png) no-repeat center;float: left;}
.menu .p1{line-height: 62px;float: left;margin-left: 16px;}
.menu .p1 a{display: block;padding-right: 14px;background: url(../icon02.png) no-repeat right center;font-size: 14px;color: #666666;float: left;margin-left: 10px;}
.menu .p1 a:first-child{
	margin-left: 0;
	width: auto;
}
.menu .p1 a:last-child{
	color: #666666;
	font-size: 14px;
}
.menu .p2{float: right;}
.menu .p2 a{

	font-size: 14px;
	color: #666666;

	height: 61px;
	line-height: 61px;
	float: left;
	margin-left: 24px;
	text-decoration: none;
	width: auto;
}
.menu .p2 a.cur{
	color: #333333;
	border-bottom-width: 2px;
	border-bottom-style: solid;
	border-bottom-color: #1D5198;
}
.menu .p2 a:hover{
    color: #000000;
    border-bottom-width: 2px;
    border-bottom-style: solid;
    border-bottom-color: #1D5198;
}




/* ========== 底部样式 ========== */
.footer {
    width: 100%;
    background-color: #3e3e3e;
    overflow: hidden;
}

/* 底部导航 */
.footer-nav {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    width: calc(100% + 2 * var(--kh-shell-pad-x));
    margin-left: calc(-1 * var(--kh-shell-pad-x));
    margin-right: calc(-1 * var(--kh-shell-pad-x));
    height: 61px;
    min-height: 61px;
    background: url(../f_nav_bg.png) no-repeat center bottom;
    background-size: calc(100% - 2 * var(--kh-shell-pad-x)) 61px;
    margin-bottom: 14px;
}

.footer-nav li {
    flex: 0 0 auto;
    font-size: 14px;
    line-height: 60px;
    white-space: nowrap;
    background: url(../f_nav_bor.png) right center no-repeat;
    padding: 0 clamp(10px, 0.95vw, 16px);
}

.footer-nav li a {
    color: #fff;
}

.footer-nav li.last {
    background: none;
}

/* 底部主体信息 */
.footer-main {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    overflow: hidden;
}

.footer-info-wrap {
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.footer-logo {
    flex-shrink: 0;
    margin-top: 25px;
}

.footer-contact {
    flex: 1;
    min-width: 0;
    padding: 3px 0 0 20px;
    border-left: 1px solid #545353;
}

.footer-contact p {
    font-size: 14px;
    color: #fff;
    line-height: 24px;
}

.footer-contact em {
    margin: 0 10px;
}

/* 右侧二维码（抵消 .container 右内边距，贴版心右缘） */
.footer-qrcode {
    flex-shrink: 0;
    margin: 5px 0 30px;
    margin-left: auto;
    margin-right: calc(-1 * var(--kh-shell-pad-x));
    text-align: right;
}

.footer-qrcode img {
    display: block;
    margin-left: auto;
}

/* ========== Layout shell (JS-injected header/footer) ========== */
#site-header-root:empty {
    min-height: 175px;
}
@media (max-width: 768px) {
    #site-header-root:empty {
        min-height: 120px;
    }
}

/* ========== Responsive ========== */
@media (max-width: 1100px) {
    :root {
        --kh-shell-pad-x: 16px;
    }

    .container {
        width: 100%;
        max-width: 100%;
    }

    .navUl {
        width: 100%;
        max-width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        justify-content: flex-start;
        flex-wrap: nowrap;
    }

    .navli {
        flex-shrink: 0;
        padding: 0 0.65rem;
        font-size: 14px;
    }

    .dropdown-menu {
        max-width: min(260px, 85vw);
    }
}

@media (max-width: 768px) {
    :root {
        --kh-shell-pad-x: 12px;
    }

    body {
        font-size: 13px;
    }

    .hdmid {
        min-height: 0;
    }

    .hdmid .hdmid_l h1 {
        float: none;
    }

    .hdmid .hdmid_l h1 img {
        max-width: 168px;
        height: auto;
    }

    .hdmid .hdmid_l > div {
        padding-left: 0;
        padding-top: 12px;
        clear: both;
    }

    .hdmid .hdmid_l > div h2 {
        font-size: 17px;
    }

    .hdmid .hdmid_r {
        float: none;
        width: 100%;
        margin-top: 16px;
        clear: both;
    }

    .Nav {
        height: auto;
        min-height: 52px;
    }

    .navUl {
        height: auto;
        min-height: 52px;
    }

    .c-typo1--hero1 h1,
    .c-typo1--hero1 h2 {
        font-size: clamp(26px, 7vw, 40px) !important;
        line-height: 1.15 !important;
    }

    .c-typo1--hero1 p {
        font-size: clamp(14px, 4vw, 18px) !important;
        line-height: 1.35 !important;
    }

    .menu {
        height: auto;
        margin-bottom: 16px;
        top: 0;
    }

    .menu .con.clearfix::after {
        content: "";
        display: table;
        clear: both;
    }

    .menu .p2 {
        float: none;
        width: 100%;
        overflow-x: auto;
        white-space: nowrap;
        border-top: 1px solid #eee;
        padding-top: 8px;
    }

    .menu .p2 a {
        margin-left: 12px;
    }

    .footer-nav {
        flex-direction: column;
        flex-wrap: nowrap;
        align-items: stretch;
        width: 100%;
        margin-left: 0;
        margin-right: 0;
        height: auto;
        min-height: 0;
        padding: 12px 0;
        margin-bottom: 10px;
        background-image: none;
    }

    .footer-nav li {
        width: 100%;
        line-height: 44px;
        padding: 0 12px;
        background: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .footer-main {
        flex-direction: column;
    }

    .footer-info-wrap {
        flex-direction: column;
        width: 100%;
    }

    .footer-logo {
        margin: 16px 0;
    }

    .footer-contact {
        border-left: none;
        padding-left: 0;
    }

    .footer-qrcode {
        text-align: center;
        margin: 20px auto 24px;
        margin-right: auto;
    }

    .footer-qrcode img {
        margin: 0 auto;
    }
}

/* ========== A11y: skip link & focus ========== */
.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 100000;
    padding: 10px 18px;
    background: #1d5198;
    color: #fff;
    font-size: 14px;
    text-decoration: none;
    border-radius: 0 0 4px 4px;
}

.skip-link:focus {
    left: 8px;
    top: 8px;
    outline: 2px solid #fc6b00;
    outline-offset: 2px;
}

#site-main:focus {
    outline: none;
}

#site-main:focus-visible {
    outline: 2px solid #1d5198;
    outline-offset: 4px;
}

/* ========== 片段加载失败（site-shell.js loadFragments）========== */
.fragment-error {
    margin: 16px 0;
    padding: 14px 18px;
    font-size: 14px;
    line-height: 1.65;
    color: #664d03;
    background: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 8px;
}

.fragment-error code {
    font-size: 13px;
    color: #856404;
}

/* ========== Float panel: social + back to top (site-shell.js, scheme B) ========== */
.site-float-panel {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9996;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s ease;
}

.site-float-panel.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.site-float-panel__items {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
    transition: max-height 0.35s ease, opacity 0.3s ease, transform 0.35s ease;
}

.site-float-panel.is-open .site-float-panel__items {
    max-height: 400px;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.site-float-panel__social,
.site-float-panel__share,
.site-float-panel__top {
    width: 50px;
    height: 50px;
    padding: 0;
    border: none;
    border-radius: 50%;
    color: #fff;
    line-height: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
    font-family: inherit;
    font-size: 0;
}

.site-float-panel__social:hover,
.site-float-panel__top:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.22);
}

.site-float-panel__social--facebook { background: #1877f2; }
.site-float-panel__social--linkedin { background: #0a66c2; }
.site-float-panel__social--youtube { background: #ff0000; }
.site-float-panel__social--instagram { background: #e1306c; }
.site-float-panel__social--whatsapp { background: #25d366; }
.site-float-panel__social--telegram { background: #26a5e4; }

/* 主按钮 1：分享 */
.site-float-panel__share {
    background: #1d5198;
}

.site-float-panel__share:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.22);
}

/* 主按钮 2：回到顶部 */
.site-float-panel__top {
    background: #1d5198;
}

/* 浮动栏图标容器（避免全局 .bx 导致偏上/不显示） */
.site-float-panel__btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    pointer-events: none;
    line-height: 0;
}

.site-float-panel__btn-icon .bx {
    display: block;
    font-size: 24px;
    line-height: 1;
    margin: 0;
    padding: 0;
    color: inherit;
    font-family: 'boxicons' !important;
    font-weight: normal;
    font-style: normal;
    speak: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.site-float-panel__btn-icon .bx::before {
    display: block;
    line-height: 1;
}

.site-float-panel__social:focus-visible,
.site-float-panel__top:focus-visible,
.site-float-panel__share:focus-visible {
    outline: 2px solid #fc6b00;
    outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .navli:hover > .dropdown-menu,
    .navli:focus-within > .dropdown-menu {
        transition: none;
    }

    .site-float-panel,
    .site-float-panel__items {
        transition: none;
    }

    .site-float-panel.is-visible,
    .site-float-panel.is-open .site-float-panel__items {
        transform: none;
    }
}
