@font-face {
    font-family: "PingFangExtraLight";
    src: url("../font/PingFangExtraLight.ttf");
}
@font-face {
    font-family: "PingFangLight";
    src: url("../font/PingFangLight.ttf");
}
@font-face {
    font-family: "PingFangHeavy";
    src: url("../font/PingFangHeavy.ttf");
}
body,
h1,
p {
    margin: 0;
    padding: 0;
}
a {
    color: #fff;
    text-decoration: none;
}

#app {
    width: 100vw;
    height: 100vh;
    min-width: 1420px;
    min-height: 825px;
    background-image: url("../images/bg.png");
    background-size: 100% 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}

.header {
    width: 100%;
    height: 200px;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.7) 0%,
        rgba(255, 255, 255, 0.05) 100%
    );
    position: relative;
}
.header .logo {
    width: 482.5px;
    height: 200px;
    background: url("../images/logo-name.png");
    background-size: 100% 100%;
    margin-left: 10px;
}
.header .name {
    position: absolute;
    right: 10px;
    top: 100px;
    width: 688px;
    height: 200px;
    background: url("../images/name-en.png");
    background-size: 100% 100%;
}

.main {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.main h1 {
    font-family: "PingFangHeavy";
    font-size: 90px;
    text-align: center;
    color: #ffffff;
    margin-bottom: 5%;
}
.main p {
    width: 1240px;
    margin-bottom: 30px;
    font-family: "PingFangLight";
    font-size: 24px;
    color: #ffffff;
}
.main p.first {
    color: #FACD91;
}
.main p strong {
    background-color: #02235C;
    padding: 5px 0 0 10px;
    margin-left: -10px;
}


.footer {
    width: 100%;
    height: 58px;
    line-height: 58px;
    text-align: center;
    font-size: 16px;
    font-family: "PingFangExtraLight";
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
