/* CSS Document */

* {
    margin: 0;
    padding: 0;
    outline: 0;
}

a {
    text-decoration: none;
    border: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: 100%;
}

ul,
ol,
li {
    list-style: none;
}

em,
i {
    font-style: normal;
}

img {
    border: none;
}

input,
img {
    vertical-align: middle;
    border: none;
    display: inline-block;
    height: auto;
}

input {
    -webkit-appearance: none;
    outline: none;
}

html {
    height: 100%;
    width: 100%;
}

body {
    font-size: 14px;
    margin: 0 auto;
    width: 100%;
    font-family: Arial, 微软雅黑, 黑体, sans-serif;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

select {
    /*Chrome和Firefox里面的边框是不一样的，所以复写了一下*/
    /*border: solid 1px #000;*/
    /*很关键：将默认的select选择框样式清除*/
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    /*在选择框的最右侧中间显示小箭头图片*/
    background: url("../images/arrow.png") no-repeat scroll right center transparent;
    /*为下拉小箭头留出一点位置，避免被文字覆盖*/
    padding-right: 14px;
    padding-left: 2%;
}


/*清除ie的默认选择框样式清除，隐藏下拉箭头*/

select::-ms-expand {
    display: none;
}

.hide {
    display: none;
}

.visibility_hide {
    visibility: hidden;
}

.chosen-container-single .chosen-single {
    height: 32px;
    line-height: 32px;
    border: 1px solid #ced2d5;
}

.container {
    max-width: 640px;
    width: 100%;
    height: 100%;
    margin: 0 auto;
}

.no-padding-lr {
    padding-left: 0;
    padding-right: 0;
}

.main_container {
    width: 100%;
    height: 100%;
    max-width: 640px;
    overflow: auto;
    position: relative;
}

.submit_box {
    position: absolute;
    top: 40%;
    width: 100%;
    z-index: 5;
}

.submit_box ul {
    width: 100%;
    text-align: center;
}

.submit_box ul li {
    float: left;
    display: block;
    margin: 4% 7.5%;
    width: 85%;
}

.submit_box ul li span.left {
    float: left;
    width: 30%;
    display: inline-block;
    height: 34px;
    vertical-align: middle;
}

.submit_box ul li span.right {
    float: right;
    width: 65%;
    display: inline-block;
    text-align: left;
}

.submit_box input {
    border: 1px solid #ced2d5;
    border-radius: 6px;
    height: 32px;
    line-height: 32px;
    padding: 0 2%;
    color: #000;
    width: 100%;
    font-size: 14px;
}

.chosen-select {
    width: 56%;
    height: 32px;
    line-height: 32px;
    border-radius: 6px;
    border: 1px solid #ced2d5;
    color: #838383;
}

.submit_box input.short {
    width: 15%;
}

.pages_btn_submit {
    width: 200px;
}

.popup_layer_fixed {
    position: fixed !important;
    left: 0;
    top: 0;
    z-index: 10;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .8);
}

.tip_layer {
    position: relative;
    background-color: #FFFFFF;
    border-radius: 10px;
    line-height: 25px;
    padding: 15% 10%;
    width: 60%;
    margin-left: 10%;
    margin-top: 45%;
}

a.close {
    position: absolute;
    right: 5px;
    top: 5px;
    background-color: #e4e4e4;
    color: #b7b7b7;
    width: 30px;
    height: 30px;
    line-height: 30px;
    border-radius: 30px;
    font-size: 30px;
    text-align: center;
    font-weight: bold;
}
