body {
    background: url("../images/bg.jpg");
    background-attachment:fixed;
    background-size: cover;
}

/*设置内间距*/
.m-padded-mini {
    padding: 0.3em !important;
}
.m-padded{
    padding: 1.5em !important;
}
.m-padded-lr-responsive {
    padding-left: 1em !important;
    padding-right: 1em !important;
}
.m-padded-tb-mini {
    padding-top: 0.1em !important;
    padding-bottom: 0.1em !important;
}
.m-padded-tb {
    padding-top: 1em !important;
    padding-bottom: 1em !important;
}
.m-padded-tb-large {
    padding-top: 2em !important;
    padding-bottom: 2em !important;
}
.m-padded-tb-huge {
    padding-top: 3em !important;
    padding-bottom: 3em !important;
}
.m-padded-tb-massive {
    padding-top: 4em !important;
    padding-bottom: 4em !important;
}

/*设置外间距*/
.m-margin-tb-small {
    margin-top: 0.5em !important;
    margin-bottom: 0.5em !important;
}
.m-margin-tb-large {
    margin-top: 2em !important;
    margin-bottom: 2em !important;
}
.m-margin-lr {
    margin-left: 1em !important;
    margin-right: 1em !important;
}
.m-margin-lr-small {
    margin-left: 0.5em !important;
    margin-right: 0.5em !important;
}
.m-margin-small {
    margin: 0.5em !important;
}
.m-margin-b-tiny {
    margin: 0.3em !important;
}

/*字体效果*/
.m-font-lighter{
    font-weight: lighter !important;
}
.m-font-bold{
    font-weight: bold !important;
}
.m-text-space{/*文字间距*/
    letter-spacing: 1px !important;
}
.m-text-line-height{/*行高*/
    line-height: 2;
}
.m-text-grey{
    color: grey !important;
}

/*显示效果*/
.m-inline-block{
    display: inline-block !important;
}
.m-text-black{
    color: black !important;
}
.m-reply{
    color: #00C5CD !important;
    font-weight : 900 !important;
}
.m-container{
    max-width: 80em;
    margin: auto;
}
.m-container-small{
    max-width: 65em;
    margin: auto;
}
.m-container-box{
    max-width: 30em !important;
    margin: auto !important;
}
.m-box-shadow{
    -webkit-box-shadow: 0 3px 6px rgba(1,1,1,2) !important;
    box-shadow: 0 3px 6px rgba(1,1,1,2) !important;
}
.m-box-transparent{
    background-color: rgba(255,255,255,0.9) !important;
}
tr.author {
    background-color: #ffffff00 !important;
}
tr:nth-child(even) {
    background-color: #f3f7fd;
}
/* h4标签用作引用的框架 */
table.quote{
    margin:auto;
}
table.quote td{
    border:0;
}
td.author{
    font-family: PingFang SC, Verdana, Helvetica Neue, Microsoft Yahei, Hiragino Sans GB, Microsoft Sans Serif, WenQuanYi Micro Hei, sans-serif;
    text-align:right;
    font-size: 0.7em;
    right: 3em;
    font-weight: 400;
    margin-left: 10em;
    margin-top: 2em;
}
h4 .quote.icon{
    position:relative;
    color:#77a6f0;
}
h4 .quote.left.icon{
    top:-0.5em;
}
h4 .quote.right.icon{
    bottom:-0.5em;
}
/*行内code样式优化*/
p code, li code{
    background: #ff000026;
    margin: 0 2px 0 2px;
    padding: 1px 3px 1px 3px;
    border-radius: 2px;
}
/*构件位置*/
.m-position-top-right{
    position: absolute;
    top: 0;
    right: 0;
}
.m-position-fixed{
    position: fixed !important;
    z-index: 1;
}
.m-position-right-bottom{
    bottom: 5vh !important;
    right: 2vw !important;
}

/*目录样式*/
ol.js-toc {
    padding-inline-start: 20px;
}

/*特殊操作*/
.m-mobile-show{
/*电脑端隐藏*/display: none !important;
}

/*手机端显示处理，注意此处@media代码应放在最下面*/
@media screen and (max-width: 768px){
.m-mobile-hide{
    display: none !important;
}
.m-mobile-show{
    display: block !important;
}
.m-padded-lr-responsive {
    padding-left: 0 !important;
    padding-right: 0 !important;
}
.m-mobile-wide{
    width: 100%;
}
}

