.news-list .box {
    margin: 0 auto 40px;
    line-height: 1.65;
    overflow: hidden;
}

.news-list .pic {
    float: left;
    width: 400px;
    border: 1px solid #ddd;
    position: relative;
    overflow: hidden;
}

.news-list .pic:before {
    content: '';
    display: block;
    background: rgba(255, 255, 255, 0.3);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 0;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.news-list .box:hover .pic:before {
    opacity: 1;
}

.news-list .txt {
    margin-left: 420px;
    position: relative;
}

.news-list .box:hover .txt {}

.news-list i {
    display: block;
    font-size: 18px;
    color: #717171;
    font-weight: normal;
    margin: 5px -3px;
}

.news-list .date {
    display: inline-block;
    color: #333333;
    font-size: 13px;
    line-height: 1;
    font-style: italic;
}

.news-list .date:before {
    content: "DATE";
    display: inline-block;
    margin: 0 10px 0 0;
    color: #999;
}

.news-list .name {
    color: #333333;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 5px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    height: 29px;
}

.news-list a:hover .name {
    color: #80AF5D;
    ;
    text-decoration: underline;
}

.news-list .description {
    color: #777777;
    letter-spacing: 0;
    line-height: 1.6;
    max-height: 70px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    position: relative;
}

.news-list .more {
    color: rgb(51, 51, 51);
    font-family: Arial, 微軟正黑體;
    font-size: 10px;
    transform: scale(0.83);
    width: 100px;
    height: 23px;
    line-height: 21px;
    display: block;
    border-width: 1px;
    border-style: solid;
    border-color: transparent;
    border-image: initial;
    margin: 16px 0 0 -9px;
    text-align: left;
}

.news-list .more:before {
    content: '>> ';
    font-size: 15px;
    font-family: 'Bentham', serif;
}

.news-list a:hover .more {
    color: #80AF5D;
}

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

.news-header i {
    display: block;
    font-size: 18px;
    color: #717171;
    font-weight: normal;
    margin: 5px 10px;
}

.news-header .date {
    display: inline-block;
    color: #333333;
    font-size: 13px;
    line-height: 1;
    font-style: italic;
}

.news-list .date:before {
    content: "DATE";
}

.news-header .title {
    font-size: 22px;
    font-weight: inherit;
    letter-spacing: 0.06em;
    margin: 0;
}

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

@media screen and (max-width: 767px) {
    .news-list {
        margin: 0 -7px;
    }
    .news-list .item {
        float: left;
        width: 50%;
        padding: 0 7px;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }
    .news-list .box {
        max-width: 400px;
        text-align: center;
    }
    .news-list .pic {
        float: none;
        width: auto;
    }
    .news-list .txt {
        margin: 5px 0 0;
        padding: 15px 15px 20px;
    }
    .news-header,
    .news-header .date,
    .news-header .title {
        display: block;
    }
}

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