.l-s{
    width: 65%;
    padding:0 20px;
}
.r-s{
    width: 31%;
}
div.nav-anchor{
    display: inline-block;
    margin-bottom: 10px;
}
@media (max-width: 800px){
    .l-s{
        width: 100%;
        padding: 0;
    }
    .r-s{
        width: 100%;
    }
}
.photo-block img{
    width: 100%;
    height: auto;
    display: block;
}
.article-header .article-title{
    font-size: 1.67em;
    font-weight: 600;
    padding: 30px 0 0;
    margin-bottom: 20px;
}

@media (max-width:800px){
    .article-header .article-title{
        margin-bottom: 0px;
    }
}

.article-info{
    padding: 10px 0;
    margin-bottom: 20px;
}





.user-info .avatar{
    width: 20px;
    height: 20px;
    border-radius: 50%;
    vertical-align: middle;
}
.article-info .user-info{
    float: left;
}
.user-info > *{
    margin-right: 10px;
}
.user-info .username{
    color: #666;
}
.user-info .time-info{
    color: #999;
    font-size: .9em;
}
.article-info .like-info{
    float: right;

}
.article-info .like-info a{
    color: #999;
}
.article-info .like-info > *{
    margin-left: 10px;
}
.article-info .like-info .iconfont:before{
    margin-right: 4px;
}

.article-body{
    position: relative;
}

.article-introduction{


    margin-bottom: 30px;

}

.article-introduction:before,.article-introduction:after{
    content: '';
    position: absolute;
    left: 50%;
    width: 160px;
    margin-left: -80px;
    height: 1px;
    background-color: #ccc;
}

.article-introduction p{
    color:#999;
    font-size: 1.2em;
    line-height: 1.5;
    padding: 30px 20px;
}






.article-content{

    text-align: justify;
}
.article-content *{
    max-width: 100%;
}
.article-content img {
    max-width:100% !important;
    height: auto !important;
    margin-bottom: 10px;
    margin-top:10px;
    vertical-align: middle;
}
.article-content p {
    line-height: 1.8em;
    font-size: 1.2em;
    color: #333;
	text-indent: 2em;
}
.article-content blockquote{
    padding: 1.6em 2.2em;
    background-color: #efefef;
    position: relative;
}
.article-content blockquote:before,.article-content blockquote:after{
    position: absolute;
    font-family: "iconfont" !important;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -webkit-text-stroke-width: 0.2px;
    font-size: 1.5em;
    color: #ccc;
}
.article-content blockquote:before{
    content:'\e626';
    left: .3em;
    top: .3em;
}
.article-content blockquote:after{
    content:'\e627';
    right: .3em;
    bottom: .3em;
}
.article-content a {
    color: #000;
    font-weight: 500;
    border-bottom: solid 2px #1AB15D;
    padding-bottom: 3px;
    text-decoration: none;
}

.article-content a:hover {
    color: rgba(100,100,100,0.8);
}

.article-content ul,
.article-content ol {
    list-style: inherit;
    margin-left: 2em;
}

.article-content h1,
.article-content h2,
.article-content h3,
.article-content h4,
.article-content h5,
.article-content h6 {
    font-weight: 500;
    margin-top:10px;
    margin-bottom: 10px;
    word-break: normal;
    word-wrap: break-word;

}

.article-content h1{
    font-size: 2em;
    border-bottom: 1px solid #999;
    border-top: solid 1px #999;
    text-align:center;

}

.article-content h2 {
    font-size: 1.7em;
}

.article-content h3 {
    font-size: 1.4em;
    border-left:solid 8px #555;
    padding: 1em;
}

.article-content h4 {
    font-size: 1.3em;
}

.article-content h5 {
    font-size: 1.2em;
}


.article-footer .origin-url{
    font-style: italic;
    padding: 10px 10px 10px 0;
    color: #999;

}

.article-footer .origin-url a {
    color: #0088cc;
    word-break: break-all;
}

.article-content h6 {
    font-size: 1.1em;
}
.like-wrap{
    text-align: center;
    padding-top: 50px;
    padding-bottom: 10px;
    box-sizing: border-box;
}

.like-wrap .like-btn{
    display: inline-block;
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    border: 1px solid #1AB15D;
    color: #1AB15D;
    margin-bottom: 10px;
    font-size: 1.2em;
    transition: all .5s;
    -webkit-transition: all .5s;
}
.like-wrap .like-btn.active{
    background-color: #1AB15D;
}
.like-wrap .like-btn.active{
    color: #fff;
    animation: likeAnim .5s;
    -moz-animation: likeAnim .5s;
    -webkit-animation: likeAnim .5s;
    -o-animation: likeAnim .5s;
}

.like-wrap .like-btn:hover{
    background-color: #00b33b;
    color: #fff;
}
@keyframes likeAnim{
    0%{
        
    }
    60%{
        transform:scale(1.4);
        -webkit-transform:scale(1.4);
        -moz-transform:scale(1.4);
        -o-transform:scale(1.4);
    }
    100%{
        transform:scale(1);
        -webkit-transform:scale(1);
        -moz-transform:scale(1);
        -o-transform:scale(1);
        background-color: #00b33b;
    }
}

@-moz-keyframes likeAnim{
    0%{
        
    }
    60%{
        transform:scale(1.4);
        -webkit-transform:scale(1.4);
        -moz-transform:scale(1.4);
        -o-transform:scale(1.4);
    }
    100%{
        transform:scale(1);
        -webkit-transform:scale(1);
        -moz-transform:scale(1);
        -o-transform:scale(1);
        background-color: #00b33b;
    }
}
@-webkit-keyframes likeAnim{
    0%{
    }
    60%{
        transform:scale(1.4);
        -webkit-transform:scale(1.4);
        -moz-transform:scale(1.4);
        -o-transform:scale(1.4);
    }
    100%{
        transform:scale(1);
        -webkit-transform:scale(1);
        -moz-transform:scale(1);
        -o-transform:scale(1);
        background-color: #00b33b;
    }
}
    
@-o-keyframes likeAnim{
    0%{
    }
    60%{
        transform:scale(1.4);
        -webkit-transform:scale(1.4);
        -moz-transform:scale(1.4);
        -o-transform:scale(1.4);
    }
    100%{
        transform:scale(1);
        -webkit-transform:scale(1);
        -moz-transform:scale(1);
        -o-transform:scale(1);
        background-color: #00b33b;
    }
}
/*相关文章 start*/
.related-posts{
    padding: 10px;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
}
.related-posts .related-item{
    width: 48%;
    margin: 10px 0;
    display: inline-block;
    vertical-align: top;
    box-sizing:border-box;
}
.related-posts .related-item .related-title{
    padding: 5px;
}
.related-posts .related-item:nth-child(odd){
    margin-right: 2%;
}
.related-posts .related-item:nth-child(even){
    margin-left: 2%;
}
.related-posts .img-wrapper{
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 60%;
    overflow: hidden;
    background-repeat: no-repeat;
    background-color: #efefef;
    background-size: cover;
    background-position: 50% 50%;
}
.related-posts .img-wrapper img{
    position: absolute;
    width: 100%;
}
.related-posts .img-wrapper .mask{
    position: absolute;
    display: none;
    height: 100%;
    width: 100%;
    background-color: rgba(255,255,255,0.2);
}
@media (min-width:800px){
    .related-posts .related-item:hover{
        color: #666;
    }
    .related-posts .related-item:hover .img-wrapper .mask{
        display: block;
    }
}
.related-posts .related-item.touched .mask{
    display: block;
}
/*相关文章 end*/
.sec-body{
    padding: 20px 0;
}
.sec-body-title{
    padding: 10px;
    font-size: 1.1em;
    text-align: center;
    border-bottom: 1px dotted #ccc;
}

.aside-article-list-title{
    text-align: right;
    font-size: .7em;
    border-bottom: 1px dotted #ccc;
    color:#999;
}

aside .user-info{
    font-size: 1.5em;
    text-align:center;
    margin-bottom: 20px;
}

aside .user-info .username{
    /*font-size: 1.1em;*/
}
aside .user-info .avatar{
    width: 50px;
    height: 50px;

}



/* 标签列表 start*/
.tag-list{
    padding: 10px;
}
.tag-item{
    display: inline-block;
    margin: 10px  10px 0;
}
.tag-item a{
    display: block;
    padding: 0 8px;
    height: 24px;
    line-height: 24px;
    background-color: #999;
    color: #fff;
    font-size: 13px;
}
.tag-item a:before{
    font-family: "iconfont" !important;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -webkit-text-stroke-width: 0.2px;
    content: '\e621';
    margin-right: 3px;
}
.tag-item a:hover{
    background-color: #666;
}
/* 标签列表 end*/


@media (max-width:800px){
    .article-header .article-title{
        padding: 20px 10px;
    }
    .article-info{
        padding: 10px;
    }

    .article-content{
        padding: 0 10px;
    }
}
.article-content .product-item{
    width: 100%;
    height: 200px;
    margin: 10px 0;
    background-color: #fff;
    border-radius: 3px;
    box-shadow: 0px 0px 2px #aaa;
    position: relative;
    box-sizing: border-box;
}
.product-title{
    font-size: 18px;
    font-weight: 500;
    color: #666;
    padding-top: 10px;
    padding-left: 213px;
}
.product-desc{
    font-size: 15px;
    color: #999;
    margin: 10px 0;
    height: 60px;
    overflow: hidden;
   /* display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp: 3;
text-overflow:ellipsis;*/
    padding-left: 15px;
    padding-right: 10px;
    line-height: 20px;
    position: relative;
}
/*.product-desc::after{content: "..."; position: absolute; bottom: 0; right: 10px; padding-left: 40px;
background: -webkit-linear-gradient(left, transparent, #ffffff 55%);
background: -o-linear-gradient(left, transparent, #ffffff 55%);
background: -moz-linear-gradient(left, transparent, #ffffff 55%);
background: linear-gradient(left, transparent, #ffffff 55%);
}*/
.product-item .pro-label{
    position: absolute;
    left: 0;
    top:10px;
    width: 40px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    color: #fff;
    background-color: #4A90E2;
}
.product-item .img-wrap{
   float: left;
   width: 200px;
   height: 200px;
}
.product-item .img-wrap .product-img{
    max-width: 100%;
    height: auto;
    margin: 0;
}
.product-item .product-checkdetail{
    text-align: right;
    margin: 60px 20px;
}
.product-item .product-checkdetail a{
    border-bottom: none;
    color:#666;
}
.swipe-products{
    margin-top: 10px;
    padding-bottom: 30px;
}
.card{
    display: block;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}
.card .img-wrapper{
    padding-bottom: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 50%;
    background-color: #efefef;
}
.card .info{
    padding: 6px;
}
.card .info .title{
    font-size: 18px;
    line-height: 2;
    font-weight: bold;
    color: #666;
    text-align: center;
    
}
.card .info .introduction{
    font-size: 15px;
    color: #999;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.card .info .like-info{
    color: #1683FB;
    font-size: 1em;
    text-align: center;
}
.card .info .iconfont{
    margin-right: 6px;
    font-size: 1em;
    vertical-align: middle;
}
@media (max-width: 415px){
    .article-content .product-item{
    width: 100%;
    height: 130px;
    margin: 10px 0;
    background-color: #fff;
    border-radius: 3px;
    box-shadow: 0px 0px 2px #aaa;
    position: relative;
    box-sizing: border-box;
}
.product-item .img-wrap{
    width: 130px;
    height: 130px;
}
.product-title{
    font-size: 17px;
    font-weight: 500;
    color: #666;
    padding-top: 10px;
    padding-left: 36%;
}
.product-desc{
    font-size: 15px;
    color: #999;
    margin: 10px 0;
    height: 60px;
    overflow: hidden;
    width: 58%;
    padding-left: 3%;
}
.product-item .product-checkdetail{
    display: none;
}
}
@media (max-width: 375px) {
.product-item .img-wrap{
    width: 130px;
    height: 130px;
}
.product-title{
    padding-left: 40%;
}
.product-desc{
    width: 50%;
    padding-left: 2%;
}
}
