.elementor-kit-7{--e-global-color-primary:#6EC1E4;--e-global-color-secondary:#54595F;--e-global-color-text:#7A7A7A;--e-global-color-accent:#61CE70;--e-global-color-fea85b7:#0c3b5c;--e-global-color-96137eb:#FFFFFF;--e-global-color-7470b37:#b42424;--e-global-color-036e5d4:#272727;--e-global-color-0e025a8:#245CD3;--e-global-color-b829373:#DADADA;--e-global-color-867b280:#014099;--e-global-typography-primary-font-family:"Rajdhani";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Rajdhani";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Rajdhani";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Rajdhani";--e-global-typography-accent-font-weight:500;}.elementor-kit-7 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){margin-block-end:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}.site-header .site-branding{flex-direction:column;align-items:stretch;}.site-header{padding-inline-end:0px;padding-inline-start:0px;}.site-footer .site-branding{flex-direction:column;align-items:stretch;}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}
/* Start custom CSS *//* 防页面抖动：预留滚动条位置 */
html {
    scrollbar-gutter: stable;
}

/* 1. 在页面 body 上创建一个全屏暗化遮罩层 */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5); /* 遮罩颜色与透明度，0.5代表50%黑色 */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 998; /* 层级低于 Header (999)，但高于网页普通内容 */
    pointer-events: none; /* 防止未激活时遮挡点击 */
}

/* 2. 当 Elementor Pro 嵌套 Mega 菜单展开或被鼠标悬停时激活遮罩 */
/* 兼容 Elementor Pro 原生 Menu (Nested) 组件 */
body:has(.e-n-menu-content:hover),
body:has(.e-n-menu-title[aria-expanded="true"]),
body:has(.e-n-menu-content[aria-hidden="false"]),
body:has(.e-n-menu-dropdown-icon[aria-expanded="true"]) {
/*    overflow: hidden; /* 禁止展开时页面滚动 */
}

body:has(.e-n-menu-content:hover)::before,
body:has(.e-n-menu-title[aria-expanded="true"])::before,
body:has(.e-n-menu-content[aria-hidden="false"])::before,
body:has(.e-n-menu-dropdown-icon[aria-expanded="true"])::before {
    opacity: 1;
    visibility: visible;
}/* End custom CSS */