.classify {
    display: flex;
    padding: 50px 0;
}

.classify li {
    width: 150px;
    height: 40px;
    line-height: 40px;
    border-radius: 5px;
    text-align: center;
    background: #efefef;
}

.classify li.active {
    background: #fdd000 url(../images/leaf.png) no-repeat;
    background-size: contain;
    background-position: center;
}

.classify li:not(:last-child) {
    margin-right: 15px;
}

.classify li a {
    display: inline-block;
    width: 100%;
    height: 100%;
    font-weight: bold;
}

.news-list .list li {
    display: flex;
    padding: 30px;
    background: white;
    box-shadow: 0 0 20px #f1f1f1;
    margin-bottom: 20px;
    transition: 0.5s;
}

.news-list .list li .left {
    width: 320px;
    height: 140px;
    text-align: center;
}

.news-list .list li .left img {
    max-height: 100%;
    max-width: 100%;
}

.news-list .list li .right {
    width: 800px;
    margin-left: 20px;
    position: relative;
}

.news-list .list li .right .title {
    display: inline-block;
    width: 100%;
    font-size: 18px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.news-list .list li .right .desc {
    color: #6e6e6e;
    font-size: 12px;
    margin-top: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.news-list .list li .right .time-btn {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.news-list .list li .right .time-btn .time {
    display: inline-block;
    color: #6e6e6e;
    height: 100%;
    line-height: 36px;
}

.news-list .list li .right .time-btn .look-details {
    background: #ebebeb;
    float: right;
    font-size: 12px;
    color: #323232;
    padding: 10px 20px;
    border-radius: 10px;
    transition: 0.3s;
}

.news-list .list li:hover {
    transform: scale(1.03);
    box-shadow: 0 0 20px #ebebeb;
}

.news-list .list li:hover .right .time-btn .look-details{
    background: #fdd000;
    color: white;
}

.news-details {
    position: relative;
    padding-top: 230px;
}

.news-details .big-img {
    width: 100%;
    position: absolute;
    top: 0;
}

.news-details .details {
    padding-top: 50px;
    padding-bottom: 50px;
    border-radius: 5px;
    position: relative;
}

.news-details .location, .news-details .title, .news-details .info, .news-details .content, .news-details .pre-next {
    padding: 0 70px;
}

.news-details .location a {
    display: inline-block;
}

.news-details .location a:not(:first-child) {
    margin-left: 15px;
}

.news-details .location a:not(:last-child) {
    margin-right: 15px;
}

.news-details .title {
    font-size: 25px;
    margin: 30px 0;
}

.news-details .info span {
    color: #919191;
    font-size: 12px;
    margin-right: 15px;
}

.news-details .line {
    width: 100%;
    background: #dddddd;
    height: 1px;
    margin: 30px 0;
}

.news-details .content {
    line-height: 30px;
    font-size: 16px;
    margin-bottom: 50px;
}

.news-details .content img {
    max-width: 100%;
}

.news-details .pre-next {
    line-height: 25px;
}

.news-details .list{
    display: flex;
    justify-content: space-between;
}

.news-details .list li {
    width: 225px;
    height: 220px;
    background: white;
    margin-bottom: 25px;
}

.news-details .list li img {
    max-width: 100%;
    min-height: 180px;
}

.news-details .list li p {
    padding: 10px 15px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    font-weight: bold;
}