/*add for category query*/
.question-category-container {
    border: 1px solid #e1e7eb;
    line-height: initial;
}

.question-category-container .main-title {
    font-size: 16px;
    color: #323232;
    height: 38px;
    line-height: 38px;
    border-bottom: 1px solid #e1e7eb;
    border-left: 4px solid #6d7883;
    background-color: #f5f7fb;
    padding-left: 18px;
}

.question-category-wrapper {
    margin-top: 20px;
    border-top: 1px solid #e1e7eb;
    overflow: hidden;
}

.question-category-wrapper .category-list {
    width: 350px;
    float: left;
}

.question-category-wrapper .category-list li {
    height: 44px;
    line-height: 44px;
    border-right: 1px solid #e1e7eb;
    color: #323232;
    padding-left: 16px;
    cursor: pointer;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
	border-left:5px solid #fff;
}

.question-category-wrapper .category-list li:hover,
.question-category-wrapper .category-list li.active {
    color: #0568ce;
    border-top: 1px solid #e1e7eb;
    border-bottom: 1px solid #e1e7eb;
    border-right: none;
	border-left-color:#33bbee;
}

.question-category-wrapper .category-list li.first:hover,
.question-category-wrapper .category-list li.first.active {
    border-top: 1px solid #fff;
}

.question-category-wrapper .category-list li.last {
    border-bottom: 1px solid #e1e7eb;
}

.question-category-wrapper .category-list li.last:hover,
.question-category-wrapper .category-list li.last.active {
    border-bottom: 1px solid #fff;
}

.category-content {
    padding-left: 380px;
}

.category-content .question-search {
    margin-top: 10px;
}

.category-content .question-search .title {
    color: #323232;
    font-size: 14px;
    height: 32px;
    line-height: 32px;
    font-weight: bold;
}

.category-content .search-container {
    margin-bottom: 10px;
    position: relative;
}

.auto-complete-input {
    padding: 0 15px;
    height: 30px;
    border: 1px solid #bfbfbf;
    margin-right: 10px;
    width: 350px;
}

.search-btn {
    height: 32px;
    line-height: 32px;
    border: 1px solid #dadada;
    background: #f7f7f7;
    padding: 0 20px;
    margin-right: 12px;
    outline: none;
    cursor: pointer;
}

.auto-complete-container {
    position: absolute;
    left: 0;
    top: 32px;
    width: 318px;
    background: #fff;
    max-height: 300px;
    overflow: auto;
    border: 1px solid #ddd;
    z-index: 100;
    display: none;
}

.auto-complete-container.active {
    display: block;
}

.auto-complete-container ul li {
    height: 30px;
    line-height: 30px;
    padding: 0 5px;
    cursor: pointer;
    white-space: nowrap;
}
.auto-complete-container ul li a{
    display: block;
}
.auto-complete-container ul li.unfound ,
.auto-complete-container ul li.querying {
    text-align: center;
    font-weight: bold;
}

.auto-complete-container ul li:hover {
    background: #efefef;
    color: #000;
}

.auto-complete-container ul li.active {
    background: #0a89ff;
    color: #fff;
}

.question-content {
    display: none;
    margin-top: 10px;
    min-height: 200px;
}

.question-content .sub-title {
    color: #323232;
    font-size: 14px;
    height: 34px;
    line-height: 34px;
    font-weight: bold;
}

.question-content.active {
    display: block;
}

.question-content ul {
    overflow: hidden;
    margin-top: 10px;
}

.question-content ul li {
    float: left;
    width: 50%;
}

.question-content ul li a {
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    white-space: nowrap;
    padding-right: 10px;
    height: 30px;
    line-height: 30px;
}

.unfound-nav {
    text-align: right;
    margin: 20px 20px 20px 0;
}

.unfound-nav .blue-link {
    color: #0b6eca;
}

.unfound-nav .blue-link:hover {
    text-decoration: underline;
}