@charset "UTF-8";
/* 消息 */
@keyframes post_shake {
    0%,to {
        transform: translateZ(0);
    }

    10%,30%,50% {
        transform: translate3d(-5px,0,0);
    }

    70%,90% {
        transform: translate3d(0,0,0);
    }

    20%,40%,60%,80% {
        transform: translate3d(5px,0,0);
    }
}
.new .NotificationsDropdown-unread {
    position: absolute;
    top: 2px;
    left: 18px;
    background: #e24a4a;
    color: #fff;
    font-size: 11px;
    font-weight: bold;
    padding: 2px 4px 3px;
    line-height: 1em;
    border-radius: 10px;
    -webkit-box-shadow: 0 0 0 1px #fff;
    box-shadow: 0 0 0 1px #fff;
    min-width: 16px;
    height: 16px;
    text-align: center;
}
.Navigation-drawer.new {
    position: relative;
}
.Navigation-drawer.new:after {
    content: ' ';
    display: block;
    position: absolute;
    background: #e24a4a;
    top: 10px;
    right: 3px;
    width: 14px;
    height: 14px;
    border-radius: 7px;
    border: 2px solid #fff;
}
@media (min-width: 768px) {
.NotificationsDropdown .Dropdown-toggle .Button-icon {
    font-size: 16px;
    vertical-align: -1px;
    margin: 0;
}
}
/* nav header
.item-notifications.usernotice>.notice_link span.unread {
    display: none
}
.item-notifications.usernotice.current>.notice_link .unread {
    display: block
}
.item-notifications.usernotice.current>.notice_link .read {
    display: none
}
.notice_link {
    padding: 0.25rem 0.5rem;
}
.minDot {
    min-width: 17px;
    border-radius: 50%;
}
.red {
    background: red;
    height: 16px;
    line-height: 16px;
    display: inline-block;
    text-align: center;
    position: absolute;
    right: 7px;
    top: -5px;
}
.red, .sdfads .asdfr {
    color: #fff;
    font-size: 12px;
}
.notices_info > span {
    flex-direction: column;
    position: relative;
}
*/

/* postlist*/
.postlist>.post.current .use_img{
    animation: post_shake 3s ease infinite;    
} 

/*bootstrap plus*/
.text-small {
    font-size: 12px
}

.btn-small {
    padding: 0 0.1rem;
    font-size: 0.75rem
}

/* my-notice */
.noticelist > .notice {    
    padding: 0.7rem 0
}

.noticelist > .notice:not(:last-child) {
    border-bottom: 1px solid #e9ecef
}

.noticelist > .notice .message {
    color: var(--gray)
}

.noticelist > .notice .message a {    
    color: var(--gray)
}

.noticelist > .notice.isread .message i.icon-circle { 
    display: none
}

.noticelist > .notice .message .comment-info {
    display: inline;
    color: var(--gray-500)
}

.noticelist > .notice .message .quote-comment {
     margin-top: 0.25rem;
     color: var(--dark)
}
.noticelist > .notice .message .reply-comment {
    position: relative;
    padding: 0.5rem;
    border-radius: 0.25rem;
    margin-top: 0.5rem;
    background-color: var(--gray-200)
}
.noticelist > .notice .message .single-comment a,.noticelist > .notice .message .reply-comment a {
    color: var(--dark)
}

.noticelist > .notice .message .reply-comment:before {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    top: 0;
    left: 50px;
    border-width: 6px;
    border-style: solid;
    border-color: var(--gray-200);
    -webkit-transform-origin: 0 0;
    -webkit-transform: rotate(135deg);
    transform-origin: 0 0;
    transform: rotate(135deg);
}
