body {
    background-color: rgb(235, 238, 242);
    padding: 1em;
    margin: 0;
    color: #aaa;
}
.content {
    position: relative;
    padding: .8em .8em 1.5em;
    background-color: #fff;
    border-radius: 0.5em;
}
textarea {
    display: block;
    width: 100%;
    height: calc(100vh - 5.5em);
    line-height: 1.6;
    font-family: 微软雅黑;
    font-size: 1em;
    padding: 0;
    border: none;
    outline: none;
}

.notice {
    position: absolute;
    bottom: 0;
    right: .5em;
    font-size: .8em;
}

.footer {
    position: fixed;
    left: 0;
    right: 0;
    bottom: .5em;
    font-size: .9em;
    text-align: center;
    cursor: pointer;
}

*::selection {
    --bg: rgba(88, 86, 213, 0.28) !important;
    background: var(--bg);
    color: inherit;
}

*::-moz-selection {
    background: var(--bg);
    color: inherit;
}

*::-webkit-selection {
    background: var(--bg);
    color: inherit;
}


/* 设置滚动条轨道的颜色 */
::-webkit-scrollbar-track {
    background-color: #f5f5f5;
    border-radius: 5px;
}

/* 设置滚动条滑块的颜色 */
::-webkit-scrollbar-thumb {
    background-color: #aaaaaa;
    border-radius: 5px;
}

/* 设置滚动条宽度 */
::-webkit-scrollbar {
    width: 5px;
}