*::-webkit-scrollbar {
    display: none;
}

a {
    color: #333;
    text-decoration: none
}

a:hover {
    color: #13d8a7;
}

div.copyright {
    position: fixed;
    right: 10px;
    bottom: 10px;
}

html,
body {
    width: 100%;
    margin: 0;
    padding: 0;
    font-family: sans-serif, "楷体";
    --main-color: #5695c3;
    --vice-color: #c19f67;
    --margin: 30px;
}

body {
    background-color: #555572;
    display: flex;
    justify-content: center;
}

div.container {
    min-width: 210mm;
    width: 210mm;
    /* height: 297mm; */
    margin: 20px 0;
    padding: 0;
    box-sizing: border-box;
    background-color: white;
}

div.header {
    width: 100%;
    height: 82px;
    box-sizing: border-box;
    padding: 0 var(--margin);
    color: var(--main-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

div.h-left {
    display: flex;
    align-items: center;
}

div.hl-title {
    font-size: 38px;
    padding-right: 10px;
    border-right: 2px solid var(--main-color);
    margin-right: 10px;
}

div.hli-zh {
    font-size: 15px;
}

div.hli-en {
    font-size: 22px;
}

div.h-rest {
    display: flex;
}

div.hr-alpha {
    width: 36px;
    height: 36px;
    margin-left: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--vice-color);
    border-radius: 50%;
    font-size: 22px;
    color: white;
}

div.split {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    --split: 12px;
}

div.s-long {
    width: 70%;
    height: 18px;
    background-color: var(--main-color);
    clip-path: polygon(0 0, calc(100% - var(--split) * 1.5) 0, 100% 100%, 0 100%);
}

div.s-short {
    width: 30%;
    height: 12px;
    background-color: var(--vice-color);
    clip-path: polygon(0 0, 100% 0, 100% 100%, var(--split) 100%);
}

div.content {
    width: calc(100% - var(--margin) * 2.5);
    margin-left: calc(var(--margin) * 1.5);
    height: calc(100% - 130px);
    border-left: 1px solid var(--main-color);
    box-sizing: border-box;
    padding: 14px 0;
    font-size: 13px;
}

div.c-group {
    width: 100%;
}

div.cg-title {
    display: flex;
    position: relative;
    box-sizing: border-box;
    border-bottom: 1px solid var(--main-color);
    --number: 24px;
}

div.cgt-1 {
    width: 120px;
    height: 25px;
    font-size: 16px;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: -16px;
    background-color: var(--main-color);
    clip-path: polygon(0 0, calc(100% - var(--number)) 0, 100% 100%, 0 100%);
}

div.cgt-2 {
    width: 28px;
    height: 25px;
    background-color: var(--main-color);
    clip-path: polygon(0 0, calc(100% - var(--number)) 0, 100% 100%, var(--number) 100%);
    margin-left: calc(var(--number) * -0.88);
}

div.cgt-3 {
    width: 34px;
    height: 25px;
    background-color: var(--main-color);
    clip-path: polygon(0 0, calc(100% - var(--number)) 0, 100% 100%, var(--number) 100%);
    margin-left: calc(var(--number) * -0.88);
}

div.cgt-4 {
    width: 16px;
    height: 8px;
    background-color: rgb(46, 109, 155);
    position: absolute;
    top: 25px;
    left: -16px;
    clip-path: polygon(0 0, 100% 0, 100% 100%);
}

div.cg-body {
    width: 100%;
    box-sizing: border-box;
    padding: 15px 20px;
}

div.cg-base {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

div.cgb-pair {
    display: flex;
    line-height: 28px;
}

div.cgb-key {
    width: 66px;
    display: inline-block;
    text-align-last: justify;
}

div.cgb-value::before {
    content: ":";
    margin-left: 2px;
    margin-right: 5px;
}

img.cgb-avatar {
    width: 108px;
    height: 126px;
}

div.cghb-header {
    width: 100%;
    line-height: 1.6;
    color: #333;
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    font-weight: bold;
}

div.cghb-header:not(:first-child) {
    margin-top: 15px;
}

div.cghb-body {
    text-indent: 1em;
    line-height: 1.7;
    color: #555;
}

div.cgs-list {
    text-indent: 1em;
}

div.cgs-list::before {
    content: "·";
    font-size: 16px;
    font-weight: bold;
    margin-right: 5px;
}

div.cg-label {
    display: flex;
    align-items: center;
}

div.cgl-item {
    box-sizing: border-box;
    margin: 3px 15px 5px 0;
    padding: 5px 15px;
    border-radius: 18px;
    color: #555;
    border: 1px solid #eee;
    border-color: rgba(86,149,195,0.3);
    background-color: rgba(86,149,195,0.04);
}