*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: PingFang, Helvetica Neue, Helvetica, PingFang SC, Hiragino Sans GB, Arial, sans-serif;
    font-weight: 400;
}
*::-webkit-scrollbar {
    display: none;
}

.container{
    background: url(../images/bg-pc.jpg) no-repeat;
    background-size: 100% 100%;
}
.content{
    position: relative;
    width: 1200px;
    min-height: 100vh;
    margin: 0 auto;
    padding-left: 660px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.content > .logo{
    width: 172px;
}
.content > .cooperation{
    width: 463px;
    height: 111px;
    background: url(../images/cooperation.png) no-repeat center;
    background-size: contain;
    margin: 25px 0 15px;
}
.content > .access-restriction > .t1{
    font-size: 61px;
    font-weight: 500;
    color: #000;
    text-align: left;
    line-height: 92px;
}
.content > .access-restriction > .t2{
    font-size: 30px;
    font-weight: 500;
    color: #979797;
    text-align: left;
    line-height: 44px;
}
.content > .access-restriction > .t3{
    font-size: 18px;
    font-weight: 500;
    color: #3D68FF;
    text-align: left;
    line-height: 28px;
}
.content > .prompt{
    color: #7981A4;
    font-size: 16px;
    font-weight: 500;
    text-align: left;
    line-height: 22px;
    margin-top: 6px;
}
.content > .btn{
    position: relative;
    width: 156px;
    height: 48px;
    border-radius: 24px;
    box-shadow: 0px 1.67px 5.02px 0px #D0D8E0, 0px 0.42px 0px 0px #FFFFFFCC inset;
    background: linear-gradient(90deg, #9294EA 0%, #AAACFF 9%, #EEEEFF 16%, #9294EA 23%, #EEEEFF 50%, #9294EA 77%, #EEEEFF 84%, #AAACFF 90%, #9294EA 100%);
    display: flex;
    overflow: hidden;
    margin: 56px 0 0 0;
    cursor: pointer;
    text-decoration: none;
    span{
        width: 100%;
        height: 46px;
        background: linear-gradient(180deg, #AEADFF 1.25%, #7E73FF 92.5%);
        border-radius: 23px;
        color: #fff;
        font-size: 18px;
        font-weight: 600;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}
.content > .lock{
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 594px;
    height: 484px;
    background: url(../images/lock-pc.png) no-repeat center;
    background-size: contain;
}
@media screen and (max-width: 750px) {
    .container{
        background: url(../images/bg-h5.jpg) no-repeat;
        background-size: 100% 100%;
    }
    .content{
        width: 100%;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0 18px;
    }
    .content > .logo{
        order: 0;
        width: 142px;
        margin: 50px auto 23px;
    }
    .content > .access-restriction{
        order: 1;
    }
    .content > .access-restriction > .t1{
        font-size: 30px;
        font-weight: 500;
        color: #000;
        text-align: center;
        line-height: 42px;
    }
    .content > .access-restriction > .t2{
        display: none;
    }
    .content > .access-restriction > .t3{
        font-size: 12px;
        font-weight: 500;
        color: #3D68FF;
        text-align: center;
        line-height: inherit;
    }
    .content > .lock{
        order: 2;
        position: relative;
        transform: translateY(0);
        width: 100%;
        height: 230px;
        background: url(../images/lock-h5.png) no-repeat center;
        background-size: contain;
    }
    .content > .prompt{
        order: 3;
        color: #7981A4;
        font-size: 14px;
        font-weight: 500;
        text-align: center;
        margin: 0;
    }
    .content > .btn{
        order: 4;
        position: relative;
        width: 120px;
        height: 36px;
        border-radius: 18px;
        box-shadow: 0px 1.67px 5.02px 0px #D0D8E0, 0px 0.42px 0px 0px #FFFFFFCC inset;
        background: linear-gradient(90deg, #9294EA 0%, #AAACFF 9%, #EEEEFF 16%, #9294EA 23%, #EEEEFF 50%, #9294EA 77%, #EEEEFF 84%, #AAACFF 90%, #9294EA 100%);
        display: flex;
        overflow: hidden;
        margin: 22px auto;
        span{
            width: 100%;
            height: 34px;
            background: linear-gradient(180deg, #AEADFF 1.25%, #7E73FF 92.5%);
            border-radius: 17px;
            color: #fff;
            font-size: 14px;
            font-weight: 600;
            display: flex;
            align-items: center;
            justify-content: center;
        }

    }
    .content > .cooperation{
        order: 5;
        width: 233px;
        height: 56px;
        background: url(../images/cooperation.png) no-repeat center;
        background-size: contain;
        margin: 0;
    }
}