/* -- form表单 -- */
/* placeholder */
input.input-bd::-webkit-input-placeholder,
textarea.input-bd::-webkit-input-placeholder {
    /* WebKit browsers */
    color: #999;
}

input.input-bd:-moz-placeholder,
textarea.input-bd:-moz-placeholder {
    /* Mozilla Firefox 4 to 18 */
    color: #999;
}

input.input-bd::-moz-placeholder,
textarea.input-bd::-moz-placeholder {
    /* Mozilla Firefox 19+ */
    color: #999;
}

input.input-bd:-ms-input-placeholder,
textarea.input-bd:-ms-input-placeholder {
    /* Internet Explorer 10+ */
    color: #999;
}

.clearfix:after,
.clearfix:before {
    display: table;
    content: ' ';
}

.clearfix:after {
    clear: both;
}

.fl {
    float: left;
}

/* ----------表单样式---------- */
.common-form-modal {
    width: 100%;
    height: 100%;
}


.common-form-modal .form .input-bd {
    display: block;
    width: 100%;
    height: 40px;
    line-height: 40px;
    border-bottom: 1px solid #ddd;
    padding: 0 10px;
    font-size: 16px;
    background-color: transparent;
}

.common-form-modal .form .select-wrap {
    position: relative;
}

.common-form-modal .form .select-wrap .input-bd {
    color: #999;
    margin-top: 0px;
}

.common-form-modal .form .select-wrap .input-bd.selected {
    color: #666;
}

.common-form-modal .form .select-wrap.active .input-bd:before {
    -webkit-transform: rotate(-180deg);
    transform: rotate(-180deg);
}

.common-form-modal .form .select-wrap.active .select-dropdown {
    display: block;
}

.common-form-modal .form .select-wrap .input-bd {
    padding: 0 30px 0 10px;
    position: relative;
}

.common-form-modal .form .select-wrap .input-bd:before {
    content: '';
    position: absolute;
    width: 12px;
    height: 7px;
    top: 18px;
    right: 10px;
    background: url(../imgs/Triangle.png) no-repeat;
    background-size: 12px 7px;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.common-form-modal .form .select-wrap .select-dropdown {
    display: none;
    position: absolute;
    width: 100%;
    left: 0;
    top: 50px;
    z-index: 35;
    background: #ffffff;
    -webkit-box-shadow: 0 1px 6px rgba(0, 0, 0, 0.2);
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.2);
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.common-form-modal .form .select-wrap .select-dropdown .select-list {
    overflow-y: auto;
    overflow-x: auto;
    max-height: 180px;
}

.common-form-modal .form .select-wrap .select-dropdown .select-list.select-list-school {
    width: 50%;
}

.common-form-modal .form .select-wrap .select-dropdown .select-list.select-list-school:nth-child(1) .option {
    background: #fff url(../imgs/arrow.png) top 12px right 10px no-repeat;
    background-size: 5px 7px;
}

.common-form-modal .form .select-wrap .select-dropdown .select-list.select-list-school:nth-child(1) .option:hover {
    background: #fff url(../imgs/arrow-red.png) top 12px right 10px no-repeat;
    background-size: 5px 7px;
}

.common-form-modal .form .select-wrap .select-dropdown .select-list.select-list-school:nth-child(1) .option.active {
    background: #f3f3f3 url(../imgs/arrow-red.png) top 12px right 10px no-repeat;
    background-size: 5px 7px;
}

.common-form-modal .form .select-wrap .select-dropdown .select-list .option {
    margin: 0;
    line-height: 30px;
    padding: 0px 16px;
    clear: both;
    color: #999;
    font-size: 12px !important;
    white-space: nowrap;
    list-style: none;
    cursor: default;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.common-form-modal .form .select-wrap .select-dropdown .select-list .option:hover {
    color: #e24943;
}

.common-form-modal .form .select-wrap .select-dropdown .select-list .option.active {
    color: #e24943;
    background: #f3f3f3;
}

.common-form-modal .submit-btn {
    height: 40px;
    line-height: 40px;
    background: #e94831;
    text-align: center;
    font-size: 16px;
    color: #fff;
    border-radius: 4px;
    margin-top: 10px;
    margin-left: 16px;
    display: block;
}

.common-form-modal .submit-btn:hover {
    background: #d64540;
}

.common-form-modal .commonFormPc {
    width: 100%;
    height: 100%;
    position: relative;
}

.commonFormPc .form {
    display: flex;
    justify-content: space-between;
    width: 1009px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    padding-left: 43px;
    padding-right: 43px;

}

.commonFormPc .appoint-btn {
    height: 50px;
    line-height: 50px;
    background: #ffe6c2;
    text-align: center;
    font-size: 20px;
    color: #e94831;
    border-radius: 5px;
    margin-top: 16px;
    display: block;
    cursor: pointer;
}

.commonFormPc .appoint-btn:hover {
    background-color: #e3bf8a;
}

.commonFormPc .modal-close-btn {
    width: 28px;
    height: 28px;
    position: absolute;
    top: 36px;
    right: 12px;
    background: url(../imgs/popup-fork.png) no-repeat center;
    cursor: pointer;
}

.commonFormPc .modal-close-btn:hover {
    background-image: url(../imgs/popup-fork.png);
}

.commonFormPc .form .input-bd {
    height: 44px;
    line-height: 44px;
    padding-left: 16px;
}

.commonFormPc .form .tit-con {
    text-align: center;
    margin-bottom: 32px;
}

.commonFormPc .form .tit-con .tit {
    display: inline-block;
    font-family: PingFangSC-Semibold;
    font-size: 24px;
    line-height: 24px;
    color: #fff;
    font-weight: 600;
    padding: 0 10px;
    position: relative;
}

.common-form-modal.form-modal .commonFormPc .form .tit-con .tit span {
    color: #ffe6c2;
}

.common-form-modal.form-modal .commonFormPc .promise {
    font-size: 12px;
    color: rgba(18, 18, 18, 0.7);
    margin-top: 10px;
}

.common-form-modal .form2-error-box {
    font-family: PingFangSC-Regular;
    font-size: 16px;
    line-height: 16px;
    color: #333;
    padding: 14px 20px;
    background-color: #ffbb2a;
    border-radius: 4px;
    position: absolute;
    left: 50%;
    top: -64px;
    display: none;
}

.common-form-modal .form2-error-box::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    margin-left: -10px;
    width: 0;
    height: 0;
    border-right: 10px solid transparent;
    border-left: 10px solid transparent;
    border-top: 10px solid #ffbb2a;
}

#submitBtn {
    width: 169px;
    height: 100%;
    background-color: #e24943;
    border-radius: 6px;
    position: absolute;
    right: 0;
    font-family: PingFangSC-Regular;
    font-size: 24px;
    line-height: 38px;
    color: #ffffff;
}