/* ----------------------------------- 共享笔记页面样式 ----------------------------------- */
.note-main {
    padding: 10px 0 0;
    overflow: hidden;
}
.fl {
    float: left;
}
.fr {
    float: right;
}
.clearfix::after {
    display: block;
    clear: both;
    content: "";
}
/* 笔记列表页 */
/* 左边部分 */
.note-left {
    width: 100px;
    margin-right: 25px;
}
.menu-list li {
    padding: 8px 0;
    margin-bottom: 8px;
    font-size: 15px;
    text-align: center;
}
.menu-list li a {
    display: block;
    line-height: 20px;
    color: #333;
}
.menu-list li.active {
    background-color: #AE4141;
    border-radius: 4px;
}
.menu-list li:hover a {
    color: #900b09;
}
.menu-list li.active a {
    font-weight: 600;
    color: #fff;
}

/* 中间部分 */
.note-center {
   width: 719px;
   margin-right: 25px;
}
.note-block {
    width: 100%;
    background-color: #fff;
    box-shadow: 0 4px 8px 0 rgba(28,31,33,.1);
    border-radius: 4px;
    margin-bottom: 10px;
    overflow: hidden;
}
.note-block:hover {
    box-shadow: 0 3px 5px rgba(0,0,0,.3);
}
.note-header {
    padding: 12px 10px 12px 14px;
}
.note-header .user-avatar {
    width: 48px;
    height: 48px;
    margin-right: 15px;
}
.note-header .user-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}
.note-info {
    width: 90%;
}
.note-info .note-title {
    display: inline-block;
    width: 100%;
    word-break: keep-all;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    font-size: 18px;
}
.note-intro {
    padding: 12px 14px !important;
    border-top: 1px solid #eee;
}
.note-intro,.note-intro p {
    color: #333 !important;
}
.note-meta {
    font-size: 13px;
    color: #666;
}
.note-meta a {
    color: #666;
}
.note-meta a:hover {
    color: #900b09;
}

/* 共用右边部分 */
.note-right {
   width: 260px;
}
.sidebar-top-box {
    border: 1px solid #eee;
    background-color: #fff;
    border-radius: 4px;
    padding: 15px;
    text-align: center;
    margin-bottom: 30px;
}
.sidebar-top-box h2 {
    font-size: 15px;
    color: #333;
    font-weight: 600;
    margin-bottom: 10px;
}
.sidebar-top-box .note-btn {
    display: block;
    width: 150px;
    height: 38px;
    line-height: 38px;
    margin: 0 auto;
    background-color: #AE4141;
    border-radius: 25px;
    font-size: 15px;
    color: #fff;
}
.sidebar-top-box .note-btn:hover {
    background: #900b09;
    color: #FFF;
}
.sidebar-box {
    margin-bottom: 30px;
}
.sidebar-box h2 {
    font-size: 16px;
    color: #333;
}
.sidebar-box h2::before {
    content: "";
    background: #AE4141;
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-right: 8px;
    margin-bottom: 3px;
    vertical-align: middle;
}
.sidebar-title {
    margin-bottom: 12px;
    overflow: hidden;
}
.more-btn {
    font-size: 14px;
    color: #666;
}
.more-btn:hover {
    color: #900b09;
}
.sidebar-item {
    display: block;
    position: relative;
    margin-bottom: 15px;
}
.sidebar-item img {
    display: block;
    width: 100%;
    border-radius: 4px;
}
.sidebar-item h4 {
   position: absolute;
   right: 0;
   bottom: 0;
   left: 0;
   background: rgba(0,0,0,.3);
   padding: 6px 8px;
   font-size: 14px;
   color: #fff;
   font-weight: normal;
   border-radius: 0 0 4px 4px; 
}
.sidebar-item:hover h4 {
   background: rgba(0,0,0,.4);
}

/* 笔记内容页 */
.note-content {
    width: 849px;
    margin-right: 20px;
}
.note-page {
    min-height: 900px;
    padding: 20px;
    background-color: #fff;
}
.article-group .user-avatar img {
	display: inline-block;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    vertical-align: middle;
    margin-right: 5px;
}
.icons-share-btn {
    height: 30px;
    line-height: 30px;
    margin-right: 0 !important;
}
.hot-note-list li {
    margin-bottom: 10px;
    font-size: 14px;
    word-wrap: normal;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.hot-note-list li a {
    color: #333;
}
.hot-note-list li::before {
    content: "• ";
    color: #AE4141;
}
.hot-note-list li a:hover {
    color: #900b09;
}


/* ----------------------------------- 页面自适应 ----------------------------------- */
@media (min-width:1200px) {
    .note-center {
        width: 719px;
    }
    .note-content {
        width: 849px;
    }
}
@media (min-width:1300px) {
    .note-center {
        width: 819px;
    }
    .note-content {
        width: 949px;
    }
}

/*****/

.menu-item {
    cursor: pointer;
}
