#news-list > .container {
    padding-top: 50px;
    padding-bottom: 100px;
}

.news-list h1.title {
    font-size: 35px;
    margin: 0;
}

.news-list .list-content {
    padding: 50px 0;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}

.news-list .list-content > div {
    padding: 15px;
}

.news-list .news-item {
    box-shadow: 0 0 0 1px #aaa;
    transition: all 0.5s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.news-item img {
    width: 100%;
}

.news-item .text-content {
    padding: 10px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.text-content .news-title {
    font-weight: 600;
    color: black;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-all;
}

.text-content .news-desc {
    color: #a8a8a8;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-all;
}

.text-content a:nth-of-type(2) {
    flex-grow: 1;
}

.text-content .news-date {
    color: #a8a8a8;
}

.news-type-label {
    display: block;
    width: fit-content;
    padding: 0 5px;
    font-size: 12px;
    margin: 5px 0;
    background: #cccc77;
    color: #fff;
}

.news-type-label.type-company {
    background: #cd4995;
}

.news-type-label.type-industry {
    background: #4971cd;
}

.news-type-label.type-notification {
    background: #49cda3;
}

.news-type-label.type-lecture {
    background: #e47b00;
}

.news-item .read-more-btn {
    color: #04a118;
    border-bottom: #04a118;
    background: none;
}

.news-item .read-more-btn:hover {
    border-bottom: 1px solid #04a118;
}

.news-item:hover {
    transform: scale(1.02);
    box-shadow: 0 0 10px #ccc;
}

.text-content hr {
    width: 20px;
    margin: 5px 0;
    border: 1px solid #c9c9c9;
    border-radius: 1px;
}

.news-list .news-pagination {
    background: #eeeeee;
}

.news-pagination > nav {
    display: block;
    width: fit-content;
    margin: auto;
}

.news-pagination ul.pagination {
    font-size: 20px;
}

ul.pagination li a,
ul.pagination li span {
    border: none;
    background: none;
    color: #04a118;
}

ul.pagination li:hover a,
ul.pagination li:hover span:hover {
    color: #000;
    background: none;
}

ul.pagination .disabled a,
ul.pagination .disabled a:hover,
ul.pagination .disabled span,
ul.pagination .disabled span:hover {
    background: none;
    color: grey !important;
}

ul.pagination .active a,
ul.pagination .active span {
    background: none;
    color: #000;
}

ul.pagination .active a::after,
ul.pagination li:hover:not(.disabled) a::after,
ul.pagination .active span::after,
ul.pagination li:hover:not(.disabled) span::after {
    content: "";
    position: absolute;
    left: 10px;
    right: 10px;
    bottom: 0;
    height: 2px;
    background: #807c7d;
}

ul.pagination .active:hover a,
ul.pagination .disabled:hover a,
ul.pagination .active a:focus,
ul.pagination .disabled a:focus {
    background: none;
    color: #000;
}

#news-info > .container {
    padding-top: 50px;
}

.news-info .news-title {
    font-size: 30px;
    line-height: 1.2em;
    font-weight: 400;
    font-family: sans-serif;
    text-align: center;
}

.news-info > span {
    font-size: 16px;
    display: block;
}

.news-info .view-num {
    color: #a8a8a8;
}

.news-info .news-type-label {
    font-size: 12px;
}

.news-info hr {
    margin: 15px 0 20px;
}

.news-info .no-more {
    display: block;
    font-size: 16px;
}

.news-article {
    padding-bottom: 40px;
}

.news-article img {
    max-width: 100%;
    display: block;
    margin: 15px auto;
}

.news-article p {
    font-size: 20px;
    color: #0b0205;
}

.page-change span{
    color: initial;
    font-size: 30px;
}

.page-change p{
    font-size: 18px;
    color: #000;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.page-change:hover p {
    color: #04a118;
    text-decoration: underline;
}

/*新闻页侧边栏*/
.news-sidebar {
    border: 1px solid #9f9f9f;
    border-radius: 10px 10px 0 0;
}

.news-sidebar .sidebar-item {
    padding: 10px;
    position: relative;
}

.news-sidebar .news-search {
    padding: 20px 10px;
}

.news-search input {
    width: 100%;
    outline: none;
    border: 1px solid #9f9f9f;
    height: 40px;
    padding: 0 60px 0 10px;
    background: 0;
}

.news-search .search-btn {
    display: block;
    background: #04a118;
    width: 50px;
    height: 40px;
    position: absolute;
    top: 20px;
    right: 10px;
}

.search-btn img {
    height: 75%;
    margin: 10% 20%;
}

.news-sidebar .recent-post {
    padding-bottom: 0;
}

.news-sidebar .recent-post p {
    font-size: 24px;
    font-weight: 600;
    color: #000;
    margin: 0;
}

.post-list .post-item {
    border-top: 1px solid #9f9f9f;
}

.post-list .post-item a{
    color: unset;
}

.post-list .post-item a:hover{
    color: #04a118;
}

.post-item .news-type-label {
    background: #dcdcdc;
    color: #000;
}

.post-item:hover {
    background: #f0f0f0;;
}

.post-item:hover .news-type-label {
    color: #fff;
}

.post-item:hover .news-type-label.type-company {
    background: #cd4995;
}

.post-item:hover .news-type-label.type-industry {
    background: #4971cd;
}

.post-item:hover .news-type-label.type-notification {
    background: #49cda3;
}

.post-item:hover .news-type-label.type-lecture {
    background: #e47b00;
}

@media (min-width: 992px) {

    .news-info {
        padding-right: 50px;
    }

}