/*弹出表单样式*/
.slideBackground {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.3);
    display: none;
}
.popup {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 680px;
    height: 536px;
    transform: translate(-50%, -50%);
    background-color: white;
    border-radius: 5px;
    z-index: 999;
    display: flex;
}
.popup-title {
    width: 270px;
    height: 40px;
    font-size: 22px;
    font-family: PingFang SC-Semibold, PingFang SC;
    font-weight: 600;
    color: #FFFFFF;
    line-height: 40px;
    position: absolute;
    top: 74px;
    left: 25px;
}
.popup-value {
    position: absolute;
    top: 169px;
    left: 46px;
    display: flex;
}
.popup-value-icon {
    width: 17px;
    height: 14px;
    background-size: 100% 100%;
}
.popup-value-title {
    width: 180px;
    height: 14px;
    font-size: 16px;
    font-family: PingFang SC-Regular, PingFang SC;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 14px;
    margin-left: 8px;
}
.popup-phone {
    position: absolute;
    top: 119px;
    left: 46px;
    display: flex;
}
.popup-phone-icon {
    width: 17px;
    height: 14px;
    background-size: 100% 100%;
}
