#qryForm {
	margin: 0 auto;
	display: block;
	width: 800px;
	height: 340px;
}
.qry_input_wrapper,
.qry_search{
	margin-top: 30px;
	width: 100%;
    float: left;
    height: 36px;
    line-height: 36px;
}
.qry_input_wrapper label{
    padding-right: 16px;
    box-sizing: border-box;
	width: 32%;
    float: left;
	text-align: right;
	font-size: 14px;
}
.input{
	box-sizing: border-box;
	width: 36%;
    float: left;
    text-align: left;
}
.input input{
    float: left;
	padding: 0 0 0 10px;
	width: 100%;
    height: 36px;
	line-height: 36px;
	font-size: 14px;
	border: 0;
	border-bottom: 1px solid #ddd;
	border-radius: 0;
	outline: 0;
    text-align: left;
    text-indent:5px;
}
.input img{
	width: 75px;
    height: 36px;
    /*line-height: 25px;*/
    margin-left: 5px;
    vertical-align: middle;
    border: 0;
}
.input input#code{
    width:60%;
}
.codeImgWrap {
    float: left;
}
.input .pointer {
    margin-left: 5px;
    cursor: pointer;
}
.qry_search {
    position: relative;
	width: 100%;
	height: 54px;
	line-height: 54px;
	text-align: center;
}
.qry_search #qryBtn{
	display: inline-block;
	width: 36%;
    text-align: center;
    height: 54px;
	line-height: 54px;
	font-size: 18px;
    background: #409EFF;
	color: #fff;
	border: 0;
	border-radius: 4px;
	cursor: pointer;
}
.qry_search a{
	margin-left: 20px;
	color: #006644;
    text-decoration: none;
    vertical-align: baseline;
    text-decoration: underline;
}
.qry_tip {
    float: left;
	margin-top: 10px;
	width: 100%;
    color: #ff6600;
	text-align: center;
}
.msg1{
    padding-left: 8px;
    box-sizing: border-box;
    width: 30%;
    height: 36px;
    line-height: 36px;
    display: inline-block;
    margin-bottom: 4px;
    color: #292929;
}
.msg1 i{
    display: inline-block;
    width: 26px;
    height: 36px;
    background: url('../images/icon_correct.png') no-repeat center;
    background-size: 20px 20px;
}
.msg1.err i {
    background: url('../images/icon_err.png') no-repeat center;
    background-size: 20px 20px;
}
.msg1 font {
    display:inline-block;
    max-width: 230px;
    overflow: hidden;
    word-break: break-all;
    font-size: 12px;
    color: #fa5b5b;
}
.z-dragIn {
    animation: dragIn 1s ease;
}
@keyframes dragIn {
    0% {
        transform: translateX(3%);
    }
    10% {
        transform: translateX(-2.5%);
    }
    20% {
        transform: translateX(2.5%);
    }
    30% {
        transform: translateX(-2%);
    }
    40% {
        transform: translateX(2%);
    }
    50% {
        transform: translateX(-1.5%);
    }
    60% {
        transform: translateX(1.5%);
    }
    70% {
        transform: translateX(-1%);
    }
    80% {
        transform: translateX(1%);
    }
    90% {
        transform: translateX(-.5%);
    }
    100% {
        transform: translateX(0);
    }
}
.qry_result_err {
    color: #fa5b5b;
    position: absolute;
    top: -20px;
    left: 50%;
    margin-left: -150px;
    width: 300px;
    height: 20px;
    line-height: 20px;
}
/*查询结果*/
.result_wrapper{
    margin:30px auto 0;
    width:960px;
}
.result_wrapper.active{
    display:block;
}
#result{
    padding:5px;
    margin:0 auto;
    width:790px;
    border:1px solid #409EFF;
    box-sizing:border-box;
}
#result .result_title{
    display:block;
    width:100%;
    height:36px;
    font-size:16px;
    line-height:36px;
    text-indent:20px;
    color:#fff;
    border-radius:5px;
    background: #409EFF;
    /* background:#5c9ccc url('../../assets/images/back.png') 50% 50% repeat-x; */
}
#result table{
    margin:10px auto 0;
    width:740px;
    border:0;
    border-collapse: collapse;
}
#result table td,#result table th{
    height:40px;
    border:1px solid #E0E0E0;
    text-align:center;
    color: #808080;
}