.container {
    width: 375px;
    height: 100vh;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-title {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.page-title .logo {
    display: block;
    width: 40px;
    height: 40px;
}

.page-title p {
    font-size: 20px;
    text-align: center;
    font-weight: bold;
    color: #333;
    margin-left: 10px;
}

.wx-mgs {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.btn-back {
    padding-top: 20px;
}

.wx-con {
    /* padding-top: 30%; */
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.icon {
    display: block;
    width: 100px;
    height: 100px;
}

.icon-large {
    font-size: 70px;
}

.wx-text {
    padding-top: 30px;
    font-size: 20px;
    text-align: center;
    line-height: 30px;
}
.wx-text p {
    line-height: 1;
}

.btn-back {
    margin-top: 40px;
    padding: 8px 15px;
    font-size: 16px;
    border-radius: 4px;
    color: #fff;
    background-color: #409eff;
}

.mask {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
}

.mask-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px 30px;
    background-color: #fff;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
}

.tips {
    font-size: 16px;
    color: #333;
}
