﻿@charset "utf-8";
/* CSS search_auto */

.suggestionsBox {
    clear:both;
    position: relative;
    left: 0px;
    margin: 0px 0px 0px 0px;
    width: 100%;
    border: 1px solid #fff;
    z-index:9999999999999999999;
}
.suggestionList {
    margin: 0px;
    width: 100%;
    padding-left: 1px;
    padding-right: 1px;
    text-align:left;
}
.suggestionList li {
    margin: 0px 0px 0px 0px;
    padding-left: 10px;
    padding-right: 5px;
    height:32px;
    line-height:32px;
    cursor: pointer;
    color: #fff;
    font-size:1.4em;
    background-color: #b50000;
    overflow:hidden;
    white-space:nowrap; 
    text-overflow: ellipsis; /*以省略号...显示*/
    -o-text-overflow: ellipsis; /*以省略号...显示*/
}
.suggestionList li:hover {
    color:#FF3300;
    background-color: #FFFF99;
    transition: all 0.3s;
}