/* Mall 搜索联想面板样式 */
.mall-search { position: relative; }
.mall-suggest-panel {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 1050;
    background: #fff;
    border: 1px solid rgba(0,0,0,.08);
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0,0,0,.08);
    margin-top: 4px;
    max-height: 480px;
    overflow-y: auto;
}
.mall-sg-group { padding: 6px 0; }
.mall-sg-group + .mall-sg-group { border-top: 1px solid #f1f1f1; }
.mall-sg-title {
    padding: 6px 14px;
    font-size: 12px;
    color: #999;
    background: #fafafa;
}
.mall-sg-item {
    padding: 8px 14px;
    cursor: pointer;
    font-size: 14px;
    line-height: 1.4;
}
.mall-sg-item:hover, .mall-sg-item.active {
    background: #f5f7ff;
    color: #d35400;
}
.mall-sg-item em { font-style: normal; color: #d35400; font-weight: 600; }
.mall-sg-empty {
    padding: 14px;
    color: #999;
    font-size: 13px;
    text-align: center;
}
