.elementor-kit-13{--e-global-color-primary:#046BD2;--e-global-color-secondary:#2563EB;--e-global-color-text:#4B5563;--e-global-color-accent:#0F172A;--e-global-color-6d1a349:#F4F7FF;--e-global-color-d1d585e:#E5E7EB;--e-global-typography-primary-font-family:"Poppins";--e-global-typography-primary-font-size:42px;--e-global-typography-primary-font-weight:700;--e-global-typography-primary-line-height:1.2px;--e-global-typography-primary-letter-spacing:0px;--e-global-typography-secondary-font-family:"Poppins";--e-global-typography-secondary-font-size:32px;--e-global-typography-secondary-font-weight:700;--e-global-typography-secondary-line-height:1.25px;--e-global-typography-secondary-letter-spacing:0px;--e-global-typography-text-font-family:"Inter";--e-global-typography-text-font-size:17px;--e-global-typography-text-font-weight:400;--e-global-typography-text-line-height:1.7px;--e-global-typography-accent-font-family:"Poppins";--e-global-typography-accent-font-size:16px;--e-global-typography-accent-font-weight:500;--e-global-typography-accent-line-height:1.3px;color:#333333;font-family:"Inter", Sans-serif;font-size:17px;font-weight:400;line-height:1.7px;letter-spacing:0.3px;word-spacing:0.2px;}.elementor-kit-13 button,.elementor-kit-13 input[type="button"],.elementor-kit-13 input[type="submit"],.elementor-kit-13 .elementor-button{background-color:#0F52D1;font-family:"Poppins", Sans-serif;font-size:16px;font-weight:700;text-transform:uppercase;line-height:1.3px;color:#FFFFFF;box-shadow:0px 0px 10px 0px rgba(0,0,0,0.5);border-radius:6px 6px 6px 6px;padding:14px 14px 14px 14px;}.elementor-kit-13 button:hover,.elementor-kit-13 button:focus,.elementor-kit-13 input[type="button"]:hover,.elementor-kit-13 input[type="button"]:focus,.elementor-kit-13 input[type="submit"]:hover,.elementor-kit-13 input[type="submit"]:focus,.elementor-kit-13 .elementor-button:hover,.elementor-kit-13 .elementor-button:focus{background-color:#0F2A75;color:#FFFFFF;box-shadow:0px 0px 10px 0px rgba(0,0,0,0.5);}.elementor-kit-13 e-page-transition{background-color:#FFBC7D;}.elementor-kit-13 p{margin-block-end:18px;}.elementor-kit-13 h1{font-family:"Poppins", Sans-serif;font-size:40px;font-weight:700;line-height:1.2px;}.elementor-kit-13 h2{font-family:"Poppins", Sans-serif;font-size:30px;font-weight:700;line-height:1.3px;}.elementor-kit-13 h3{font-family:"Poppins", Sans-serif;font-size:24px;font-weight:600;line-height:1.3px;}.elementor-kit-13 h4{font-family:"Poppins", Sans-serif;font-size:22px;font-weight:600;line-height:1.3px;}.elementor-kit-13 h5{font-family:"Poppins", Sans-serif;font-size:22px;font-weight:600;line-height:1.3px;}.elementor-kit-13 h6{font-family:"Poppins", Sans-serif;font-size:22px;font-weight:600;line-height:1.3px;}.elementor-kit-13 img{border-radius:12px 12px 12px 12px;box-shadow:0px 0px 0px 0.08px rgba(0,0,0,0.5);}.elementor-kit-13 img:hover{border-radius:12px 12px 12px 12px;box-shadow:0px 0px 0px 0.08px rgba(0,0,0,0.5);}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1290px;}.e-con{--container-max-width:1290px;}.elementor-widget:not(:last-child){--kit-widget-spacing:30px;}.elementor-element{--widgets-spacing:30px 30px;--widgets-spacing-row:30px;--widgets-spacing-column:30px;}{}h1.entry-title{display:var(--page-title-display);}@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 *//*****************************************************
  1. Global Button Hover Transition（按钮过渡动画）
*****************************************************/
button,
.button,
.elementor-button {
    transition: all 0.2s ease-in-out;
}

/*****************************************************
  2. Button Hover Effect（按钮悬停效果）
*****************************************************/
.elementor-button:hover {
    background-color: #0F2A75;   /* 深蓝色悬停背景 */
    color: #FFFFFF;
    transform: translateY(-2px); /* 轻微上移 */
}

/*****************************************************
  3. Fix Text Overlapping（全局文本不再重叠）
*****************************************************/

/* Elementor 文本编辑器的段落基础修复 */
.elementor-widget-text-editor p {
    line-height: 1.7;
    letter-spacing: 0;
    word-spacing: 0;
    white-space: normal;
}

/* 通用段落（防主题覆盖） */
.elementor p {
    white-space: normal !important;
}

/*****************************************************
  4. Fix UL/LI List Folding（修复项目符号列表折叠到第一行的问题）
*****************************************************/

/* 关键修复：让 <li> 内部的 <p> 变成 inline，避免折叠换行异常 */
.elementor-widget-text-editor ul li p {
    display: inline !important;
    white-space: normal !important;
}

/* 列表行距更自然 */
.elementor-widget-text-editor ul li {
    line-height: 1.7;
    margin-bottom: 6px;
}

/* 避免长单词或链接把布局挤坏 */
.elementor-widget-text-editor ul {
    overflow-wrap: break-word;
}

/*****************************************************
  5. Center Elementor Images（全站图片居中）
*****************************************************/
.elementor-widget-image {
    text-align: center;
}

.elementor-widget-image img {
    display: inline-block;
}

/*****************************************************
  6. Optional: Improve Text Rendering（可选：更清晰字体渲染）
*****************************************************/
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}/* End custom CSS */