/*------------ 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 .box {
    transition: all .2s;
    position: relative;
}

.article-list li .box {
    max-width: 318px;
    margin: 0 auto;
    padding: 15px 15px 0 15px;
    box-sizing: border-box;
}

.article-list li .pic {
    position: relative;
    box-sizing: border-box;
    margin-bottom: 12px;
}

.article-list .pic a:nth-child(3):before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    transition: all .2s;
    opacity: 0;
}

.article-list li .box:hover .pic a:nth-child(3):before {
    opacity: 1;
}

.article-list .pic .cover {
    width: 90px;
    height: 90px;
    transform-origin: 50% 50%;
    transform: rotate(-45deg);
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -45px 0 0 -45px;
    font-size: 14px;
    opacity: 0;
    transition: all .2s;
    z-index: 50;
}

.article-list .pic .cover:before {
    content: "VIEW MORE";
    position: absolute;
    display: block;
    font-family: 'Cabin', sans-serif;
    transform: rotate(45deg);
    transform-origin: 2% 135%;
    z-index: 50;
}

.article-list li .box:hover .cover {
    opacity: 1;
}

.article-list li .date {
    line-height: 32px;
    width: 96px;
    position: absolute;
    bottom: 0;
    left: 0;
    font-size: 13px;
    font-family: 'Cabin', sans-serif;
    z-index: 50
}

.article-list li .name a {
    font-size: 16px;
    line-height: 1.4;
    font-weight: bold;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 21px;
}

.article-list .description a {
    font-size: 14px;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 42px;
    margin: 7px 0 12px;
}


/*------------ keyword_box ------------*/

.keyword_box {
    font-size: 14px;
    line-height: 1.5;
    padding: 9px 20px 9px 40px;
    height: 40px;
    position: relative;
    margin: 0 -15px;
    box-sizing: border-box;
}

.keyword_box ul {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    position: relative;
}

.keyword li,
.keyword li a {
    display: inline;
    padding: 0;
}

.keyword li+li:before {
    content: ',';
}

.keyword_box .icon-ic-keyword {
    font-size: 14px;
    line-height: 14px;
    float: left;
    position: absolute;
    top: 14px;
    left: 17px;
}

.article-detail .fb {
    padding: 5px 0;
}

.keyword_box.detail {
    padding: 9px 15px 6px 35px;
    height: auto;
    max-width: 1000px;
    position: relative;
}

.keyword_box.detail ul {
    white-space: normal;
    overflow: inherit;
}


/*------------ detail-main ------------*/

.pic_box {
    padding: 20px;
    margin: 20px 0 30px;
}

.article-date {
    font-family: 'Cabin', sans-serif;
    font-size: 14px;
    line-height: 1.2;
}

.article-detail .share_box {
    text-align: left;
}

.article-title {
    padding: 0 0 10px;
    font-size: 18px;
    font-weight: bold;
    margin: 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;
    }
}

@media screen and (max-width: 600px) {
    .article-list {
        margin: 0;
    }
    .article-list li {
        width: 100%;
        padding: 0 0 35px;
    }
}

@media screen and (max-width: 480px) {
    .article-detail .fb {
        width: 180px;
        overflow: hidden;
    }
}
