* {
    margin: 0;
    padding: 0;
    list-style: none;
    box-sizing: border-box;
}

html {
    font-family: "PingFangSC-regular","Microsoft YaHei";
    color: #101010;
    font-size: 14px;
}

body{
    min-width: 320px;
    max-width: 480px;
    margin: 0 auto;
}

input {
    outline: none;
    border: none;
}

img {
    display: block;
}


.clearfix:after { /*伪元素是行内元素 正常浏览器清除浮动方法*/
    content: "";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}

.clearfix {
    *zoom: 1; /*ie6清除浮动的方式 *号只有IE6-IE7执行，其他浏览器不执行*/
}

.flex{
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}

.flex-cl_start{
    -webkit-box-align: start;
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
}
.flex-cl_end{
    -webkit-box-align: end;
    -ms-flex-align: end;
    -webkit-align-items: flex-end;
    align-items: flex-end;
}
.flex-alc{
    -webkit-box-align: center;
    -ms-align-items:center;
    -webkit-align-items: center;
    align-items: center;
}

.flex-center{
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
}
.flex-end{
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
}
.flex-justify{
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}

.flex-space{
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-around;
    justify-content: space-around;
}

.flex-1{
    -webkit-box-flex: 1;
    -ms-flex: 1;
    -webkit-flex: 1;
    flex: 1;
}

.flex-dic{
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
}
.flex-wrap{
    flex-wrap: wrap;
}

.mgt-4{
    margin-top: 4px;
}
.mgt-6{
    margin-top: 6px;
}

.mgt-9{
    margin-top: 9px;
}
.mgt-10{
    margin-top: 10px;
}

.mgt-14{
    margin-top: 14px;
}

.mgt-25{
    margin-top: 25px;
}

.mgb-6{
    margin-bottom: 6px;
}

.mgb-10{
    margin-bottom: 10px;
}

.mgl-9{
    margin-left: 9px;
}

.mgr-5{
    margin-right: 5px;
}

.f12{
    font-size: 12px;
}
.f13{
    font-size: 13px;
}
.f14{
    font-size: 14px;
}
.f16{
    font-size: 16px;
}
.f18{
    font-size: 18px;
}
.f20{
    font-size: 20px;
}
.f22{
    font-size: 22px;
}
.f24{
    font-size: 24px;
}
.f26{
    font-size: 26px;
}
.f28{
    font-size: 28px;
}
.f30{
    font-size: 30px;
}

.f36{
    font-size: 36px;
}
.f50{
    font-size: 50px;
}


.black{
    color: #101010;
}
.blue{
    color: #2B86F6;
}

.orange{
    color: rgb(240,143,88);
}

.dark{
    color: #9A9A9A;
}

.pr{
    position: relative;
}

.tl{
    text-align: left;
}

.tc{
    text-align: center;
}
.tr{
    text-align: right;
}


.nulltxt {
    text-align: center;
    font-size: 16px;
    margin-bottom: 10px;
}


/*底部导航栏*/

.footer{
    width: 100%;
    height: 50px;
    max-width: 480px;
    background-color: #F7F7F7;
    position: fixed;
    left: 50%;
    bottom: 0;
    transform: translate(-50%,0);
}

.tab-item img{
    width: 20px;
    height: 20px;
    margin: 0 auto;
}
.tab-item p{
    margin-top: 8px;
    font-size: 10px;
    color: #929292;
    margin-bottom: 1px;
}
.tab-item.active p{
    color: #ec712e;
}

.nav{
    margin-top: 8px;
}
.nav img,.nav div {
    width: 24px;
    height: 24px;
}

.agreement-file{
    padding: 30px 20px;
    line-height: 25px;
    font-size: 14px;
    width: 300px;
    height: 500px;
    color: #000;
}
.van-list__finished-text{
    color: #fff;
}
[v-cloak] {
    display: none;
}