* {
    padding: 0;
    margin: 0;
    font-weight: normal;
    box-sizing: border-box;
    outline: none;
    font-family: 'microsoft yahei';
}

body {
    font-size: 16px;
    background: rgba(0, 0, 0, .05);
}

ul,
ol {
    list-style: none;
}

small {
    color: rgba(0, 0, 0, 0.6);
    font-size: 13px;
}

strong {
    font-weight: bold;
}

a,
a:hover,
a:focus,
a:active {
    text-decoration: none;
    outline: none;
    color: rgba(0, 0, 0, .9);
}

header,
footer,
section {
    display: block;
    clear: both;
}

select {
    border: 0;
    background: rgba(0, 0, 0, .03);
}

::placeholder {
    font-size: 14px;
}

input {
    border: 1px solid rgba(0, 0, 0, .9);
    padding: 2px 5px;
    font-size: 16px;
}

input,
textarea,
select {
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 2px;
    padding: 2px 5px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
    -webkit-transition: all .1s ease-out;
    transition: all .2s ease-out;
    background: rgba(255, 255, 255, 1);
}


select:hover,
textarea:hover,
input:hover {
    background: rgba(255, 255, 255, 1);
    border-color: rgba(0, 0, 0, 1);
    outline: 3px solid rgba(0, 0, 0, .1);
}

select {
    border: 1px solid rgba(200, 200, 200);
    border-radius: 3px;
    height: 30px;
}

table {
    top: 0;
    left: 0;
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    background: rgba(255, 255, 255, 1);
}

table td {
    position: relative;
    padding: 5px 5px;
}

table thead {
    position: relative;
    z-index: 1;
    inset-block-start: 0;
    background: rgba(0, 40, 100, .3);
}

table thead td {
    font-size: 15px;
    text-align: left;
    padding: 5px;
}

table thead.fixed {
    position: sticky;
}

table tbody {
    position: relative;
}

table tbody tr:hover {
    background: rgba(0, 0, 0, .02);
}

table tbody td {
    border-bottom: 1px solid rgba(0, 0, 0, .3);
    border-right: 1px solid rgba(0, 0, 0, .2);
}

table tbody td:last-child {
    border-right: 0;
}

table tbody td.top {
    padding-top: 8px;
    vertical-align: top;
}


code {
    padding: 0 3px;
    display: inline-block;
    margin: 0 3px;
}


pre {
    position: relative;
    white-space: pre-wrap;
    word-break: break-all;
    background: rgba(0, 0, 0, .8);
    color: rgba(255, 255, 255, 1);
    padding: 20px 0 1px 0;
    border-radius: 3px;
    margin: 20px 0;
}

pre>code {
    position: relative;
    border-top: 0 solid rgba(255, 255, 255, .3);
    display: block;
    padding: 0 10px 20px 10px;
    outline: 0 solid rgba(255, 255, 255, .3);
    outline-offset: -5px;
    background: rgba(0, 0, 0, 0.5);
    box-shadow: 0 -1px 0 rgba(255, 255, 255, .1);
    font-weight: normal;
}

pre * {
    font-weight: normal;
}

pre>span.lang {
    position: absolute;
    top: 0;
    width: 100%;
    text-align: center;
}

pre ul,
ol,
p {
    padding: 0 0;
    list-style-type: disc;
    display: block;
}

pre ul>li,
ol>li {
    margin-left: 30px;
    padding: 5px 0;
}

pre p {
    padding: 0 0;
}