.none {
    min-height: 500px;
}

.searchContainer {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 0.8rem;
    z-index: 999;
    background: #fff;
    padding: 0 0.8rem;
}

.searchContainer input {
    box-sizing: border-box;
    width: 40%;
    height: 0.5rem;
    border: 1px solid #797979;
    padding: 0 0.2rem;
    outline: 0;
}

.searchContainer .icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 0.5rem;
    height: 0.5rem;
    cursor: pointer;
}

.searchContainer .icon img {
    width: 24px;
    height: 24px;
}

.result-title {
    background-color: #efefef;
}

.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.result-title .result-text {
    line-height: 2rem;
    color: #333333;
    font-size: 36px;
    font-weight: 600;
}

.content {
    padding-bottom: 1.2rem;
}

.content .result-text {
    line-height: 2rem;
    color: #333333;
    font-size: 26px;
}

.content .result-text .number {
    color: #B81C22;
}

.content .result-list {
    font-size: 18px;
    height: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eaeaea;
    position: relative;
}

.content .result-list .box {
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    position: relative;
}

.content .result-list .icon {
    width: 10px;
    height: auto;
    vertical-align: middle;
    margin-right: 15px;
    display: inline;
    position: absolute;
    top: 7px;
}

.content .result-list .text {
    color: #333333;
    display: inline-block;
    white-space: nowrap;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-left: 20px;
}

.content .result-list .time {
    display: block;
    padding-left: 25px;
    font-size: 14px;
    margin-top: 8px;
    color: #8d8c8c;
}

.content .result-list .source {
    color: #c1c1c1;
}

.content .result-list::after {
    content: " ";
    position: absolute;
    width: 0;
    height: 1px;
    left: 50%;
    bottom: 0;
    background-color: #e70012;
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
}

.content .result-list:hover::after {
    width: 100%;
    left: 0%;

}

.content .result-list:hover .box {
    padding-left: .2rem;
}

.page-list {
    margin-top: .5rem;
}

.page-list ul {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    text-align: center;
    font-size: 0;
}

.page-list ul li:not(:last-child) {
    margin-right: 10px;
}

.page-list ul li {

    min-width: 50px;
    height: 50px;
    line-height: 50px;
    background: #fff;
    display: inline-block;
    font-size: 18px;
    margin-bottom: 10px;
}

.page-list ul li a {
    color: #666;
    padding: 0 10px;
    display: block;
    background: #ededed;
    width: 100%;
    height: 100%;
}

.page-list ul li.page-num.active a {
    color: #fff;
    background: #c90111;
}

.page-list ul li a:hover {
    color: #fff;
    background: #c90111;
}

.page-list ul {
    flex-wrap: wrap;
}

@media screen and (max-width: 1024px) {
    .searchContainer input {
        width: 80%;
    }

    .content .result-list {
        height: auto;
        flex-direction: column;
        padding-top: .4rem;
    }

    .content .result-list .box {
        width: 100%;
        -webkit-line-clamp: 2;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        text-overflow: ellipsis;
        overflow: hidden;
        height: 48px;
    }

    .content .result-list .time {
        margin-top: 0;
    }

    .content .result-list .source {
        width: 100%;
        text-align: right;
        height: .8rem;
        line-height: .8rem;
    }

    .result-title .result-text {
        font-size: 24px;
    }

    .content .result-text {
        font-size: 20px;
    }

    .page-list ul li {

        min-width: 40px;
        height: 40px;
        line-height: 40px;
        font-size: 16px;
    }

    .page-list ul li a {

        padding: 0 5px;

    }
}

@media screen and (max-width: 768px) {
    .content .result-list .icon {
        top: 5px;
    }

    .searchContainer input {
        height: 32px;
        width: calc(100% - 50px);
    }

    .searchContainer .icon {
        margin-left: 10px;
    }

    .searchContainer {
        height: 60px;
    }

    .result-title .result-text {
        min-height: 80px;
        font-size: 20px;
    }

    .content .result-text {
        font-size: 16px;
    }

    .content .result-list .text {
        font-size: 14px;
    }

    .content .result-list .source {
        font-size: 12px;
    }
}<!--ºÄÊ±1778754399.5531Ãë-->