/* 通用样式 */
html {
    color: #333333;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

ol,
ul {
    list-style: none;
}

input,
textarea {
    outline: none;
    border: none;
    resize: none;
}

img {
    width: 100%;
}

body {
    height: 100vh;
}

main#template_main_box {
    width: 100%;
    height: 100%;
    overflow: auto;
}

table tr td {
    white-space: pre-line;
}