/* 文章中心内容样式 */

.article-title {
    text-align: center;
    margin: 80px 0;
}

.breadcrumb-item {
    float: right;
    margin: -50px 0 0 0;
}

.breadcrumb {
    background-color: #fff;
}

.breadcrumb li a {
    color: #000;
}

.breadcrumb>li+li:before {
    content: "\003E";
    color: #000;
}

.article-tab {
    width: 100%;
    height: 47px;
    display: flex;
    justify-content: center;
}

.article-tab a {
    display: block;
    width: 120px;
    height: 47px;
    border: 1px solid #e1e1e1;
    text-align: center;
    line-height: 47px;
    box-sizing: border-box;
    border-radius: 50px;
    float: left;
    margin-right: 20px;
    color: #4b4948;
    transition: all 0.9s;
}

.article-tab a:hover {
    background-color: #201d85;
    color: #fff;
}

.article-context {
    margin-top: 20px;
    border-top: 1px solid #dfdfdf;
}

.article-item {
    border-bottom: 1px dotted #dfdfdf;
}

.article-item a {
    color: #000;
}

.article-item ul {
    display: flex;
    margin-top: 38px;
    /* height: 169px; */
    margin-bottom: 20px;
}

.article-item p {
    width: 100%;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-top: 20px;
}

.article-item ul li {
    margin: 0 20px;
    flex: 3;
}

.article-item ul li img {
    width: 100%;
    height: 100%;
}

.article-item .article-item-img {
    flex: 1;
}


/* 文章中心内容样式 */


/* 屏幕自适应样式 */

@media (max-width:768px) {
    .article-item .article-item-img {
        padding: 8px 0;
    }
    .article-item ul li p {
        font-size: 12px;
        margin-top: 10px;
    }
    .article-item ul li h3 {
        font-size: 18px;
    }
}