/*------------ article ------------*/

.article-list {
    margin: 0 -13px;
}

.article-list li {
    width: calc((100% / 3) - 0.1px);
    padding: 0 13px 35px;
}

.article-list li:nth-child(3n+1) {
    clear: left;
}

.article-list li a {
    transition: all .4s;
    background: #f8f8f8;
    padding: 12px;
    position: relative;
    max-width: 376px;
    margin: 0 auto;
    box-sizing: border-box;
}

.article-list li a:hover {
    background: #005bac;
    transition: all .2s;
}

.article-list li .pic {
    position: relative;
    box-sizing: border-box;
    margin-bottom: 12px;
}

.article-list li .date{
    width: 57px;
    height: 57px;
    line-height: 1.2;
    color: #fff;
    font-size: 12px;
    text-align: center;
    display: inline-block;
    background: #005bac;
    letter-spacing: 0.35px;
}

.article-date {
    position: absolute;
    width: 57px;
    height: 63px;
    line-height: 1.2;
    color: #fff;
    font-size: 12px;
    text-align: center;
    background: url(../../images/common/news/date.png);
    left: 15px;
    top: 0;
    z-index: 15;
    letter-spacing: 0.35px;
}

.article-list li a:hover .date {
    background: #509de2;
    transition: all .2s;
}

.article-list li a:hover .date b {
    color: #fff;
    transition: all .2s;
}

.article-list li .date b,
.article-date b {
    font-size: 25px;
    color: #fff;
    display: block;
    transition: all .2s;
    margin: 5px 0 -2px 0;
}

.article-list li .name {
    font-size: 16px;
    line-height: 1.5;
    color: #000000;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 45px;
    margin: 5px 0;
    float: right;
    width: calc(100% - 65px);
    transition: color .4s;
}

.article-list a:hover .name {
    
}
.article-list .description {
     font-size: 14px;
    color: #6f6f6f;
    line-height: 1.7;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 42px;
    margin: 10px 0 0px;
    transition: color .4s;
}
.article-list a:hover .name,
.article-list a:hover .description{
    color: #fff;
}

/****************keyword_box******************/
.keyword_box {
    font-size: 14px;
    color: #AAAAAA;
    padding: 9px 14px 6px;
    height: 40px;
    position: relative;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    background: #eeeded;
    max-width: 376px;
    margin: 0 auto;
    box-sizing: border-box;
}

.keyword li,
.keyword_box .keyword li a {
    display: inline;
    padding: 0;
    background: none;
}
.keyword li a:hover{
    text-decoration: underline;
    color: #222;
}
.keyword li+li:before {
    content: ',';
}
.keyword .icon-ic-keyword{
    font-size: 14px;
    width: 14px;
    height: 14px;
    line-height: 14px;
    border: 1px solid transparent;
    margin: 5px 6px 0 0px;
    color: #AAAAAA;
    float: left;
}
.article-detail .fb {
    padding: 5px 0;
}

.keyword_box.detail {
    background: none;
    float: none;
    padding: 9px 0px 6px;
    height: auto;
    display: inline-block;
    max-width: none;
}

/*------------ detail-main ------------*/
.pic_box {
    background: #f8f8f8;
}
.pic_box .pic{
    padding: 20px 0;
    margin: 10px 0;
}
.article-detail {
    background: #fff;
    padding: 0 15px 50px;
}

.article-title {
    position: relative;
    margin: 0 -15px 15px;
    padding: 35px 20px 20px 85px;
    letter-spacing: 2px;
    color: #000000;
    font-size: 24px;
    border-bottom: 1px solid #dedede;
    line-height: 1.5;
}

.article-date small {
    color: #AAAAAA;
    position: absolute;
    left: 100%;
    top: 0;
    margin: 12px 0 0 15px;
}


/*------------ rwd ------------*/

@media screen and (max-width: 900px) {
    .article-list li {
        width: 50%;
    }
    .article-list li:nth-child(3n+1) {
        clear: none;
    }
    .article-list li:nth-child(2n+1) {
        clear: left;
    }
    .article-title{
        font-size: 18px;
    }
}

@media screen and (max-width: 600px) {
    .article-list {
        margin: 0;
    }
    .article-list li {
        width: 100%;
        padding: 0 0 35px;
    }
    .article-date{
        background-color: #005bac;
        padding: 8px;
    }
    .article-date small {
        color: #fff;
        position: static;
        left: auto;
        top: auto;
        margin: 0 auto;
    }
}

@media screen and (max-width: 480px) {
    .article-title {
        padding: 0px 0 20px 100px;
        min-height: 80px;
    }
    .article-detail .fb {
        width: 180px;
        overflow: hidden;
    }
    .article-date{
        top: auto;
    }
}

