.news-list {
    padding: 30px 0px 0px;
}

.news-list .item {
    width: 16.666%;
    margin: 0 auto;
    padding: 0px 15px 20px;
}

.news-list .box {}

.news-list li .pic {
    position: relative;
    overflow: hidden;
    margin: 0 auto;
    max-width: 200px;
    border-radius: 50%;
}

.news-list .pic:before {
    content: " ";
    position: absolute;
    background: url('../../images/common/news/hover.png') 0% 0% no-repeat;
    top: 45%;
    bottom: 0;
    left: -45%;
    right: 0;
    opacity: 0;
    transition: all .2s ease-in-out;
    z-index: 11;
}

.news-list .pic:after {
    content: " ";
    position: absolute;
    background: rgba(0%, 0%, 0%, 0.8);
    border: 1px solid #458cf8;
    border-radius: 50%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 0;
    transition: all .2s ease-in-out;
}

.news-list a:hover .pic:before,
.news-list a:hover .pic:after {
    opacity: 1;
    transition: all .2s ease-in-out;
}

.news-list a:hover .pic:before {
    left: 0%;
}

.news-list .date {
    display: block;
    color: #ACAC9D;
    font-family: '文泉驛正黑', 'WenQuanYi Zen Hei', '儷黑 Pro', 'LiHei Pro', '微軟正黑體', 'Microsoft JhengHei', '微软雅黑', 'メイリオ', '맑은 고딕', sans-serif;
    line-height: 1;
    text-align: center;
    position: relative;
    transition: all .2s;
    margin: 20px auto;
    padding: 0 0 0 25px;
    max-width: 115px;
}

.news-list .date:before {
    content: " ";
    position: absolute;
    background: url('../../images/common/news/date.png') 0% 0% no-repeat;
    left: 0px;
    top: 0px;
    width: 20px;
    height: 20px;
}

.news-list .box:hover .date {
    color: #ffffff;
}

.news-list .name {
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    margin: 10px 0;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    height: 28px;
    transition: all .2s;
}

.news-list .box:hover .name {
    color: #9E9E9E;
}

.news-list .description {
    margin-top: 6px;
    color: #666666;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 70px;
    font-size: 15px;
    line-height: 1.6;
}


.news-header {
    display: table;
    width: 100%;
    table-layout: fixed;
    margin-bottom: 32px;
    text-align: center;
}

.news-header .date {
    display: inline-block;
    color: #ACAC9D;
    font-family: '文泉驛正黑', 'WenQuanYi Zen Hei', '儷黑 Pro', 'LiHei Pro', '微軟正黑體', 'Microsoft JhengHei', '微软雅黑', 'メイリオ', '맑은 고딕', sans-serif;
    line-height: 1;
    text-align: center;
    position: relative;
    margin: 20px 0;
    padding: 0 0 0 25px;
}

.news-header .date:before {
    content: " ";
    position: absolute;
    background: url('../../images/common/news/date.png') 0% 0% no-repeat;
    left: 0px;
    top: 0px;
    width: 20px;
    height: 20px;
}

.news-detail {
    padding-bottom: 20px;
}

@media screen and (max-width: 1280px) {
    .news-list .item {
        width: 20%;
    }
}

@media screen and (max-width: 1200px) {
    .news-list .item {
        width: 25%;
    }
}

@media screen and (max-width: 1000px) {
    .news-list .item {
        width: 25%;
    }
}

@media screen and (max-width: 800px) {
    .news-list .item {
        width: 33.33%;
    }
}

@media screen and (max-width: 767px) {
    .news-list .item {
        width: 50%;
    }
}

@media screen and (max-width: 520px) {
    .news-list .item {
        width: 100%;
    }
}