.subTxt,
.input_sub{
    display:inline-block;
    color:#7d7d7d;
    margin: 0 5px;
    font-size: 13px;
}

/*underBar input*/
div.underBar{
    border-bottom: 1px solid #dee0e1;
    height: 32px;
    position: relative;
}
div.underBar.on{
    border-bottom: 1px solid #606060;
}
input.input_txt{
    width: 100%;
}
input.input_txt.btn{
    width: 85%;
}
div.underBar input.search_btn{
    width: 25px;
    height: 25px;
    position:absolute;
    top: 0;
    right: 0;
}

/*border box input*/
input.border,
div.textarea_wrap,
div.input_wrap{
    padding: 5px 7px;
    border:1px solid #dee0e1;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    background-color: #fff;
}
input.border.blue{
    border:1px solid #1e86a9
}
input.border:focus{
    border: 1px solid #848484;
}

/*textarea*/
div.textarea_wrap{
    padding: 10px;
    position: relative;
    background-color: #fff;
}
.textarea_wrap textarea{
    width: 100%;
}
textarea.border{
    width: 85%;
    height: 37px;
}
div.textarea_wrap input.boxBtn{
    width: 75px;
    height: 40px;
    position:absolute;
    top: 8px;
    right: 10px;
    background-color: #1e86a9;
    color:#fff;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
}

/*select*/
.select_wrap{
    height: 100%;
    position: relative;
}
.select{
    display:inline-block;
    width: 100%;
    height: inherit;
    color:#232a57;
    position: relative;
    overflow: hidden;
    padding-right: 20px;

}
.select:after{
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 7px solid #232a57;
    position: absolute;
    top: 8px;
    right: 0;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    transform: rotate(0);
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -ms-transform: rotate(0);
    -o-transform: rotate(0);
}

.option{
    width: 100%;
    border: 1px solid #232a57;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    background-color: #fff;
    /*padding: 0 15px;*/
	padding:0 10px; 
    position:absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    text-align: center;
    z-index: 1;
    display:none
}
.option li{
    height: 32px;
    line-height: 32px;
    border-top: 1px solid #e8e8e8;
    font-size: 14px;
    cursor: pointer;
}
.option li:first-child{
    border-top: none;
}

.addr_zipcode{
    height: 50px;
}
.addr_zipcode .input_btn{
    margin-right: 20px;
}
.addr_wrap{
    width: 430px;
    margin-top: 7px;
}
.addr_wrap .border{
    width: 100% !important;
    margin: 7px 0;
}

/*checkbox*/
.chk_label{
    display: inline-block;
    color:#7d7d7d
}
.checkbox{
    border: 1px solid #dee0e1;
    width: 20px;
    height: 20px;
    border-radius: 3px;
    position: relative;
    top: -2px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    background-color: #fff;
    margin-right: 5px;
}
.checkbox:checked{
    background-color: #1e86a9 !important;
    border:none
}
.checkbox:checked:after,
.reverseChk .checkbox:after{
    content: '';
    display: inline-block;
    width: 6px;
    height: 4px;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%,-50%) rotate(-45deg);
    -webkit-transform: translate(-50%,-50%) rotate(-45deg);
    -moz-transform: translate(-50%,-50%) rotate(-45deg);
    -ms-transform: translate(-50%,-50%) rotate(-45deg);
    -o-transform: translate(-50%,-50%) rotate(-45deg);
}

.reverseChk{
    text-align: left;
}
.reverseChk .checkbox{
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    background-color: #dee0e1;
}

.finWebi .checkbox{
    background-color: #dee0e1;
}
.finWebi .checkbox:checked{
    background-color: #dee0e1 !important;
    border: 1px solid #dee0e1;
}
.finWebi .checkbox:after{
    display: none;
}

/*radio*/
.radio{
    border: 1px solid #dee0e1;
    width: 20px;
    height: 20px;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    position: relative;
    background-color: #fff;
}
.radio:checked:after{
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    background-color: #1e86a9;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
}

/*btn*/
.input_btn,
.underBar.on .input_btn,
.filebox label{
    width: 120px;
    height: 50px;
    color:#fff
}
.input_btn,
.input_btn.disabled{
    background-color: #c2c2c2;
}
.underBar.on .input_btn,
.input_btn.on,
.filebox label,
.popWrap.alert .sendBtn{
    background-color: #606060;
    color:#fff
}

.resetBtn,
.refreshBtn{
    color: #7d7d7d;
    font-size: 12px;
    text-align: right
    
}
.resetBtn span{
    cursor: pointer;
}

.goBtn{
    width: 135px;
    height: 40px;
    line-height: 40px;
    text-align: center;
}
.goBtn.back{
    color:#fff;
    background-color: #1e86a9;
}

/*file*/
.filebox input[type="file"] {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}
.filebox label {
    display: inline-block;
    text-align: center;
    line-height: 50px;
    /* 
    
    width: 90px;
    height: 30px;
    line-height: 30px;
    background-color: #777;
    border: none;
    font-size: 12px;
    color: #fff; */
}
.filebox .upload-name {
    display: inline-block;
    padding-left: 20px;
    font-size: 12px;
    background-color: #fff;
    width: 70%;
    color:#7d7d7d
}


@media all and (min-width:1025px){
    .select_wrap.on .select:after{
        transform: rotate(180deg);
        -webkit-transform: rotate(180deg);
        -moz-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
        -o-transform: rotate(180deg);
        transition: all 0.3s ease;
        -webkit-transition: all 0.3s ease;
        -moz-transition: all 0.2s ease;
        -o-transition: all 0.2s ease;
        -ms-transition: all 0.2s ease;
    }
    .select_wrap.on .option{
        display:block
    }
}