/* 下拉菜单右侧 subDiv 面板样式（scoped 于 .sub-menu-wrap） */
.sub-menu-wrap .subDiv {
    background: linear-gradient(180deg, #f8fafc 0%, #fff 40%);
    box-sizing: border-box;
}
.sub-menu-wrap .subDiv .subDivSub {
    border: 1px solid #e9edf3;
    border-radius: 8px;
    background: #fff;
    align-items: flex-start;
    box-sizing: border-box;
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.sub-menu-wrap .subDiv .subDivSub:hover {
    background: #f3f8ff;
    border-color: #c8dcfb;
    box-shadow: 0 2px 8px rgba(47, 130, 255, 0.08);
}
.sub-menu-wrap .subDiv .subDivSub > div:first-child img {
    width: 30px;
    height: 30px;
    border-radius: 4px;
    object-fit: contain;
    display: block;
}
.sub-menu-wrap .subDiv .subDiv-card-title {
    font-size: 15px;
    font-weight: 500;
    line-height: 1.35;
}
.sub-menu-wrap .subDiv .subDiv-card-title a {
    color: #1c1f23;
    text-decoration: none;
    transition: color .2s ease;
}
.sub-menu-wrap .subDiv .subDiv-card-title a:hover {
    color: #2f82ff;
}
.sub-menu-wrap .subDiv .subDiv-card-desc {
    font-size: 12px;
    color: #8a9199;
    margin-top: 2px;
    line-height: 1.45;
}
.sub-menu-wrap .subDiv .CaseOut {
    border: 1px solid #e9edf3;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    margin: 0 20px 20px;
    transition: background .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.sub-menu-wrap .subDiv .CaseOut:hover {
    background: #f3f8ff;
    border-color: #c8dcfb;
    box-shadow: 0 2px 8px rgba(47, 130, 255, 0.08);
}
.sub-menu-wrap .subDiv .CaseOut:hover .subDiv-case-head {
    background: #f3f8ff;
}
.sub-menu-wrap .subDiv .subDiv-case-head {
    border-bottom: 1px solid #e8ecf2;
    text-align: center;
    padding: 7px 10px;
    background: #fff;
    transition: background .2s ease;
}
.sub-menu-wrap .subDiv .subDiv-case-title {
    font-size: 13px;
    color: #1c1f23;
    text-align: center;
    font-weight: 600;
    line-height: 1.35;
}
.sub-menu-wrap .subDiv .subDiv-case-title a {
    color: #1c1f23;
    text-decoration: none;
    transition: color .2s ease;
}
.sub-menu-wrap .subDiv .subDiv-case-title a:hover {
    color: #2f82ff;
}
.sub-menu-wrap .subDiv .subDivSubCase {
    background: transparent;
    margin: 15px;
    margin-bottom: 20px;
    padding: 10px;
    box-shadow: none;
}
.sub-menu-wrap .subDiv .subDivSubCase img {
    width: 105px;
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    display: block;
    margin: 0 auto;
    box-shadow: none;
}
.sub-menu-wrap .subDiv .subDivSubCase:hover,
.sub-menu-wrap .subDiv .subDivSubCase:hover img {
    box-shadow: none;
}

/* 方案菜单：仅修正左侧条目 icon/文字对齐，高度由 JS 与 cqoa.css 基准统一 */
.sub-menu-wrap .subdl-solution .sub-menudd {
    display: flex;
    align-items: flex-start;
    box-sizing: border-box;
}
.sub-menu-wrap .subdl-solution .sub-menudd a {
    top: 0 !important;
}
