@font-face {
    font-family: 'iconfont';
    src: url(./iconfont.ttf) format('truetype'), url(./iconfont.woff) format('woof'), url(./iconfont.woff2) format('woof2');
}
#supportBoxs {
    min-height: 600px;
    text-align: center;
    line-height: 600px;
}
.search-input {
    width: 1200px;
    margin: 68px auto 80px auto;
    height: 54px;
    display: flex;
    border: 1px solid #E60039;
    border-radius: 2px;
}

.search-input-info {
    display: flex;
    width: 100%;
    height: 100%;
    position: relative;
    border-radius: 2px;
    background: #FFF;
    padding: 16px 20px;
    box-sizing: border-box;
}

.search-input input {
    width: 100%;
    height: 100%;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    border: none;
    color: #000;
    font-size: 16px;
    font-weight: 400;
}

.search-input input::placeholder {
    color: #7d7d7d;
}

.search-btn {
    padding: 15px 28px;
    background: #E60039;
    border-radius: 0 0 2px 2px;
    cursor: pointer;
}

.clearBtn {
    display: none;
    cursor: pointer;
}

.search-content {
    display: flex;
    justify-content: center;
}

.filterBtns {
    display: flex;
    width: 100%;
}

.filterBtn:last-child {
    display: none;
}

.filterBtn {
    width: 100%;
    border-bottom: 1px solid #E3E5E6;
    color: #2A2B2E;
    font-size: 22px;
    font-weight: 400;
    box-sizing: border-box;
    padding: 12px 20px;
}

.search-results {
    width: 1280px;
}

.search-sidebar {
    width: 280px;
    margin-right: 40px;
}

.filter-content h6 {
    display: none;
}

.filter-content li {
    color: #2A2B2E;
    width: 100%;
    font-size: 16px;
    font-weight: 400;
    box-sizing: border-box;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
}
.filter-content li span{
    background: #FAFBFC;
    border-radius: 14px;
    width: 41px;
    height: 28px;
    top: calc(50% - 28px/2);
    text-align: center;
    display: inline-block;
    line-height: 28px;
}
@media screen and (min-width:990px) {
    .filter-content li:hover {
        background: #F1F3F5;
        cursor: pointer;
    }
    .search-result-info:hover {
        background: #FAFBFC;
    }
    .search-result-info:hover h5 {
        color: #E60039;
        text-decoration: underline;
    }
    .more-prev:hover::before {
        content: '\e602';
        font-size: 12px;
        transform: rotate(180deg);
    }
    .more-next:hover::before {
        content: '\e602';
        font-size: 12px;
    }
    .search-pagination:hover,
    .search-pagination-next:hover::before,
    .search-pagination-prev:hover::before {
        color: #409EFF;
    }
}

.filter-content li.active {
    color: #E60039;
    cursor: default;
}

.search-results-head {
    display: flex;
    position: relative;
    padding: 16px 40px 16px 20px;
    justify-content: space-between;
    align-items: center;
    background: #F4F4F4;
}

.search-results-head p {
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.search-results-head p::after {
    content: "";
    width: 14px;
    height: 7px;
    display: block;
    margin-left: 8px;
    background-size: cover;
    background-image: url(./RJ-img/down.svg);
}

.sort-content {
    display: none;
    position: absolute;
    right: -20px;
    top: 48px;
    background-color: #FFFFFF;
    filter: drop-shadow(0px 0px 6px rgba(0, 0, 0, 0.20));
    -webkit-filter: drop-shadow(0px 0px 6px rgba(0, 0, 0, 0.20));
    z-index: 9;
}

.sort-content li {
    padding: 12px 16px;
    font-size: 16px;
    border-bottom: 1px solid #dadce0;
    cursor: pointer;
}

.sort-content li.active {
    color: #E60039;
    pointer-events: none;
}

.sort-content li:first-child {
    position: relative;
}

.sort-content li:first-child::after {
    content: '';
    display: block;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -9px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #FFFFFF;
    filter: drop-shadow(0px 0px 15px rgba(0, 0, 0, 0.20));
    -webkit-filter: drop-shadow(0px 0px 15px rgba(0, 0, 0, 0.20));
}

.search-results-head div {
    color: #2A2B2E;
    font-size: 16px;
    font-weight: 400;
}

.search-result-info {
    position: relative;
    display: block;
    width: 100%;
    padding: 30px 160px 30px 20px;
    box-sizing: border-box;
    border-bottom: 1px solid #E3E5E6;
}

.search-result-info h5 {
    color: #2A2B2E;
    font-size: 16px;
    font-weight: 500;
}

.search-result-info p {
    margin-top: 12px;
    color: #9B9FA8;
    font-size: 14px;
    font-weight: 400;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    white-space: normal;
}

.search-result-info .itemType {
    position: absolute;
    top: 34px;
    right: 30px;
    color: #9B9FA8;
    font-size: 14px;
    font-weight: 400;
}

.search-result-info ul {
    margin-top: 12px;
    display: flex;
    align-items: center;
}

.search-result-info ul {
    color: #6A6B6D;
}

.search-result-info ul li {
    color: #6A6B6D;
    font-size: 14px;
    font-weight: 400;
}

.search-result-info ul li::after {
    content: '>';
    padding: 0 8px;
}

.search-result-info ul li:last-child::after {
    content: '';
}

.search-result-info strong {
    font-weight: 400;
}

.serach-main hr {
    display: none;
}

.sort-content h6 {
    display: none;
}

#satisfaction {
    background: #F1F3F5;
}


/* 分页器 */

.search-paginations {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 40px 0;
}

.search-pagination {
    cursor: pointer;
    color: #2A2B2E;
    font-size: 14px;
    font-weight: 500;
}

.search-paginations div {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 8px;
    width: 30px;
    height: 28px;
    position: relative;
}

.search-pagination.active {
    background: #E60039;
    color: #FFFFFF;
}

.search-pagination-next::before {
    font-family: 'iconfont';
    content: '\e601';
    display: block;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
}

.search-pagination-prev::before {
    font-family: 'iconfont';
    content: '\e601';
    display: block;
    font-size: 14px;
    transform: rotate(180deg);
    font-weight: bold;
    cursor: pointer;
}

.search-pagination-prev.disabled::before,
.search-pagination-next.disabled::before {
    color: #E4E8EB;
    pointer-events: none;
}

.search-pagination-prev.disabled::after,
.search-pagination-next.disabled::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: transparent;
    cursor: not-allowed;
}

.more-prev::before,
.more-next::before {
    font-family: 'iconfont';
    content: '...';
    display: block;
    font-size: 14px;
    color: #E60039;
}

@media screen and (max-width:1650px) {
    .search-results {
        width: 1100px;
    }
    .search-sidebar {
        width: 200px;
    }
}

@media screen and (max-width:1440px) {
    .search-sidebar {
        margin-right: 24px;
    }
    .search-sidebar {
        width: 140px;
    }
    .filterBtn {
        font-size: 18px;
    }
    .filter-content li,
    .filterBtn {
        padding: 12px 16px;
    }
    .search-input {
        width: 1100px;
        margin: 48px auto 60px auto;
    }
    .filter-content li {
        font-size: 14px;
    }
}

@media screen and (max-width:1280px) {
    .search-results {
        width: 800px;
    }
    .search-input {
        width: 900px;
    }
    .search-btn {
        padding: 15px 20px;
    }
    .search-result-info {
        padding: 24px 140px 24px 20px;
    }
    .search-results-head div {
        font-size: 14px;
    }
    .search-results-head p {
        font-size: 14px;
    }
    .sort-content li {
        padding: 10px 14px;
        font-size: 14px;
    }
    .search-input-info {
        padding: 12px 16px;
    }
    .search-input {
        height: 42px;
    }
    .search-btn {
        padding: 8px 14px;
    }
}

@media screen and (max-width:990px) {
    .search-input {
        width: 100%;
        margin: 24px 0;
    }
    .serach-main {
        padding: 0 20px;
    }
    .serach-main hr {
        display: block;
        margin: 0;
    }
    .search-content {
        margin-top: 24px;
        flex-direction: column;
    }
    .search-sidebar {
        width: 100%;
    }
    .search-results {
        width: 100%;
    }
    .filter-content h6,
    .sort-content h6 {
        display: block;
        font-size: 20px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        border-bottom: 1px solid #E3E5E6;
        padding: 0 20px 16px 20px;
    }
    .filter-content {
        position: fixed;
        padding: 14px 0;
        top: 60px;
        left: 100%;
        width: 100%;
        height: 100%;
        background-color: #FFFFFF;
        z-index: 9;
        box-sizing: border-box;
        transition: left .3s linear;
    }
    .filter-content.active {
        left: 0;
    }
    .filter-content li {
        padding: 16px 20px;
    }
    .filterBtn:last-child {
        display: flex;
        margin-left: 12px;
    }
    .filterBtn {
        padding: 10px 16px;
        border-radius: 2px;
        background: #F4F4F4;
        font-size: 14px;
        border-bottom: none;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .filterBtn::after {
        content: '';
        width: 14px;
        height: 7px;
        background-image: url(./RJ-img/down-grey.svg);
        background-size: cover;
        display: block;
    }
    .search-result-info {
        padding: 24px 0;
    }
    .search-result-info .itemType {
        top: unset;
        right: unset;
        position: unset;
        display: inline-block;
        padding: 4px 10px;
        background: #F7F7F7;
        margin-top: 16px;
    }
    .search-result-info ul {
        display: none;
    }
    .search-result-info h5 {
        font-size: 16px;
    }
    .body-overflow {
        overflow: hidden;
    }
    .sort-content {
        padding: 14px 0;
        position: fixed;
        top: 60px;
        left: 100%;
        right: unset;
        width: 100%;
        height: 100%;
        background-color: #FFFFFF;
        z-index: 9;
        display: block;
        filter: unset;
        -webkit-filter: unset;
        transition: left .3s linear;
    }
    .search-results-head div,
    .search-results-head p {
        display: none;
    }
    .sort-content li:first-child::after {
        display: none;
    }
    .sort-content.active {
        display: block;
        left: 0;
    }
    .search-results-head {
        padding: 0;
    }
    .sort-content li {
        padding: 16px 20px;
        border-bottom: none;
    }
    .clearBtn img {
        width: 100%;
    }
    #satisfaction .satisfaction-rate-l {
        left: -30px;
    }
    #satisfaction .satisfaction-rate-r {
        right: -30px;
    }
    #satisfaction .satisfaction-rate .el-radio-button:last-child {
        margin-right: 0;
    }
    .search-pagination-next,
    .search-pagination-prev {
        background-color: #F1F3F5;
    }
    .search-pagination.active {
        background: unset;
        color: #E60039;
    }
    .search-paginations div {
        height: 40px;
    }
    .search-paginations .search-pagination-prev,
    .search-paginations .search-pagination-next {
        width: 40px;
    }
    .search-pagination {
        font-size: 16px;
    }
}

@media screen and (max-width:396px) {
    #satisfaction .satisfaction-rate-l {
        left: 10px;
    }
    #satisfaction .satisfaction-rate-r {
        right: 10px;
    }
    #satisfaction .satisfaction-rate .el-radio-button {
        margin-right: 2px;
    }
}
.search-result-info:has(.search-results-content-container) {
    text-decoration: none;
}
.search-result-info:hover h5 {
 text-decoration: none !important;
}

.search-result-info:hover .search-results-content-container .content {
    text-decoration: underline;
    color: #E60039;
}
.lifecycle {
    display: inline-block;
    /* font-size: 14px;
    color: #999ea7 !important;
    padding: 0px 8px;
    border-radius: 14px;
    border: 1px solid #999ea7; */
      width: 31px;
    height: 16px;
    font-family: 'Noto Sans';
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    text-transform: capitalize;
    text-align: center;
    color: #9B9FA8;
    position: relative;
    top: -2px;
     border-radius: 4px;
    background: #F4F4F4;
    border: 1px solid #E3E5E6;
}
