/* customize.js 中指定的 searchBox.containerId 用于容纳所有 searchBox 相关的页面元素 */
#searchBox {
    display: block;
    width: 500px;
    margin: 0 auto;
    padding: 0;
}
#searchBox * {
    line-height: 20px;
}
/* form表单 默认的margin: 0;很重要 */
#searchBox form {
    margin: 0;
}
/* 搜索文本框 不建议更改 border-width padding margin 这些属性 否则可能影响下拉列表的位置 */
#searchBox input.suggest-text {
    width: 400px;
    height: 22px;
    font-size: 18px;
    font-family: Verdana;
    border-color: #F9B919;
	margin-right:6px;
	line-height:22px;
}
/* 无输入时搜索框提示样式 */
#searchBox input.suggest-text.description {
    color: #666666;
}
/* 下拉框 */
#searchBox .suggest-list,
#searchBox .suggest-addition {
    border-color: #C2D0E7;
}
/* 下拉框文字 */
#searchBox .suggest-list td {
    font-size: 15px;
}
/* 下拉框高亮文字 */
#searchBox .suggest-list td b {
    color: #FF6600;
}
/* 下拉框注释文字 */
#searchBox .suggest-list td span {
    font-size: 13px;
}
/* 下拉框分隔符颜色 */
#searchBox .suggest-list tr.separator {
    background-color: #C2D0E7;
}
/* 提交按钮 customize.js 中指定的 searchBox.submitButton */
#searchBox input.submit {
    width: 70px;
    height: 29px;
    font-size: 18px;
    margin: 0 1px;
    padding: 0;
    background-image: url(/m/i/english/btn_headersch2.gif);
    background-color: transparent;
    border-style: none;
    vertical-align: top;
}
/* 热门城市开关按钮 customize.js 中指定的 searchBox.tooltipsButton */
#searchBox .on-off {
    color: #7F9DB9;
    cursor: pointer;
}

/* 以下为热门城市列表相关的所有CSS */
/* 标签样式 */
#selectionTabs .tab {
    float: left;
    width: 50px;
    display:inline-block;
    text-align: center;
    margin: 4px 2px 0 2px;
    color: #000000;
    border-width: 1px;
    border-style: solid;
    border-color: #C2D0E7;
    border-bottom-style: none;
    cursor: pointer;
    background-color: #EBEFF7;
    font-size: 15px;
}
/* 活动标签样式 */
#selectionTabs .tab.active {
    border-color: #C2D0E7;
    background-color: #FFFFFF;
}
/* 可选城市列表的容器 */
#selectionGroups {
    clear: left;
    border-top-width: 1px;
    border-top-style: solid;
    border-top-color: #C2D0E7;
    padding: 4px;
}
/* ul样式 不建议更改list-style-type */
#selectionGroups ul {
    display: none; /* 默认隐藏 此属性禁止更改 */
    list-style-type: none;
    margin: 0;
    padding: 0;
}
/* 默认显示id为hot的ul的内容 */
#selectionGroups ul#hot {
    display: block;
}
/* li样式 不建议更改 */
#selectionGroups li {
    float: left;
    width: 20%;
    font-size: 13px;
    text-align: center;
    line-height: 20px;
}
/* 连接文字样式 */
#selectionGroups span {
    color: #3366BB;
    cursor: pointer;
}
#selectionGroups span.highlight {
    color: #FF6600;
    text-decoration: underline;
}
/* 列表下面提示文字 及其外框的样式 */
#selectionNotice {
    border-top-width: 1px;
    border-top-style: solid;
    border-top-color: #C2D0E7;
    clear: both;
    color: #000000;
    font-size: 12px;
    padding: 4px;
}
