@charset "utf-8";

* { margin: 0; padding: 0; box-sizing: border-box; }

.boot {
    width: 100vw;
    height: 100vh;
    position: relative;
    background-image: url(/upload/20260526/1779784049571.jpg);
    background-size: 100% 100%;
    background-color: #1a3a6b;
    display: flex;
    align-items: center;
    justify-content: center;
}

.boot .content {
    height: 50vh;
    display: flex;
    align-items: center;
}

.boot .center {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.boot .logo {
    width: 100%;
    max-width: 720px;
    height: auto;
}

.boot .tooltip-text {
    width: 100%;
    text-align: center;
    font-size: 22px;
    color: #333;
    padding: 20px 0;
    white-space: nowrap;
}

.boot .btn {
    width: 100%;
    height: 6vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.boot .btn .continue {
    width: 250px;
    height: 50px;
    border-radius: 30px;
    border: 1px solid #fff;
    background: #144a9a;
    color: #fff;
    font-size: 20px;
    line-height: 50px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    margin-right: 10px;
    transition: opacity 0.3s;
}

.boot .btn .continue:hover {
    opacity: 0.85;
}

.boot .btn .back {
    background: transparent;
    width: 250px;
    height: 50px;
    border-radius: 30px;
    border: 1px solid #144a9a;
    color: #144a9a;
    font-size: 20px;
    text-align: center;
    line-height: 50px;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    margin-left: 10px;
    transition: opacity 0.3s;
}

.boot .btn .back:hover {
    opacity: 0.85;
}
