html{
    scrollbar-width: thin;
}

html::-webkit-scrollbar {
    width: 8px;
    background-color: transparent;
}
  
html::-webkit-scrollbar-track {
    border-radius: 10px;
    background-color: transparent;
}
  
html::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 8px rgba(0, 0, 0, .5);
    background-color: transparent;
}
/* 修复 katex 公式过长导致超出屏幕 */
.katex {
    min-height: 100%;
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: thin;
}

.katex::-webkit-scrollbar {
    width: 8px;
    background-color: transparent;
}
  
.katex::-webkit-scrollbar-track {
    border-radius: 10px;
    background-color: transparent;
}
  
.katex::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 8px rgba(0, 0, 0, .5);
    background-color: transparent;
}