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

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

.article-list li {
    width: 50%;
    padding: 0 15px;
}

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

.article-list li a {
    transition: all .2s;
    position: relative;
}

.article-list li .box {
    max-width: 480px;
    box-sizing: border-box;
    margin: 0 auto 30px;
    border: 3px solid #f5f5f5;
}

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

.article-list .pic:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgba(0,0,0,0.2);
    transition: all .2s;
    opacity: 0;
    z-index: 1;
}

.article-list li a:hover .pic:before {
    opacity: 1;
}

.article-list .pic .cover {
    opacity: 0;
    transition: all .2s;
}

.article-list .pic .cover:before {
    content: "VIEW MORE";
    position: absolute;
    display: block;
    width: 100%;
    color: #fff;
    font-family: 'Open Sans', sans-serif;
    top: 50%;
    font-size: 13px;
    letter-spacing: 2px;
    margin: -20px 0 0 0;
    z-index: 80;
}

.article-list li a:hover .cover {
    opacity: 1;
}

.article-list li .text{
    margin: 0 15px;
}

.article-list li .date {
    position: absolute;
    bottom: 0;
    left: 0;
    text-align: center;
    right: 0;
    font-size: 13px;
    font-family: 'Open Sans', sans-serif;
    letter-spacing: 2px;
    background: #38652170;
    padding: 0 10px;
    box-sizing: border-box;
    color: #fff;
    transition: all .2s;
    z-index: 50;
	display: none;
}

.article-list a:hover .date{
    background: #bcc200;
}

.article-list li .name {
    font-size: 16px;
    line-height: 1.4;
    font-weight: bold;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 21px;
    color: #4a4a4a;
}

.article-list .description {
    font-size: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 42px;
    margin: 10px 0 12px;
    color: #999;
    line-height: 1.6;
}


/*------------ keyword_box ------------*/

.keyword_box {
    font-size: 14px;
    line-height: 1.5;
    padding: 9px 0 9px 20px;
    height: 40px;
    position: relative;
    box-sizing: border-box;
    color: #eb5a05;
    margin: 0 15px;
}

.keyword_box ul {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    position: relative;
}

.keyword li,
.keyword li a {
    display: inline;
    padding: 0;
    transition: all .2s;
}

.keyword li+li:before {
    content: ',';
}

.keyword_box .icon-ic-keyword {
    font-size: 14px;
    line-height: 14px;
    float: left;
    position: absolute;
    top: 12px;
    left: 0;
}

.article-detail .fb {
    padding: 10px 0 5px;
}

.keyword_box.detail {
    height: auto;
    max-width: 1000px;
    margin: 0;
    position: relative;
    padding: 9px 0 9px 25px;
}

.keyword_box.detail ul {
    white-space: normal;
    overflow: inherit;
}

.keyword li a:hover {
    text-decoration: underline;
    color: #999;
}


/*------------ detail-main ------------*/

.pic_box {
    padding: 20px;
    margin: 20px 0 30px;
}

.article-date {
    line-height: 1.2;
    color: #091b01;
    font-size: 15px;
    font-weight: bold;
    font-family: 'Open Sans', sans-serif;
}

.article-detail .share_box {
    text-align: left;
}

.article-title {
    /*font-size: 20px;*/
    font-weight: bold;
    margin: 0 0 0;
}


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

@media screen and (max-width: 600px) {
    .article-list {
        margin: 0;
    }
    .article-list li {
        width: 100%;
        padding: 0;
    }
}

@media screen and (max-width: 480px) {
    .article-detail .fb {
        width: 180px;
        overflow: hidden;
    }
}
