body {
    font-family: "Noto Sans", sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
}
.navbar-wrapper{
    width: 100%;
    background-color: #a00000;
}
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    height: 88px;
    padding: 0;
    max-width: 1920px;
    margin: 0 auto;
    width: 1200px;
}
.navbar .logo {
    display: flex;
    align-items: center;
}
.navbar .logo img {
    height: 80px;
}
.navbar .menu {
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.navbar .menu a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-size: 18px;
    border-bottom: 4px solid transparent;
    padding-bottom: 6px;
    transition: all 0.3s;
}
.navbar .menu a:hover {
    border-bottom: 4px solid white;
}
.navbar .menu a.active {
    border-bottom: 4px solid white;
}
.navbar .login {
    border: 1px solid white;
    padding: 5px 15px;
    color: white;
    text-decoration: none;
    font-size: 16px;
}
.banner{
    display: flex;
    justify-content: center;
}
.main-image {
    width: 1200px;
    height: auto;
}

.footer {
    box-sizing: border-box;
    background: #0e1214;
    color: white;
    text-align: center;
    padding: 24px 0 16px;
    height: 189px;
}
.footer img {
    height: 50px;
}
.footer p {
    margin: 5px 0;
}
.footer .line {
    margin: 32px 0 16px;
    height: 1px;
    background: #ffffff;
    border-radius: 0px 0px 0px 0px;
    opacity: 0.2;
}
.footer .footer-box {
    display: flex;
    /* max-width: 1920px; */
    margin: 0 auto;
    width: 1200px;
}
.footer .footer-box .school {
    height: 80px;
}
.footer .footer-box .qrcode {
    height: 73px;
    width: 73px;
    margin-left: 56px;
    margin-right: 24px;
}
.footer .footer-box .info-box {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 8px;
    font-family: MiSans, MiSans;
    font-weight: 400;
    font-size: 14px;
    color: #a0a2a2;
}
.footer .footer-box .info-box span {
    margin-left: 32px;
}
.data-box {
    display: flex;
    flex-direction: column;
    gap: 8px;
    justify-content: center;
    align-items: flex-end;
    margin-left: 48px;
}
.data-box .data-title {
    height: 27px;
    font-family: MiSans, MiSans;
    font-weight: 500;
    font-size: 20px;
    color: #ffffff;
    line-height: 27px;
}
.data-box .data-num {
    height: 19px;
    font-family: MiSans, MiSans;
    font-weight: 400;
    font-size: 14px;
    color: #a0a2a2;
    line-height: 19px;
}
.footer .footer-bottom {
    height: 19px;
    font-family: MiSans, MiSans;
    font-weight: 400;
    font-size: 14px;
    color: #ffffff;
    line-height: 19px;
    text-align: center;
}