/* 搜索列表样式 */
.search-item {
    display: flex;
    align-items: flex-start;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.search-type {
    width: 110px;
    flex-shrink: 0;
    font-size: 16px;
}

.search-all {
    width: 90px;
    flex-shrink: 0;
    font-size: 16px;
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    padding: 5px 16px;
    text-align: center;
    cursor: pointer;
}
.search-all.active{
        background-color: #2C79E3;
            color: #fff;
}

.search-list {
    display: flex;
    flex: 1 1 200px;
    margin-bottom: 0;
    flex-wrap: wrap;
}
@media only screen and (max-width: 991px) {
.search-list {
        width: 100%;
    flex-basis: 100% !important;
        /* 强制占满整行 */
        /* flex: 1; */
    }
}

.search-list li {
    font-size: 16px;
    margin: 0 12px;
    cursor: pointer;
    border-radius: 4px;
    padding: 5px 16px;
}

.search-list li.active {
    background-color: #2C79E3;
    color: #fff;
}
.search-btn{
    display: flex;
}
.search-btn input{
    max-width: 250px;
    width: calc(100% - 60px);
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}
.search-btn button{
    border-top-left-radius: 0;
        border-bottom-left-radius: 0;
 width:100px;
   
}

.search-btn-div {
    display: flex;
    align-items: flex-start;
}




/* 文章列表样式 */
.post-text-item {
    margin-bottom: 25px;
    width: 100%;
    padding: 20px;

}

.post-text-item.li-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.post-text-item.li-item h3 {
    font-weight: normal;
}


.post-text-item h3 {
    margin-bottom: 20px;
    font-weight: bold;
}

.post-text-item ul {
    margin-bottom: 0;
}

.post-text-item li {
    display: flex;
    color: #333;
    font-size: 1rem;
    margin-bottom: 10px;
}

.post-text-item li i {
    flex-shrink: 0;
    color: #2C79E3;
    font-size: 20px;
    padding-right: 10px;
    width: 35px;
}

.post-text-item li label {
    flex-shrink: 0;
}

.post-text-item li span {
    word-break: break-all;
    -webkit-line-clamp: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}

.post-text-item.li-item:hover {
    background-color: #2362B2;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.post-text-item.li-item:hover h3 {
    color: #fff;
}

.post-text-item.li-item:hover li {
    color: rgba(255, 255, 255, 0.7);
}

.post-text-item.li-item:hover li i {
    color: rgba(255, 255, 255, 1);
}


/* 详情 */
.article-content {}

.article-content-tit {
    color: #2C79E3;
    font-weight: bold;
    font-size: 1.2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 10px;
    position: relative;
}

.article-content-tit::after {
    position: absolute;
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: #2C79E3;
    margin-top: 10px;

}

#content-text {
    margin: 40px 0;
    font-size: 16px;
}

.article-content p {
    margin-bottom: 15px;
    font-size: 16px;
    color: #333;
}