html, body {
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-y: overlay;
}
::-webkit-scrollbar {
    width: 6px;
    height: 5px;
    background: transparent;
}

::-webkit-scrollbar-button {
    display: none;
}
::-webkit-scrollbar-thumb {
    background: rgb(194,202,204);
    border-radius: 2px;
    transition: .2s;
}

/* 选中 */

/* ::selection {
    background: #e6e6e6;
    color: #000;
} */

.container {
    height: 100%;
    width: 100%;
    display: flex;
    /* justify-content: center; */
    align-items: center;
}

/* 内容文本 */

.content {
    max-width: 100%;
    padding: 25px;
    padding-left: 35px;
    /* 默认是 1rem，通过 JavaScript 修改 */
    font-size: 2.5rem;
    font-weight: 500;
    word-break: break-all;
    font-family: 'Noto Sans SC', sans-serif;
    margin-bottom: 30px;
}

.mainContent {
    padding-bottom: 50px;
}

.pg2main {
    max-width: 700px;
    margin: 20px auto;
    width: 80%;
    background-color: #ffffff;
    padding: 10px 20px;
    border-radius: 2px;
    -webkit-box-shadow: 0 3px 1px -2px rgb(0 0 0 / 20%), 0 2px 2px 0 rgb(0 0 0 / 14%), 0 1px 5px 0 rgb(0 0 0 / 12%);
    box-shadow: 0 3px 1px -2px rgb(0 0 0 / 20%), 0 2px 2px 0 rgb(0 0 0 / 14%), 0 1px 5px 0 rgb(0 0 0 / 12%)
}
.sPage {
    /* margin-bottom: 30px; */
    background-color: #f2f5f8;
    padding: 30px 0;
}
code {
    padding: 2px 6px;
    color: #c7254e;
    background-color: #f7f7f9;
    border-radius: 2px;
    font-family: Consolas,Courier,'Courier New',monospace;
    font-weight: 400;
    font-style: normal;
}
.ct {
    font-family: 'Noto Sans SC', sans-serif;
    padding: 1.15rem 1.8rem;
}
.ct p {
    position: relative;
    padding-left: 3px;
    font-size: 15px;
    line-height: 24px;
}

.ct a {
    color: #ff4081;
    position: relative;
    display: inline-block;
    overflow: hidden;
    text-decoration: none;
    vertical-align: top;
    outline: 0;
}
.ct a::before {
    position: absolute;
    top: auto;
    bottom: 1px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #ff4081;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transition: all .2s;
    transition: all .2s;
    content: ' ';
}
/* .ct a:hover {
    -webkit-transform: scaleX(1); 
    transform: scaleX(1);
} */

.mdui-typo a:focus::before, .mdui-typo a:hover::before {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}

.pg2main .card-title h2 {
    margin-bottom: 0;
}
.pg2main .card-title span {
    opacity: 0.75;
    font-size: 14px;
}
.pg2main .card-title {
    margin-bottom: 20px;
}
.pg2main .list a {
    color: inherit;
    text-decoration: none;
    width: 100%;
}
.pg2main .list .item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    min-height: 48px;
    padding: 0 16px;
    text-decoration: none;
    cursor: pointer;
    -webkit-transition: background-color .3s cubic-bezier(.4,0,.2,1);
    transition: background-color .3s cubic-bezier(.4,0,.2,1);
}
.pg2main .list .item:hover {
    background-color: #f2f5f8;
}
.loading {
    font-size: 1.2rem;
    text-align: center;
}