.popBg{
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    transition: all .3s linear;
}
.popBox{
    position: fixed;
    left: 50%;
    top: 50%;
    width: 96%;
    max-width: 1100px;
    padding: .5rem;
    transform: translate(-50%,-50%);
    background-color: #FFFFFF;
    z-index: 11;
    opacity: 0;
    visibility: hidden;
    transition: all .3s linear;
}
.popBg.open,
.popBox.open{
    opacity: 1;
    visibility: visible;
    transition: all .4s linear;
}
.popClose{
    position: absolute;
    right: 0;
    bottom: 100%;
    margin-bottom: 10px;
    font-size: 30px;
    color: #FFFFFF;
    cursor: pointer;
    transition: all .3s;
}
.popClose:hover{
    transform: rotate(90deg);
}
.pop{
    position: relative;
    margin-right: -.4rem;
    overflow: hidden;
}
.pop::before{
    display: block;
    content: "";
    position: absolute;
    left: .5rem;
    right: .5rem;
    bottom: 0;
    height: .3rem;
    background: linear-gradient(to bottom,rgba(255,255,255,0.2),#FFFFFF);
    z-index: 1;
}
.popImg{
    float: left;
    width: 40%;
    max-width: 336px;
    margin-right: .4rem;
}
.popImg img{
    width: 100%;
    height: auto;
}
.popText{
    padding-right: .5rem;
    position: relative;
    max-height: 470px;
    overflow-y: auto;
}
.popText::-webkit-scrollbar{
    width: 6px;
    height: 6px;
    max-width: .06rem;
    max-height: .06rem;
    border-radius: 3px;
    background-color: transparent;
}
.popText::-webkit-scrollbar-thumb{
    border-radius: 3px;
    background-color: #D9D9D9;
}
.popTit{
    color: #181818;
    line-height: 1.1;
    padding: 5px 0 .2rem;
    border-bottom: 1px solid var(--baseColor);
}
.popCon{
    line-height: 1.875;
    margin: .2rem 0 .5rem;
}
.popCon:last-child{
    margin-bottom: .3rem;
}


@media (max-width:1200px) {
    .popBox{
        padding: .3rem;
    }
    .pop{
        margin-right: -.2rem;
    }
    .popImg{
        margin-right: .3rem;
    }
    .popText{
        padding-right: .3rem;
    }
}
@media (max-width:991px) {
    .popImg{
        float: none;
        width: 100%;
        margin: 0 auto .3rem;
    }
    .popClose{
        font-size: 24px;
    }
    .proText{
        max-height: 50vh;
    }
    .popCon{
        margin: .2rem 0 .3rem;
    }
}