#wrapper {
    width: 96%;
    margin: 10px auto;
    font-weight: bold;
}

#notice_title {
    font-size: 32px;
    line-height: 1.5;
    text-align: center;
}

#notice_inst {
    font-size: 16px;
    color: #999;
    text-align: center;
    line-height: 2;
    font-weight: normal;
}

#notice_date {
    font-size: 18px;
    text-align: right;
}

#notice_list {
    margin-top: 15px;
    /* 定义分栏间隙 */
    column-gap: 20px;
    -moz-column-gap: 20px;
    -webkit-column-gap: 20px;
    /* 定义分栏分隔线 */
    column-rule: 1px dashed #999;
    -moz-column-rule: 1px dashed #999;
    -webkit-column-rule: 1px dashed #999;
}

.one-third-cols {
    /* 定义分栏数量 */
    column-count: 3;
    -moz-column-count: 3;
    -webkit-column-count: 3;
}

.one-forth-cols {
    /* 定义分栏数量 */
    column-count: 4;
    -moz-column-count: 4;
    -webkit-column-count: 4;
}

.score-plus {
    color:#00FF00;
}

.score-minus {
    color:red;
}

.notice-item {
    margin: 5px 0;
}

.notice-item-info {
    color: #FFF;
    background-color: #999;
    font-size: 18px;
    padding: 4px 8px;
}

.notice-detail-list {
    background-color: #F0F0F0;
    font-size: 16px;
}

.notice-detail-item {
    padding: 3px;
    font-weight: normal;
    border-bottom: 1px dashed #CCC;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}

.notice-detail-item:last-child {
    border-bottom: none;
}

.notice-detail-item-tch {
    min-width: 60px;
    color: blue;
}

.notice-detail-item-info {
    margin-left: 3px;
}