.form-control {
    display: block;
    width: 100%;
    height: 30px;
    line-height: 30px;
    padding: 5px 10px;
    border: 1px solid #aaa;
    background: none;
}

.form-control:focus {
    outline: none;
    border-color: #84060C;
}
.form-box {
    max-width: 900px;
    margin: 0 auto;
}
 

.form-box .required:before {
    content: "";
    width: 7px;
    height: 10px;
    top: 50%;
    margin-top: -5px;
    display: inline-block;
    position: absolute;
    left: 5px;
    background: url(../images/_icon/arrow-red.png)left center no-repeat;
}
.form-box textarea.form-control {
    height: 160px;
}
.form-box .form-group .btn {
    background: #F75000;
    color: #fff;
    font-size: 18px;
    font-family: 'Lora', serif;
    width: 100%;
    line-height: 40px;
    margin-top: 10px;
}
.form-box .form-group .btn:hover {
    background: #CC0D0D;
}
.form-box .control-box {
    position: relative;
}
.captcha .control-box{
    padding-right: 135px;
}
.form-box .control-box label {
    display: inline-block;
    line-height: 36px;
    margin: 0 10px 6px 5px;
}
.form-box .captcha a {
    display: inline-block;
    position: absolute;
    right: 10px;
    top: 0;
    color: #FF732F;
    font-size: 20px;
    line-height: 38px;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}
.form-box .captcha a .fa {
    margin-left: 10px;
    display: inline-block;
    vertical-align: middle;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    color: #AAAAAA
}
.form-box .captcha a:hover .fa {
    -webkit-transform: rotate(270deg);
    -moz-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    -o-transform: rotate(270deg);
    transform: rotate(270deg);
    color: #84060C;
}
.form-box .name .control-box {
    position: relative;
}
.form-box .name .radio-box {
    line-height: 36px;
    position: absolute;
    right: 0;
    bottom: 100%;
}
.form-box .name .radio-box label {
    display: inline-block;
    margin-bottom: 0;
}

.success-txt {
    text-align: center;
    font-size: 15px;
    color: #222;
    position: relative;
    padding-bottom: 26px;
    margin-top: 27px;
}
.success-txt strong {
    display: block;
    margin: 0 auto;
    margin-bottom: 30px;
    max-width: 340px;
    padding: 8px 15px;
    line-height: 24px;
    background: #84060C;
    font-size: 18px;
    font-family: '微軟正黑體';
    color: #FFF;
    -webkit-border-radius: 10px;
            border-radius: 10px;
}