html, body {
    background: #375498 !important;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.page-container {
    max-width: 1200px;
    height: 100%;
    margin: 0 auto;
    padding: 20px 20px 100px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.logo {
    width: 136px;
    height: 136px;
    border-radius: 15px;
    position: relative;
}

.logo-box {
    border-radius: 15px;
    width: 136px;
    height: 136px;
    background: #fff;
}

.title {
    font-family: 'WYH';
    color: white;
    font-size: 56px;
    font-weight: 500;
    margin-top: 37px;
}

.search-box {
    margin: 50px 0;
    background: white;
    width: 80%;
    max-width: 750px;
    height: 42px;
    border-radius: 21px;
    display: flex;
    align-items: center;
    padding: 0 10px;
}
.search-input {
    border: none;
    height: 38px;
    flex: 1;
    border-radius: 19px;
    font-size: 18px;
    color: #333;
    outline: none;
    padding: 0 10px;
}
.search-btn {
    background: #365696;
    border: none;
    height: 38px;
    color: white;
    border-radius: 19px;
    padding: 0 20px;
    font-size: 16px;
    cursor: pointer;
    transition: all .3s;
}
.search-btn:hover {
    background: #2d4881;
}
.search-btn:active {
    transform: scale(0.98);
}

.subtitle {
    font-family: 'HongLeiXingShuJianTi';
    color: #ACACAC;
    font-size: 25px;
    font-weight: 500;
}

.link-button {
    margin-top: 50px;
    background: #365696;
    border: 1px solid #ACACAC;
    height: 42px;
    color: #ACACAC;
    border-radius: 21px;
    cursor: pointer;
    transition: all .3s;
}
.link-button:hover {
    background: #2d4881;
}

.link-text {
    font-size: 16px;
    color: #ACACAC;
    text-decoration: none;
    padding: 0 30px;
}

.agreement-box {
    margin-top: 50px;
    color: white;
    font-size: 16px;
    display: flex;
    align-items: center;
}

.agreement-box a {
    color: #8BD5FC;
    text-decoration: none;
}

.agreement-box input {
    margin-right: 8px;
    cursor: pointer;
}
