@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);
    }
}
/* nav header */
.nav-item.usernotice.current > .nav-link > .unread {
    display: inline-block!important;
}

/* postlist*/
.postlist > .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 > .notice {    
    padding: 0.7rem 0
}

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

.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);
}

/*折叠面板*/
.fold-plane {
    border: 1px solid #f0f0f0;
    margin: 10px 0;
    background-color: #f6f7fa;
    border-radius: 12px 0;
}

.fold-plane-title {
    cursor: pointer;
    font-weight: 600;
    padding: 8px;
}

.fold-plane-title:before {
    font-family: "FontAwesome";
    content: "\f00d";
    display: inline-block;
    transition: transform .3s;
    margin-right: 10px;
    color: var(--Maincolor)
}

.fold-plane-title-zk {
    color: #5368f1;
}

.fold-plane-title-zk:before {
    transform: rotate(45deg)
}

.fold-plane-content {
    display: none;
    padding: 10px;
    background-color: white;
}

/* callout */
/* 面 板 */
.bd-callout {
    padding: 1.25rem;
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
    border: 1px solid #e9ecef;
    border-left-width: .25rem;
    border-radius: .25rem
}

.bd-callout h4 {
    margin-bottom: .25rem
}

.bd-callout p:last-child {
    margin-bottom: 0
}

.bd-callout code {
    border-radius: .25rem
}

.bd-callout + .bd-callout {
    margin-top: -.25rem
}

.bd-callout-info {
    border-left-color: #5bc0de
}

.bd-callout-warning {
    border-left-color: #f0ad4e
}

.bd-callout-danger {
    border-left-color: #d9534f
}

/* note 面板 */
.alert {
    position: relative;
    padding: 1rem 1rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: 4px
}

.alert-light-warning {
    color: #030202;
    background-color: #fbeccd;
    border-color: #fbeccd
}

.mdi:before {
    display: inline-block;
    font: normal normal normal 24px/1 "FontAwesome";
    font-size: inherit;
    text-rendering: auto;
    line-height: inherit;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transform: translate(0, 0);
}

.mdi-arrow-right:before {
    content: "\f061";
    padding-right: 10px;
}

.mdi-arrow-right:hover {
    transition: transform .3s;
}

/* 短代码按钮 */
.bt-shortcode a, bt-shortcode a:hover {
    color: white !important;
    text-decoration: none;
}

.hide{
    display: none;
}

/* nav */
.nav-item.active:not(.dropdown-menu) a{
    color: red!important;
    font-weight: 600;

}
.dropdown .dropdown-menu li>a{
    display: flex;
    justify-content: center;
}
.dropdown:not(.show) .dropdown-menu{
    transition: all 0.4s;
    overflow: hidden;
    transform-origin: top center;
    transform: scale(1,0);
    display: block;
}

.dropdown:hover .dropdown-menu{
    transform: scale(1);
}

.post-body>ul .nav-link.active.show{
    animation: slide-down 1.2s ;
}

#indexTabContent>.tab-pane.fade {
    transition: all 1.5s;
    transform: translateY(1rem);
}

#indexTabContent>.tab-pane.fade.show {
    transform: translateY(0rem);
}

/* 回复模块 */
.post-hidden-tips {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    text-align: center;
    font-size: 14px;
    padding: 4rem;
    margin: 2rem 0;
    border-radius: var(--radius-wrap);
}
.hidden-blur-poster {
    position: absolute;
    right: 0;
    bottom: 0;
    top: 0;
    left: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: inherit;
    opacity: .4;
}
.post-hidden-tips .hidden-tips-text {
    position: relative;
    -webkit-box-shadow: inset 0 -2px 0 var(--Maincolor);
    box-shadow: inset 0 -2px 0 var(--Maincolor);;
}
.post-hidden-tips .hidden-tips-text .hidden-tips-arrow {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 100%;
    top: 50%;
    right: 0;
    background: var(--Maincolor);
    -webkit-transform: translate(150%,-50%);
    -ms-transform: translate(150%,-50%);
    transform: translate(150%,-50%);
}

/* 关注公众号 */
.post_hide_box,.secret-password {
    background:none repeat scroll 0 0 #efe;
    border-left:5px solid #e74c3c;
    color:#555;
    padding:10px 0 10px 10px;
    border-radius:5px;
    margin-bottom:15px;
    overflow:hidden;
    clear:both;
}
.post_hide_box .post-secret {
    font-size:18px;
    line-height:20px;
    color:#e74c3c;
    margin:5px;
}
.post_hide_box form {
    margin:15px 0;
}
.post_hide_box form span {
    font-size:18px;
    font-weight:700;
}
.post_hide_box .erweima {
    margin-left:20px;
    margin-right:16px;
}
.post_hide_box input[type=password] {
    color:#9ba1a8;
    padding:6px;
    background-color:#f6f6f6;
    border:1px solid #e4e6e8;
    font-size:12px;
    -moz-transition:border .25s linear,color .25s linear,background-color .25s linear;
    -webkit-transition:border .25s linear,color .25s linear,background-color .25s linear;
    -o-transition:border .25s linear,color .25s linear,background-color .25s linear;
    transition:border .25s linear,color .25s linear,background-color .25s linear;
}
.post_hide_box input[type=submit] {
    background:#F88C00;
    border:none;
    border:2px solid;
    border-color:#F88C00;
    border-left:none;
    border-top:none;
    padding:0px;
    width:100px;
    height:38px;
    color:#fff;
    outline:0;
    border-radius:0 0 2px 0;
    font-size:16px;
}
.post_hide_box .details span {
    color:#e74c3c;
}
.post_hide_box .details
span {
    color:#e74c3c;
}
.gzhhide .gzhcode {
    position:absolute;
    width:100px;
    height:100px;
    right:20px;
    top:50%;
    margin-top:-50px
}
.gzhhide {
    background:#fff;
    border-radius:10px;
    padding:20px;
    margin:15px 0;
    position:relative;
    /*box-shadow:0 0 20px #d0d0d0*/
}
.gzhhide .gzhtitle {
    position:relative;
    font-size:17px;
    font-weight:700;
    color:#000000cc;
    padding:6px 140px 0 40px;
    overflow:hidden;
    text-overflow:ellipsis;
    white-space:nowrap
}
.gzhhide .gzhtitle .fa {
    position:absolute;
    left:0;
    font-size:35px;
    top:0
}
.gzh-content {
    position: relative;
    padding:20px 140px 15px 0;
    font-size:14px;
    color:#000000cc;
}
.gzhbox {
    position: relative;
    padding:0 140px 10px 0;
}
.gzhbox input {
    width:45%;
    border:none;
    color:#737373;
    font-size:13px;
    height:35px;
    line-height:35px;
    background:#f2f2f2;
    border-radius:4px;
    outline:none;
    float:left;
    padding:0 10px
}
.gzhbox button {
    width:20%;
    margin-left: 2%;
    border:none;
    background:#3b8cff;
    color:#fff;
    padding:5px 0;
    font-size:14px;
    border-radius:5px
}
.gzhhide .gzhcode {
    position:absolute;
    width:100px;
    height:100px;
    right:20px;
    top:50%;
    margin-top:-50px
}
.gzhbox {
    padding:0
}
.gzh-content {
    padding:20px 90px 15px 0
}
.gzhhide .gzhcode {
    width:80px;
    height:80px
}
#vivideo {
    height:200px
}
.gzhhide .gzhtitle i {
    font-style:normal;
}