* {
    -webkit-transition: all 1s;
}

.selector {
    color: #E69F0F;
}

.comment {
    color: #857F6B;
    font-style: italic;
}

.key {
    color: #64D5EA;
}

.value {
    color: #BE84F2;
}

.pre_work-text {
    overflow: hidden;
    background: rgb(48, 48, 48);
    border: 1px solid #ccc;
    max-height: 94.5%;
    width: 49%;
    font-size: 14px;
    font-family: monospace;
    padding: 10px 10px 20px;
    box-shadow: -4px 4px 2px 0 rgba(0, 0, 0, 0.3);
    white-space: pre-wrap;
    outline: 0;
    -webkit-transform: rotateY(10deg);
    -webkit-transform-origin: left;
}

.pre_work-text a {
    color: white;
}

.px {
    color: #F92772;
}

.writecode {
    overflow: hidden;
    white-space: nowrap;
    animation: coder 2s;
    -webkit-animation: coder 2s;
}

@keyframes coder {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

#content {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 20px;
}


/*定义滚动条样式*/


/*定义滚动条高宽及背景 高宽分别对应横竖滚动条的尺寸*/

 ::-webkit-scrollbar {
    width: 0.01rem;
    height: 0.01rem;
    background-color: #fff;
}


/*定义滚动条轨道 内阴影+圆角*/

 ::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(255, 255, 255, 0.3);
    border-radius: 0.1rem;
    background-color: #fff;
}


/*定义滑块 内阴影+圆角*/

 ::-webkit-scrollbar-thumb {
    border-radius: 0.1rem;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
    background-color: #fff;
}