* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    height: 100%;
}

.content {
    background: #FB8181;
    height: 100%;
    padding-top: 50px;
}

.cover {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: auto;
    background: #00000080;
    z-index: 99;
    display: none;
    text-align: right;
}

.cover .msg {
    background: #ffffff;
    margin-top: 20px;
    margin-right: 5px;
    width: 120px;
    display: inline-block;
    border-radius: 10px;
    padding: 10px;
    text-align: left;
    position: relative;
}

.cover .msg::before {
    content: '';
    width: 10px;
    height: 10px;
    position: absolute;
    top: -4px;
    right: 15px;
    background: #ffffff;
    transform: rotateZ(45deg);
    border-radius: 2px;
}

.main {
    background: url(../image/bg.png) no-repeat;
    background-position: top center;
    background-size: contain;
    height: 26.6rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    padding: 0 20px;
}

.top,
.bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}


.logo {
    width: 60px;
    height: 60px;
    margin-top: 40px;
}

.title {
    font-weight: 600;
    color: #FA2B48;
    font-size: 18px;
    margin-top: 15px;
    font-family: PingFangSC, PingFang SC;
}

.text {
    font-weight: 400;
    color: #333333;
    font-size: 16px;
    margin-top: 50px;
}

.room {
    font-weight: 500;
    color: #FA668D;
    font-size: 16px;
    margin-top: 8px;
}

.btn {
    width: 260px;
    height: 46px;
    background: #FA658D;
    box-shadow: 0px 2px 10px 0px rgba(250, 43, 72, 0.38);
    border-radius: 23px;
    color: #ffffff;
    line-height: 46px;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 40px;
}