* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: SimSun, serif;
    font-size: 14px;
}

.container {
    padding: 0 0 60px;
    max-width: 988px;
    margin: 0 auto;
    position: relative;
}

h1 {
    text-align: center;
    font-size: 26px;
    font-weight: bold;
    margin-bottom: 20px;
}

.personal-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0;
}

.info-table {
    /* width: 623px; */
    border-collapse: collapse;
}

.info-table td {
    border: 1px solid #000;
    padding: 8px;
    height: 40px;
    text-align: center;
}

.info-table td:first-child,
.info-table td:nth-child(3),
.info-table td:nth-child(5) {
    font-weight: bold;
    text-align: center;
    width: 120px;
}

.qr-code {
    width: 226px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: column;
    border: 1px solid #000;
    border-left: 0;
    /* border-bottom: 0; */
}

.qr-code img {
    width: 120px;
    height: 120px;
}

.qr-code div {
    font-size: 14px;
    font-weight: bold;
}

.result-table {
    width: 100%;
    border-collapse: collapse;
}

.result-table th,
.result-table td {
    border: 1px solid #000;
    padding: 8px 0;
    text-align: center;
}

.result-table th {
    font-weight: bold;
    background-color: #f0f0f0;
}

.result-table th:nth-child(1),
.result-table th:nth-child(2) {
    width: 60px;
}

.result-table tr:first-child th {
    /* vertical-align: top; */
    border-top: 0;
}

.merge-row {
    vertical-align: middle;
}

.merge-col {
    text-align: center;
}