html {
    /*谷歌浏览器字体最小字体12px*/
    -webkit-text-size-adjust: 100%;
    /*100%/none 关闭字体大小自动调整功能*/
    /*a标签及拥有 :active伪类的元素有默认的高亮框*/
    -webkit-tap-hightlight-color: transparent;
    /*禁止文本被选中*/
    -webkit-user-select: none;
    font-family: 'MicrosoftYaHei';
}

body {
    overflow-x: hidden;
    /*开启moblie网页快速滚动和回弹的效果*/
    -webkit-overflow-scrolling: touch;
    font-family: 'MicrosoftYaHei';
}

* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

a {
    display: block;
    width: 100%;
    text-decoration: none;
}

img {
    border: 0;
    width: 100%;
}

a,
img {
    /*阻止长按页面，弹出菜单的方法。*/
    -webkit-touch-callout: none;
}

input,
textarea {
    -webkit-appearance: none;
    outline: none;
    border: none;
    box-sizing: border-box;
}

.fl {
    float: left;
}

.fr {
    float: right;
}

.clearfix:after {
    content: "";
    display: block;
    width: 100%;
    height: 0;
    clear: both;
}

input,
select {
    width: 100%;
    border: none;
    display: block;
    font-family: 'MicrosoftYaHei';
}

/*修改placeholder的字体颜色*/
input:-moz-placeholder {
    /* Mozilla Firefox 4 to 18 */
    color: #C4C4C4;
}

input::-moz-placeholder {
    /* Mozilla Firefox 19+ */
    color: #C4C4C4;
}

input:-ms-input-placeholder {
    color: #C4C4C4;
}

input::-webkit-input-placeholder {
    color: #C4C4C4;
}

button:focus,
select:focus,
input:focus {
    outline: none;
}

section{
    background: #fff;
    padding: 0 0.32rem;
}
.question {
    background: #F6F6F6;
    margin-bottom: 0.57rem;
}
.box_list {
    margin: 0;
}
.box_list>div.show {
    padding: 0.315rem 0;
    background: #FFF;
    padding-top: 0.125rem;
}

.box_list>div {
    padding: 0 0.2rem;
    background: #F6F6F6;
}

.entrance-top {
    padding: 0.27rem 0 0.15rem;
}

.entrance-top p {
    font-size: 0.22rem;
    font-weight: bold;
    line-height: 0.2rem;
    font-family: 'MicrosoftYaHei';
    /* text-transform: uppercase; */
}

.entrance-top p+p {
    font-size: 0.16rem;
    font-weight: normal;
    line-height: 0.16rem;
    margin-top: 0.15rem;
}

.required-color {
    margin-left: 4px;
    color: #ee0000;
    font-size: 22px;
    vertical-align: middle;
}

.information {
    padding-bottom: 0.36rem;
}
.field-name {
    font-size: 0.16rem;
    font-weight: bold;
    line-height: 0.2rem;
}
.field-import {
    background: #FFFFFF;
    border-radius: 5px;
    margin-top: 0.1rem;
}
.field-import input {
    border: 1px solid #DBDBDB;
    border-radius: 3px;
    width: 100%;
    height: 0.5rem;
    color: #002F5E;
    padding: 0 0.2rem;
    font-size: 0.18rem;
    line-height: 0.5rem;
    font-weight: bold;
}
.buttonlist {
    margin: 0 .32rem;
    padding: 0.14rem 0 0rem;
}
.next {
    /* height: 0.5rem;
    line-height: 0.5rem;
    text-align: center;
    color: #FFFFFF;
    background: #002F5E;
    border-radius: 5px;
    font-size: 0.28rem; */
    background: #002F5E;
    height: 0.67rem;
    line-height: 0.67rem;
    font-size: 0.28rem;
    font-family: 'MicrosoftYaHei';
    color: #ffffff;
    text-align: center;
    border-radius: 0.03rem;
}
.tips {
    display: none;
    color: #f00000;
    margin-top: 5px;
    font-size: 0.14rem;
}