/* @article-edit */
.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%;
    }
}

.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: 0.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;
    border-radius: 4px;
}
.article-content p {
    /* text-indent: 2em; */
    font-size: 16px;
    font-weight: 400;
    color: #333333;
    line-height: 28px;
}
.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: 0.3em;
    top: 0.3em;
}
.article-content blockquote:after {
    content: '\e627';
    right: 0.3em;
    bottom: 0.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: 600;
    margin-top: 10px;
    margin-bottom: 10px;
    word-break: normal;
    word-wrap: break-word;
}

.article-content h1 {
    font-size: 24px;
    font-weight: 600;
    color: #262626;
    line-height: 30px;
}

.article-content h2 {
    font-size: 22px;
    font-weight: 600;
    color: #262626;
    line-height: 28px;
}

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

.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 0.5s;
    -webkit-transition: all 0.5s;
}
.like-wrap .like-btn.active {
    background-color: #1ab15d;
}
.like-wrap .like-btn.active {
    color: #fff;
    animation: likeAnim 0.5s;
    -moz-animation: likeAnim 0.5s;
    -webkit-animation: likeAnim 0.5s;
    -o-animation: likeAnim 0.5s;
}
@media (min-width: 800px) {
    .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;
    }
}

.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: 0.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*/

/* 标签列表 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%;
    }
}

/* 专题选择样式 start */
.relativedTopic {
    /* position: relative;
    margin-bottom: 20px; */
}

.relativedTopic .input-control {
    position: relative;
}

.relativedTopic .icon-search {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    cursor: pointer;
}

.relativedTopic .relative-topic-add {
    display: inline-block;
    margin-left: 10px;
    color: #1ab15d;
    text-decoration: none;
    font-size: 14px;
}

.relativedTopic .relative-topic-add:hover {
    color: #00b33b;
}

.topic-block {
    display: none;
    position: absolute;
    width: 100%;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    margin-top: 5px;
}

.topic-container {
    max-height: 400px;
    overflow-y: auto;
}

.topic-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.topic-list .topic-item {
    padding: 12px 15px;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
    transition: background-color 0.2s;
}

.topic-list .topic-item:hover {
    background-color: #f5f5f5;
}

.topic-list .topic-item.selected {
    background-color: #e6f7ff;
}

.topic-list .topic-item .topic-title {
    font-size: 14px;
    color: #333;
    font-weight: 500;
    margin-bottom: 5px;
}

.topic-list .topic-item .topic-desc {
    font-size: 12px;
    color: #999;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.topic-list .topic-item .topic-actions {
    margin-top: 8px;
}

.topic-list .topic-item .topic-btn {
    display: inline-block;
    padding: 4px 12px;
    margin-right: 8px;
    font-size: 12px;
    color: #fff;
    background-color: #1ab15d;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    text-decoration: none;
}

.topic-list .topic-item .topic-btn:hover {
    background-color: #00b33b;
}

.topic-list .topic-item .topic-btn.cancel {
    background-color: #ff4d4f;
}

.topic-list .topic-item .topic-btn.cancel:hover {
    background-color: #d9363e;
}

.topic-block .msg-block {
    display: none;
    padding: 20px;
    text-align: center;
    color: #999;
}

.topic-block-foot {
    padding: 10px 15px;
    border-top: 1px solid #f0f0f0;
    text-align: right;
}

.topic-block-foot a {
    display: inline-block;
    padding: 6px 15px;
    margin-left: 10px;
    font-size: 14px;
    border-radius: 3px;
    cursor: pointer;
    text-decoration: none;
}

.topic-block-foot .topicConfirm {
    color: #fff;
    background-color: #1ab15d;
}

.topic-block-foot .topicConfirm:hover {
    background-color: #00b33b;
}

.topic-block-foot .topicCancel {
    color: #666;
    background-color: #f0f0f0;
}

.topic-block-foot .topicCancel:hover {
    background-color: #e0e0e0;
}

.topicShow {
    margin-bottom: 20px;
}

.topicShowItem {
    list-style: none;
    padding: 0;
    margin: 0;
}

.topicShowItem .topic-item {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    margin-bottom: 10px;
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
}

.topicShowItem .topic-item .topic-title {
    flex: 1;
    font-size: 14px;
    color: #333;
    font-weight: 500;
}

.topicShowItem .topic-item .topic-move {
    display: flex;
    gap: 8px;
}

.topicShowItem .topic-item .topic-move a {
    padding: 4px 10px;
    font-size: 12px;
    color: #666;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 3px;
    cursor: pointer;
    text-decoration: none;
}

.topicShowItem .topic-item .topic-move a:hover {
    color: #1ab15d;
    border-color: #1ab15d;
}

.topicShowItem .topic-item .topic-move .delete {
    color: #ff4d4f;
}

.topicShowItem .topic-item .topic-move .delete:hover {
    color: #d9363e;
    border-color: #ff4d4f;
}
/* 专题选择样式 end */

/*appweb 评论start*/
.comment-list-header {
    font-size: 1.2em;
    font-weight: bold;
    border-bottom: 1px solid #aaa;
    padding: 10px;
}
.comment-item .comment-avatar {
    float: left;
    width: 15%;
    text-align: center;
}
.comment-item .comment-avatar img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}
.comment-item .comment-info {
    float: left;
    width: 85%;
}
.comment-item .comment-header {
    color: #999;
}
.comment-item .content {
    margin: 15px 0;
    color: #666;
    font-size: 1em;
    white-space: pre-wrap;
    padding-right: 10px;
}
.comment-item .updatetime {
    color: #999;
}
.comment-item {
    width: 100%;
    padding-bottom: 10px;
    border-bottom: 1px solid #ddd;
    margin-top: 10px;
}
.comment-action {
    text-align: center;
    padding: 15px;
}
.comment-action .iconfont:before {
    margin-right: 5px;
}
.more-comments {
    text-align: center;
    padding: 15px;
    border-bottom: 1px solid #aaa;
}
/*appweb 评论end*/
