
ul {
    list-style-type: none;
}

.accordion_category_title{
    margin: 0;
    display: inline-block;
    color: #ffffff;
    padding: 15px 12px;
    font-size: 18px;
    font-weight: 700;
}
#submitFilter{
    line-height: 48px;
    width: 16px;
    margin-right: 11px;
    cursor: pointer;
    text-align: center;
}


/** ======================= * Contenedor Principal ===========================*/

._accordion {
    width: 100%;
    max-width: 360px;
    background: #FFF;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    padding: 0;
}

._accordion .link {
    cursor: pointer;
    display: block;
    padding: 15px 15px 15px 12px;
    color: #4D4D4D;
    font-size: 14px;
    border-top: 5px solid #F4F6F8;
    position: relative;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
._accordion .link .link_title{
    display: block;
    width: 80%;
    color: rgb(80, 90, 100);
    font-weight: 700;
}

._accordion li:last-child .link {
    border-bottom: 0;
}

._accordion li i {
    position: absolute;
    top: 16px;
    left: 12px;
    font-size: 18px;
    color: #595959;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

._accordion li i.fa-chevron-down {
    right: 12px;
    left: auto;
    font-size: 16px;
}

._accordion li.open .link_title {
    /*color: #b63b4d;*/
}

._accordion li.open i {
    /*color: #b63b4d;*/
}

._accordion li.open i.fa-chevron-down {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
}

/** * Submenu -----------------------------*/
._submenu {
    padding: 0;
    display: none;
    font-size: 14px;
    max-height: 280px;
    overflow: auto;
}

._submenu li {
    user-select: none;
    display: flex;
    padding: 5px 12px;
}

._submenu li label,._submenu li input[type="checkbox"] {
    margin: 0;
    color: #505a64;
    -webkit-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    transition: all 0.25s ease;
    cursor: pointer;
}
._submenu li label {
    width: 80%;
    padding-left: 5px;
    color: #505a64;
    font-weight: 400;


    /*允许换行*/
    white-space: normal;
    word-wrap: break-word;

    /*允许省略号*/
    /*white-space: nowrap;*/
    /*overflow: hidden;*/
    /*text-overflow: ellipsis;*/
}

._submenu li:hover {
    background-color: #f2f2f2;
}

/* 动画-------------------------------*/
@keyframes rotateAnimation {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.icon-rotate {
    animation: rotateAnimation 1s infinite ; /* 旋转动画，持续1秒，线性速度，循环 */
    transform-origin: center center; /* 以元素中心点为旋转中心 */
}