/*弹窗*/
/*背景层*/
#popLayer{display:none;width: 100%;height: 100%;background: rgba(0,0,0,0.6);position: fixed;top: 0;left: 0;z-index: 10;}
/*弹出层*/
.popBox{display:none;background-color:#FFFFFF;z-index:111;position:fixed;top:0;right:0;left:0;bottom:0;text-align: center;margin:auto;background: rgba(64,68,128,1);width: 396px;height: 298px;border-radius: 7px;}
.popBox .btn{width: 96px;height: 40px;border-radius: 4px;opacity: 1;background: rgba(66,189,248,1);}
.popBox a{text-decoration: none;position: absolute;bottom: 24px;right: 24px;}
.popBox a.btn{font-size: 14px;color: #fff;width: 96px;height: 40px;border-radius: 4px;opacity: 1;background: rgba(66,189,248,1);display: inline-block;line-height: 40px;text-align: center;}
.popBox .jh-icon{background: url(../images/icon-jh.png) no-repeat;padding-left: 32px;font-size: 16px;color: #fff;height: 20px;line-height: 20px;margin-bottom: 16px;}
.popBox1.popBox{width: 396px;height: 182px;padding: 32px 32px 24px 32px;box-sizing: border-box;text-align: left;}
.popBox #pop_content{color: #fff;padding-left: 32px;font-size: 14px;}
.popBox1.popBox .tar{text-align: right;}
.popBox1.popBox .tar a.btn.right{background: rgba(51,119,255,1);}
.popBox1.popBox .tar a.btn.right:hover{background: #33BBFF;}

/*关闭按钮*/
.popBox .close a{text-decoration:none;color:#2D2C3B;}

.unActivatedMask {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
}
.unActivatedPop {
    width: 390px;
    height: 146px;
    background: url(../images/unActivedPopBg.png) no-repeat 0 0;
    background-size: contain;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-sizing: border-box;
    padding: 27px 25px;
    z-index: 20;
}
.unActivatedPop h3 {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    line-height: 25px;
    display: flex;
    align-items: center;
}
.unActivatedPop h3 img {
    width: 20px;
    margin-right: 8px;
}
.unActivatedPop .btn {
    margin-top: 32px;
    cursor: pointer;
    width: 96px;
    height: 36px;
    background: #33bbff;
    border-radius: 4px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    line-height: 36px;
}
.unActivatedPop .btn:hover {
    background: #66ccff;
}