/**
 * @author: Jicc(103698177)
 * @date: 2026-02-07
 * @phone: 13790890981
 * ==== 小黄鸭调试法，永无BUG ====
 *                            ||
 *      .-"O"-.               ||
 *   _/ a      -._._._.-';    ||
 *  '-.                ,/     ||
 *     )     \_////>  ';      ||
 *     \                |     ||
 *      '--------------'      ||
 *  ~~~~~~~~~~~~~~~~~~~~~~~~~ ||
 */
/* newlist */
.page-wrapper{
    width: 1080px;
    margin: 0 auto;
    padding: 40px 0;
    display: flex;
}
.page-container{
    width: 720px;
}
.news-list{
    display: flex;
    flex-direction: column;
    width: 100%;
}
.news-list li{
    width: 100%;
    margin-bottom: 32px;
}
.news-list li.news-item{}
.news-list li a{
    display: flex;
}
.news-item-img{
    display: flex;
    align-items: center;
    justify-content: center;
    flex: none;
    width: 234px;
    height: 132px;
    margin-right: 16px;
    overflow: hidden;
}
.news-item-img img{
    width: 100%;
    height: auto;
}
.news-item-content{
    display: flex;
    flex-direction: column;
}
.news-item-title{
    font-size: 20px;
    font-weight: bold;
    color: #333;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}
.news-item-desc{
    color: #666;
    font-size: 14px;
    line-height: 140%;
    margin-top: 8px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}
.news-item-date{
  font-size: 12px;
  color: #666;
  margin-top: auto;
}
.news-list li a:hover .news-item-title{
  text-decoration: underline;
}
.load-more{
  font-size: 12px;
  color: #333;
  text-align: center;
}

/* side */
.page-side{
    width: 360px;
    padding-left: 40px;
}

@media screen and (max-width: 767px) {
    /* newlist */
    .page-wrapper{
        width: 100%;
        margin: 0 auto;
        padding: 0.2rem 0.16rem;
        display: flex;
    }
    .page-container{
        width: 100%;
    }
    .news-list{
        display: flex;
        flex-direction: column;
        width: 100%;
    }
    .news-list li{
        width: 100%;
        margin-bottom: 0.2rem;
    }
    .news-list li.news-item{}
    .news-list li a{
        display: flex;
    }
    .news-item-img{
        display: flex;
        align-items: center;
        justify-content: center;
        flex: none;
        width: 1.17rem;
        height: 0.66rem;
        margin-right: 0.1rem;
        overflow: hidden;
    }
    .news-item-img img{
    width: 100%;
    height: auto;
    }
    .news-item-content{
        display: flex;
        flex-direction: column;
    }
    .news-item-title{
        font-size: 0.14rem;
    }
    .news-item-desc{
        display: none;
    }
    .news-item-date{
        font-size: 0.11rem;
    }
    .news-list li a:hover .news-item-title{
        text-decoration: none;
    }
    .load-more{
        font-size: 0.12rem;
    }
    /* side */
    .page-side{
       display: none;
    }

}