* {
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

/* 隐藏滚动条但保留滚动功能 */
::-webkit-scrollbar {
    display: none;
}

.container {
    width: 23.4375rem !important;
    height: 50.75rem;
    padding: 6.25rem 1.5rem 2rem 1.5rem;
    display: flex;
    align-items: center;
    flex-direction: column;
    background-image: url('/img/bg.png');
    background-repeat: no-repeat;
    background-size: cover;

}

.title {
    font-size: 23px;
    font-weight: 600;
    color: #FFFFFF;
}

.title-txt {
    width: fit-content;
    margin-top: 15px;
    font-size: 20px;
    font-weight: 500;
    color: #FFFFFF;
    position: relative;
}

.title-icon {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 8px;
    background-color: #01B1FEaa;
    z-index: inherit;
}

.btn1 {
    overflow: hidden;
    font-size: 1rem;
    font-weight: 500;
    margin-top: 20.625rem;
    width: 100%;
    height: 3.625rem;
    border-radius: .625rem;
    background-color: #0F2D4E90;
    border: 1px solid #01B1FE;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn2 {
    overflow: hidden;
    font-size: 1rem;
    font-weight: 500;
    margin-top: 1.25rem;
    width: 100%;
    height: 3.625rem;
    border-radius: .625rem;
    background-color: #007bff;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn3 {
    overflow: hidden;
    font-size: 1rem;
    font-weight: 500;
    margin-top: 1.25rem;
    width: 100%;
    height: 3.625rem;
    border-radius: .625rem;
    background-color: #01B1FE;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-img {
    width: 15.5px;
    height: 15px;
    margin-right: 10px;
}

@media (max-width: 768px) {
    .container {
        width: 100% !important;
        height: 100vh !important;
        /* padding-top: 12rem; */
        /* display: flex;
        align-items: center;
        flex-direction: column;
        background-image: url('/img/bg.png');
        background-repeat: no-repeat;
        background-size: 100% 100%; */
    }

    /* .title {
        margin-left: 48px;
        font-size: 46px;
        font-weight: 600;
        color: #FFFFFF;
    }

    .title-txt {
        width: fit-content;
        margin-top: 30px;
        margin-left: 48px;
        font-size: 40px;
        font-weight: 500;
        color: #FFFFFF;
        position: relative;
    }

    .title-icon {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 16px;
        background-color: #01B1FEaa;
        z-index: inherit;
    } */

    .btn1 {
        margin-top: auto;
    }

    /* .btn-img {
        width: 31px;
        height: 30px;
        margin-right: 20px;
    } */
}