@charset "UTF-8";
/*background: rgba(0,0,0,0.12);*/
/* 0 - 全局
-------------------------------- */
:root{
    --primary: #6f9fc7;
    --secondary: #9fcff7;
    --board-back: #fff;
    --board-border: #ccc;
}
body{
    color: #555;
    font-weight: 300;
    background: #fafafa;
    transition: margin .3s, background .3s;
}
body:before{
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: .1;
    z-index: -1;
    display: block;
    position: fixed;
    background: center/cover no-repeat;
}
::-webkit-scrollbar{
    width: 7px;
    height: 7px;
}
::-webkit-scrollbar-thumb{ background: rgba(0, 0, 0, 0.15) }
::-webkit-scrollbar-thumb:hover{ background: rgba(0, 0, 0, 0.27) }

body::-webkit-scrollbar{
    border-left: 1px solid #eee;
    background: rgba(255, 255, 255, .6);
}
a{ color: #6f9fc7 }
a:hover{ color: #00bcd4 }
h1, h2, h3, h4, h5, h6{ font-weight: normal }
hr{ border-color: #ddd }

em{
    font-style: normal;
    font-size: medium;
    color: #54b258;
}
.btn{
    color: #fff;
    background: #6f9fc7;
}
.btn:hover{
    color: #fff;
    background: #00BCD4;
}
/*这里先不要*/
/*pre code{*/
/*    color: inherit;*/
/*    border: 1px solid #ddd;*/
/*    background: linear-gradient(rgb(100 100 100 / 12%) 50%, transparent 0);*/
/*    background-size: auto 3em;*/
/*    background-origin: content-box;*/
/*}*/

blockquote{
    background: #f6f5ee;
    border-color: #6f9fc7;
}
input, textarea{ background: #f6f5ee }
input, textarea, code, hr, blockquote{
    transition: border .3s, background .3s;
}

/* - 夜间风格 */
body.neon{
    color: #aaa;
    background: #333;
    --board-back: #444;
    --board-border: #555;
}

body.neon::-webkit-scrollbar{
    border-color: transparent;
    background: rgba(255, 255, 255, .2);
}
body.neon a{ color: #d69b2e }
body.neon a:hover{ color: #bebebe }
body.neon img{
    filter: brightness(60%);
    -webkit-filter: brightness(60%);
}
body.neon blockquote{
    color: #c9861d;
    border-color: #eb9c26;
    background: rgba(255, 255, 255, .05);
}

/* -- 边框 */
body.neon header, body.neon .head-menu .sub-menu, body.neon main .article-list,
body.neon .post-item h2 a, body.neon .post-title, body.neon .page-title, body.neon .post-author,
body.neon tr, body.neon hr, body.neon pre code, body.neon input, body.neon textarea, body.neon .btn, body.neon .toggle-list,
body.neon footer, body.neon .to-top{ border-color: #555 }

/* -- 透明 */
body.neon iframe, body.neon em{ COLOR: #d69b2e;font-size: medium;}

/* -- 友情链接 */
body.neon .readers-list a{display:block;height: 43px;font-size: 14px;margin: 0px 5px 2px -3px;background-image: linear-gradient(to top, #373737 0%, #333333 100%);border-bottom: #202020 1px solid;border-right: #000000 1px solid;line-height: 43px;text-align: center;}
body.neon .readers-list a:hover{background:#c9861d;color: #fff;transform:scale(1.03)}

/* -- 首页标题 */
body.neon .home-title h1{ color: #ffc107; text-shadow:1px 1px 0px #000000}

/* -- 文章标题 */
body.neon .page-title h2, .post-title a{color:#eb9c26}
body.neon .post-meta a{color:inherit}
body.neon .post-title h2, .page-title h2{color:#eb9c26; margin-right: .25rem; display: inline-block;
}
/* -- 颜色 */
body.neon .btn{color: #757575;}
body.neon .btn:hover{ color: #b2b2b2; background: #535353;}
/* -- 背景 */
body.neon input, body.neon textarea, body.neon .btn, body.neon .to-top, body.neon .toggle-list{ background: #444 }

/* -- 头部 */
body.neon header, body.neon .head-menu .sub-menu, body.neon .head-menu .sub-menu:before{
    color: #aaa;
    background: #444;
}
body.neon .head-menu .sub-menu:before{
    border-color: #555 #555 transparent transparent;
}
/* - 文章简要 */

body.neon :not(pre) > code{
    color: #ffa5a5;
    background: rgba(255, 255, 255, .2);
}

/* - 读者墙图片 */
body.neon .reader-list em,.reader-list strong{font-size:14px;}
body.neon .reader-list .pic{opacity: .6 ;}
body.neon .reader-list a:hover .pic{opacity:.9;margin-left:0;}
body.neon .reader-list a{border:#4d4d4d 1px solid;box-shadow:#000 0 0 2px;}
body.neon .post-item h2 a:hover {color: #ddd;}
body.neon .post-item{
    border-bottom:1px dashed #444;
}

/* - 首页超链接 */
body.neon .post-item  a::before,
body.neon .post-item h2 a::after {
    display: inline-block;
    margin:0px 0px 0px -18px;
    opacity: 0;
    -webkit-transition: -webkit-transform 0.3s, opacity 0.2s;
    -moz-transition: -moz-transform 0.3s, opacity 0.2s;
    transition: transform 0.3s, opacity 0.2s;
}

body.neon .post-item h2 a::before {
    margin-right: 10px;
    content: '[';
    -webkit-transform: translateX(20px);
    -moz-transform: translateX(20px);
    transform: translateX(20px);
}

body.neon .post-item h2 a::after {
    margin-left: 10px;
    content: ']';
    -webkit-transform: translateX(-20px);
    -moz-transform: translateX(-20px);
    transform: translateX(-20px);
}

body.neon .post-item h2 a:hover::before,
body.neon .post-item h2 a:hover::after,
body.neon .post-item h2 a:focus::before,
body.neon .post-item h2 a:focus::after {
    opacity: 1;
    -webkit-transform: translateX(0px);
    -moz-transform: translateX(0px);
    transform: translateX(0px);
}


body.neon .head-search input{
    background: #666;
    border-color: transparent;
}
body.neon .head-search input::-webkit-input-placeholder{ color: #bbb }

body.neon header a{ color: #aaa }
body.neon header a:hover{ color: #fec007 }

@media screen and (max-width: 600px){
    body.neon .head-menu .sub-menu{ background: none }
}

/* 1 - 页眉
-------------------------------- */
header{
    top: 0;
    left: 0;
    right: 0;
    z-index: 3;
    color: #666;
    position: fixed;
    line-height: 1em;
    background: #f6f5ee;
    transition: border-color .3s, background .3s;
    box-shadow: 0 0 1px #000000;
    -webkit-box-shadow: 0 0 1px #000000;
}
.container{
    width: 960px;
    margin: 0 auto;
}
.container .blogTitle{
    float: left;
}
.blogTitle h1 {
    font-size: 25px;
    font-weight: 600;
    font-family: Georgia;
    margin-top: 18px
}

/* - 头部标题 */
.head-title{
    left: 0;
    right: 0;
    line-height: 3.2em;
    position: absolute;
    text-align: center;
}
@media screen and (min-width: 600px){
    .head-title{ display: none }
}

/* - 头部菜单 */
.head-menu{
    display: flex;
    list-style: none;
    user-select: none;
    justify-content: center;
}

.head-menu a{
    color: inherit;
    display: block;
    cursor: pointer;
    position: relative;
    line-height: 2.25em;
}
.head-menu a:hover{ color: #00BCD4 }

.head-menu .has-child > a:after{
    float: right;
    content: "\f107";
    margin-left: .3em;
    font-family: "FontAwesome";
}
/*--平板--*/
@media screen and (max-width: 1219px){
	.blogTitle{display: none;}
	.right {
       display: none;
    }
    .left {
        width: 100%;
    }
    .head-menu {
        top: 0;
        left: 0;
        right: 0;
        /* position: absolute; */
    }
}
/* -- 手机版 */
@media screen and (max-width: 600px){
    .head-menu{
        max-height: 0;
        padding: 0 1em;
        display: block;
        overflow-y: auto;
        border-right: .5em solid transparent;
        transition: margin .3s, max-height .3s;
    }

    .right{
        max-height: 0;
        padding: 0 1em;
        display: block;
        overflow-y: auto;
        border-right: .5em solid transparent;
        transition: margin .3s, max-height .3s;
    }
    .blogTitle{
        max-height: 0;
        padding: 0 1em;
        display: block;
        overflow-y: auto;
        border-right: .5em solid transparent;
        transition: margin .3s, max-height .3s;
    }
    .head-menu.active{
        margin: 1em 0;
        max-height: 18rem;
    }
    .head-menu .sub-menu{ margin-left: 1.5em }
    .head-menu .sub-menu a{
        display: list-item;
        list-style-type: circle;
    }

    .head-menu::-webkit-scrollbar{
        width: 8px;
        height: 8px;
    }
    .head-menu::-webkit-scrollbar-thumb{
        border-radius: 5px;
        background: rgba(0, 0, 0, .1);
    }
}

/* -- 电脑版 */
@media screen and (min-width: 599px){

    .left {
        border-radius: 2px;
        margin-right: 260px;
        /*width: 700px;*/
    }

    .head-menu > a, .has-child > a{
        padding: .6em 0;
        line-height: 2em;
        margin-right: 1.5em;
    }
    .head-menu > a:last-child{ margin-right: 0 }
}

/* - 子菜单 */
.head-menu .sub-menu a{
    line-height: 2em;
    margin-right: .05em;
}

/* -- 电脑版 */
@media screen and (min-width: 599px){
    .head-menu .has-child{
        position: relative;
    }
    .head-menu .has-child:hover > .sub-menu{
        opacity: 1;
        visibility: visible;
    }

    .head-menu .sub-menu{
        opacity: 0;
        top: 3.2em;
        left: -1em;
        background: #fafafa;
        padding: .5em 1em;
        visibility: hidden;
        position: absolute;
        white-space: nowrap;
        border: 1px solid #ddd;
        border-radius: 0 0 .25em .25em;
        transition: opacity .15s, visibility .15s;
    }

    .head-menu .sub-menu:before{
        left: 2em;
        top: -.5em;
        width: 1em;
        height: 1em;
        content: '';
        display: block;
        background: #fff;
        border: 1px solid;
        position: absolute;
        transform: rotate(-45deg);
        border-color:  #ccc #ccc transparent transparent;
    }

    .toggle-btn{ display: none }
}

.toggle-btn, .light-btn, .search-btn{
    z-index: 1;
    float: left;
    width: 2em;
    margin: .6em;
    cursor: pointer;
    position: relative;
    border-radius: 4px;
    transition: color 0.3s, background 0.3s;
}

.toggle-btn{ margin-right: 0 }
.search-btn{ float: right }

.toggle-btn:hover, .light-btn:hover, .search-btn:hover{
    background: rgba(0, 0, 0, .05);
}

.toggle-btn:before, .light-btn:before, .search-btn:before{
    display: block;
    text-align: center;
    font: 1em/2em "FontAwesome";
}

.toggle-btn:before{ content: "\f0c9" }
.light-btn:before{ content: "\f0eb" }
.search-btn:before{ content: "\f002" }

.head-search{
    z-index: 1;
    opacity: 0;
    float: right;
    margin: .6em 0;
    line-height: 1.5em;
    position: relative;
    pointer-events: none;
    transition: opacity 0.3s;
}
.head-search.active{
    opacity: 1;
    pointer-events: inherit;
}

.head-search input{
    height: 2em;
    width: 10em;
    border-radius: 1px;
    padding: .25em .75em;
}

@media screen and (max-width: 600px){
    .head-search{
        float: none;
        margin-left: 6.5em;
        margin-right: 3.5em;
    }

    .head-search input{ width: 100% }
}

/* 2 - 正文
-------------------------------- */
main{
    /*padding: 3.5em 0;*/
    padding: 18px 0;
    margin-top: 3.2em;
}

main img {
    height: auto;
    transition: filter .3s;
}

/* - 首页大标题 */
.home-title{
    text-align: center;
    margin-bottom: 3em;
    animation: fade-in-bottom .3s both; -webkit-animation: fade-in-bottom .3s both;
}

.home-title h1{ color: #2dacb9 }

.home-title span{
    display: block;
    margin-bottom: 1em;
    font-style: oblique;
}

/* - 社交链接 */
.home-social{
    cursor: default;
    user-select: none;
}

.home-social a{
    color: inherit;
    display: inline-block;
}

.home-social i{ padding: .5em }

/* - 文章简要 */
.post-item{
    margin-bottom: 3em;
    word-break: break-all;
}
.post-item:last-child{ margin-bottom: 0 }

/* -- 动画 */
.post-item:nth-child(1){ animation: fade-in-top .3s .2s backwards; -webkit-animation: fade-in-top .3s .2s backwards; }
.post-item:nth-child(2){ animation: fade-in-top .3s .3s backwards; -webkit-animation: fade-in-top .3s .3s backwards; }
.post-item:nth-child(3){ animation: fade-in-top .3s .4s backwards; -webkit-animation: fade-in-top .3s .4s backwards; }
.post-item:nth-child(4){ animation: fade-in-top .3s .5s backwards; -webkit-animation: fade-in-top .3s .5s backwards; }
.post-item:nth-child(5){ animation: fade-in-top .3s .6s backwards; -webkit-animation: fade-in-top .3s .6s backwards; }
.post-item:nth-child(6){ animation: fade-in-top .3s .7s backwards; -webkit-animation: fade-in-top .3s .7s backwards; }
.post-item:nth-child(7){ animation: fade-in-top .3s .8s backwards; -webkit-animation: fade-in-top .3s .8s backwards; }
.post-item:nth-child(8){ animation: fade-in-top .3s .9s backwards; -webkit-animation: fade-in-top .3s .9s backwards; }
.post-item:nth-child(9){ animation: fade-in-top .3s .9s backwards; -webkit-animation: fade-in-top .3s .9s backwards; }
.post-item:nth-child(10){ animation: fade-in-top .3s .9s backwards; -webkit-animation: fade-in-top .3s .9s backwards; }
.post-item h2 a{
    line-height: 2em;
    padding-bottom: .3rem;
    border-bottom: 2px solid #eee;
    border-color: #eee;
    transition: color .3s, border .3s;
}

/* Effect 1: Brackets */
.post-item  a::before,
.post-item h2 a::after {
    display: inline-block;
    opacity: 0;
    margin:0px 0px 0px -18px;
    -webkit-transition: -webkit-transform 0.3s, opacity 0.2s;
    -moz-transition: -moz-transform 0.3s, opacity 0.2s;
    transition: transform 0.3s, opacity 0.2s;
}

.post-item h2 a::before {
    margin-right: 10px;
    content: '[';
    -webkit-transform: translateX(20px);
    -moz-transform: translateX(20px);
    transform: translateX(20px);
}

.post-item h2 a::after {
    margin-left: 10px;
    content: ']';
    -webkit-transform: translateX(-20px);
    -moz-transform: translateX(-20px);
    transform: translateX(-20px);
}

.post-item h2 a:hover::before,
.post-item h2 a:hover::after,
.post-item h2 a:focus::before,
.post-item h2 a:focus::after {
    opacity: 1;
    -webkit-transform: translateX(0px);
    -moz-transform: translateX(0px);
    transform: translateX(0px);
}
/* - 文章属性 */
.post-meta{
    overflow: auto;
    white-space: nowrap;
}
.post-meta::-webkit-scrollbar{ height: 0 }
.post-meta a{ color: inherit }
.post-meta span, .post-meta time{
    margin-right: .8em;
    display: inline-block;
}
.post-meta span:last-child{ margin-right: 0 }
.post-meta span:before, .post-meta time:before{
    font-size: inherit;
    margin-right: .4em;
    display: inline-block;
    font-family: "FontAwesome";
}
.post-meta .date:before{ content: "\f017" }
.post-meta .category:before{ content: "\f07b" }
.post-meta .tags:before{ content: "\f02c" }
.post-meta .comments:before{ content: "\f086" }
.post-meta .view:before{ content: "\f080" }

/* - 换页 */
.page-navigator{
    cursor: default;
    margin-top: 3em;
    font-size: 1.25em;
    text-align: center;
    font-weight: normal;
    animation: fade-in-top .3s .7s both; -webkit-animation: fade-in-top .3s .7s both;
}
.page-navigator a{ padding: 0 .3em }
.page-navigator .current a{ color: inherit }

/* - 阅读页标题 */
.post-title, .page-title{
    margin-bottom: 1em;
    padding-bottom: 1em;
    transition: border 0.3s;
    border-bottom: 1px solid #ddd;
    animation: fade-in-bottom .3s both; -webkit-animation: fade-in-bottom .3s both;
}
.post-title h2, .page-title h2{
    color: #6e8aad;
    margin-right: .25rem;
    display: inline-block;
}
.page-title h2{ margin-bottom: 0 }
/* - 编辑文章 */
.post-item .edit-link, .page-title .edit-link, .post-title .edit-link{
    display: inline-block;
}
/* - 阅读页正文 */
article a{ border-bottom: 1px dashed currentColor }
.post-content pre {
    padding: 0!important;
}
.post-content, .page-content{ animation: fade-in-top .3s .2s backwards; -webkit-animation: fade-in-top .3s .2s backwards; }
.post-content, .page-content, .post-near, .post-author{ margin-bottom: 2.5em }
article h1, article h2, article h3{ margin-top: 3rem }
.post-content img { display: block; box-shadow: 0 0 10px #696863; border-radius: 2px; margin-left: auto; margin-right: auto; margin-top: 10px; margin-bottom: 10px; -webkit-box-shadow: 0 0 10px #696863; }
article h2{ font-size: 1.15em }
article h3{ font-size: 1.10em }
article h4{ font-size: 1.05em }
article h5{ font-size: 1em }
article h6{ font-size: .9em }
article h1:before,
article h2:before,
article h3:before{
    content: "#";
    color: #6f9fc7;
    margin-right: .5em;
}
article h1:before{ font-weight: bold }

.post-near{ animation: fade-in-top .3s .3s backwards; -webkit-animation: fade-in-top .3s .3s backwards; margin-bottom:1em }

/* - 阅读页作者信息 */
.post-author{
    display: table;
    padding: 1.5em 0;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    transition: border .3s, filter .3s;
    animation: fade-in-top .3s .4s backwards; -webkit-animation: fade-in-top .3s .4s backwards;
}
.post-author .author-avatar{
    width: 5em;
    display: table-cell;
    vertical-align: middle;
}
.post-author img{ border-radius: 66% }
.post-author .author-info{ margin-left: 1.5em }
.post-author h4{
    font-weight: bold;
    margin-bottom: .5em;
}
/* - 阅读页评论 */
.post-comments{ animation: fade-in-top .3s .5s backwards; -webkit-animation: fade-in-top .3s .5s backwards; }
.post-comments input, .post-comments textarea{
    -webkit-appearance: none;
    -moz-appearance: none;
}
/* -- 评论结构 */
.post-comments{ word-break: break-all }
.comment-form{ margin-bottom: 2em }
.comment-list .comment-single{
    position: relative;
    padding-left: 3.75em;
    margin-bottom: 1.5em;
    transform-origin: left;
    transition: transform .3s;
}
.comment-list .comment-single:after{
    content: "";
    clear: both;
    display: block;
}
.comment-list .comment-single.active{ transform: scale(1.05) }
.comment-list .comment-child{ margin-left: 2em }

/* --- 评论头像 */
.comment-list .avatar{
    top: 0;
    left: 0;
    margin: 5px;
    min-width: 45px;
    max-width: 45px;
    position: absolute;
    border-radius: 3%;
    transition: transform .3s ease-in-out;
}

.comment-list .comment-single:hover .avatar{
    transform: rotate(1turn);
    -webkit-transform: rotate(1turn);
}

/* --- 评论信息 */
.comment-list .comment-meta{
    margin-bottom: .25em;
}

.comment-list .comment-time:before{
    content: "\f017";
    margin-right: .4em;
    display: inline-block;
    font-family: "FontAwesome";
}

.comment-list .comment-author,
.comment-list .comment-time{
    margin-right: .4em;
}

/* --- 评论内容 */
.comment-single .comment-reply{
    opacity: 0;
    float: right;
    line-height: 1.8;
    transition: opacity .3s;
}
.comment-single:hover .comment-reply{ opacity: 1 }

.comment-reply a, .cancel-comment-reply a{ color: #aaa }
.comment-reply a:hover, .cancel-comment-reply a:hover{ color: #555 }

.cancel-comment-reply{
    display: block;
    margin: .5em 0;
    text-align: right;
}
.vp,.vip,.vip1,.vip2,.vip3,.vip4,.vip5,.vip6,.vip7 {
    background: url(../images/vip.png) no-repeat;
    display: inline-block;
    overflow: hidden;
    border: none;
}

.vp {
    background-position: -494px -3px;
    width: 16px;
    height: 16px;
    margin-bottom: -3px;
}

.vp:hover {
    background-position: -491px -19px;
    width: 19px;
    height: 18px;
    margin-top: -3px;
    margin-left: -3px;
    margin-bottom: -3px;
}

.vip {
    background-position: -494px -3px;
    width: 16px;
    height: 16px;
    margin-bottom: -3px;
}

.vip:hover {
    background-position: -515px -22px;
    width: 16px;
    height: 16px;
    margin-bottom: -3px;
}
.vip1 {
    background-position: -1px -2px;
    width: 46px;
    height: 14px;
    margin-bottom: -1px;
}

.vip1:hover {
    background-position: -1px -22px;
    width: 46px;
    height: 14px;
    margin-bottom: -1px;
}

.vip2 {
    background-position: -63px -2px;
    width: 46px;
    height: 14px;
    margin-bottom: -1px;
}

.vip2:hover {
    background-position: -63px -22px;
    width: 46px;
    height: 14px;
    margin-bottom: -1px;
}

.vip3 {
    background-position: -144px -2px;
    width: 46px;
    height: 14px;
    margin-bottom: -1px;
}

.vip3:hover {
    background-position: -144px -22px;
    width: 46px;
    height: 14px;
    margin-bottom: -1px;
}

.vip4 {
    background-position: -227px -2px;
    width: 46px;
    height: 14px;
    margin-bottom: -1px;
}

.vip4:hover {
    background-position: -227px -22px;
    width: 46px;
    height: 14px;
    margin-bottom: -1px;
}

.vip5 {
    background-position: -331px -2px;
    width: 46px;
    height: 14px;
    margin-bottom: -1px;
}

.vip5:hover {
    background-position: -331px -22px;
    width: 46px;
    height: 14px;
    margin-bottom: -1px;
}

.vip6 {
    background-position: -441px -2px;
    width: 46px;
    height: 14px;
    margin-bottom: -1px;
}

.vip6:hover {
    background-position: -441px -22px;
    width: 46px;
    height: 14px;
    margin-bottom: -1px;
}

.vip7 {
    background-position: -611px -2px;
    width: 46px;
    height: 14px;
    margin-bottom: -1px;
}

.vip7:hover {
    background-position: -611px -22px;
    width: 46px;
    height: 14px;
    margin-bottom: -1px;
}

.mk-alert {
    padding: .6em .9em;
    border-radius: .3em;
    margin: 1em auto;
    line-height: 1.6em;
    display: block;
    background-color: #f0f9eb;
    color: #67c23a;
}

.mk-alert.warning {
    background-color: #fdf6ec;
    color: #e6a23c;
}



@media screen and (max-width: 600px){
    .comment-form button{ width: 100% }
}

/* -- 文章目录 */
.article-list{
    right: 0;
    bottom: 0;
    opacity: 0;
    z-index: 1;
    width: 15em;
    padding: 1em;
    overflow: auto;
    position: fixed;
    transform: translateY(0%);
    background: rgba(255, 255, 255, .5);
    transition: transform .3s, border .3s, opacity .3s, background .3s;
}
.article-list.active{
    opacity: 1;
    background: #fff;
    transform: translateY(0%);
}
.article-list::-webkit-scrollbar{ width: 0; height: 0 }

.article-list h4{ text-align: center }

.article-list .title{
    padding: .25em 1em;
    display: inline-block;
    transition: border-color .3s;
    border-top: 1px solid var(--board-border);
    border-bottom: 1px solid var(--board-border);
}

.article-list a{
    display: block;
    margin-bottom: .5em;
}

.article-list .item-2:before,
.article-list .item-3:before,
.article-list .item-4:before,
.article-list .item-5:before,
.article-list .item-6:before{
    margin-right: .5em;
}

.article-list .item-2:before{ content: "-" }
.article-list .item-3:before{ content: "--" }
.article-list .item-4:before{ content: "---" }
.article-list .item-5:before{ content: "----" }
.article-list .item-6:before{ content: "-----" }

@media screen and (min-width: 800px){
    body.has-trees{ margin-right: 15em }

    body.neon .article-list{ background: rgba(0, 0, 0, .1) }

    .article-list{
        top: 3.2em;
        opacity: 1;
        visibility: visible;
        border-left: 1px solid #ccc;
    }
}
@media screen and (max-width: 799px){
    body.neon .article-list{ background: #444 }

    .article-list{
        left: 0;
        width: 100%;
        min-height: 40%;
        max-height: 80%;
        transform: translateY(100%);
        border-top: 1px solid #ccc;
    }
}

/* - 错误页面 */
.error-page{
    text-align: center;
    animation: fade-in-bottom .3s backwards; -webkit-animation: fade-in-bottom .3s backwards;
}

.error-page h1{
    font-size: 5em;
    line-height: 1em;
}

.error-page img{ max-width: 25em }

/* 3 - 页尾
-------------------------------- */
footer{
    border-top: 1px solid #dadada;
    transition: border 0.3s, background 0.3s;
}

footer .buttons{
    right: 1em;
    bottom: 5em;
    z-index: 1;
    position: fixed;
}

footer .to-top, footer .toggle-list{
    padding: .5em;
    display: block;
    cursor: pointer;
    background: #fffded;
    border-radius: 4px;
    border: 1px solid #dcdcdc;
    transform: translateX(5em);
    transition: color .3s, border .3s, background .3s, transform .3s;
}
footer .to-top.active{ transform: translateX(0) }
footer .to-top:before, footer .toggle-list:before{
    width: 1.5em;
    display: block;
    content: "\f062";
    text-align: center;
    font-family: "FontAwesome";
}
footer .toggle-list{
    display: none;
    margin-top: .5em;
}
footer .toggle-list:before{ content: '\f00b' }

@media screen and (max-width: 800px){
    footer .toggle-list{
        display: block;
        transform: translateX(0);
    }
}

footer .widget{ padding: 2em 0 }

footer .title-comments:after,
footer .title-recent:after,
footer .title-date:after{
    float: right;
    margin-right: .75em;
    font-family: "FontAwesome";
}

footer .title-comments:after{ content: "\f0e6" }
footer .title-recent:after{ content: "\f040" }
footer .title-date:after{ content: "\f017" }

footer .widget ul{
    margin: 0;
    list-style: none;
}

footer .widget ul li{
    overflow: hidden;
    margin-bottom: .5em;
    white-space: nowrap;
    text-overflow: ellipsis;
}
footer .widget ul li:before{
    content: "\f105";
    margin-right: .75em;
    font-family: "FontAwesome";
}

footer .sub-footer{
    padding: 1em 0;
    text-align: center;
}

footer .sub-footer p{ font-size: .875em }

/* 4 - 附加
-------------------------------- */
.token.comment, .token.block-comment, .token.prolog, .token.doctype, .token.cdata{ color: #7D8B99 }
.token.punctuation{ color: #5F6364 }
.token.property, .token.tag, .token.boolean, .token.number, .token.function-name, .token.constant, .token.symbol, .token.deleted{ color: #c92c2c }
.token.selector, .token.attr-name, .token.string, .token.char, .token.function, .token.builtin, .token.inserted{ color: #2f9c0a }

.token.operator, .token.entity, .token.url, .token.variable{ color: #a67f59 }
.token.atrule, .token.attr-value, .token.keyword, .token.class-name{ color: #1990b8 }
.token.regex, .token.important{ color: #e90 }

.language-css .token.string, .style .token.string {
    color: #a67f59;
    background: rgba(255, 255, 255, 0.5);
}

.token.bold { font-weight: bold }
.token.italic { font-style: italic }
.token.entity { cursor: help }
.token.important { font-weight: normal }
.namespace { opacity: .7 }

/* 留言板 无链接样式*/
.reader-list {text-align:left;overflow:hidden;text-overflow:ellipsis;}
.reader-list li{width:137px;margin-right:2px;float:left;list-style:none; }
.reader-list a{position:relative;display:block;height:44px;margin:4px;padding:2px 4px 2px 45px;overflow:hidden;border:#cfcfcf 1px solid;box-shadow:#fff 0 0 2px;line-height:57px;}
.reader-list .pic,.reader-list em,.reader-list strong{-webkit-transition:all .2s ease-out;font-size:14px;-moz-transition:all .2s ease-out;transition:all .2s ease-out;margin: 0px 1px 0px -8px;}
.reader-list .pic{width: 40px;height: 40px;float:left;margin: -1px 1px 0px -44px;border-radius: 1px;}
.reader-list {font-style:normal;margin: 0px 2px 10px -15px ;}
.reader-list strong{width:35px;text-align:right;position:absolute;right:2px;top:1px;font:bold 14px/16px microsoft yahei;}
.reader-list a:hover{box-shadow:#ccc 0 0 2px;line-height:333px;background-image:none;}
.reader-list a:hover .pic{opacity:.5;margin-left:0;}
reader-list a:hover em{font:bold 14px/36px microsoft yahei;}
.reader-list a:hover strong{right: 90px;top:0;text-align:center;line-height: 40px;}

/* - 友情链接 */
.readers-list {overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
.readers-list li{width: 123px;float:left;margin:1px 2px 10px 10px;;list-style:none;}
.readers-list a{display:block;font-size: 14px;height: 43px;margin:0px 5px 2px -3px;background-image: linear-gradient(to top, #f2f0e2 0%, #f6f3e4 80%);border-bottom: #bdbdbd 1px solid;border-right: #c6c6c6 1px solid;line-height: 43px;text-align: center;}
.readers-list a:hover{background:#cfcfcf;color: #fff;transform:scale(1.03)}

/* - 打赏 */
#QR{padding-top:20px;}
#QR a{border:0}
#QR img{width:180px;max-width:100%;display:inline-block;margin:.8em 2em 0 2em}
#rewardButton{border: 1px solid #c4c4c4;line-height:36px;text-align:center;height:38px;display:block;border-radius:4px;-webkit-transition-duration:.4s;transition-duration:.4s;background-color:#fafafa;color: #555555;margin:0 auto;padding:0 20px;}
#rewardButton:hover{color: #ffffff;background: #4daf51;text-decoration: none;}
body.neon #rewardButton:hover{color: #ffffff;background: #c9861d;text-decoration: none;}

/* - 标签 */
.readers-tag {_zoom:1;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;}
.readers-tag li{width: 99px;float:left;margin-right:11px;list-style:none;}
.readers-tag a{text-align: center;}
.readers-tag a:hover{background-color:#eee;}

.deng-box {
    position: fixed;
    top: -35px;
    right: -40px;
    z-index: 9999;
    pointer-events: none;
}

.deng-box1 {
    position: fixed;
    top: -30px;
    right: 5px;
    z-index: 9999;
    pointer-events: none;
}

.deng-box1 .deng {
    position: relative;
    width: 120px;
    height: 90px;
    margin: 50px;
    background: #d8000f;
    background: rgba(216, 0, 15, 0.8);
    border-radius: 50% 50%;
    -webkit-transform-origin: 50% -100px;
    -webkit-animation: swing 5s infinite ease-in-out;
    box-shadow: -5px 5px 30px 4px rgba(252, 144, 61, 1);
}
.deng {
    position: relative;
    width: 120px;
    height: 90px;
    margin: 50px;
    background: #d8000f;
    background: rgba(216, 0, 15, 0.8);
    border-radius: 50% 50%;
    -webkit-transform-origin: 50% -100px;
    -webkit-animation: swing 3s infinite ease-in-out;
    box-shadow: -5px 5px 50px 4px rgba(250, 108, 0, 1);
}
.deng-a {
    width: 100px;
    height: 90px;
    background: #d8000f;
    background: rgba(216, 0, 15, 0.1);
    margin: 12px 8px 8px 10px;
    border-radius: 50% 50%;
    border: 2px solid #dc8f03;
}

.deng-b {
    width: 45px;
    height: 90px;
    background: #d8000f;
    background: rgba(216, 0, 15, 0.1);
    margin: -2px 8px 8px 26px;
    border-radius: 50% 50%;
    border: 2px solid #dc8f03;
}
.xian {
    position: absolute;
    top: -20px;
    left: 60px;
    width: 2px;
    height: 20px;
    background: #dc8f03;
}
.shui-a {
    position: relative;
    width: 5px;
    height: 20px;
    margin: -5px 0 0 59px;
    -webkit-animation: swing 4s infinite ease-in-out;
    -webkit-transform-origin: 50% -45px;
    background: #ffa500;
    border-radius: 0 0 5px 5px;
}
.shui-b {
    position: absolute;
    top: 14px;
    left: -2px;
    width: 10px;
    height: 10px;
    background: #dc8f03;
    border-radius: 50%;
}

.shui-c {
    position: absolute;
    top: 18px;
    left: -2px;
    width: 10px;
    height: 35px;
    background: #ffa500;
    border-radius: 0 0 0 5px;
}

.deng:before {
    position: absolute;
    top: -7px;
    left: 29px;
    height: 12px;
    width: 60px;
    content: " ";
    display: block;
    z-index: 999;
    border-radius: 5px 5px 0 0;
    border: solid 1px #dc8f03;
    background: #ffa500;
    background: linear-gradient(to right, #dc8f03, #ffa500, #dc8f03, #ffa500, #dc8f03);
}
.deng:after {
    position: absolute;
    bottom: -7px;
    left: 10px;
    height: 12px;
    width: 60px;
    content: " ";
    display: block;
    margin-left: 20px;
    border-radius: 0 0 5px 5px;
    border: solid 1px #dc8f03;
    background: #ffa500;
    background: linear-gradient(to right, #dc8f03, #ffa500, #dc8f03, #ffa500, #dc8f03);
}

.deng-t {
    font-family: 华文行楷,Arial,Lucida Grande,Tahoma,sans-serif;
    font-size: 42px;
    color: #dc8f03;
    font-weight: bold;
    line-height: 85px;
    text-align: center;
}

.night .deng-t,
.night .deng-box,
.night .deng-box1 {
    background: transparent !important;
}

@-moz-keyframes swing {
    0% {
        -moz-transform: rotate(-10deg)
    }

    50% {
        -moz-transform: rotate(10deg)
    }

    100% {
        -moz-transform: rotate(-10deg)
    }
}

@-webkit-keyframes swing {
    0% {
        -webkit-transform: rotate(-10deg)
    }

    50% {
        -webkit-transform: rotate(10deg)
    }

    100% {
        -webkit-transform: rotate(-10deg)
    }
}

/*侧边栏*/

.right {
    position: absolute;
    right: 0;
    top: 68px;
    width: 700px;
}
.right .col-m-4 h3 {
    animation: fade-in-top .3s .2s both; -webkit-animation: fade-in-top .3s .2s both;
}
.right ul li {
    overflow: hidden;
    margin-bottom: .5em;
    white-space: nowrap;
    text-overflow: ellipsis;
    animation: fade-in-top .3s .3s both; -webkit-animation: fade-in-top .3s .3s both;
}

.right ul li:before{
    content: "\f105";
    margin-right: .75em;
    font-family: "FontAwesome";
}
.right ul {
    margin: 0;
    list-style: none;
}
.right .col-m-4 {
    flex: 0 0 33.3333%;
    max-width: 33.3333%;
    animation: fade-in-top .3s .2s both; -webkit-animation: fade-in-top .3s .2s both;
}
.right .tagcloud a {
    display: inline-block;
    margin: 0 .7% 1.4%;
    padding: 5px 12px;
    font-size: 12px!important;
    line-height: 1.2;
    text-align: center;
    /* color: #5a5a5a; */
    border: 1px solid rgba(100,100,100,.3);
    border-radius: 2px;
    text-decoration: none;
    background: rgba(255,255,255,.2);
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.right .tagcloud {
    font-size: 0;
}

/*loading加载*/
@keyframes loading {
    0% {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

.dark-loading {
    background: #222
}

.light-loading {
    background: #fff
}

.dark-loading,.light-loading {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999
}

.dark-loading .box h2,.light-loading .box h2 {
    color: #777;
    margin: 0;
    font: .8em verdana;
    text-transform: uppercase;
    letter-spacing: .1em;
    text-align: center
}

.dark-loading .box span,.light-loading .box span {
    display: inline-block;
    vertical-align: middle;
    width: .6em;
    height: .6em;
    margin: .19em;
    background: #007db6;
    border-radius: .6em;
    -webkit-animation: loading 1s infinite alternate;
    animation: loading 1s infinite alternate
}

.dark-loading .box span:nth-of-type(2),.light-loading .box span:nth-of-type(2) {
    background: #008fb2;
    -webkit-animation-delay: .2s;
    animation-delay: .2s
}

.dark-loading .box span:nth-of-type(3),.light-loading .box span:nth-of-type(3) {
    background: #009b9e;
    -webkit-animation-delay: .4s;
    animation-delay: .4s
}

.dark-loading .box span:nth-of-type(4),.light-loading .box span:nth-of-type(4) {
    background: #00a77d;
    -webkit-animation-delay: .6s;
    animation-delay: .6s
}

.dark-loading .box span:nth-of-type(5),.light-loading .box span:nth-of-type(5) {
    background: #00b247;
    -webkit-animation-delay: .8s;
    animation-delay: .8s
}

.dark-loading .box span:nth-of-type(6),.light-loading .box span:nth-of-type(6) {
    background: #5ab027;
    -webkit-animation-delay: 1s;
    animation-delay: 1s
}

.dark-loading .box span:nth-of-type(7),.light-loading .box span:nth-of-type(7) {
    background: #a0b61e;
    -webkit-animation-delay: 1.2s;
    animation-delay: 1.2s
}

/*tooltips*/
.tooltip {
    font-size: 12px;
    position: absolute;
    padding: 5px;
    z-index: 100000;
    opacity: .8;
    font-family: Microsoft Yahei
}

.tipsy-arrow {
    position: absolute;
    width: 0;
    height: 0;
    line-height: 0;
    border: 6px dashed #000;
    top: 0;
    left: 20%;
    margin-left: -5px;
    border-bottom-style: solid;
    border-top: 0;
    border-left-color: transparent;
    border-right-color: transparent
}

.tipsy-arrow-n {
    border-bottom-color: #00aff0
}

.tipsy-inner {
    background-color: #00aff0;
    color: #FFF;
    max-width: 200px;
    padding: 5px 8px 4px 8px;
    text-align: center;
    border-radius: 3px
}

a {
    color: #333;
    outline: none;
    text-decoration: none;
    transition: all .3s linear
}

a:hover {
    color: #6F8EC5;
}

input:focus {
    border-style: solid;
    border-color: #6F8EC5
}
/* 图片悬浮放大 */
#bigimage { position:absolute; display:none; z-index: 3;}
#bigimage img { width:600px; height:50%; padding:5px; background:#fff; border:1px solid #e3e3e3; }