@charset "utf-8";

/* header logo */
.header .h_logo {
    float: left;
    height: 0.92rem;
    width: 3.4rem;
    padding-left: 1.14rem;
    background: url("../images/1731238199168770.gif") no-repeat left top;
    margin: 0.11rem 0 0 0.21rem;
    background-size: 0.92rem 0.92rem;
}

/* 返回按钮 */
.back-bar {
    position: fixed;
    top: 1.14rem;
    left: 0;
    width: 100%;
    max-width: 750px;
    height: 0.8rem;
    background: #fff;
    border-bottom: 1px solid #e8e8e8;
    z-index: 90;
    display: flex;
    align-items: center;
    padding: 0 0.3rem;
    box-sizing: border-box;
}
.back-bar a {
    display: inline-flex;
    align-items: center;
    font-size: 0.28rem;
    color: #3f3f3f;
    line-height: 0.8rem;
}
.back-bar a::before {
    content: "";
    display: inline-block;
    width: 0.18rem;
    height: 0.18rem;
    border-left: 2px solid #3f3f3f;
    border-bottom: 2px solid #3f3f3f;
    transform: rotate(45deg);
    margin-right: 0.15rem;
}

/* 文章详情 */
.article-wrap {
    width: 6.9rem;
    margin: 2.3rem auto 0;
    padding: 0 0.3rem 0.4rem;
}

.article-title {
    font-size: 0.4rem;
    font-weight: 700;
    color: #282828;
    line-height: 0.6rem;
    margin: 0 0 0.25rem 0;
}

.article-meta {
    text-align: center;
    padding-bottom: 0.25rem;
    border-bottom: 1px solid #e8e8e8;
    margin-bottom: 0.35rem;
}

.article-meta span {
    font-size: 0.22rem;
    color: #999;
    margin-right: 0.35rem;
}

.article-meta .tag {
    display: inline-block;
    font-size: 0.2rem;
    color: #ecb267;
    border: 1px solid #ecb267;
    border-radius: 0.06rem;
    padding: 0 0.12rem;
    line-height: 0.36rem;
    vertical-align: middle;
}

.article-content {
    font-size: 0.28rem;
    color: #3f3f3f;
    line-height: 0.52rem;
}

.article-content p {
    margin: 0 0 0.28rem 0;
    text-align: justify;
}

.article-content img {
    display: block;
    max-width: 100%;
    margin: 0.3rem auto;
    border-radius: 0.06rem;
}

.article-content h3 {
    font-size: 0.32rem;
    font-weight: 700;
    color: #282828;
    margin: 0.4rem 0 0.15rem 0;
}

/* 更多文章 */
.more-articles {
    margin-top: 0.6rem;
    padding-top: 0.35rem;
    border-top: 1px solid #e8e8e8;
}

.more-articles-title {
    font-size: 0.3rem;
    font-weight: 700;
    color: #282828;
    margin-bottom: 0.25rem;
    padding-left: 0.15rem;
    border-left: 0.06rem solid #ecb267;
    line-height: 0.4rem;
}

.more-articles-list a {
    display: flex;
    align-items: center;
    width: 100%;
    height: 0.8rem;
    font-size: 0.26rem;
    color: #3f3f3f;
    border-bottom: 1px dashed #d9d9d9;
    text-decoration: none;
    box-sizing: border-box;
}

.more-articles-list a span {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.more-articles-list a font {
    flex-shrink: 0;
    font-size: 0.22rem;
    color: #b3b3b3;
    margin-left: 0.15rem;
}

/* PC端适配 */
html {
    background: #f5f5f5;
}
@media screen and (min-width: 751px) {
    body {
        box-shadow: 0 0 20px rgba(0,0,0,0.08);
        border-left: 1px solid #e8e8e8;
        border-right: 1px solid #e8e8e8;
    }
    .header {
        left: 50%;
        transform: translateX(-50%);
    }
    .footer {
        left: 50%;
        transform: translateX(-50%);
    }
    .back-bar {
        max-width: 750px;
        left: 50%;
        transform: translateX(-50%);
    }
    #p-nav {
        left: 50%;
        transform: translateX(-50%);
    }
    #p-nav-but {
        right: calc(50% - 370px);
    }
}