*{
    margin: 0;
    padding: 0;
}

a{
    text-decoration: none;
}
.popup_w{
    width: 630px;
    height: 504px;
    box-sizing: border-box;
    display: flex;
    position: fixed;
    margin:auto;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    box-shadow: 0 0 10px #ccc;
    z-index: 999;
}
.popup_w .popup_close{
    width: 25px;
    height: 25px;
    position: absolute;
    right: 10px;
    top: 10px;
    background: url("../images/close.png") no-repeat;
    z-index: 1;
    cursor: pointer;
}
.popup_w .left{
    width: 350px;
    background: #ffffff;
    box-sizing: border-box;
    padding: 20px;
}

.popup_w a{
    transition: all 0.2s linear;
}
.popup_w a:hover{
    transform: scale(1.05);
}
.popup_w .popup_title{
    font-size: 20px;
    font-weight: bold;
    color: #e23a81;
    text-align: center;
}
.popup_w .input-group{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.popup_w .p1{
    font-size: 16px;
    color: #2a2d38;
    margin-top: 15px;
}
.popup_w .p1 span{
    color: #eb1734;
}
.popup_w .input-group label{
    display: inline-block;
    height: 26px;
    border-radius: 5px;
    background: #f1f4f9;
    position: relative;
    cursor: pointer;
    border: 1px solid transparent;
    margin-top: 7px;
}
.popup_w .group1 label{
    width: 96px;
}
.popup_w .input-group label.active{
    border: 1px solid #d4332d;
}
.popup_w .input-group label input[type='radio']{
    position: absolute;
    opacity: 0;
}
.popup_w .input-group label span{
    position: absolute;
    display: inline-block;
    width: 100%;
    height: 100%;
    text-align: center;
    line-height: 26px;
    font-size: 14px;
    color: #535a70;
}
.popup_w .group2 label{
    width: 70px;
}
.popup_w .group3{
    display: flex;
    justify-content: space-between;
}
.popup_w .group3 label{
    width: 150px;
    height: 31px;
    line-height: 31px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 5px;
    background: #f1f4f9;
    margin-top: 7px;
}
.popup_w .group3 label span{
    width: 60px;
    text-align: right;
}
.popup_w .group3 label input{
    width: 90px;
    height: 31px;
    line-height: 31px;
    border: none;
    outline: none;
    background: none;
}
.popup_w .btn-submit{
    width:100%;
    height: 60px;
    background: url("../images/submit-bg.png") center no-repeat;
    border: none;
    outline: none;
    margin: 5px auto 0;
    cursor: pointer;
    transition: all 0.2s linear;
}
.popup_w .btn-submit:hover{
    transform: scale(1.05);
}
.popup_w .p1.p1-btn{
    margin-top:-10px;
}
.popup_w .group4{
    display: flex;
    justify-content: space-between;
    margin-top: 9px;
}
.popup_w .group4 a{
    width: 151px;
    height: 62px;
}
.popup_w .btn1{
    background: url("../images/popup_btn1.png") center no-repeat;
}
.popup_w .btn2{
    background: url("../images/popup_btn2.png") center no-repeat;
}

.popup_w .right{
    flex: 1;
    background: url("../images/popup_right_bg.jpg") no-repeat;
    position: relative;
    box-sizing: border-box;
    padding: 45px 12px;
    color: #fff;
}
.popup_w .right .right_title{
    font-size: 24px;
    text-align: center;
}

.popup_w .right .right_title .right_p2{
    font-weight: bold;
}
.popup_w .right .btn3{
    display: inline-block;
    position: absolute;
    width: 148px;
    height: 40px;
    background: url("../images/popup_btn3.png") no-repeat;
    bottom: 32px;
    left: 8px;
}
.popup_w .right .right_list {
    margin-top: 20px;
}
.popup_w .right .right_list li{
    list-style: none;
    width: 220px;
    height: 30px;
    box-sizing: border-box;
    border-radius: 30px;
    border: 1px solid #fff;
    padding: 0 10px;
    margin: 10px 0;
    display: flex;
    align-items: center;
}
.popup_w .right .right_l_icon{
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #ed8600;
    margin-right: 7px;
    position: relative;
    
}
.popup_w .right .right_l_icon::after{
    width: 22px;
    height: 21px;
    content: "";
    position: absolute;
    left: 2px;
    bottom: 2px;
    background: url("../images/icon.png") center left no-repeat;
}
.popup_w .right .right_l_item{
    font-size: 14px;
}
.popup_w .right li.right_l_ellipsis{
    border: none;
    background: url("../images/ellipsis.png") left center no-repeat;
    margin: 30px 0;
}
.popup_w .right .right_person{
    width: 121px;
    height: 290px;
    background: url("../images/person.png") center no-repeat;
    position: absolute;
    right: 0;
    bottom: 0;
}