.formDiv{
    width: 668px;
    margin: 0 auto;
    margin-top: 24px;
}
.form-item{
    position: relative;
    margin-bottom: 16px;
}
.form-item label{
    display: inline-block;
    min-width: 84px;
    height: 40px;
    line-height: 40px;
    font-family: PingFangSC-Regular;
    font-size: 14px;
    color: #333333;
    text-align: right;
    line-height: 40px;
    margin-right: 16px;
}
.form-item input{
    width: 560px;
    height: 40px;
    padding-left: 16px;
    box-sizing: border-box;
    background: rgba(255,255,255,0.00);
    border: 1px solid rgba(0,0,0,0.10);
}
input::placeholder{
    font-family: PingFangSC-Regular;
    font-size: 14px;
    color: #A5AAB2;
}
.error{
    min-width: 168px;
    position: absolute;
    right: -180px;
    top: 0;
    display: none;
    font-family: PingFangSC-Regular;
    font-size: 14px;
    color: #FD3B56;
    text-align: left;
    line-height: 40px;
}

.formDiv p{
    font-family: PingFangSC-Regular;
    font-size: 14px;
    color: #666666;
    text-align: left;
    margin-top: 8px;
    margin-bottom: 48px;
}
.submit-btn{
    width: 240px;
    height: 40px;
    line-height: 40px;
    background-color: #2748B3;
    font-family: PingFangSC-Medium;
    font-size: 16px;
    color: #FFFFFF;
    text-align: center;
    cursor: pointer;
    margin: 0 auto;
}

div.select {
    width: 558px;
    position: relative;
    border: 1px solid rgba(0,0,0,0.10);
}

div.selectChoosed {
    width: 558px;
    box-sizing: border-box;
    border: none;
    line-height: 40px;
    font-family: PingFangSC-Regular;
    font-size: 14px;
    color: #000;
    padding: 0 16px;
    padding-right: 64px;
    background: url(../img/24-icons8-expand_arrow.png) no-repeat center;
    background-position-x: 523px;
    /* background-color: rgba(255, 255, 255, 0.30); */
    cursor: pointer;
  
}

div.selectOptionList {
    display: none;
    width: 558px;
    position: absolute;
	/* box-shadow:1px 12px 12px #888888; */
    top: 40px;
    left: -1px;
    background-color: #FFFFFF;
    border: 1px solid #ccc;
    transition: all 0.8s;
    z-index: 5;
}

div.selectOptionList .selectOptionItem {
    width: 558px;
    background: #FFFFFF;
    font-family: PingFangSC-Regular;
    font-size: 14px;
    color: #666666;
    height: 32px;
    line-height: 32px;
    padding: 0 24px;
    box-sizing: border-box;
    cursor: pointer;
}

div.selectOptionList .selectOptionItem.active,
div.selectOptionList .selectOptionItem:hover {
    background: #F3F4F6;
    color: #2748B3;
}

/* 遮罩层样式 */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.30);
    z-index: 999;
    display: none;
}
/* 弹出框样式 */
.popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    padding: 48px 42px;
    box-sizing: border-box;
    z-index: 1000;
    display: none;
}
.popup .tip img{
    margin-right: 16px;
}
.popup .tip{
    font-family: PingFangSC-Regular;
    font-size: 16px;
    color: #666666;
    text-align: center;
    line-height: 24px;
}
.close{
    cursor: pointer;
    position: absolute;
    top: 8px;
    right: 8px;
}
.closeBtn{
    display: flex;
    justify-content: center;
    width: 240px;
    height: 40px;
    line-height: 40px;
    background-color: #2748B3;
    font-family: PingFangSC-Medium;
    font-size: 16px;
    color: #FFFFFF;
    text-align: center;
    cursor: pointer;
    margin: 0 auto;
    margin-top: 40px;
}