@font-face {
    font-family: 'OPPOSans';
    src: url('../fonts/OPPOSans-R.ttf');
}
@font-face {
    font-family: 'OPPOSans L';
    src: url('../fonts/OPPOSans-L.ttf');
}
@font-face {
    font-family: 'OPPOSans B';
    src: url('../fonts/OPPOSans-B.ttf');
}
*{
    margin: 0;
    font-family: 'OPPOSans';
    vertical-align: top;
    word-break: break-all;
}
body{
    padding: 0;
    margin: 0;
}
a{
    text-decoration: none;
    color: rgb(46, 46, 46);
}
.header{
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 50px;
    padding: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    background-color: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(5px);
    z-index: 100;
}
.header img{
    height: 100%;
}
.content{
    position: relative;
    width: calc(90% - 40px);
    left: 5%;
    margin: 0;
    margin-top: 70px;
    padding: 20px;
    height: auto;
    min-height: calc(100% - 110px);
    display: block;
}
.content img{
    width: 100%;
    margin: 10px 0;
}
.content b, .content h1{
    font-family: 'OPPOSans B';
}
.content b{
    color: #aa0004;
}
.content x{
    border-bottom: 2px #aa0004 solid;
}
.content xb{
    font-size: 10px;
    vertical-align: bottom;
}
.content sb{
    font-size: 10px;
    vertical-align: top;
}
.content .title{
    margin-bottom: 20px;
}
.content .title b{
    color: black !important;
}
.content .sf{
    font-size: 13px;
    color: rgb(75, 75, 75);
}
.content .ilb{
    display: inline-block;
    height: auto;
}
.content .hormar{
    margin-left: 10px;
}
.content .vermar{
    margin: 10px 0;
}
.content .note{
    background-color: rgb(208, 214, 154);
    padding: 10px;
    width: calc(100% - 24px);
    margin: 10px 0;
    border-radius: 2px;
    border-left: 4px rgb(122, 131, 40) solid;
}
.content .img{
    height: 20px;
    width: auto;
    margin: 0;
}
.lbd{
    border-left: 2px solid black;
    padding-left: 10px;
}
.rbd{
    border-right: 2px solid black;
    padding-right: 10px;
}
.img40{
    width: 40% !important;
    margin-left: 30% !important;
}
.post{
    width: calc(100% - 60px);
    padding: 30px;
    margin: 20px 0;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.2s ease;
}
.post h3{
    color: #aa0004;
}
.post:hover{
    background-color: rgb(233, 233, 233);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.footer{
    position: relative;
    bottom: 0;
    margin-top: 20px;
    width: calc(100% - 40px);
    padding: 40px 20px;
    text-align: center;
    word-break: break-all;
    background-color: rgb(233, 233, 233);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}