/*列表*/
.new_bottom,
.new_details {
    padding: 110px 0;
}

.news_list {
    max-width: 1600px;
    width: 90%;
    margin: 0 auto;
    padding: 30px;
    border-radius: 10px;
    border: 1px solid linear-gradient(180deg, #2e8b3e, #ffb020);
    box-shadow: 1px 1px 5px #2e8b3e;
}

.news_list li {
    width: 100%;
    margin-bottom: 30px;
    background: #ffff;
    border-radius: 10px;
    overflow: hidden;
    padding: 2px;
}

.list_left {
    width: 15%;
    overflow: hidden;
    border-radius: 10px;
}

.list_rigth {
    width: 81%;
    padding: 0 2%;
    display: flex;
    align-items: center;
}

.list_box {
    display: flex;
    align-items: center;
    position: relative;
    font-size: 0;
    overflow: hidden;
    border-radius: 10px;
}

.list_left img {
    width: 100%;
    height: auto;
    transition: all 1s;
}

.news_list li:hover img {
    transform: scale(1.1);
}

.list_rigth_text h3 a {
    font-size: 22px;
    color: #333;
    font-weight: 600;
    padding-bottom: 25px;
    transition: all 0.5s;
    display: block;
}

.news_list li:hover h3 a {
    color: #2e8b3e;
}

.list_rigth_text p {
    font-size: 16px;
    line-height: 32px;
    color: #999;
}

.list_rigth_text {
    width: calc(100% - 100px);
}

.list_rigth_time {
    width: 100px;
    text-align: right;
}

.list_rigth_time h4 {
    margin: 0;
    font-size: 60px;
    font-weight: 500;
}

.list_rigth_time p {
    font-size: 20px;
    padding: 0 5px;
    color: #999;
}

.list_box::after {
    content: "";
    width: 0%;
    height: 2px;
    position: absolute;
    z-index: 1;
    left: 0;
    bottom: 0;
    background: linear-gradient(90deg, #2e8b3e, #ffb020);
    transition: all 0.5s;
}

.news_list li:hover .list_box::after {
    width: 100%;
}

/*新闻详情*/
.new_details_box>h1 {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    padding: 20px 0 15px;
    text-align: center;
}

.new_details ul * {
    font-size: 14px;
    font-weight: 300px;
    color: #999;
    line-height: 28px;
}

.new_details ul li {
    padding: 0 10px;
}

.new_details_box ul {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 10px;
}

.new_details_box>h2 {
    font-size: 18px;
    font-weight: 300px;
    color: #333;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #ddd;
    background: #fff;
    margin-bottom: 20px;
}

.new_details {

    padding: 30px;
    border-radius: 10px;
    border: 1px solid linear-gradient(90deg, #2e8b3e, #ffb020);
    box-shadow: 1px 1px 5px #2e8b3e;
}

.new_details_box>div,
.new_details_box>div * {
    font-size: 16px;
    font-weight: 300px;
    color: #333;
    line-height: 36px;
}

@media (max-width: 768px) {
    #inner .news_list {
        width: calc(90% - 20px);
        padding: 10px;
        box-shadow: none;
    }

    #inner .list_box {
        flex-wrap: wrap;
    }

    #inner .list_left {
        width: 100%;
    }

    #inner .list_rigth_text {
        width: 100%;
    }

    #inner .list_rigth_time {
        display: none;
    }

    #inner .list_rigth {
        width: 92%;
        padding: 20px 4%;
        flex-wrap: wrap;
    }

    #inner .list_rigth_text h3 a {
        font-size: 18px;
        padding-bottom: 10px;
    }

    #inner .list_rigth_text p {
        font-size: 14px;
        line-height: 24px;
    }

    .news_list li {
        margin-bottom: 20px;
        background: #f1f1f1;
    }
.new_details_box>h1{
    font-size: 20px;}
.new_details ,.new_details_box>h2 {
    font-size: 16px;
    padding: 10px;}
.new_details_box ul {
    display: flex;
    flex-wrap: wrap;}
.new_details_box>div, .new_details_box>div *{    line-height: 28px;}
}