/* 文章页专用样式 */
.view-content {
    background: #fff;
    margin-bottom: 10px;
}

.view-content .title {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    line-height: 1.4;
    margin-bottom: 10px;
}

.view-content .t {
    font-size: 12px;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.5;
}

.view-content .content {
    color: #333;
    line-height: 1.6;
    font-size: 14px;
}

.view-content .post-content {
    margin-bottom: 20px;
}

.view-content .post-content p {
    margin-bottom: 10px;
    text-indent: 1em;
}

.view-content .post-content img {
    max-width: 100%;
    height: auto;
    margin: 10px 0;
    display: block;
}

/* 文章导航样式 */
.article-list-box {
    background: #fff;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 3px;
    overflow: hidden;
}

.article-list-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.article-list-box li {
    padding: 10px 15px;
    border-bottom: 1px solid #eee;
    font-size: 14px;
    color: #333;
}

.article-list-box li:last-child {
    border-bottom: none;
}

.article-list-box li.no-border {
    border-bottom: none;
}

.article-list-box li.no-bg {
    background: none;
}

.article-list-box .sxlj {
    color: #0066cc;
    text-decoration: none;
}

.article-list-box .sxlj:hover {
    text-decoration: underline;
}

/* 相关文章样式 */
.list {
    background: #fff;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 3px;
    overflow: hidden;
}

.list .title {
    background: #fceed3;
    color: #935422;
    padding: 8px 10px;
    font-weight: bold;
    border-bottom: 1px solid #e0c09a;
}

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

/* .list li {
    padding: 10px 15px;
    border-bottom: 1px solid #eee;
    font-size: 14px;
} */

.list li:last-child {
    border-bottom: none;
}

.list li a {
    color: #333;
    text-decoration: none;
}

.list li a:hover {
    color: #0066cc;
}

/* 推广内容样式 */
.box {
    background: #fff;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 3px;
    overflow: hidden;
}

.title2 {
    float: left;
    width: 100%;
    padding: 8px 0;
    text-indent: 10px;
    font-weight: bold;
    background: #fceed3;
    color: #935422;
    border-bottom: #e0c09a 1px solid;
}

.hf ul {
    list-style: none;
    padding: 10px;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
}

.hf li {
    width: 50%;
    padding: 5px;
    font-size: 12px;
}

.hf li a {
    color: #333;
    text-decoration: none;
    display: block;
    border: 1px solid #eee;
    text-align: center;
    border-radius: 3px;
}

.hf li a:hover {
    background: #f5f5f5;
    color: #0066cc;
}

/* 当前位置导航 */
.cur-pos {
    background: #f5f5f5;
    padding: 10px 15px;
    border-bottom: 1px solid #ddd;
    font-size: 12px;
    color: #666;
}

.cur-pos .icon-home {
    display: inline-block;
    width: 16px;
    height: 16px;
    background: url('/images/icon_home.png') no-repeat;
    background-size: contain;
    vertical-align: middle;
    margin-right: 5px;
}

.cur-pos .left {
    float: left;
}

.cur-pos .t a {
    color: #666;
    text-decoration: none;
}

.cur-pos .t a:hover {
    color: #0066cc;
}

/* 清除浮动 */
.clearfix:after {
    content: "";
    display: table;
    clear: both;
}

.clearfix {
    *zoom: 1;
} 