@charset "utf-8";
/* CSS Document */
.select_box {
    border: solid 1px #e2e2e2;
    color: #444;
    position: relative;
    cursor: pointer;
    width: 140px;
}
.select_box .selet_open {
    display: inline-block;
    position: absolute;
    right: 0;
    top: 0;
    width: 30px;
    height: 30px;
    background: #fff url(../images/select_up.png) no-repeat center center;
}
.select_box .select_txt {
    display: block;
    padding-left: 10px;
    line-height: 30px;
    height: 30px;
    cursor: text;
    overflow: hidden;
    color: #ccc;
    font-size: 12px;
}
.select_box .option {
    border: solid 1px #e2e2e2;
    position: absolute;
    top: 30px;
    left: -1px;
    z-index: 2;
    display: none;
    max-height: 190px;
    overflow: auto;
    background-color: #fff;
}
.select_box .option a {
    display: block;
    height: 40px;
    line-height: 40px;
    text-align: left;
    padding: 0 10px;
    background: #fff;
    font-size: 14px;
    color: #666;
}
.select_box .option a:hover {
    background: #f4f4f4;
}

.form-box{
    border: 1px solid #376ed3;
    padding: 0 0 15px;
    background-color: #fff;
}
.form-box .form-tit {
    background-color: #376ed3;
    color: #fff;
    text-align: center;
    position: relative;
    height: 40px;
}
.form-box .form-tit::after {
    content: '';
    height: 30px;
    background-color: #376ed3;
    position: absolute;
    bottom: -15px;
    left: 0;
    right: 0;
    border-radius: 50%;
}
.form-box .form-tit h2 {
    line-height: 52px;
    font-size: 20px;
    position: relative;
    z-index: 2;
    display: inline-block;
}
.form-box .form-tit h2::before, .form-box .form-tit h2::after{
    content: '';
    background-color: #fff;
    opacity: .3;
    height: 1px;
    width: 60px;
    position: absolute;
    top: 50%;
}
.form-box .form-tit h2::before {
    left: -70px;
}
.form-box .form-tit h2::after {
    right: -70px;
}
.form-box .form-sub {
    opacity: .5;
    font-size: 14px;
    text-align: center;
    margin-top: 20px;
}
.form-box .form-item {
    display: flex;
    align-items: center;
    margin-top: 10px;
    padding: 0 25px;
}
.form-box .form-item label {
    flex-shrink: 0;
    font-size: 14px;
    color: #000;
    opacity: .7;
}
.form-box .form-item .ipt {
    flex: 1;
    height: 32px;
    border: 1px solid #e2e2e2;
    text-indent: 10px;
}
.form-box .form-item .select_box{
    flex: 1;
}
.form-box .select_box .select_txt {
    height: 32px;
    line-height: 32px;
    background-color: #fff;
}
.form-box .form-btn {
    display: block;
    color: #fff;
    font-size: 16px;
    width: 180px;
    line-height: 40px;
    text-align: center;
    margin: 20px auto 0;
    background-color: #376ed3;
    border-radius: 3px;
}
