.search-header{
    height: 320px;
    min-width: 1200px;
    margin: 0 auto;
    background: url('/img/help_center_banner.webp') no-repeat center center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.search-header>div{
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 60px;
}
.search-header h1{
    font-size: 40px;
    color: #fff;
    font-weight: 600;
    text-align: center;
    margin: 20px 0;
}
.search-header input{
    width: 600px;
    height: 50px;
    border: none;
    padding: 0 10px;
    font-size: 14px;
    color: #888;
}
.search-header input:focus{
    outline: none; 
}
.search-header button{
    width: 100px;
    height: 50px;
    background: #2068e1;
    color: #fff;
    border: none;
    padding: 0 10px;
    cursor: pointer;
}

.search-class{
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 1200px;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    box-shadow: 0 0 10px 0 rgba(176, 176, 176, 0.2);
    border-radius: 5px;
}
.search-class ul{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 40px;
}
.search-class .active{
    border-bottom: 2px solid #2878ff;
}
.search-class ul li{
    list-style: none;
    font-size: 18px;
    font-weight: 400;
    color: #333;
    cursor: pointer;
    line-height: 50px;
}

.search-class-count{
    font-size: 16px;
    color: #888;
    margin-left: 5px;
}
.search-result{
    min-width: 1200px;
    margin: 0 auto;
    max-width: 1400px;
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 40px;
}
.search-result-left{
    padding: 20px;
}
.search-result-left-list{
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.search-result-left-list-item-box{
    display: flex;
    gap: 20px;
}
.search-result-left-list-item-box .search-title-img>img{
    width: 200px;
    height: 140px;
    object-fit: cover;
    background-color: #f5f5f5;
    border: 1px solid #eee;
    border-radius: 3px;
}
.search-result-left-list-item{
    /* display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 5px; */
    position: relative;
}
.search-result-p{
    font-size: 14px;
    color: #888;
    margin-bottom: 20px;
}
.search-result-p span{
    color: #ff4b4b;
}
.search-result-left-list-item h3{
    font-size: 16px;
    color: #000;
}
.search-result-left-list-item-content{
    font-size: 14px;
    color: #888;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-top: 5px;
}
.search-result-left-list-item>p{
    color: #888;
    font-size: 12px;
    position: absolute;
    bottom: 0;
}
.search-right-box{
    background-color: #fafafa;
    border: 1px solid #fafafa;
    border-radius: 5px;
    padding: 10px 20px;
    margin-top: 50px;
    border-top: 5px solid #f36161;
}
.search-result-right .right-header{
    font-size: 16px;
    color: #ff6928;
    font-weight: bold;
    display: flex;
    align-items: center;
}
.search-result-right .right-header i{
    font-size: 24px;
    color: #ff6928;
    font-weight: bold;
}
.search-result-right .right-content{
    margin: 10px;
    border-top: 1px solid #eee;
    padding-top: 15px;
}
.search-result-right .right-content ul{
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.search-result-right .right-content ul li{
    list-style: none;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.search-result-right .right-content ul li a{
    text-decoration: none;
}
.search-result-right .right-content ul li a:hover{
    color: #ff6928cd;
}
.guanggao-box>img {
    margin-top: 50px;
    height: 400px;
    width: 100%;
    object-fit: cover;
    border-radius: 5px;
    animation: float 2s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }
}

/* 分页 */
#search-pages{
    text-align: center;
}
.layui-laypage a, .layui-laypage span{
    display: inline-block;
    vertical-align: middle;
    padding: 0 25px;
    height: 40px;
    line-height: 40px;
    background-color: #fff;
    color: #333;
    font-size: 14px;
}
.layui-laypage a:hover{
    color: #1E9FFF;
}