.news-list {
    margin: 0 auto;
}

.news-list .item {
    width: 33.3%;
    padding: 0 20px;
}

.news-list .item:nth-child(3n+1) {
    clear: left;
}

.news-list .box {
    margin: 0 auto 55px;
    text-align: center;
    position: relative;
}

.news-list li .cover {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 5;
}

.news-list .box.new:before {
    content: '';
    display: block;
    background: url('../../images/common/news/new_tag.png') no-repeat;
    width: 58px;
    height: 58px;
    position: absolute;
    z-index: 10;
    left: 0;
    top: 0;
}

.news-list .pic-box {
    margin-bottom: 10px;
    position: relative;
    overflow: hidden;
}

.news-list .pic {
    display: block;
    position: relative;
    overflow: hidden;
}

.news-list .pic:before {
    content: "";
    background: url(../../images/common/news/hover.png) 50% 60% no-repeat rgba(136, 171, 205, 0.6);
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 5;
    opacity: 0;
    transition: all 0.3s;
}

.news-list .box:hover .pic:before {
    background-position: 50% 50%;
    opacity: 1;
}

.news-list .pic img {
    width: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    transition-delay: 0s;
    transition-duration: 4s;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
}

.news-list .box:hover .pic img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.news-list .box .pic {
    border-radius: 0px;
    transition: all .6s ease;
    border: 3px solid #ffffff;
}

.news-list .box:hover .pic {
    border-radius: 25px;
    border-color: #0951A4;
}

.news-list .name {
    color: #414141;
    font-size: 18px;
    font-weight: bold;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 27px;
    text-align: center;
    padding-bottom: 10px;
    transition: all .3s ease;
}

.news-list .box:hover .name {
    color: #0850A4;
}

.news-list .description {
    color: #686868;
    font-size: 16px;
    line-height: 1.75;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 50px;
    text-align: left;
    margin-bottom: 10px;
}

.news-detail h1 {
    color: #193D85;
    font-size: 28px;
    font-weight: bold;
    margin: 0em 0 .4em;
    line-height: 1.5;
}

.news-detail .editor {
    margin: 0 auto 20px;
    border-bottom: 1px dashed #dddddd;
    padding: 0 0 20px;
}


@media screen and (max-width: 900px) {

    .news-list .item {
        width: 50%;
        padding: 0 10px;
    }

    .news-list .item:nth-child(3n+1) {
        clear: none;
    }

    .news-list .item:nth-child(2n+1) {
        clear: left;
    }
}

@media screen and (max-width: 767px) {

    .news-detail h1 {
        font-size: 18px;
        line-height: 1.6;
        margin: 10px 0;
    }

    .news-detail .editor {
        margin-bottom: 0;
    }

    .news-list .box {
        margin: 0 auto 35px;
    }
}

@media screen and (max-width: 440px) {
    .news-list .item {
        width: 100%;
    }

    .news-list .item:nth-child(n) {
        clear: none;
    }
}