.tab_list_content {
    width: 1200px;
    overflow: hidden;
    margin: 205px auto 0;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.all_list {
    width: 100%;
    overflow: hidden;
    transition: height 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.all_list.all {
    height: auto;
}

.all_list .list_item {
    width: 100%;
    overflow: hidden;
    margin-bottom: 14px;
}

.list_item.disNone {
    display: none;
}

.list_item .labels {
    width: 50px;
    height: 24px;
    font-size: 14px;
    color: #616669;
    line-height: 24px;
    float: left;
}

.list_item ul.select {
    width: calc(100% - 50px);
    float: left;
    overflow: hidden;
}

.list_item ul.select li {
    float: left;
    padding: 0px 10px;
    font-size: 14px;
    color: #101D37;
    line-height: 24px;
    cursor: pointer;
    margin-right: 10px;
    transition: all 0.3s ease-in-out;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.list_item ul.select li.active {
    background: #162F5E;
    border-radius: 4px;
    color: #ffffff;
}

.list_item ul.select li.diy_box.active,
.list_item ul.select li.diy_box:hover {
    background: transparent;
}

.list_item ul.select li.diy_box .diy_left,
.list_item ul.select li.diy_box .diy_right,
.list_item ul.select li.diy_box .diy_left_area,
.list_item ul.select li.diy_box .diy_right_area {
    float: left;
    width: 72px;
    height: 24px;
    border: 1px solid #A8A8A8;
    border-radius: 2px;
    outline: none;
}

.list_item ul.select li.diy_box .diy_line {
    width: 21px;
    height: 24px;
    float: left;
    line-height: 24px;
    color: #101D37;
    text-align: center;
}

.list_item ul.select li.diy_box .diy_btn,
.list_item ul.select li.diy_box .diy_btn_area {
    width: 28px;
    height: 24px;
    font-size: 14px;
    color: #162F5E;
    line-height: 24px;
    float: left;
    margin-left: 42px;
    cursor: pointer;
}


/* 更多 */

.show_all_line {
    width: 1200px;
    height: 20px;
    margin: 16px 0;
    cursor: pointer;
    position: relative;
}

.show_all_line .line {
    width: 100%;
    height: 1px;
    background-color: #dddddd;
    position: absolute;
    left: 0;
    top: 11px;
}

.show_all_line .more {
    width: 66px;
    height: 20px;
    position: absolute;
    left: 50%;
    top: 0;
    font-size: 14px;
    transform: translateX(-50%);
    color: #a8a8a8;
    background-color: #ffffff;
    display: none;
    text-indent: 9px;
}

.show_all_line .more.active {
    display: block;
}

.show_all_line .more:before {
    content: "";
    width: 15px;
    height: 9px;
    position: absolute;
    left: 40px;
    top: 6px;
    background: url(../img/down_arrow.png);
    background-size: 100%;
}

.show_all_line .more.back:before {
    transform: rotateZ(-180deg);
}

.selected_params {
    width: 1200px;
    overflow: hidden;
}

.selected_name,
.selected_clear {
    width: 75px;
    height: 20px;
    line-height: 20px;
    float: left;
    font-size: 14px;
    color: #616669;
}

.selected_clear {
    text-decoration: underline;
    text-indent: 10px;
    cursor: pointer;
}

.selected_list {
    width: 1050px;
    float: left;
    min-height: 20px;
    overflow: hidden;
}

.selected_list ul {
    width: 100%;
    overflow: hidden;
}

.selected_list ul li {
    padding: 0 7px;
    height: 20px;
    line-height: 20px;
    background: rgba(22, 47, 94, 0.1);
    border: 1px solid #162F5E;
    border-radius: 2px;
    float: left;
    margin-right: 14px;
    font-size: 12px;
    color: #162F5E;
    margin-bottom: 5px;
}

.selected_list ul li span {
    float: left;
}

.selected_list ul li span.close {
    width: 9px;
    height: 9px;
    background: url(../img/close_btn.png);
    background-size: 100%;
    margin: 5px 0 5px 5px;
    cursor: pointer;
}