/*
 * Copyright (C) 2023 Baidu, Inc. All Rights Reserved.
 */

#left {
    float: left;
    width: 100%;
    height: 18%;
    box-sizing: border-box;
    overflow-x: auto;
    white-space: nowrap;
}

.left_item {
    width: 180px;
    display: inline-block;
    white-space: normal;
}

#container {
    float: left;
    width: 100%;
    height: 85%;
}

.left_title{
    margin: 5px 5px;
    padding: 10px 14px;
    box-sizing: border-box;
    border: none;
    background-color: #3876ff;
    border-radius: 2px;
    color: #fff;
    font-size: 14px;
    line-height: 14px;
    cursor: pointer;
}

.left_a {
    font-size: 10px;
    text-decoration:none;
}

.btnContainer {
    margin: 10px 10px;
}

.btnContainer button {
    padding: 10px 14px;
    box-sizing: border-box;
    border: none;
    background-color: #3876ff;
    border-radius: 2px;
    color: #fff;
    font-size: 14px;
    line-height: 14px;
}

/* 搜索样式开始 */
#panel {
    position: absolute;
    width:250px;
    padding: 10px;
    z-index: 9999;
    top: 20px;
}

#panel input {
    border:0;
    outline:0;
    padding:10px;
    width:200px;
    font-size:20px;
}

#suggestionList {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

#suggestionList li a {
    margin-top: -1px;
    background-color: #f6f6f6;
    text-decoration: none;
    font-size: 18px;
    color: black;
    display: block;
}

#suggestionList li .item_info{
    font-size: 12px;
    color:grey;

}

#suggestionList li a:hover:not(.header) {
    background-color: #eee;
}
/* 搜索样式结束 */
