body{
    padding: 0;
    margin: 0;
    font-family: "Microsoft YaHei", "微软雅黑", serif;
}
*{
    box-sizing: border-box;
}
.vip-wrap{
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #2656DA;
    background: url("../img/bg.webp") no-repeat center center/cover;
}
.vip-content-wrap{
    width: 1000px;
    height: 625px;
    display: flex;
}

.vip-content-left{
    flex: 2;
    background: #EEF4FE;
}

.vip-content-right{
    flex: 3;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    box-shadow: 0 8px 16px 0 rgba(28, 31, 33, .1);
}

.vip-content input{
    font-size: 14px;
}

.vip-content-logo{
    text-align: center;
}
.vip-content-logo img{
    height: 60px;
}

.vip-content-welcome{
    margin-top: 50px;
    text-align: center;
    font-size: 26px;
    font-weight: 600;
}

.vip-content-phone-wrap{
    margin-top: 32px;
    animation-delay: .2s;
}

.vip-content-phone-wrap>div{
    display: flex;
}

.common-input-clazz{
    width: 350px;
    height: 45px;
    box-shadow: none;
    border-radius: 6px;
    border: 1px solid #dfe3e9;
    color: rgba(0,0,0,0.8);
    padding: 10px 15px;
    outline: none;
}

.vip-content-phone-wrap input.vip-phone{
    width: 230px;
    height: 45px;
    box-shadow: none;
    border-radius: 6px 0 0 6px;
    border: 1px solid #dfe3e9;
    border-right: 0;
    color: rgba(0,0,0,0.8);
    padding: 10px 15px;
    outline: none;
}

.vip-code-btn{
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #2c7ef8;
    color: #2c7ef8;
    border-radius: 0 6px 6px 0;
    width: 120px;
    height: 45px;
    font-size: 14px;
    cursor: pointer;
    outline: 0;
    background: #fff;
}

.vip-code-btn:hover{
    background: #ebebeb;
}

.vip-content-code-wrap, .vip-content-activation-wrap, .vip-content-btn-wrap, .vip-content-prompt{
    margin-top: 25px;
}

.vip-content-code-wrap{
    animation-delay: .4s;
}

.vip-content-activation-wrap{
    animation-delay: .6s;
}

.vip-content-btn-wrap{
    animation-delay: .8s;
}

.vip-content-btn-wrap #activation{
    cursor: pointer;
    width: 100%;
    height: 50px;
    background-color: #2c7ef8;
    color: #fff;
    font-size: 18px;
    border-radius: 6px;
    border: none;
    outline: 0;
    transition: all .3s ease-out;
    position: relative;
}

.vip-content-btn-wrap #activation:hover {
    background-color: #6ba4fa;
}

.copyrights-wrap{
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 1;
    width: 100vw;
    height: 50px;
}

.copyrights{
    text-align: center;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
}

.vip-content-prompt{
    font-size: 14px;
    color: silver;
    text-align: center;
}

.vip-txt-wrap{
    display: flex;
    padding-top: 20px;
}

.vip-txt-img-wrap{
    margin-right: 10px;
}

.vip-txt-content{

}

.vip-txt-type{
    font-weight: bold;
}

.vip-txt{
    font-size: 14px;
    color: #999;
}

.vip-txt ul{
    padding-left: 15px;
    margin: 10px 0;
}

.sys-type-icon{
    border: 2px solid #2c7ef8;
    padding: 11px;
    background: white;
    color: #2c7ef8;
    border-radius: 50%;
    transition: all 0.25s ease-in-out;
    display: block;
    height: 50px;
    width: 50px;
    text-align: center;
    text-decoration: none;
    font-size: 1.5em !important;
    line-height: normal !important;
}

.bot-title {
    opacity: 0;
    -webkit-animation-name: bot-title;
    animation-name: bot-title;
    -webkit-animation-duration: .3s;
    animation-duration: .3s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards
}

@-webkit-keyframes bot-title {
    0% {
        opacity: 0;
        transform: translate3d(0,50px,0)
    }

    to {
        opacity: 1;
        transform: translateZ(0)
    }
}

@keyframes bot-title {
    0% {
        opacity: 0;
        transform: translate3d(0,50px,0)
    }

    to {
        opacity: 1;
        transform: translateZ(0)
    }
}