#topics .postBody {
    font-size: 14px;
}
#topics .postBody p {
    margin: 5px 0;
    padding-left: 10px;
}
#topics .postBody h1 {
    font-size: 24px;
}
#topics .postBody h2 {
    font-size: 20px;
    line-height: 20px;
}
#topics .postBody h3 {
    font-size: 16px;
    line-height: 16px;
}

/* 代码块字体，颜色，背景色控制 */
.cnblogs_code {
    background: rgb(241, 251, 255);
    border-radius: 5px;
}
.cnblogs_code pre, .cnblogs_code pre span {
    font-family: sans-serif;
    font-size: 14px!important;
}
#topics .postBody pre {
    overflow-x: auto;
    white-space: pre;
    background-color: transparent;
    font-family: sans-serif;
    color: rgb(55, 56, 55);
    font-size: 14px!important;
}
#topics .postBody .cnblogs_code_hide pre, #topics .cnblogs_code_hide pre span {
    font-family: sans-serif;
    font-size: 12px!important;
    color: rgb(55, 56, 55);
}
#topics .cnblogs_code div, #topics .cnblogs_code_hide div {
    background-color: transparent;
}
/* 设置代码块view code按钮的样式 */
.cnblogs_code .cnblogs_code_collapse {
    color: rgb(55, 56, 55);
    font-weight: bold;
    background-color: white;
    padding: 5px 10px 2px 10px;
    vertical-align: text-top;
    border-radius: 5px;
    cursor: pointer;
}
.cnblogs_code .cnblogs_code_collapse:hover {
    background-color: rgba(0, 162, 255, 0.973);
    color: white;
}
	/*设置滚动条样式
::-webkit-scrollbar 滚动条整体部分
::-webkit-scrollbar-thumb  滚动条里面的小方块，能向上向下移动（或往左往右移动，取决于是垂直滚动条还是水平滚动条）
::-webkit-scrollbar-track  滚动条的轨道（里面装有Thumb）
::-webkit-scrollbar-button 滚动条的轨道的两端按钮，允许通过点击微调小方块的位置。
::-webkit-scrollbar-track-piece 内层轨道，滚动条中间部分（除去）
::-webkit-scrollbar-corner 边角，即两个滚动条的交汇处
::-webkit-resizer 两个滚动条的交汇处上用于通过拖动调整元素大小的小控件
*/
::-webkit-scrollbar {
	width: 6px;
	height: 6px;
}
::-webkit-scrollbar-thumb{
	background: rgba(84, 164, 255, 0.4);
	border-radius:3px;
}
::-webkit-scrollbar-thumb:hover{
	background: rgba(84, 164, 255, 0.8);
}
/* 签名样式 */
#topics .postBody #MySignature {
    border: 1px solid lightgray;
    border-radius: 5px;
    background: rgb(241, 251, 255);
    padding: 4px 2px 2px 5px;
    font-size: 14px;
}
#topics .postBody .tb {
    width: 100%;
}
#topics .postBody .tb tr td{
    text-align: center;
    padding: 4px;
}
#topics .postBody .tb tr:first-child{
    background-color: rgb(241, 251, 255);
    text-align: center;
    font-size: 14px;
    font-weight: bold;
    user-select: none;
}
#topics .postBody .tb tr:first-child td{
    padding: 8px 4px;
} 