.elementor-kit-6{--e-global-color-primary:#6EC1E4;--e-global-color-secondary:#54595F;--e-global-color-text:#7A7A7A;--e-global-color-accent:#61CE70;--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-6 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){--kit-widget-spacing: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 *//* 1. 父容器基础设置（确保子元素定位准确） */
.category-card {
  cursor: pointer; /* 增加手型，让用户知道可点击 */
}

/* 2. 装饰条包裹层 */
.line-wrap {
  position: relative;
  display: flex;
  align-items: center;
  height: 2px;
  overflow: visible;
  margin-top: 10px; /* 标题与线的间距 */
}

/* 3. 灰线：固定底层 */
.line-gray {
  width: clamp(220px, 18vw, 140px);
  height: 1px;
  background: rgba(255,255,255,0.3); /* 建议用半透明白，适应深色背景 */
  position: relative;
  z-index: 1;
}

/* 4. 黄线：初始状态 */
.line-yellow {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 3px; /* 稍微加粗一点点更显眼 */
  background: #f5b400;
  width: clamp(100px, 6vw, 40px);
  transition: width 0.4s cubic-bezier(0.25, 1, 0.5, 1); /* 使用平滑的贝塞尔曲线 */
  z-index: 2;
}

/* 5. 关键修改：鼠标进入整个卡片，黄线生长 */
.category-card:hover .line-yellow {
  width: clamp(160px, 16vw, 120px);
}/* End custom CSS */