.histhor{
    width: 1000px;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.focusBox{
    position: relative;
    display: flex;
    border: 1px solid #2e91f6;
    border-radius: 10px;
    padding: 0px 0px 0px 10px;
    /* overflow: hidden; */
}

.focusBox>input{
    width: 800px;
    height: 40px;
    margin-right: 10px;
    border-width: 0;
    font-size: 18px;
}
.seachBtn i{
    margin-top: 2px;
    margin-right: 4px;
}

.focusBox .seachBtn{
    padding: 0px 14px;
    font-size: 16px;
    background-color: #2e91f6;
    color: #fff;
    border-width: 0px;
    border-radius: 0px 10px 10px 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.focusContent{
    position: absolute;
    top: 104%;
    left: 0;
    z-index: 10;
    box-shadow: -2px 2px 5px 0 rgba(0, 0, 0, 0.3); /* 外阴影 */
    width: 98%;
    /* height: 80px; */
    display: none;
    padding: 0px 0px 10px 0px;
    background-color: #fff;
    
    z-index: 100;
}

.focusBox>input:focus{
    border-color: red;      /* 焦点时的边框颜色 */
    background-color: #fff;     /* 聚焦时的背景色 */
    outline: none;              /* 去掉默认的聚焦轮廓 */
}

.focusContent .s1{
    display: flex;
    justify-content: space-between;
    padding-right: 20px;
}

.focusContent .s1>span{
    color: #555;
    font-size: 12px;
}

.deletAll{
    cursor: pointer;
}

#searchHistoryList{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.history-item {
    /* width: 100px; */
    display: flex;
    align-items: center;
    margin: 5px 0;
    border: 1px solid #d6d6d6;
    border-radius: 5px;
}

.history-item:hover{
    border-color: #ff5000;
}

.history-item span {
    flex-grow: 1;
    font-size: 12px;
    color: #333;
    padding:5px 5px 5px 5px;
}

.history-item .delete-btn {
    border: none;
    padding: 5px;
    cursor: pointer;
    font-size: 10px;
}

.history-item .delete-btn:hover {
    background-color: #d8d5d5;
}

.histhor{
    padding-top: 60px;
}
.searchList{
    width: 100%;
    list-style: none;
    padding:0px;
    margin: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    padding: 10px 10px 0px 10px;
}
.searchList li{
    cursor: pointer;
    padding-bottom: 5px;
    color: rgba(0, 0, 0, 0.8);
}

.close-list {
    width: 100%;
    text-align: right;
    padding-right: 30px;
    cursor: pointer;
}

.tishi{
    color: red;
    font-size: 14px;
    padding-top: 10px;
}