/*首页通知双栏*/
.container-fluid {
    display: flex; 
    justify-content: space-between;
    padding: 0;
    height: 385px;
}
.left-column {
    flex-basis: 50%; 
    background-color: #ffffff; 
}
.right-column {
    flex-basis: 50%; 
    margin-left: 20px; 
    background-color: #ffffff; 
}
.heading_title{
    font-size: 16px;
}
.container-fluid .panel-body ul li{
    padding-top: 7px;
    height: 50px;
    border-bottom: 1px dashed #c8c8c8;
}
.container-fluid .panel-body ul li a{
    display: inline-block;
    height: 100%;
    width: 100%;
    line-height: 42px;
}
.container-fluid .panel-body ul li a:hover{
    color: rgb(0, 64, 128);
    text-decoration: none
}
.container-fluid .panel-body ul li a .title{
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.container-fluid p {
    width: 48px;
    height: 36px;
    float: left;
    text-align: center;
    border: 1px solid rgb(0, 64, 128);
    margin-right: 16px;
    }
.container-fluid  p .span1,
.container-fluid  p .span2{
    height: 18px;
    line-height: 18px;
}
.container-fluid  p .span2 {
    color: #fff;
    background:rgb(0, 64, 128);
}
 .container-fluid  p span{
    display: block;
    color: rgb(0, 64, 128);
}
.panel-body {
    padding: 0!important;
}

/*通知列表页*/
/* 整个侧栏 */
.news-sidebar {
    /*margin-top: 10px;*/
    background: #fff;
    border: 1px solid #e5e7eb;
}
.news-title-wrap {
    position: relative;
    padding: 15px 0 10px;
}
/* 顶部标题 */
.news-title {
    position: relative;
    display: inline-block;
    background: #005faf;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    padding: 12px 80px 12px 80px;
    margin-left: -20px;
}

/* 左下角小三角 */
.news-title::before {
    content: "";
    position: absolute;
    left: 0px;
    bottom:-10px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 20px 10px 0; 
    border-color: transparent #164a9f transparent transparent;
}

/* 菜单列表 */
.news-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* 每一项 */
.news-menu li {
    position: relative;
    border-bottom: 1px solid #eee;
}

.news-menu li a {
    display: block;
    padding: 14px 20px;
    color: #333;
    text-decoration: none;
    font-size: 15px;
}

/* hover 和 active 共用 */
.news-menu li:hover,
.news-menu li.active {
    background: #005faf;
}

/* 左侧黄色竖条 */
.news-menu li:hover::before,
.news-menu li.active::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: #f5c400;
}

/* 文字颜色 */
.news-menu li:hover a,
.news-menu li.active a {
    color: #fff;
    font-weight: bold;
}

/*通知列表页item*/
.date{
    float: right;
}
.media-body > a{
    float: left;
    display: inline;
    width: 85%;
}