/* notice */
.notice-box{
    min-height: 500px;
}
.notice-box .title{
    height: 70px;
    line-height: 65px;
    font-size: 24px;
    text-align: center;
    font-weight: bold;
}
.notice-box .date{
    text-align: center;
    padding: 5px 0 20px 0;
}
.notice-box .notice-content{
    font-size: 16px;
    overflow: hidden; /* 添加：超出部分隐藏 */
    line-height: 1.8;
    /*text-overflow: ellipsis; !* 添加：超出部分显示省略号 *!*/
    /*white-space: nowrap; !* 添加：文本不换行 *!*/
}
.notice-box .notice-content img{
    display: block;
    border:none;
    margin:0 auto;
    max-width: 100%;
}
.notice-list .li{
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 50px;
    line-height: 50px;
    font-size :15px;
    border-bottom: 1px solid #eee;
}
.notice-list .li .title{
    width: 950px;
    overflow: hidden; /* 添加：超出部分隐藏 */
    text-overflow: ellipsis; /* 添加：超出部分显示省略号 */
    white-space: nowrap; /* 添加：文本不换行 */
}

/* news */
.news-list-box{
    display: flex;
    justify-content: space-between;
    min-height: 500px;
}
.news-list-box .news-tab{
    overflow: hidden;
    border-bottom: 1px solid #f4f4f4;
}
.news-list-box .news-tab a {
    background-color: inherit;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 10px;
    transition: 0.3s;
    font-size: 16px;
    color: #333333;
    width: 100px;
    text-align: center;
    overflow: hidden;
}
.news-list-box .news-tab a:hover {
    background-color: #f4f4f4;
}
.news-list-box .news-tab a.active {
    color: white;
    background-color: #fb9d5e;
}

.news-list-box .news-list{
    width: 850px;
}
.news-list-box .news-list-right{
    width: 270px;
}
.news-list .li{
    position: relative;
    overflow: hidden;
    display: flex;
    padding: 25px 0;
    border-bottom: 1px solid #e5e5e5;
}
.news-list .li .cover{
    width: 240px;
    height:180px;
    overflow: hidden;
    border-radius: 5px;
    margin-right: 20px;
}
.news-list .li .cover img{
    width: 100%;
    display: block;
    border:none;
    height: auto;
}
.news-list .li .content{
}
.news-list .li .content .title{
    color:#666;
    font-size: 18px;
    margin-bottom: 10px;
}
.news-list .li .content .publish-info{
    font-size: 14px;
    color: #999999;
    height: 14px;
    line-height: 14px;
}
.news-list .li .content .desc{
    font-size: 16px;
    line-height: 30px;
    color: #666;
    margin-top:18px;
}
.news-list-right .news-type{
    margin-bottom: 20px;
}
.news-list-right .news-type h4 {
    height: 20px;
    width: 100%;
    line-height: 20px;
    margin-bottom: 12px;
    color: #666;
    font-size: 18px;
}
.news-list-right .news-type h4 span {
    height: 20px;
    width: 2px;
    background: #666;
    float: left;
    margin-right: 8px;
}
.news-list-right .news-type h4 a {
    float: right;
    font-size: 14px;
    color: #ec595b;
}
.news-list-right .news-type p {
    font-size: 14px;
    width: 100%;
    line-height: 28px;
    height: 28px;
    overflow: hidden;
}