@CHARSET "UTF-8";
/* 内容区右侧 */
#notesList {
    float: left;
    width: 100%;
}

#notesList li {
    float: left;
    width: 100%;
    margin-bottom: 30px;
}

#notesList li #title {
    float: left;
    width: 100%;
    color: #0000CC;
    font-size: 16px;
    font-weight: 400;
    text-decoration: underline;
    overflow: hidden; /* 内容超出后隐藏 */
    text-overflow: ellipsis; /* 超出内容显示为省略号 */
    white-space: nowrap; /* 文本不进行换行 */
}

#notesList li #title:VISITED {
    color: #5b357d;
}

#notesList li #notesText {
    float: left;
    width: 100%;
    margin-top: 10px;
}

#notesList li #notesText #user {
    height: 20px;
    line-height: 20px;
    vertical-align: middle;
}

#notesList li #notesText #user span {
    color: #999;
    font-size: 13px;
}

#notesList p {
    font-size: 13px;
    color: #777;
    margin-top: 10px;
}

#notesList #text-font {
    margin-right: 10px;
    font-size: 12px;
}