.elementor-7492 .elementor-element.elementor-element-5ff9231{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;box-shadow:0px -5px 16px 0px rgba(180.2, 177.45782608695652, 177.45782608695652, 0.5);--margin-top:-60px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}.elementor-7492 .elementor-element.elementor-element-5ff9231:not(.elementor-motion-effects-element-type-background), .elementor-7492 .elementor-element.elementor-element-5ff9231 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#EEF8FA;}.elementor-7492 .elementor-element.elementor-element-846c26f{--display:flex;--justify-content:center;}.elementor-widget-heading .elementor-heading-title{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );letter-spacing:var( --e-global-typography-primary-letter-spacing );color:var( --e-global-color-primary );}.elementor-7492 .elementor-element.elementor-element-2b05471{text-align:center;}.elementor-7492 .elementor-element.elementor-element-2b05471 .elementor-heading-title{font-family:"Poppins", Sans-serif;font-size:3px;font-weight:600;letter-spacing:0.03rem;}.elementor-7492 .elementor-element.elementor-element-f0a0a90{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:20px;--margin-right:0px;}.elementor-7492 .elementor-element.elementor-element-b5b792a .jet-listing-dynamic-field__content{color:var( --e-global-color-647ebb0 );font-family:"Times New Roman", Sans-serif;font-size:24px;font-weight:600;text-align:left;}.elementor-7492 .elementor-element.elementor-element-b5b792a .jet-listing-dynamic-field .jet-listing-dynamic-field__inline-wrap{width:auto;}.elementor-7492 .elementor-element.elementor-element-b5b792a .jet-listing-dynamic-field .jet-listing-dynamic-field__content{width:auto;}.elementor-7492 .elementor-element.elementor-element-b5b792a .jet-listing-dynamic-field{justify-content:flex-start;}.elementor-7492 .elementor-element.elementor-element-c375913 .jet-listing-dynamic-field__content{color:var( --e-global-color-3f808dd );font-family:"Times New Roman", Sans-serif;font-size:14px;font-weight:200;text-align:left;}.elementor-7492 .elementor-element.elementor-element-c375913 .jet-listing-dynamic-field .jet-listing-dynamic-field__inline-wrap{width:auto;}.elementor-7492 .elementor-element.elementor-element-c375913 .jet-listing-dynamic-field .jet-listing-dynamic-field__content{width:auto;}.elementor-7492 .elementor-element.elementor-element-c375913 .jet-listing-dynamic-field{justify-content:flex-start;}@media(min-width:768px){.elementor-7492 .elementor-element.elementor-element-846c26f{--width:9%;}}@media(max-width:1024px){.elementor-widget-heading .elementor-heading-title{letter-spacing:var( --e-global-typography-primary-letter-spacing );}}@media(max-width:767px){.elementor-widget-heading .elementor-heading-title{letter-spacing:var( --e-global-typography-primary-letter-spacing );}}/* Start custom CSS for container, class: .elementor-element-846c26f *//* 1. 让整个网格容器开始计数 */
.elementor-widget-jet-listing-grid {
    counter-reset: card-counter;
}

/* 2. 卡片容器：开启计数器自增 */
.hover-card-item {
    counter-increment: card-counter;
    position: relative;
}

/* 3. 独立的编号容器：完全清空上边距、内边距，并置顶 */
.hover-card-item .card-index {
    display: flex !important;
    flex-direction: row !important;         
    align-items: baseline !important;       
    justify-content: flex-start !important; 
    width: auto !important;                 
    max-width: 100% !important;
    margin: 0 auto 16px auto !important;    /* 👈 关键：把顶部 margin 设为 0，只保留底部间距 16px */
    padding: 0 !important;                  /* 👈 清除容器自身的内边距 */
    text-align: left !important;
}

/* 4. 40px 编号样式：消除字体自带的行高空隙 */
.hover-card-item .card-index::after {
    content: counter(card-counter, decimal-leading-zero) !important; 
    color: #1E56A0 !important;      
    font-weight: bold !important;   
    font-size:60px !important;     
    line-height:1.2 !important;      /* 👈 关键：将行高压到 1，消除文字上方的默认空隙 */
    margin-left: 12px !important;   
}/* End custom CSS */
/* Start custom CSS for container, class: .elementor-element-f0a0a90 *//* 1. 卡片基础美观样式（可选） */
.hover-card-item {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 20px;
    transition: all 0.3s ease-in-out;
}

.hover-card-item:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

/* 2. 默认状态：隐藏详细内容区域，并带有平滑过渡动画 */
.hover-card-item .hover-content-box {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}

/* 3. 鼠标悬停状态：展开详细内容区域 */
.hover-card-item:hover .hover-content-box {
    max-height: 200px; /* 根据内容高度调整 */
    opacity: 1;
    margin-top: 10px;   /* 展开时的顶部间距 */
}/* End custom CSS */