body {
    background-image: url(https://img1.wallspic.com/previews/8/8/8/0/7/170888/170888-de_fang_zi-chuang_kou-zhu_zhai_qu-mu-wu_ding-x750.jpg);
    background-attachment: fixed;
    background-size: cover;
}
#home {
    margin: 0 auto;
    width: 75%;
    min-width: 950px;
    background-color: #fff;
    /* padding: 30px; */
    margin-top: 60px;
    margin-bottom: 50px;
    opacity: 0.8; // 透明度
}
#blogTitle h1 a {
    color: 	#1E90FF;
    font-family:STXingkai;
    font-size: 40px;
}
#blogTitle h2 {
    font-weight: normal;
    font-size: 20px;
    /* font-size: .928571429rem; */
    line-height: 1.846153846;
    color: darkred;
    float: left;
    /* margin-top: 5px; */
    font-family:STXingkai;
}
#navigator {
    border: 2px solid #ededed;
    /* border-bottom: 2px solid #ededed; */
    /* border-top: 2px solid #ededed; */
    height: 50px;
    clear: both;
    margin-top: 20px;
    /* background-image: linear-gradient(to right, #00fff0,#0083fe); */
}
#navList li {
    float: left;
    margin: 0 20px 0 0;
}
#navList a:active {
    color: #6a6a6a;
    font-weight: bold;
}
#navList a {
    display: block;
    width: 5em;
    font-size: 16px;
    height: 22px;
    float: left;
    text-align: center;
    padding-top: 13px;
}
.blogStats {
    float: right;
    color: #808080;
    font-size: 14px;
    margin-top: 15px;
    margin-right: 10px;
    text-align: right;
}
.day {
    min-height: 10px;
    _height: 10px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    position: relative;
    border-bottom: 3px solid #ededed; 
    border-right: 3px solid #ededed;
}

/* 雪花效果 */
#snowflake-container {
    position: fixed; /* 固定定位 */
    top: 0;
    left: 0;
    width: 100vw; /* 覆盖整个视口宽度 */
    height: 100vh; /* 覆盖整个视口高度 */
    pointer-events: none; /* 防止雪花干扰点击 */
    z-index: -1; 
}
.snowflake {
    position: absolute;
    top: -10px; /* 初始位置在屏幕上方 */
    width: 10px; /* 雪花大小 */
    height: 10px;
    background-color: white; /* 雪花颜色 */
    border-radius: 50%; /* 圆形 */
    box-shadow: 
        0 0 5px white, /* 发光效果 */
        0 0 10px white;
    animation: floatDown 5s infinite linear; /* 动画持续5秒，无限循环 */
}
@keyframes floatDown {
    0% {
        top: -10px;
        opacity: 1;
        transform: translateX(0) rotate(0deg); /* 初始状态 */
    }
    100% {
        top: 100vh; /* 移动到屏幕底部 */
        opacity: 0;
        transform: translateX(50px) rotate(360deg); /* 结束状态：水平偏移和旋转 */
    }
}