* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "ZurichSans", "LiHei", "微軟正黑體", "Microsoft JhengHei", sans-serif !important;
}

@font-face {
    font-family: "ZurichSans";
    src: local("Zurich Sans"), url("./Zurich-Sans/ZurichSans-Regular.otf") format("truetype"),
        url("./Zurich-Sans/ZurichSans-Regular.ttf") format("opentype");
}

html {
    font-family: ZurichSans, sans-serif;
}

html,
body {
    height: 100%;
}

/* 维护页面整体结构 */
.maintenance-page {
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* 头部 */
.maintenance-header {
    display: flex;
    justify-content: space-between;
    padding: 0 45px 0 90px;
    height: 80px;
    width: 100%;
    border-bottom: 1px solid #c9d0d2;
    background: #fff;
    position: fixed;
    box-shadow: 0 5px 20px 0 rgba(0, 0, 0, 0.05);
}

/* logo */
.maintenance-header .logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.maintenance-header .logo img {
    height: 32px;
}

/* 语言按钮 */
.maintenance-header .lan_btn {
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 25px;
}

/* lan_btn svg */
.maintenance-header .lan_btn svg {
    fill: #5495cf;
}

/* lan_btn hover */
.maintenance-header .lan_btn:hover {
    background-color: #498bcb;
}

.maintenance-header .lan_btn:hover svg {
    fill: #fff;
}

.maintenance-header .lan_btn:hover .menu {
    transition: max-height ease-in-out 200ms;
    max-height: 999px;
}

/* menu */
.maintenance-header .lan_btn .menu {
    position: absolute;
    overflow: hidden;
    right: 0;
    top: 100%;
    z-index: 1;
    display: flex;
    flex-direction: column;
    max-height: 0;
    width: 160px;
}

/* menu span */
.maintenance-header .lan_btn .menu span {
    height: 54px;
    color: #fff;
    background-color: #498bcb;
    width: 100%;
    text-align: center;
    line-height: 54px;
    cursor: pointer;
}

/* menu span hover和active */
.maintenance-header .lan_btn .menu span:hover,
.maintenance-header .lan_btn .menu span.active {
    background-color: #e0e0e0;
    color: #498bcb;
}

/* 主体 */
.maintenance-body {
    flex: 1;
    background-color: #c9d0d2;
    text-align: center;
}

/* 内容区 */
.maintenance-body .maintenance-content {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    margin: 110px auto 0;
    max-width: 750px;
}

/* 图标 */
.maintenance-body .maintenance-content .maintenance-icon {
    margin-top: 60px;
}

.maintenance-body .maintenance-content .maintenance-icon svg {
    height: 300px;
    width: 300px;
}

/* 主内容 */
.maintenance-body .maintenance-content .main-content {
    font-size: 44px;
    font-weight: 500;
    line-height: 60px;
    letter-spacing: -0.02em;
    text-align: center;
    margin-top: 64px;
    color: #23366f;
}

/* 子内容 */
.maintenance-body .maintenance-content .sub-content {
    margin-top: 48px;
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
    text-align: center;
    color: #2b2e31;
}

/* 返回按钮 */
.maintenance-body .maintenance-content .back-to-ozcp {
    min-width: 227px;
    height: 56px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 28px;
    color: #fff;
    background-color: #2167ae;
    border: none;
    margin-top: 64px;
    margin-bottom: 20px;
    cursor: pointer;
}

.maintenance-body .maintenance-content .back-to-ozcp:hover {
    background-color: #3776b6;
}

.maintenance-body .maintenance-content .back-to-ozcp a {
    display: flex;
    justify-content: center;
    align-items: center;
    color: inherit;
    text-decoration: none;
    height: 100%;
    width: 100%;
    font-size: 18px;
    font-weight: 400;
}

/* 响应式 */
@media (max-width: 992px) {
    .maintenance-header {
        padding: 0;
        height: 56px;
    }

    .maintenance-header .logo {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 16px 24px;
    }

    .maintenance-header .logo img {
        height: 25px;
    }

    .maintenance-body .maintenance-content {
        flex: 1;
        width: 80%;
        max-width: 675px;
        margin-top: 56px;
    }

    .maintenance-body .maintenance-content .maintenance-icon {
        margin-top: 65px;
    }

    .maintenance-body .maintenance-content .maintenance-icon img {
        height: 160px;
        width: 160px;
    }

    .maintenance-body .maintenance-content .main-content {
        margin-top: 38px;
        font-size: 24px;
        color: #23366f;
        line-height: 40px;
    }

    .maintenance-body .maintenance-content .sub-content {
        font-size: 14px;
    }

    .maintenance-body .maintenance-content .back-to-ozcp {
        width: 100%;
    }
}
