html {
    color: #333333;
    font-size: 16px;
    background-color: #fbf9f4;
    scroll-behavior: smooth;
}

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
fieldset,
input,
textarea,
p,
blockquote,
th,
td {
    margin: 0;
    padding: 0;
    -webkit-box-sizing:border-box;
    -moz-box-sizing:border-box;
    box-sizing:border-box;
    font-family: "PingFang SC", "Hiragino Sans GB", "Heiti SC", "Microsoft YaHei", "WenQuanYi Micro Hei";
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

fieldset,
img {
    border: 0;
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
    font-style: normal;
    font-weight: normal;
}

ol,
ul {
    list-style: none;
    height: 100%;
}

caption,
th {
    text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: 100%;
    font-weight: normal;
}

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

button {
    border: none;
    outline: none;
}

body{
    padding-bottom: 50px;
}
.b-header{
    width: 100%;
    height: 60px;
    line-height: 60px;
    padding-left: 1rem;
    padding-right: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px dashed rgb(212, 210, 205);
}
.b-logo{
    font-size: 26px;
    font-weight: bold;
}
.b-logo span{
    background-color: rgb(249, 233, 193);
}
.b-time{
    font-size: 14px;
    opacity: 0.75;
}
.b-content{
    width: 100%;
    height: auto;
    padding-left: 2rem;
    padding-right: 2rem;
}

.b-box{
    padding-top: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px dashed rgb(212, 210, 205);
}
.b-title{
    height: 50px;
    line-height: 50px;
    font-size: 20px;
    font-weight: bold;
    position: relative;
    margin-bottom: 20px;
}
.b-title::after{
    content:"";
    width: 3rem;
    height: 3px;
    position: absolute;
    bottom: 2px;
    left: 0;
    background-color: rgb(240, 168, 72);
}
.b-link{
    line-height: 36px;
    color: #f0a848;
}
.b-link a{
    color: #f0a848;
}

.b-footer {
    width: 100%;
    height: 50px;
    line-height: 50px;
    text-align: center;
    position: fixed;
    bottom: 0;
    font-size: 14px;
    background-color: #fbf9f4;
}