
.header {
    text-align: center;
    margin-top: 0px;
    background-color: #014a97;
    padding: 10px;
}
.subtitle {
    text-align: center;
    margin-top: 10px;
}
.image-container {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}
.image-container img {
    height: 300px; /* 设定图片高度 */
    max-width: 100%; /* 最大宽度为容器宽度 */
    -o-object-fit: cover;
       object-fit: cover; /* 填充整个容器，可能会裁剪图片 */
}
.buttons {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}
.button-row {
    display: flex;
    justify-content: center;
}
.apply,
.records {
    padding: 10px 20px;
    margin: 0 10px;
    border-radius: 5px;
    background-color: #014a97;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
}
.apply:hover,
.records:hover {
    background-color: #014a97;
}
.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    text-align: center;
    background-color: #014a97;
    padding: 10px;
    color: #fff;
}

