#search {
    padding: 50px 0;
}

@media only screen and (max-width: 767px) {
    #search {
        padding: 20px 0;
    }
}

.search-box {
    line-height: normal;
    display: inline-table;
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin-bottom: 22px;
}

.search-box .box-right {
    border-radius: 0 4px 4px 0;
    border-left: none;
}

.search-box .box-left {
    border-right: none;
    border-radius: 4px 0 0 4px;
}

.search-box div {
    text-align: center;
    width: 42px;
    background-color: #F5F7FA;
    color: #909399;
    vertical-align: middle;
    display: table-cell;
    position: relative;
    border: 1px solid #DCDFE6;
    border-radius: 4px;
    padding: 0 20px;
    line-height: normal;
    white-space: nowrap;
    font-size: 14px;
}

.search-box input {
    line-height: 40px;
    height: 40px;
    -webkit-appearance: none;
    background-color: #FFF;
    background-image: none;
    border: 1px solid #DCDFE6;
    box-sizing: border-box;
    color: #606266;
    font-size: inherit;
    outline: 0;
    padding: 0 15px;
    vertical-align: middle;
    display: table-cell;
    width: 100%;
}

.search-box input:focus {
    border: 1px solid #66B1FF;
}

.search-box input::placeholder {
    font-size: 14px;
    color: #c0c4cc;
}

.search-operation {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-bottom: 22px;
}

.search-operation .operation-Reset {
    cursor: pointer;
    font-size: 14px;
    color: #303133;
}

.operation-Reset:hover {
    color: #409EFf;
}

.search-operation .operation-button {
    width: 137px;
    display: inline-block;
    line-height: 1;
    white-space: nowrap;
    cursor: pointer;
    -webkit-appearance: none;
    text-align: center;
    box-sizing: border-box;
    outline: 0;
    margin: 0;
    font-weight: 500;
    padding: 12px 20px;
    font-size: 14px;
    border-radius: 4px;
    color: #FFF;
    background-color: #409EFF;
    border-color: #409EFF;
}

.operation-button:hover {
    background: #66b1ff;

}

.search-result {
    text-align: center;
    font-size: 13px
}

.search-sort {
    font-size: 14px;
    text-align: center;
    margin-top: 10px;
}

@media screen and (max-width: 767px) {
    .sort-xs {
        display: block;
        margin-bottom: 10px;
    }

    .sort-button {
        display: inline-block;
    }
}

.search-sort select {
    height: 28px;
    line-height: 28px;
    cursor: pointer;
    border: 1px solid #DCDFE6;
    border-radius: 4px;
    width: 180px;
    max-width: 100%;
    outline: none;
    background: #ffffff;
}

.search-sort select:focus {
    border: 1px solid #66b1ff;
}

.search-sort .sort-button {
    color: #909399;
    background: #f4f4f5;
    border: 1px solid #d3d4d6;
    padding: 5px 15px;
    font-size: 12px;
    border-radius: 3px;
    cursor: pointer;
}

.sort-button:hover {
    color: #FFFFFF;
    background: #909399;
}

#search .common-bg {
    background: #FFFFFF;
    border-radius: 3px;
    padding: 0 20px 20px;
    margin: 0 5px;
}

.common-bg .common-title {
    font-size: 18px;
    color: #484848;
    padding: 20px 0 8px;
    margin: 0 0 10px 0;
    border-bottom: 2px solid #ddd;
}

.common-title i {
    color: #333;
    margin-right: 10px;
    font-size: 20px;
}

.common-title:hover span {
    padding-right: 20px;
}

.common-title span {
    padding-bottom: 6px;
    border-bottom: 2px solid black;
    transition-duration: 300ms;
}

.common-bg .library-list {
    margin: 0;
    padding: 5px;
    list-style-type: none;
}

.library-list li {
    height: 20px;
    line-height: 20px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    margin-bottom: 5px;
    padding-left: 5px;
}

.library-list li a {
    font-size: 13px;
    text-decoration: none;
    color: #333;
    padding-right: 10px;
    cursor: pointer;
}

.library-list li span {
    font-size: 13px;
    color: #909399;
}

.common-bg .library-more {
    padding-left: 10px;
    font-size: 13px;
    color: #909399;
    margin-bottom: 30px;
    cursor: pointer;
}

.search-content {
    background: #FFFFFF;
    border-radius: 5px;
    padding: 30px;
    margin: 0 5px;
}

@media screen and (max-width: 767px) {
    .search-content {
        padding: 10px;
    }

    /* 手机端检索结果两列信息改为上下堆叠，避免拥挤截断 */
    .search-content .content-item > .col-xs-16 {
        flex-direction: column;
    }

    .search-content .content-item > .col-xs-16 > .col-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

.search-content .content-item {
    border-bottom: 1px dashed #dcdfe6;
    padding-bottom: 20px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.content-item img {
    width: 100%;
    height: 130px;
    display: block;
}

.content-item .item-desc {
    font-size: 14px;

    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.item-desc i {
    font-size: 20px;
    color: #409eff;
    margin-right: 5px;
}

.item-desc span {
    line-height: 2;
}