.noticeContent{
    width: 1200px;
    margin: 10px auto;
    background-color: #fff;
    padding: 20px;
    box-sizing: border-box;
}
.noticeContent .courseBox{
    width: 1160px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.noticeItem{
    width: 560px;
}
.noticeItem .item-msg {
    width: calc(100% - 150px);
}

/*以下是通知公告内容样式*/
.noticeDetailsBox{
    width: 1200px;
    height: auto;
    margin: 10px auto;
    box-sizing: border-box;
    padding: 15px 20px 20px;
    background-color: #fff;
}
.noticeDetailsBox > h2{
    text-align: center;
    font-weight: bold;
    font-size: 22px;
    line-height: 30px;
    color: #333;
    padding: 25px 0 15px;
    word-break: break-all;
}
.noticeDetailsBox > .noticeMsg{
    text-align: center;
    padding-bottom: 30px;
}
.noticeDetailsBox > .noticeMsg span{
    font-size: 14px;
    color: #999;
}
.noticeDetailsBox > .noticeMsg span + span{
    margin-left: 30px;
}
.noticeDetailsBox > .noticeArticle{
    line-height: 26px;
    font-size: 14px;
    color: #666;
    word-break: break-all;
}
.noticeDetailsBox > .noticeArticle img{
    max-width: 100%!important;
}
/*通知公告内容样式止*/

@media screen and (max-width: 1220px){
    .noticeContent,
    .noticeDetailsBox{
        width: 1000px;
    }
    .noticeContent .courseBox{
        width: 960px;
    }
    .noticeItem{
        width: 460px;
    }
}