* {
    box-sizing: border-box;
}

body {
    background: #05b1ef;
}

.page-container {
    width: 100%;
    position: relative;
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper .swiper-wrapper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-main {
    width: 100%;
    height: 100%;
    display: flex;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.page-left {
    width: 50%;
    height: 100%;
    padding: 2% 4%;
    box-sizing: border-box;
    display: inline-flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}

.page-left .connect {
    display: inline-flex;
}

.page-left .connect img {
    height: 48px;
    margin-right: 16px;
    cursor: pointer;
}

.page-left .logo {
    height: 75px;
}

.page-left .slogan {
    text-align: right;
    margin: 36px 0;
}

.page-left .slogan img {
    width: 100%;
}

.page-left .qrcode-area {
    text-align: center;
}

.page-left .qrcode-box {
    display: inline-block;
    padding: 10px;
    margin: auto;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
}

.page-left .qrcode-area .qrcode-text {
    font-size: 20px;
    font-weight: bold;
    margin-top: 4px;
    color: #f9f5f5;
}

.page-left .tips img {
    width: 75%;
    margin: 0 auto;
}

.page-right {
    width: 50%;
    height: 100%;
    display: inline-flex;
    align-items: flex-end;
    justify-content: center;
}

.page-right img {
    width: 75%;
}