/* 新闻列表 */

.news {}

.news ul {
    padding: 0.2rem 0;
    background: rgba(255, 255, 255, 0.9);
    border-left: 3px solid #ffd239;
}

.news ul li {
    padding: 0.2rem 0;
}

.news ul a {
    position: relative;
    display: flex;
    align-items: center;
}

.new-li-time {
    flex-shrink: 0;
    width: 1.4rem;
    color: #000;
    text-align: center;
}

.new-li-day {
    font-size: 30px;
    line-height: 32px;
}

.new-li-year {
    font-size: 12px;
    line-height: 18px;
}

.new-li-font {
    position: relative;
    overflow: hidden;
    flex-grow: 1;
    padding: 0 0.2rem;
    border-left: 1px dashed #000;
}

.new-li-title {
    font-size: 16px;
    line-height: 20px;
    color: #000;
}

.new-li-p {
    height: 54px;
    overflow: hidden;
    margin-top: 0.1rem;
    font-size: 14px;
    line-height: 18px;
    color: #999999;
}

.new-li-more {
    position: absolute;
    right: -3vw;
    top: -0.6vw;
    z-index: 1;
    width: 3vw;
    height: 100%;
    padding: 1.5vw 1vw 0;
    font-size: 0.9vw;
    line-height: 1;
    color: #000;
    background: #ffd239;
    opacity: 0;
    transform: translate3d(-50%, 0, 0);
    transition: 0.6s;
}

@media (min-width: 1200px) {
    .news {
        padding: 2vw;
        background: none;
        border: 1px solid #ffd239;
        border-top: 0;
    }
    .news ul {
        padding: 1vw 0;
        background: rgba(255, 255, 255, 0.9);
        border-left: 6px solid #ffd239;
    }
    .news ul li {
        padding: 0.8vw 0;
    }
    .news ul a {
        position: relative;
        display: flex;
    }
    .new-li-time {
        position: relative;
        z-index: 10;
        width: 6.6vw;
        padding: 1.2vw 0;
        color: #000;
        text-align: center;
        border-right: 1px dashed #000;
    }
    .new-li-day {
        font-size: 3vw;
        line-height: 3.2vw;
    }
    .new-li-year {
        font-size: 0.9vw;
        line-height: 1vw;
    }
    .new-li-font {
        position: relative;
        z-index: 1;
        width: 51vw;
        overflow: visible;
        padding: 0.5vw 1vw 1vw 2vw;
        border: 0;
        transition: 0.6s;
    }
    .new-li-title {
        font-size: 1vw;
        line-height: 1.2vw;
        color: #000;
    }
    .new-li-p {
        height: 3.6vw;
        overflow: hidden;
        margin-top: 0.6vw;
        font-size: 0.9vw;
        line-height: 1.2vw;
        color: #999999;
    }
    .new-li-more {
        position: absolute;
        right: -2.8vw;
        top: -0.6vw;
        z-index: 1;
        width: 3vw;
        height: 100%;
        padding: 1.5vw 1vw 0;
        font-size: 0.9vw;
        line-height: 1;
        color: #000;
        background: #ffd239;
        opacity: 0;
        transform: translate3d(-50%, 0, 0);
        transition: 0.6s;
    }
    .news ul a:hover .new-li-time {
        background: #ffd239;
        border-color: #ffd239;
    }
    .news ul a:hover .new-li-font {
        transform: translate3d(-0.8vw, 0, 0);
    }
    .news ul a:hover .new-li-font::before {
        content: '';
        box-sizing: border-box;
        position: absolute;
        left: -2.1vw;
        top: -0.6vw;
        width: 55vw;
        height: 100%;
        border: 2px solid #ffd239;
    }
    .news ul a:hover .new-li-more {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
    .pages {
        background: rgba(255, 255, 255, 0.9);
        border-left: 6px solid #ffd239;
    }
}


/* 新闻详情 */

.new-er {}

.new-er-title {
    text-align: center;
}

.new-er-name {
    font: bold 16px/24px "微软雅黑";
    color: #333;
}

.new-er-time {
    font: 400 14px/24px "微软雅黑";
    color: #999;
}

.new-er-p p {
    margin-bottom: 10px;
    font: 400 14px/24px "微软雅黑";
    color: #333;
    text-align: justify;
}

.new-er-p p img {
    max-width: 100%;
}

@media (min-width: 1200px) {
    .new-er {
        padding: 2vw 4vw;
    }
    .new-er-title {
        position: relative;
        margin: 0 0 10px;
        padding: 0 0 10px;
        color: #fff;
        text-align: left;
        border-bottom: 1px solid #333;
    }
    .new-er-name {
        color: #333;
    }
    .new-er-time {
        position: absolute;
        right: 0;
        top: 0;
        color: #333;
    }
    .new-er-p p {
        font: 400 16px/30px "微软雅黑";
        color: #333;
    }
}