/* 超小屏幕（小于576px）布局容器的宽度为100% */
@media screen and (max-width:575px){
    .container{
        width:100%;
    }
    article.article-main-body{
        height:auto;
        margin:5px auto 0;
        padding:0;
    }
    .blog-detail-container{
        height:auto;
        margin:0 auto;
        padding:0;
        overflow:hidden;
    }
    .blog-detail{
        width:100%;
        height:auto;
        margin:0 0 5px;
        padding:10px 18px;
        background:var(--backgroundColor);
        overflow:hidden;
    	display:block;
    }
    .blog-detail .blog-category{
        width:100%;
        height:auto;
        font-size:1.6rem;
        padding:0 0 15px;
        overflow:hidden;
    }
    .blog-detail h1{
        width:100%;
        height:auto;
        line-height:140%;
        font-size:2.2rem;
        color:var(--titleColor);
        font-weight:bold;
        border-left:5px solid var(--redColor);
        margin:0;
        padding:0 0 0 10px;
        overflow:hidden;
    }
    .blog-detail .needPassword{
        text-align:center;
        padding-top:100px;
        padding-bottom:100px;
    }
    .blog-detail .needPassword h3{
        width:100%;
        height:auto;
        line-height:140%;
        font-size:2rem;
        color:var(--titleColor);
        font-weight:bold;
        overflow:hidden;
    }
    .needPasswordLi{
        width:100%;
        height:auto;
        margin:2rem 0;
    }
    .needPasswordLi label{
        width:auto;
        height:30px;
        line-height:30px;
        font-size:1.6rem;
        color:var(--titleColor);
        display:inline-block;
    }
    input.addArticlePassword{
        width:358px;
        height:30px;
        line-height:30px;
        font-size:14px;
        color:var(--subTitleColor);
        text-align:left;
        border-style:solid;
        background:#fff;
        display:inline-block;
        padding-left:10px;
    }
    .needPasswordBtn{
        width:100%;
        height:auto;
        margin:20px 0 0;
    }
    .needPasswordBtn input{
        width:auto;
        height:35px;
        line-height:35px;
        font-size:14px;
        color:#fff;
        text-align:center;
        border:none;
        background:var(--hoverColor,#236ddb);
        display:inline-block;
        margin:0;
        padding:0 20px;
        cursor:pointer;
    }
    .blog-info{
        width:100%;
        height:auto;
        line-height:100%;
        font-size:1.6rem;
        color:var(--subTitleColor);
        border-left:5px solid var(--redColor);
        margin-bottom:10px;
        padding:10px 0 0 10px;
        overflow:hidden;
    }
    .blog-info i{
        color:var(--greenColor);
        margin-right:3px;
    }
    .blog-info a{
        color:var(--subTitleColor);
    }
    .blog-info a:hover{
        color:var(--hoverColor,#236ddb);
    }
    .summary{
        width:100%;
        height:auto;
        line-height:160%;
        font-size:1.6rem;
        color:var(--lightColor);
        text-indent:2em;
        border-left:5px solid var(--blackColor);
        background:var(--deepColor) url("../../static/img/quote.png") 10px 10px no-repeat;
        background-size:20px 20px;
        margin:10px 0 0;
        padding:10px;
        overflow:hidden;
    }
    .blog-content{
        width:100%;
        height:auto;
        line-height:180%;
        font-size:1.6rem;
        color:var(--subTitleColor);
        padding:20px 0 0;
        overflow:hidden;
    }
    .blog-content img,.blog-content p img,.blog-content div img{
        max-width:100%;
    }
    .blog-content blockquote{
        color:var(--lightColor);
        text-indent:0;
        border-left:5px solid red;
        background:var(--deepColor);
        margin-left:0;
        margin-right:0;
        padding:10px;
    }
    .blog-content blockquote p{
        color:var(--lightColor);
        text-indent:0;
    }
    .blog-content pre{
        text-indent:0;
        background:rgba(26,26,26,1);
        padding:20px;
    }
    .blog-content code{
        color:green;
        word-break:break-all;/* 强制换行 */
        word-wrap:break-word;/* 强制换行 */
        white-space:pre-line;/* 强制换行 */
    }
    .blog-content h1,.blog-content h2,.blog-content h3,.blog-content h4,.blog-content h5,.blog-content h6{
        width:100%;
        height:auto;
        line-height:120%;
        font-size:2.2rem;
        color:var(--lightColor);
        font-weight:bold;
        text-indent:0;
        border-left:none;
        margin:10px 0;
        padding:5px 0 5px 10px;
        display:block;
        overflow:hidden;
    }
    .blog-content h1::before,
    .blog-content h2::before,
    .blog-content h3::before,
    .blog-content h4::before,
    .blog-content h5::before,
    .blog-content h6::before {
        content: "/";
        color: var(--redColor);
        margin-right: 10px;
        font-size: 1em;
        font-weight:bold;
        vertical-align: middle;
    }
    .blog-content h1{
        font-size:2.2rem;
    }
    .blog-content h2{
        font-size:2rem;
    }
    .blog-content h3{
        font-size:1.8rem;
    }
    .blog-content h4{
        font-size:1.6rem;
    }
    .blog-content h5{
        font-size:1.6rem;
    }
    .blog-content h6{
        font-size:1.6rem;
    }
    .blog-content p,.blog-content li{
        width:100%;
        height:auto;
        line-height:180%;
        font-size:1.6rem;
        color:var(--titleColor);
        margin:0;
        padding:0 0 10px;
        overflow:hidden;
    }
    .blog-content a{
        color:var(--hoverColor,#236ddb);
    }
    .blog-content a:hover{
        color:red;
    }
    .blog-tag{
        width:100%;
        height:auto;
        padding:20px 0;
        border-bottom:1px solid var(--borderColor);
    }
    .blog-tag span{
        font-size:1.6rem;
    }
    .blog-tag a{
        width:auto;
        height:3rem;
        line-height:3rem;
        font-size:1.6rem;
        color:var(--titleColor);
        padding:0 5px 0 0;
        display:inline-block;
    }
    .blog-tag a:hover{
        color:var(--hoverColor,#236ddb);
    }
    .preNext{
        width:100%;
        height:auto;
        margin:5px 0 0;
        padding:20px 0;
        overflow:hidden;
    }
    .pre{
        width:48%;
        height:auto;
        line-height:140%;
        font-size:1.6rem;
        color:var(--subTitleColor);
        display:inline-block;
        float:left;
        overflow:hidden;
    }
    .next{
        width:48%;
        height:auto;
        line-height:140%;
        font-size:1.6rem;
        color:var(--subTitleColor);
        text-align:right;
        display:inline-block;
        float:right;
        overflow:hidden;
    }
    .pre a,.next a{
        width:auto;
        height:auto;
        line-height:140%;
        font-size:1.6rem;
        color:var(--titleColor);
    }
    .pre a:hover,.next a:hover{
        color:var(--hoverColor,#236ddb);
    }
    .articleLeftShare{
        width:48px;
        height:auto;
        position:fixed;
        top:220px;
        left:50%;
        margin-left:-668px;
        z-index:99999;
    }
    .articleLeftShare a{
        width:48px;
        height:auto;
        cursor:pointer;
        display:block;
    }
    .articleLeftShareIcon{
        width:48px;
        height:48px;
        background:#f8f8f8 url("../../static/img/good-two.png") center center no-repeat;
        background-size:24px 24px;
        border-radius:50%;
        display:block;
    }
    .articleLeftShare a:hover .articleLeftShareIcon{
        background:#f8f8f8 url("../../static/img/good-two-hover.png") center center no-repeat;
        background-size:24px 24px;
        border-radius:50%;
    }
    .articleLeftShareIconClick{
        width:48px;
        height:48px;
        background:rgb(137,207,240,0.2) url("../../static/img/good-two-click.png") center center no-repeat;
        background-size:24px 24px;
        border-radius:50%;
        display:block;
    }
    .articleLeftShareTitle{
        width:48px;
        height:20px;
        line-height:20px;
        font-size:12px;
        color:#fff;
        text-align:center;
        display:block;
        margin-top:5px;
    }
    .articleLeftShareTitleClick{
        color:var(--hoverColor,#236ddb);
    }
    .articleLeftShareLine{
        width:24px;
        height:1px;
        background:#e8e8e8;
        display:block;
        margin:16px auto 0;
    }
    .blog-about{
        width:100%;
        height:auto;
    	background:var(--backgroundColor);
    	margin-bottom:5px;
    	padding:10px 18px;
    }
    .blog-about .avatar{
        width:65px;
        height:auto;
    }
    .blog-about .avatar img{
        width:65px;
        height:65px;
        border-radius:50%;
    }
    .blog-about .author{
        width:calc(100% - 75px);
        height:auto;
        margin-left:10px;
    }
    .blog-about .author .nickname{
        width:100%;
        height:40px;
        line-height:40px;
        font-size:1.6rem;
        color:var(--titleColor);
        margin:0;
        padding:0;
        overflow:hidden;
    }
    .blog-about .author .author-intro{
        width:100%;
        height:auto;
        line-height:25px;
        font-size:1.4rem;
        color:var(--subTitleColor);
        margin:0;
        padding:0;
    }
    .comment-title{
        width:100%;
        height:auto;
        line-height:140%;
        font-size:2rem;
        color:var(--titleColor);
        font-weight:bold;
        background:var(--backgroundColor);
        margin:0px;
        padding:10px 18px;
    }
    .comment-title small{
        font-size:1.2rem;
        color:var(--darkTitleColor);
        font-weight:bold;
        margin:0 0 0 5px;
        padding:0;
    }
    .comment-list{
        width:100%;
        height:auto;
        border-radius:0;
    	background:var(--backgroundColor);
    	margin:0 0 5px;
	    padding:5px 18px 10px 18px;
    }
    .noComment{
        width:100%;
        height:auto;
        line-height:140%;
        font-size:14px;
        color:var(--titleColor);
        text-align:center;
        margin:20px 0;
    }
    .comment-list .comment-item{
        width:100%;
        height:auto;
        border:1px solid var(--borderColor);
        background:none;
    	margin:0 0 5px;
    	padding:20px 0;
    }
    .comment-list .comment-item p{
        width:100%;
        height:auto;
        line-height:140%;
        font-size:14px;
        color:var(--subTitleColor);
        margin:0;
    	padding:5px 20px;
    }
    .comment-list .comment-item p.reply-comment-row{
        width:100%;
        height:auto;
        line-height:140%;
        font-size:14px;
        color:var(--subTitleColor);
        border-top:1px solid var(--borderColor);
        border-bottom:1px solid var(--borderColor);
        margin:0;
    	padding:5px 20px 5px 50px;
    }
    .comment-list .comment-item p a.username{
        color:deeppink;
        font-weight:bold;
        display:inline-block;
        margin-right:5px;
    }
    .comment-list .comment-item p.reply-comment-row a.username{
        color:var(--blueColor);
    }
    .comment-list .comment-item p .datetime{
        font-size:12px;
    }
    .comment-list .comment-item .content{
        color:var(--titleColor);
    }
    .comment{
        width:100%;
        height:auto;
        margin:0 0 5px;
        padding:0 18px 10px;
        background:var(--backgroundColor);
        overflow:hidden;
    	display:block;
    }
    .comment-row{
        height:auto;
        margin:0 0 10px;
        padding:0;
    }
    .comment-row label{
        height:3.5rem;
        line-height:3.5rem;
        font-size:1.6rem;
        color:var(--titleColor);
        margin:0;
        padding:0;
    }
    .comment-row .captcha{
        width:auto;
        height:3.5rem;
        margin:0;
        padding:0;
    }
    .comment-row .captcha img{
        height:3.5rem;
    }
    .comment-row small{
        font-size:1.2rem;
        color:var(--lightColor);
        padding:0;
    }
    .comment-row input{
        font-size:1.4rem;
        color:var(--lightColor);
        border:none;
        background:var(--deepColor);
    }
    .comment-row textarea{
        font-size:1.4rem;
        color:var(--lightColor);
        border:none;
        background:var(--deepColor);
    }
    .commentUserInfo{
        width:100%;
        height:auto;
        margin-bottom:10px;
        position:relative;
    }
    input.commentInput{
        width:100%;
        height:3.5rem;
        line-height:3.5rem;
        font-size:1.6rem;
        color:var(--lightColor);
        border:none;
        background:var(--deepColor);
        padding:0 2%;
    }
    .commentUserInfo .captcha{
        width:auto;
        height:3.5rem;
        position:absolute;
        top:0;
        right:0;
        bottom:0;
    }
    .commentUserInfo .captcha img{
        width:auto;
        height:3.5rem;
    }
    .commentTextarea{
        width:100%;
        height:auto;
        margin-bottom:10px;
    }
    .commentTextarea textarea{
        width:100%;
        height:9rem;
        line-height:2.5rem;
        font-size:1.6rem;
        color:var(--lightColor);
        border:none;
        background:var(--deepColor);
        padding:0 2%;
    }
    .comment-btn{
        width:100%;
        height:auto;
        text-align:center;
        margin-top:20px;
    }
    .comment-btn button{
        font-size:1.6rem;
    }
}
/* 小屏幕（大于等于576px）布局容器的宽度为540px */
@media screen and (min-width:576px){
    .containner{
        width:540px;
    }
    article.article-main-body{
        height:auto;
        margin:5px auto 0;
        padding:0;
    }
    .blog-detail-container{
        height:auto;
        margin:0 auto;
        padding:0;
        overflow:hidden;
    }
    .blog-detail{
        width:100%;
        height:auto;
        margin:0 0 5px;
        padding:20px;
        background:var(--backgroundColor);
        overflow:hidden;
    	display:block;
    }
    .blog-detail .blog-category{
        width:100%;
        height:auto;
        font-size:16px;
        padding:0 0 15px;
        overflow:hidden;
    }
    .blog-detail h1{
        width:100%;
        height:auto;
        line-height:100%;
        font-size:30px;
        color:var(--titleColor);
        font-weight:bold;
        border-left:5px solid var(--redColor);
        margin:0;
        padding:0 0 4px 10px;
        overflow:hidden;
    }
    .blog-detail .needPassword{
        text-align:center;
        padding-top:100px;
        padding-bottom:100px;
    }
    .blog-detail .needPassword h3{
        width:100%;
        height:auto;
        line-height:140%;
        font-size:20px;
        color:var(--titleColor);
        font-weight:bold;
        overflow:hidden;
    }
    .needPasswordLi{
        width:100%;
        height:auto;
        margin:20px 0;
    }
    .needPasswordLi label{
        width:auto;
        height:30px;
        line-height:30px;
        font-size:14px;
        color:var(--titleColor);
        display:inline-block;
    }
    input.addArticlePassword{
        width:358px;
        height:30px;
        line-height:30px;
        font-size:14px;
        color:var(--subTitleColor);
        text-align:left;
        border-style:solid;
        background:#fff;
        display:inline-block;
        padding-left:10px;
    }
    .needPasswordBtn{
        width:100%;
        height:auto;
        margin:20px 0 0;
    }
    .needPasswordBtn input{
        width:auto;
        height:35px;
        line-height:35px;
        font-size:14px;
        color:#fff;
        text-align:center;
        border:none;
        background:var(--hoverColor,#236ddb);
        display:inline-block;
        margin:0;
        padding:0 20px;
        cursor:pointer;
    }
    .blog-info{
        width:100%;
        height:auto;
        line-height:100%;
        font-size:14px;
        color:var(--subTitleColor);
        border-left:5px solid var(--redColor);
        margin-bottom:20px;
        padding:10px 0 0 10px;
        overflow:hidden;
    }
    .blog-info i{
        color:var(--greenColor);
        margin-right:3px;
    }
    .blog-info a{
        color:var(--subTitleColor);
    }
    .blog-info a:hover{
        color:var(--hoverColor,#236ddb);
    }
    .summary{
        width:100%;
        height:auto;
        line-height:160%;
        font-size:16px;
        color:var(--lightColor);
        text-indent:2em;
        background:var(--deepColor) url("../../static/img/quote.png") 10px 10px no-repeat;
        background-size:20px 20px;
        border-left:7px solid var(--blackColor);
        margin:10px 0 0;
        padding:10px;
        overflow:hidden;
    }
    .blog-content{
        width:100%;
        height:auto;
        line-height:180%;
        font-size:16px;
        color:var(--subTitleColor);
        padding:20px 0 0;
        overflow:hidden;
    }
    .blog-content img,.blog-content p img,.blog-content div img{
        max-width:100%;
    }
    .blog-content blockquote{
        color:var(--lightColor);
        text-indent:0;
        border-left:5px solid red;
        background:var(--deepColor);
        margin-left:0;
        margin-right:0;
        padding:10px;
    }
    .blog-content blockquote p{
        color:var(--lightColor);
        text-indent:0;
    }
    .blog-content pre{
        text-indent:0;
        background:rgba(26,26,26,1);
        padding:20px;
    }
    .blog-content code{
        color:green;
        word-break:break-all;/* 强制换行 */
        word-wrap:break-word;/* 强制换行 */
        white-space:pre-line;/* 强制换行 */
    }
    .blog-content h1,.blog-content h2,.blog-content h3,.blog-content h4,.blog-content h5,.blog-content h6{
        width:100%;
        height:auto;
        line-height:120%;
        font-size:20px;
        color:var(--lightColor);
        font-weight:bold;
        text-indent:0;
        border-left:none;
        margin:10px 0;
        padding:5px 0 5px 10px;
        display:block;
        overflow:hidden;
    }
    .blog-content h1::before,
    .blog-content h2::before,
    .blog-content h3::before,
    .blog-content h4::before,
    .blog-content h5::before,
    .blog-content h6::before {
        content: "/";
        color: var(--redColor);
        margin-right: 10px;
        font-size: 1em;
        font-weight:bold;
        vertical-align: middle;
    }
    .blog-content h1{
        font-size:24px;
    }
    .blog-content h2{
        font-size:22px;
    }
    .blog-content h3{
        font-size:20px;
    }
    .blog-content h4{
        font-size:18px;
    }
    .blog-content h5{
        font-size:16px;
    }
    .blog-content h6{
        font-size:16px;
    }

    .blog-content p,.blog-content li{
        width:100%;
        height:auto;
        line-height:180%;
        font-size:16px;
        color:var(--titleColor);
        margin:0;
        padding:0 0 10px;
        overflow:hidden;
    }
    .blog-content a{
        color:var(--hoverColor,#236ddb);
    }
    .blog-content a:hover{
        color:red;
    }
    .blog-tag{
        width:100%;
        height:auto;
        padding:20px 0;
        border-bottom:1px solid var(--borderColor);
    }
    .blog-tag span{
        font-size:14px;
    }
    .blog-tag a{
        width:auto;
        height:30px;
        line-height:30px;
        font-size:14px;
        color:var(--titleColor);
        padding:0 5px 0 0;
        display:inline-block;
    }
    .blog-tag a:hover{
        color:var(--hoverColor,#236ddb);
    }
    .preNext{
        width:100%;
        height:auto;
        margin:5px 0 0;
        padding:20px 0;
        overflow:hidden;
    }
    .pre{
        width:48%;
        height:auto;
        line-height:140%;
        font-size:14px;
        color:var(--subTitleColor);
        display:inline-block;
        float:left;
        overflow:hidden;
    }
    .next{
        width:48%;
        height:auto;
        line-height:140%;
        font-size:14px;
        color:var(--subTitleColor);
        text-align:right;
        display:inline-block;
        float:right;
        overflow:hidden;
    }
    .pre a,.next a{
        width:auto;
        height:auto;
        line-height:140%;
        font-size:14px;
        color:var(--titleColor);
    }
    .pre a:hover,.next a:hover{
        color:var(--hoverColor,#236ddb);
    }
    .articleLeftShare{
        width:48px;
        height:auto;
        position:fixed;
        top:220px;
        left:50%;
        margin-left:-668px;
        z-index:99999;
    }
    .articleLeftShare a{
        width:48px;
        height:auto;
        cursor:pointer;
        display:block;
    }
    .articleLeftShareIcon{
        width:48px;
        height:48px;
        background:#f8f8f8 url("../../static/img/good-two.png") center center no-repeat;
        background-size:24px 24px;
        border-radius:50%;
        display:block;
    }
    .articleLeftShare a:hover .articleLeftShareIcon{
        background:#f8f8f8 url("../../static/img/good-two-hover.png") center center no-repeat;
        background-size:24px 24px;
        border-radius:50%;
    }
    .articleLeftShareIconClick{
        width:48px;
        height:48px;
        background:rgb(137,207,240,0.2) url("../../static/img/good-two-click.png") center center no-repeat;
        background-size:24px 24px;
        border-radius:50%;
        display:block;
    }
    .articleLeftShareTitle{
        width:48px;
        height:20px;
        line-height:20px;
        font-size:12px;
        color:#fff;
        text-align:center;
        display:block;
        margin-top:5px;
    }
    .articleLeftShareTitleClick{
        color:var(--hoverColor,#236ddb);
    }
    .articleLeftShareLine{
        width:24px;
        height:1px;
        background:#e8e8e8;
        display:block;
        margin:16px auto 0;
    }
    .blog-about{
        width:100%;
        height:auto;
    	background:var(--backgroundColor);
    	margin-bottom:5px;
    	padding:20px;
    }
    .blog-about .avatar{
        width:65px;
        height:auto;
    }
    .blog-about .avatar img{
        width:65px;
        height:65px;
        border-radius:50%;
    }
    .blog-about .author{
        width:calc(100% - 75px);
        height:auto;
        margin-left:10px;
    }
    .blog-about .author .nickname{
        width:100%;
        height:40px;
        line-height:40px;
        font-size:16px;
        color:var(--titleColor);
        margin:0;
        padding:0;
        overflow:hidden;
    }
    .blog-about .author .author-intro{
        width:100%;
        height:auto;
        line-height:25px;
        font-size:14px;
        color:var(--subTitleColor);
        margin:0;
        padding:0;
    }
    .comment-title{
        width:100%;
        height:auto;
        line-height:140%;
        font-size:20px;
        color:var(--titleColor);
        font-weight:bold;
        background:var(--backgroundColor);
        margin:0px;
        padding:20px;
    }
    .comment-title small{
        font-size:12px;
        color:var(--darkTitleColor);
        font-weight:bold;
        margin:0 0 0 5px;
        padding:0;
    }
    .comment-list{
        width:100%;
        height:auto;
        border-radius:0;
    	background:var(--backgroundColor);
    	margin:0 0 5px;
	    padding:5px 18px 20px 18px;
    }
    .noComment{
        width:100%;
        height:auto;
        line-height:140%;
        font-size:16px;
        color:var(--titleColor);
        text-align:center;
        margin:20px 0;
    }
    .comment-list .comment-item{
        width:100%;
        height:auto;
        border:1px solid var(--borderColor);
        background:none;
    	margin:0 0 5px;
    	padding:20px 0;
    }
    .comment-list .comment-item p{
        width:100%;
        height:auto;
        line-height:140%;
        font-size:16px;
        color:var(--subTitleColor);
        margin:0;
    	padding:5px 20px;
    }
    .comment-list .comment-item p.reply-comment-row{
        width:100%;
        height:auto;
        line-height:140%;
        font-size:16px;
        color:var(--subTitleColor);
        border-top:1px solid var(--borderColor);
        border-bottom:1px solid var(--borderColor);
        margin:0;
    	padding:5px 20px 5px 50px;
    }
    .comment-list .comment-item p a.username{
        color:deeppink;
        font-weight:bold;
        display:inline-block;
        margin-right:5px;
    }
    .comment-list .comment-item p.reply-comment-row a.username{
        color:var(--blueColor);
    }
    .comment-list .comment-item p .datetime{
        font-size:12px;
    }
    .comment-list .comment-item .content{
        color:var(--titleColor);
    }
    .comment{
        width:100%;
        height:auto;
        margin:0 0 5px;
        padding:0 20px 20px;
        background:var(--backgroundColor);
        overflow:hidden;
    	display:block;
    }
    .comment-row{
        height:auto;
        margin:0 0 10px;
        padding:0;
    }
    .comment-row label{
        height:35px;
        line-height:35px;
        font-size:16px;
        color:var(--titleColor);
        margin:0;
        padding:0;
    }
    .comment-row .captcha{
        width:auto;
        height:30.5px;
        margin:0;
        padding:0;
    }
    .comment-row .captcha img{
        height:30.5px;
    }
    .comment-row small{
        font-size:12px;
        color:var(--lightColor);
        padding:0;
    }
    .comment-row input{
        font-size:16px;
        color:var(--lightColor);
        border:none;
        background:var(--deepColor);
    }
    .comment-row textarea{
        font-size:16px;
        color:var(--lightColor);
        border:none;
        background:var(--deepColor);
    }
    .commentUserInfo{
        width:100%;
        height:auto;
        margin-bottom:10px;
        position:relative;
    }
    input.commentInput{
        width:100%;
        height:35px;
        line-height:35px;
        font-size:16px;
        color:var(--lightColor);
        border:none;
        background:var(--deepColor);
        padding:0 2%;
    }
    .commentUserInfo .captcha{
        width:auto;
        height:35px;
        position:absolute;
        top:0;
        right:0;
        bottom:0;
    }
    .commentUserInfo .captcha img{
        width:auto;
        height:35px;
    }
    .commentTextarea{
        width:100%;
        height:auto;
        margin-bottom:10px;
    }
    .commentTextarea textarea{
        width:100%;
        height:90px;
        line-height:25px;
        font-size:16px;
        color:var(--lightColor);
        border:none;
        background:var(--deepColor);
        padding:0 2%;
    }
    .comment-btn{
        width:100%;
        height:auto;
        text-align:center;
        margin-top:20px;
    }
    .comment-btn button{
        font-size:16px;
    }
}
/* 中等屏幕（大于等于768px）布局容器的宽度为720px */
@media screen and (min-width:768px){
    .containner{
        width:720px;
    }
    .blog-detail-container{
        height:auto;
        margin:0 auto;
        padding:0 5px 0 0;
        overflow:hidden;
    }
}

.comment-panel{
    width:100%;
    height:auto;
    margin:0 0 5px;
    padding:0 18px 10px;
    background:var(--backgroundColor);
    overflow:hidden;
}
.preNextArrow{
    color:var(--blueColor,#236ddb);
    font-weight:bold;
}
.blog-about .author .nickname{
    height:auto;
    line-height:22px;
    font-size:14px;
    color:var(--titleColor);
    font-weight:normal;
    margin:0 0 2px;
    padding:0;
}
.blog-about .author .author-intro{
    line-height:22px;
    font-size:14px;
    color:var(--titleColor);
    margin:0;
    padding:0;
}
.blog-about .author a{
    color:var(--blueColor,#236ddb);
    text-decoration-line:underline;
    text-decoration-style:dashed;
    text-underline-offset:4px;
}
.blog-about .author a:hover{
    color:var(--hoverColor,#236ddb);
}
.related-articles{
    width:100%;
    margin:5px 0 0;
    padding:0 0 18px;
    border-bottom:1px solid var(--borderColor);
    overflow:hidden;
}
.related-articles h4{
    line-height:140%;
    font-size:18px;
    color:var(--titleColor);
    font-weight:bold;
    margin:0 0 10px;
    padding:0;
}
.related-articles ul{
    width:100%;
    list-style:none;
    margin:0;
    padding:0;
}
.related-articles li{
    width:100%;
    height:32px;
    line-height:32px;
    font-size:15px;
    border-bottom:1px dashed rgba(148,148,148,.22);
    overflow:hidden;
}
.related-articles li:last-child{
    border-bottom:none;
}
.related-articles a{
    color:var(--titleColor);
    display:block;
    overflow:hidden;
    text-overflow:ellipsis;
    white-space:nowrap;
}
.related-articles a i{
    color:var(--blueColor,#236ddb);
    font-size:20px;
    vertical-align:-2px;
    margin-right:2px;
}
.related-articles a:hover{
    color:var(--blueColor,#236ddb);
}
.comment-list .tt-comment-item{
    width:100%;
    display:flex;
    align-items:flex-start;
    border:none;
    border-bottom:1px solid rgba(148,148,148,.18);
    background:transparent;
    margin:0;
    padding:24px 0;
}
.comment-list .tt-comment-item:last-child{
    border-bottom:none;
}
.tt-comment-avatar{
    flex:0 0 52px;
    width:52px;
    height:52px;
    margin-right:20px;
    overflow:hidden;
    border-radius:50%;
    background:var(--deepColor);
}
.tt-comment-avatar img{
    width:100%;
    height:100%;
    display:block;
    object-fit:cover;
}
.tt-comment-body{
    flex:1;
    min-width:0;
}
.tt-comment-head{
    width:100%;
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    gap:12px;
}
.tt-comment-name{
    line-height:140%;
    font-size:18px;
    color:var(--titleColor);
    font-weight:600;
}
.tt-comment-admin-label{
    font-size:16px;
}
.tt-comment-support{
    line-height:140%;
    font-size:18px;
    color:var(--titleColor);
    white-space:nowrap;
}
.tt-comment-content{
    line-height:165%;
    font-size:16px;
    color:var(--titleColor);
    margin:8px 0 0;
    word-break:break-word;
}
.tt-comment-meta{
    display:flex;
    align-items:center;
    gap:8px;
    line-height:140%;
    font-size:14px;
    margin-top:16px;
}
.tt-comment-reply-text{
    color:var(--titleColor);
    cursor:pointer;
}
.tt-comment-reply-text:hover{
    color:#d32f2f;
}
.tt-comment-dot,
.tt-comment-time{
    color:var(--subTitleColor);
}
.tt-comment-reply-item{
    display:flex;
    align-items:flex-start;
    margin-top:24px;
}
.tt-comment-reply-avatar{
    flex-basis:38px;
    width:38px;
    height:38px;
    margin-right:16px;
}
.tt-comment-reply-body{
    flex:1;
    min-width:0;
}
.tt-comment-reply-form{
    display:none;
    margin-top:18px;
}
.tt-comment-reply-form .comment-reply-editor{
    border:1px solid rgba(148,148,148,.24);
    background:rgba(255,255,255,.58);
}
.tt-comment-reply-form .comment-editor-textarea{
    height:72px;
    min-height:72px;
}
.tt-comment-reply-form .comment-editor-footer{
    min-height:56px;
    padding-bottom:14px;
}
.comment-panel-head{
    width:100%;
    min-height:50px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
    border-bottom:3px solid #d32f2f;
}
.comment-panel-head h4{
    line-height:140%;
    font-size:20px;
    color:var(--titleColor);
    font-weight:bold;
    margin:0;
    padding:0;
}
.comment-panel-head p{
    line-height:140%;
    font-size:12px;
    color:var(--subTitleColor);
    text-align:right;
    margin:0;
    padding:0;
}
.comment-login-prompt{
    width:100%;
    min-height:64px;
    line-height:64px;
    font-size:14px;
    color:var(--titleColor);
    text-align:center;
    background:rgba(246,246,246,.86);
}
.comment-login-prompt a{
    color:#fff;
    background:#d32f2f;
    border-radius:4px;
    padding:1px 8px;
    margin:0 4px;
    text-decoration:none;
}
.comment-editor-form{
    width:100%;
    margin:0;
    padding:0;
}
.comment-editor{
    width:100%;
    border:1px solid var(--borderColor);
    border-top:none;
    background:rgba(255,255,255,.72);
    overflow:hidden;
}
.comment-editor-textarea{
    width:100%;
    height:75px;
    min-height:75px;
    line-height:25px;
    font-size:14px;
    font-family:"Microsoft YaHei","微软雅黑",sans-serif;
    color:var(--titleColor);
    border:none;
    outline:none;
    resize:vertical;
    background:transparent;
    padding:10px 16px;
    display:block;
}
.comment-editor-textarea::placeholder{
    color:var(--subTitleColor);
}
.comment-editor-footer{
    width:100%;
    min-height:61px;
    display:flex;
    align-items:flex-end;
    justify-content:space-between;
    gap:16px;
    box-sizing:border-box;
    padding:0 0 9px 16px;
}
.comment-editor-tools{
    flex:0 0 auto;
    display:grid;
    grid-template-columns:auto auto;
    align-items:end;
    gap:8px 14px;
    margin-top:10px;
}
.comment-image-preview{
    grid-column:1 / -1;
    width:92px;
    height:68px;
    position:relative;
    border:1px solid rgba(148,148,148,.32);
    border-radius:8px;
    background:rgba(255,255,255,.72);
    overflow:visible;
    padding:3px;
}
.comment-image-preview[hidden]{
    display:none;
}
.comment-image-preview img{
    width:100%;
    height:100%;
    display:block;
    border-radius:6px;
    object-fit:cover;
}
.comment-image-remove{
    width:18px;
    height:18px;
    line-height:16px;
    position:absolute;
    top:-7px;
    right:-7px;
    color:#fff;
    font-size:14px;
    text-align:center;
    border:1px solid #fff;
    border-radius:50%;
    background:#d32f2f;
    cursor:pointer;
    padding:0;
}
.comment-image-btn,
.comment-emoji-btn{
    flex:0 0 auto;
    height:34px;
    line-height:34px;
    font-size:14px;
    color:var(--subTitleColor);
    border:none;
    background:transparent;
    cursor:pointer;
    margin-top:0;
    padding:0;
    white-space:nowrap;
}
.comment-image-btn i,
.comment-emoji-btn i{
    font-size:18px;
    vertical-align:-2px;
    margin-right:4px;
}
.comment-image-btn:hover,
.comment-emoji-btn:hover{
    color:var(--titleColor);
}
.comment-image-btn:disabled{
    opacity:.58;
    cursor:progress;
}
.comment-submit-wrap{
    width:auto;
    min-width:0;
    display:flex;
    align-items:center;
    justify-content:flex-end;
    gap:14px;
    margin-top:10px;
}
.comment-signature{
    min-width:0;
    line-height:140%;
    font-size:14px;
    color:var(--subTitleColor);
    white-space:nowrap;
}
.comment-submit-btn{
    flex:0 0 auto;
    width:118px;
    height:42px;
    line-height:42px;
    font-size:16px;
    color:#fff;
    font-weight:bold;
    text-align:center;
    border:none;
    background:#d32f2f;
    cursor:pointer;
}
.comment-submit-btn:hover{
    background:#b71c1c;
}
.tt-comment-reply-form .comment-submit-btn{
    background:#d3d3d3;
    cursor:not-allowed;
}
.tt-comment-reply-form .comment-submit-btn.is-active{
    background:#3a3a3a;
    cursor:pointer;
}
.tt-comment-reply-form .comment-submit-btn.is-active:hover{
    background:#242424;
}
.comment-emoji-panel{
    width:656px;
    max-width:calc(100vw - 24px);
    max-height:300px;
    display:none;
    grid-template-columns:repeat(auto-fill, minmax(34px, 1fr));
    gap:6px;
    border:1px solid rgba(148,148,148,.25);
    border-radius:8px;
    background:var(--backgroundColor,#fff);
    box-shadow:0 8px 26px rgba(0,0,0,.16);
    overflow:auto;
    position:absolute;
    z-index:9999;
    padding:10px;
}
.comment-emoji-panel.is-open{
    display:grid;
}
.comment-emoji-item{
    width:34px;
    height:34px;
    display:flex;
    align-items:center;
    justify-content:center;
    border:none;
    border-radius:6px;
    background:transparent;
    cursor:pointer;
    padding:3px;
}
.comment-emoji-item:hover{
    background:rgba(148,148,148,.14);
}
.comment-emoji-item img,
.comment-emoji-img{
    width:26px;
    height:26px;
    display:inline-block;
    vertical-align:-6px;
}
.comment-emoji-img{
    margin:0 2px;
}
.comment-content-image-wrap{
    display:block;
    margin-top:10px;
}
.comment-content-image{
    max-width:260px;
    max-height:220px;
    display:block;
    border-radius:8px;
    object-fit:cover;
}

@media screen and (max-width:575px){
    .comment-panel{
        padding:0 18px 10px;
    }
    .comment-panel-head{
        min-height:auto;
        display:block;
        padding:14px 0;
    }
    .comment-panel-head h4{
        font-size:20px;
    }
    .comment-panel-head p{
        font-size:13px;
        text-align:left;
        padding-top:6px;
    }
    .comment-login-prompt{
        min-height:64px;
        line-height:64px;
        font-size:14px;
    }
    .comment-editor-textarea{
        height:65px;
        min-height:65px;
        font-size:14px;
        padding:10px 16px;
    }
    .comment-editor-footer{
        min-height:auto;
        align-items:flex-end;
        flex-direction:row;
        gap:8px;
        padding:0 16px 8px;
    }
    .comment-editor-tools{
        gap:6px 10px;
    }
    .comment-image-preview{
        width:78px;
        height:58px;
    }
    .comment-submit-btn{
        width:118px;
        height:46px;
        line-height:46px;
        font-size:16px;
    }
    .comment-submit-wrap{
        width:auto;
        min-width:0;
        flex:1 1 auto;
        align-items:center;
        flex-direction:row;
        gap:8px;
    }
    .comment-signature{
        font-size:14px;
        max-width:42vw;
        overflow:hidden;
        text-overflow:ellipsis;
    }
    .comment-emoji-panel{
        width:296px;
    }
    .comment-content-image{
        max-width:100%;
        max-height:180px;
    }
    .comment-list .tt-comment-item{
        padding:18px 0;
    }
    .tt-comment-avatar{
        flex-basis:42px;
        width:42px;
        height:42px;
        margin-right:12px;
    }
    .tt-comment-name,
    .tt-comment-support{
        font-size:15px;
    }
    .tt-comment-content{
        font-size:16px;
    }
    .tt-comment-meta{
        font-size:13px;
        margin-top:10px;
    }
    .tt-comment-reply-avatar{
        flex-basis:32px;
        width:32px;
        height:32px;
    }
    .tt-comment-reply-form{
        margin-top:14px;
    }
    .tt-comment-reply-form .comment-editor-textarea{
        height:62px;
        min-height:62px;
    }
}
/* 大屏幕（大于等于992px）布局容器的宽度为960px */
@media screen and (min-width:992px){
    .containner{
        width:960px;
    }
}
/* 超大屏幕（大于等于1200px）布局容器的宽度为1140px */
@media screen and (min-width:1200px){
    .containner{
        width:1140px;
    }
}
