.elementor-kit-38{--e-global-color-primary:#6EC1E4;--e-global-color-secondary:#54595F;--e-global-color-text:#7A7A7A;--e-global-color-accent:#61CE70;--e-global-color-24cb6440:#4054B2;--e-global-color-612a6427:#23A455;--e-global-color-5da9ef4f:#000;--e-global-color-6f6bd1a4:#FFF;--e-global-color-6ff3f7ee:#1A6C7A;--e-global-typography-primary-font-family:"Roboto";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Roboto Slab";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;}.elementor-kit-38 e-page-transition{background-color:#FFBC7D;}.elementor-kit-38 button,.elementor-kit-38 input[type="button"],.elementor-kit-38 input[type="submit"],.elementor-kit-38 .elementor-button{border-style:solid;}.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);}@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 *//* 导航优化 */
.nav-menu-item {
  transition: all 0.2s ease-in-out; /* 优化性能，减少过度动画 */
  color: #ffffff;
}
.nav-menu-item:hover,
.nav-menu-item:focus {
  filter: brightness(1.2);
  color: #ffde01; /* 保持品牌颜色 */
  outline: none; /* 改善可访问性 */
}
@media (max-width: 767px) {
  .nav-menu {
    display: none;
  }
  .hamburger-icon.active + .nav-menu {
    display: block;
    background: #5804fa; /* 手机端背景与头部一致 */
    padding: 10px;
  }
}

/* CTA优化 */
.elementor-button {
  transition: all 0.2s ease-in-out;
  background: linear-gradient(90deg, #F5A623, #D48D1E); /* 橙色渐变CTA */
  border: none;
  border-radius: 5px;
}
.elementor-button:hover,
.elementor-button:focus {
  transform: scale(1.05);
  filter: brightness(1.2);
  outline: none;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}
.elementor-button:active {
  animation: pulse 0.2s;
}
@media (max-width: 767px) {
  .elementor-button {
    padding: 12px 25px; /* 手机端适配触摸区域 */
    width: 100%;
    margin: 5px 0;
  }
}

/* 搜索栏 */
.search-bar {
  transition: all 0.2s ease-in-out;
  background: #ffffff;
  border: 1px solid #5804fa;
  border-radius: 5px;
}
.search-bar:focus {
  box-shadow: 0 0 5px #5804fa;
  border-color: #5804fa;
  outline: none;
}
@media (max-width: 767px) {
  .search-bar {
    width: 100%;
    margin-bottom: 10px;
  }
}

/* 认证徽章 */
.cert-badge {
  color: #28A745;
  transition: all 0.2s ease-in-out;
  display: inline-flex;
  align-items: center;
}
.cert-badge:hover {
  filter: brightness(1.2);
}
@media (max-width: 767px) {
  .cert-badge {
    flex-direction: column;
    text-align: center;
  }
}

/* 响应式断点 */
.header-container {
  padding: 20px 50px;
}
@media (min-width: 1025px) {
  .header-container { padding: 20px 50px; }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .header-container { padding: 15px 30px; }
}
@media (max-width: 767px) {
  .header-container { padding: 10px 20px; }
  .flex-direction-row { flex-direction: column; }
  .flex-gap { gap: 5px; }
}

/* 性能优化 */
* {
  box-sizing: border-box;
}
img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
  loading: lazy; /* 确保图片懒加载 */
}/* End custom CSS */