@charset "utf-8";
.content{
    width: 100%;
}

/*导航*/
.category-block{
    margin: 20px 0 20px 0;
}
.category-block .sort-block{
    padding: 5px 0;
    background-color: #fff;
    border: 1px solid #eaeaea;
    overflow: hidden;
}
.category-block .category{
    padding: 12px 0;
    background-color: #fff;
}
.category-block .category>li{
    display: inline-block;
    margin-right: 26px;
}
.category-block .category>li>a{
    display: inline-block;
    transition: all 0.3s ease-out 0s;
    line-height: 16px;
    height: 16px;
    border: 0;
    background: none;
    color: #666;
    font-size: 12px;
    padding: 4px 12px;
}

.category-block .category>li>a:hover{
    color: #15ab47;
    border-color: #666;
}

.category-block .category .sort-tit{
    color: #999;
    padding: 0 0 0 25px;
}

.category-block .active{
    color: #fff !important;
    background-color: #35b449 !important;
}


/*文章*/
.article-block{
    margin:0 auto;
}
.article-block>ul{
    height: auto;
    margin: 0 auto 20px;
    width: 1232px;
    padding-left: 17px
}
.article-block>ul>li{
    float: left;
    background-color: #ffffff;
    transition: all 0.3s ease-out 0s;
    width: 283px;
    margin: 15px 19px 15px 6px;
    animation-delay: 0.3s;
    visibility: visible;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}
.article-block>ul>li:hover{
    -moz-box-shadow: 0 -4px 25px 1px rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: 0 -4px 25px 1px rgba(0, 0, 0, 0.2);
    box-shadow: 0 -4px 25px 1px rgba(0, 0, 0, 0.2);
}

.article-block>ul>li>a{
    display: block;
    width: 100%;
    vertical-align: top;
}
.article-block .article-img{
    width: 100%;
    height: 190px;
    text-align: center;
    vertical-align: top;
    overflow: hidden;
}
.article-block .article-img>img{
    width: 100%;
    height: 190px;
    transition: all 0.8s ease-out;
    -webkit-transition: all 0.8s ease-out;
    -moz-transition: all 0.8s ease-out;
}
.article-block .article-img>img:hover{
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.article-block .article-title{
    padding: 15px 10px 10px 20px;
    font-weight: normal;
    font-size: 16px;
    line-height: 21px;
    color: #333;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-align: center;
}

.article-block>ul>li>a:hover  .article-title{
    color: #44b336 !important;
}

.article-block .date_wrap{
    padding: 0 0 10px 0;
    text-align: center;
}

.article-block .date_wrap .post_date{
    color: #888;
    font-size: 13px;
    font-family: arial;
}

.article-block .article-content{
    padding: 0 10px 12px 20px;
    color: #999999;
    font-size: 12px;
    line-height: 22px;
    height: 50px;
    overflow: hidden;
    margin-bottom: 10px;

}
.article-block .tags-list{
    height: 35px;
    line-height: 35px;
    margin-top: 15px;
    margin-bottom: 5px;
}

.article-block .tags{
    width: 260px;
    margin: 0 auto;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-align: center;
    justify-content: center;
}
.article-block .tags .tag{
    margin-right:5px;
    background: #f5f8fa;
    border-radius:8px;
    font-size: 12px;
    font-weight: 500;
    color: #44b336;
    padding: 5px 10px;
    line-height: 1;
 }
.article-block .tags .tag:hover{
    background: #23ac38;
    color: #fff;
}
