/*复用的样式*/
.search-input-button:focus,
.search-input-button:active:focus,
.search-input-button.active:focus,
.search-input-button.focus,
.search-input-button:active.focus,
.search-input-button.active.focus {
    outline: none;
}
.search-input-text:focus,
.search-input-text:active:focus,
.search-input-text.active:focus,
.search-input-text.focus,
.search-input-text:active.focus,
.search-input-text.active.focus {
    outline: none;
}
.container {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.bgDiv {
    box-sizing: border-box;
    height: 55px;
    position: relative;
    margin-top: 20px;
}

.search-input-text {
    width: 600px;
    background: #fff;
    height: 45px;
    line-height: 33px;
    font-size: 14px;
    padding:5px 0 0 17px;
    border: 0;
}

.search-input-button {
    background: #FF8400;
    width: 127px;
    height: 50px;
    padding-top: 2px;
    cursor: pointer;
    color: #fff;
    border: 0;
    font-size: 16px;
}


.suggest {
    position: absolute;
    left: 0;
    max-height: 600px;
    overflow: auto;
    width: 758px;
    font-size: 12px;
    background-color: #fff;
    box-shadow: 0 1px 2px -1px rgba(0,0,0,.5);
    z-index: 1;
}

.suggest ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.suggest ul li {
    padding: 3px;
    line-height: 25px;
    cursor: pointer;
    padding-left: 20px;
}

.suggest ul li:hover {
    background-color: #e5e5e5
}