.news-list {
    margin: 0 -6px;
}

.news-list .item {
    width: 25%;
}

.news-list .item:nth-child(4n+1) {
    clear: left;
}

.news-list .box {
    margin: 0 auto 50px;
    padding: 25px 10%;
    position: relative;
}
.news-list .box:before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #B6DBE2;
    left: calc(50% - 4px);
    bottom: 95px;
    transition: all .3s ease;
    position: absolute;
}
.news-list .box:hover:before {
    background: #56BDE0;
}
.news-list .item .cover {
    font-size: 0;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 30;
}
.news-list .pic {
    display: block;
    position: relative;
    overflow: hidden;
}
.news-list .pic img {
    transform: scale(1);
    transition: all 0.3s ease;
}
.news-list .box:hover .pic img {
    transform: scale(1.2);
}
.news-list .pic {
    position: relative;
    overflow: hidden;
    max-width: 220px;
    border-radius: 10%;
    margin: 0 auto 10px;
    background: #fff;
    transition: all 0.4s ease;
}
.news-list .pic img {
    width: 220px;
    border-radius: 10%;
    display: block;
    overflow: hidden;
    position: relative;
    z-index: 3;
    transition: all 0.3s ease;
}
.news-list .box:hover .pic {
    transition: all 0.3s ease-in-out;
}
.news-list .date {
    display: block;
    color: #1F6269;
    font-size: 16px;
    letter-spacing: 3px;
    font-family: 'Noto Serif TC', serif;
    text-align: center;
    position: relative;
    padding-bottom: 20px;
}
.news-list .date:before {
    content: '[';
    margin-right: 10px;
}
.news-list .date:after {
    content: ']';
    margin-left: 10px;
}
.news-list .name {
    color: #11373B;
    font-size: 16px;
    font-weight: normal;
    letter-spacing: 0.06em;
    white-space: nowrap;
    -ms-text-overflow: ellipsis;
    text-overflow: ellipsis;
    overflow: hidden;
    margin: 10px 0 3px;
    height: 26px;
    padding-bottom: 8px;
    position: relative;
    transition: all 0.3s ease;
    max-width: 220px;
    margin-left: auto;
    margin-right: auto;
}
.news-list .box:hover .name {
    color: #28A2CA;
}
.news-list .description {
    color: #586174;
    font-size: 14px;
    letter-spacing: 0.06em;
    white-space: nowrap;
    -ms-text-overflow: ellipsis;
    text-overflow: ellipsis;
    overflow: hidden;
    height: 23px;
    max-width: 220px;
    margin-left: auto;
    margin-right: auto;
}

.news-detail .title {
    color: #333;
    font-size: 22px;
    line-height: 1.3;
    letter-spacing: 0.06em;
    text-align: center;
    margin: 0 0 15px;
}
.news-detail .date {
    display: block;
    color: #1F6269;
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 0.05em;
    line-height: 20px;
    text-align: center;
    padding: 0;
    border-radius: 0;
    width: 165px;
    margin: 0 auto 30px;
    font-family: 'Noto Serif TC', serif;
}
.news-detail .date:before {
    content: '[';
    margin-right: 10px;
}
.news-detail .date:after {
    content: ']';
    margin-left: 10px;
}
.news-detail .editor {
    background: url('../../images/common/border_dot_h.png') repeat-x;
    padding: 28px 0;
}
@media screen and (max-width: 1000px) {
    .news-list .item {
        width: 50%;
    }

    .news-list .item:nth-child(4n+1) {
        clear: none;
    }

    .news-list .item:nth-child(2n+1) {
        clear: left;
    }

    .news-list .item:nth-child(2n+1) .box {
        background: none;
    }

    /* .news-list .name {
        font-size: 16px;
        margin: 8px 0 3px;
        height: auto;
    } */

    /* .news-list .description {
        font-size: 14px;
    } */

    .news-list .box {
        margin: 0 auto 25px;
        padding: 5px 10%;
    }

    .news-detail .title {
        font-size: 20px;
        line-height: 25px;

        margin: 0 0 10px;
    }
    .news-detail .date {
        margin: 0 auto 10px;
    }
    .news-detail .editor {
        padding: 13px 0;
    }
    .news-detail .date {
        font-size: 17px;
    }
}

@media screen and (max-width: 767px) {
    .news-list .box:before {
        bottom: 77px;
    }
    .news-list .date {
        font-size: 15px;
        letter-spacing: 1px;
    }
}

@media screen and (max-width: 580px) {}