main {
    margin-left: 60px;
    width: 100%;
}

main>.page1 {
    height: calc(100vh - 16px);
    margin: 0;
    position: absolute;
    top: 0;
}

.page1>.welcome {
    position: absolute;
    font-size: 140px;
    bottom: 45px;
    left: 0;
    margin: 0;
    font-weight: 800;
    line-height: 120px;
    text-align: left;
    transition: all 0.5s ease-in-out;
}

.page1>.welcome p {
    margin: 0;
    outline: none;
}

@media (max-width: 768px) {
    .page1>.welcome {
        font-size: 80px !important;
        line-height: 70px !important;
        bottom: 25px;
    }
}

@media (max-width: 425px) {
    .page1>.welcome {
        bottom: 130px;
        left: -90px;
        transform: rotateZ(90deg);
        text-align: right;
    }
}

main .mainContent {
    height: 400vh;
    width: 100%;
    padding: 0 8px;
    box-sizing: content-box;
    margin-left: -8px;
    margin-top: 100vh;
    box-shadow: 0 1px 8px 0px rgb(0 0 0 / 5%);
}

main .mainContent>.page1 {
    display: flex;
    flex-direction: row;
}

main .mainContent>.page1>div {
    height: 100vh;
}

main .mainContent>.page1>.left {
    width: calc(100% - 250px);
    padding: 40px;
    box-sizing: border-box;
}

.mainContent>.page1>.left .title {
    font-size: 20px;
    font-weight: 600;
    padding-left: 5px;
    border-left: 5px solid var(--blue);
    margin: 5px 0;
}

main .mainContent>.page1>.left .text {
    margin: 3px 0
}

main .mainContent>.page1>.right {
    width: 250px;
    height: 100vh;
    background-color: #e5e7eb;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

}

.page1>.right .avatar {
    border-radius: 100%;
    height: 100px;
    width: 100px;
}

.page1>.right .name {
    font-size: 30px;
    margin: 10px;
    font-weight: 300;
}

.page1>.right .btns {
    width: max-content;
}

.page1>.right .btns a svg {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
}

.page2 .title {
    margin-left: 10px;
}

.page2 .content {
    overflow: hidden;
    position: relative;
    height: calc(100vh - 100px);
}



.page2 #qexo-friends {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    position: absolute;
}

.page2 .friends::-webkit-scrollbar-track {
    background: 0 0 !important;
}

.page2 .friends::-webkit-scrollbar {
    width: 0;
    background: 0 0 !important;
}

.page2 .friend {
    align-items: center;
    user-select: none;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.page2 .friend .avatar {
    border-radius: 100%;
    height: 40px;
    width: 40px;
    margin: 5px;
}

@media (max-width: 768px) {
    .page1>.right {
        width: 100% !important;
        height: 60px !important;
        flex-direction: row !important
    }

    .mainContent>.page1 {
        flex-direction: column-reverse !important;
    }

    .page1>.right .avatar {
        height: 40px !important;
        width: 40px;
    }


    .page1>.right .name {
        font-size: 25px !important;
        margin: 0;
    }

    .page1>.right .btn svg {
        width: 15px !important;
        height: 15px !important;
    }

    .page1>.left {
        width: 100% !important;
        height: calc(100% - 60px) !important;
    }
}