<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
:root {
--blue: #1f4977;
    --indigo: #490bad;
    --purple: #6f42c1;
    --pink: #a62c64;
    --red: #c6303e;
    --orange: #d57c32;
    --yellow: #f1c84c;
    --green: #177f2e;
    --teal: #19926f;
    --cyan: #117887;
    --white: #fff;
    --gray: #868e96;
    --gray-dark: #343a40;
    --primary: #1f4977;
    --secondary: #868e96;
    --success: #177f2e;
    --info: #117887;
    --warning: #f1c84c;
    --danger: #c6303e;
    --light: #f8f9fa;
    --dark: #343a40;
    --breakpoint-xs: 0;
    --breakpoint-sm: 576px;
    --breakpoint-md: 768px;
    --breakpoint-lg: 992px;
    --breakpoint-xl: 1200px;
    --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-500: #adb5bd;
    --gray-600: #868e96;
    --gray-700: #495057;
    --gray-800: #343a40;
    --gray-900: #212529;
}

/* 消息 */
@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);
    }
}
a {
    text-decoration: none !important;
}
/* nav header */
.nav-item.usernotice.current &gt; .nav-link &gt; .unread {
    display: inline-block!important;
}

/* postlist*/
.postlist &gt; .post.current .avatar-3{
    animation: post_shake 3s ease infinite;    
} 

/* bootstrap + */
.text-small {
    font-size: 12px
}

.btn-small {
    padding: 0 0.1rem;
    font-size: 0.75rem
}

/* my-notice */
.noticelist &gt; .notice {    
    padding: 0.7rem 0
}

.noticelist &gt; .notice:not(:last-child) {
    border-bottom: 1px solid var(--gray-200);
}

.noticelist &gt; .notice .message {
    color: var(--gray)
}

.noticelist &gt; .notice .message a {    
    color: var(--gray)
}

.noticelist &gt; .notice.isread .message i.icon-circle { 
    display: none;
}

.noticelist &gt; .notice .message .comment-info {
    display: inline;
    color: var(--gray-500)
}

.noticelist &gt; .notice .message .quote-comment {
     margin-top: 0.25rem;
     color: var(--dark)
}
.noticelist &gt; .notice .message .reply-comment {
    position: relative;
    padding: 0.5rem;
    border-radius: 0.25rem;
    margin-top: 0.5rem;
    background-color: var(--gray-200)
}
.noticelist &gt; .notice .message .single-comment a,.noticelist &gt; .notice .message .reply-comment a {
    color: var(--dark)
}

.noticelist &gt; .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);
}
</pre></body></html>