
.main {
    /*padding-top: 100px;
    width: 100%;
    min-width: 1260px;*/
    background-color: rgb(246,246,246);
}
.main .inner-container {
    margin: 0 auto;
    /*width: 1200px;*/
    overflow: hidden;
}
.main .inner-container .title {
    font-size: 32px;
    color: rgba(49,51,54,0.90);
    margin-top: 40px;
    margin-bottom: 47px;
}
.main .news-list {
    background-color: white;
    box-sizing: border-box;
    width: 100%;
    padding: 0 40px;
    overflow: hidden;
    margin-bottom: 140px;
}
.main .news-list .news {
    width: 100%;
    box-sizing: border-box;
    padding: 30px 0;
    border-bottom: thin solid #EBEBEB;
}
.main .news-list .news .name {
    font-size: 20px;
    color: rgba(49,51,54,0.90);
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin-bottom: 15px;
    font-weight: 500;
    text-decoration: none;
}
.main .news-list .news .desc {
    font-size: 16px;
    color: rgba(49,51,54,0.60);
    text-align: justify;
    line-height: 24px;
    height: 48px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    text-overflow: ellipsis;
    overflow: hidden;
    margin-bottom: 10px;
}
.main .news-list .news .date {
    font-size: 14px;
    color: rgba(49,51,54,0.60);
}
.main .news-list .show-more-btn img {
    height: 20px;
    width: 20px;
    display: block;
    margin-right: 14px;
}
.main .news-list .show-more-btn.no-more {
    opacity: .5;
}
.main .news-list .show-more-btn {
    height: 42px;
    width: 282px;
    background-color: #f4f5f5;
    text-align: center;
    line-height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px auto;
    cursor: pointer;

    display: none;
}

@media  (max-width: 991px){
    .main {
        background: #fff;
    }

    .main .inner-container .title {
        margin: 0 15px;
        padding: 21px 0 25px;
        text-align: center;
        font-size: 20px;
        border-bottom: 1px solid #EBEBEB;
    }

    .main .news-list {
        margin-bottom: 70px;
        padding: 0 15px;
        background: transparent;
    }

    .main .news-list .news {
        padding: 20px 0;
    }

    .main .news-list .news .name {
        display: block;
        white-space: normal;
        font-size: 14px;
        margin-bottom: 10px;
    }

    .main .news-list .news .desc {
        margin-bottom: 5px;
        font-size: 12px;
    }

    .main .news-list .news .date {
        font-size: 10px;
    }
}