.news-list {
    max-width: 1060px;
    margin: 0 auto;
}

.news-list .box {
    margin: 0 auto 40px;
    position: relative;
}

.news-list .item {
    border-bottom: 1px dashed #f7f7f7;
    margin-bottom: 50px
}

.news-list .pic {
    position: relative;
    overflow: hidden;
    margin-bottom: 2px;
}

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

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

.news-list .txt {
    padding: 3px 250px 5px 0;
    position: relative;
}

.news-list .date {
    display: block;
    margin-right: 10px;
    font-family: 'Arimo', sans-serif;
    width: 66px;
    height: 60px;
    background: #86a7ea;
    border-radius: 0px;
    text-align: center;
    color: #fff;
    font-size: 30px;
    font-style: normal;
    line-height: 25px;
    padding-top: 15px;
    margin: 10px 10px 10px 0px;
    width: 7.5%;
    display: inline-block;
    position: relative;
}

.news-list .box:hover .date {
    background: transparent;
}

.news-list .item .date:before {
    content: '';
    display: block;
    width: calc(100% + 6px);
    height: calc(100% + 6px);
    position: absolute;
    left: -4px;
    top: -4px;
    margin: auto;
    z-index: -1;
    background: #2758cf;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    opacity: 0;
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
}

.news-list .box:hover .date:before {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
}

.news-list .item small {
    font-size: 13px;
    display: block;
}

.news-list .name {
    font-size: 20px;
    min-height: 30px;
    width: 90%;
    display: inline-block;
    margin-top: 15px;
    position: absolute;
    color: #062168;
}

.news-list .name a {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-height: 60px;
    line-height: 30px;
}

.news-list .box:hover .name a {
    font-weight: bold;
    color: #86a7ea;
}

.news-list .description a {
    font-size: 14px;
    color: #888;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: auto;
    min-height: 40px;
    max-height: 40px;
    line-height: 1.4;
}

.news-list .more {
    color: #062168;
    font-family: 'Roboto', sans-serif;
    cursor: pointer;
    display: block;
    font-size: 13px;
    font-weight: 400;
    line-height: 40px;
    margin: 0 auto 2em;
    max-width: 150px;
    text-decoration: none;
    text-transform: uppercase;
    vertical-align: middle;
    width: 100%;
    position: absolute;
    right: 0;
    top: 0;
}

.news-list .box:hover .more {
    text-decoration: none;
    color: #062168;
}

.news-list .more {
    background: #fff;
    text-align: center;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}

.news-list .more svg {
    height: 40px;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}

.news-list .more rect {
    fill: none;
    stroke: #062168;
    stroke-width: 1px;
    stroke-dasharray: 422, 0;
    -webkit-transition: all .9s ease;
    transition: all .9s ease;
}

.news-list .box:hover .more {
    background: rgba(225, 51, 45, 0);
    letter-spacing: 4px;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}

.news-list .box:hover .more rect {
    stroke: #86a7ea;
    stroke-width: 3;
    stroke-dasharray: 15, 335;
    stroke-dashoffset: 95;
    -webkit-transition: all 1.35s cubic-bezier(0.19, 1, 0.22, 1);
    transition: all 1.35s cubic-bezier(0.19, 1, 0.22, 1);
}

.news-detail {
    max-width: 1060px;
    margin: 0 auto;
}

.news-detail .pic {
    margin-bottom: 10px;
}

.news-detail .date {
    display: block;
    margin-right: 10px;
    font-family: 'Roboto', sans-serif;
    width: 66px;
    height: 55px;
    display: inline-block;
    background: url(../../images/common/newsomething/02.jpg);
    background: #86a7ea;
    border-radius: 0px;
    text-align: center;
    color: #fff;
    font-size: 30px;
    font-style: normal;
    line-height: 25px;
    padding-top: 10px;
    margin-bottom: 10px;
}

.news-detail small {
    font-size: 13px;
    display: block;
}

.news-detail .title {
    font-size: 20px;
    font-weight: normal;
    margin: 0 0 14px;
}


/**************/

@media screen and (max-width: 767px) {
    .news-list .txt {
        padding: 0;
        margin-top: -2px;
    }
    .news-list .name {
        font-size: 18px;
        width: 100%;
        max-height: 61px;
        display: block;
        position: relative;
        margin: 0 auto 9px;
        line-height: 1.4;
    }
    .news-list .date,
    .news-detail .date {
        width: 120px;
        height: 30px;
        font-size: 22px;
        margin: 0px 0px 10px 0px;
        padding-top: 5px;
    }
    .news-list .item small:before,
    .news-detail small:before {
        content: '/';
        font-size: 20px;
        margin: 0 5px;
    }
    .news-list .item small,
    .news-detail small {
        display: inline-block;
    }
    .news-list .date:after {
        margin: 5px auto;
    }
    .news-list .more {
        position: relative;
        display: block;
        margin: 12px 0 0;
    }
    .news-list .item {
        margin-bottom: 15px
    }
    .news-list .pic {
        margin-bottom: 12px;
    }
    .news-list .box {
        margin: 0 auto 16px;
    }
    .news-list .more {
        display: none;
    }
    .news-list .description {
        max-height: 50px;
        line-height: 1.6em;
    }
    .news-detail .title {
        font-size: 18px;
        line-height: 1.65;
        padding: 0 0 10px;
        margin-bottom: 10px;
        border-bottom: 1px dashed #2758cf;
    }
}
