﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "微软雅黑","Microsoft YaHei";
}
/* 红色主题背景 和列表页一致 */
body {
    background: #b81c22;
    line-height: 1.8;
    overflow-x: hidden;
}
/* 动画底层画布 不遮挡内容 */
#snowCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 15px;
    position: relative;
    z-index: 2;
}

/* 面包屑统一样式 */
.breadcrumb {
    background: #fff;
    padding: 12px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 14px;
    color: #666;
    box-shadow: 0 1px 3px rgba(0,0,0,0.03);
}

    .breadcrumb a {
        color: #b81c22;
        text-decoration: none;
    }

    .breadcrumb span {
        color: #999;
        margin: 0 5px;
    }

.article {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

    .article h1 {
        font-size: 24px;
        margin-bottom: 20px;
        text-align: center;
        color: #333;
    }

    .article img {
        max-width: 100%;
        margin: 20px auto;
        display: block;
        border-radius: 8px;
    }

    .article p {
        font-size: 16px;
        text-indent: 2em;
        margin-bottom: 18px;
        color: #333;
    }

.back {
    text-align: center;
    margin-top: 30px;
}

    .back a {
        padding: 10px 20px;
        background: #b81c22;
        color: #fff;
        border-radius: 5px;
        text-decoration: none;
    }

/* 底部固定分享 */
.share {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: white;
    padding: 10px;
    text-align: center;
    box-shadow: 0 -2px 5px rgba(0,0,0,0.05);
    z-index: 3;
}

    .share a {
        margin: 0 15px;
        color: #b81c22;
        text-decoration: none;
    }

/* 底部备案 */
.footer {
    background: #fff;
    padding: 25px 15px;
    text-align: center;
    font-size: 14px;
    color: #666;
    border-top: 1px solid #f0f0f0;
    margin-top: 40px;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

    .footer a {
        color: #666;
        text-decoration: none;
    }
