@charset "UTF-8";
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,input,textarea,p,blockquote,th,td,header,nav,section,article,aside,footer,figure,figcaption,menu,button {
    margin:0;
    padding:0;
}
html{
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    height: 100%;
}
body {
    /*font-family: Helvetica Neue, Helvetica, Arial, sans-serif;*/
    font-family: "PingFang SC", "Microsoft Yahei", sans-serif;
    font-size: 0.26rem;
    line-height:1.6;
    color: #333;
    background-color: #f6f6f6;
    -webkit-touch-callout:none ;
    -webkit-user-select:none ;
    -webkit-text-size-adjust:100%;
    -webkit-tap-highlight-color:transparent ;
    -webkit-overflow-scrolling:touch;
     outline: none;
    padding-top: 10rpx;
}

a{
    color: #333;
    -webkit-touch-callout: none;
    text-decoration: none;
    outline:none;
    -webkit-tap-highlight-color:rgba(0, 0, 0, 0);
}
input[type="button"],input[type="submit"],input[type="text"]{
    -webkit-appearance: none;
    border-radius: 0;
}
input,label{
    -webkit-tap-highlight-color:rgba(255,0,0,0);
}
a,button,textarea,select{
    -webkit-appearance: none;/* 1.去除android a/button/input标签被点击时产生的边框  */
    -webkit-tap-highlight-color:rgba(255,0,0,0);/*去除ios a标签被点击时产生的半透明灰色背景 */
}

/*清楚苹果按钮样式*/
input[type="button"], input[type="submit"], input[type="reset"],input[type="text"] {
    -webkit-appearance: none;
    border-radius: 0;
}
button::-moz-focus-inner, input[type=button]::-moz-focus-inner, input[type=file] > input[type=button]::-moz-focus-inner, input[type=reset]::-moz-focus-inner, input[type=submit]::-moz-focus-inner {
    border: none
}
h1,h2,h3,h4,h5,h6 {
    font-size:100%;
    font-weight:500;
    font-style:normal;
    margin-top: 0.1rem;
}
fieldset {
    border:0;
    max-width: 100%;
    vertical-align: middle;
    -ms-interpolation-mode: bicubic;
    -webkit-touch-callout: none
}
img{
    border:0;
    width: 100%;
    object-fit: cover;
    vertical-align: middle;
    -ms-interpolation-mode: bicubic;
    -webkit-touch-callout: none
}
ul,li {
    list-style:none
}
input,textarea{resize:none;}/*禁止改变大小*/
input,textarea,select,option,optgroup,button,form,fieldset{
    border: none;
    outline:none;/*清除选中效果*/
    -webkit-appearance: none;/*去除系统默认appearance的样式*/
   /* 规定两个并排的带边框的框*/
    -moz-box-sizing: content-box;
    -webkit-box-sizing: content-box;
    -o-box-sizing: content-box;
    -ms-box-sizing: content-box;
     box-sizing: content-box;
}
textarea {
    outline: 0;
    border-radius: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    overflow: auto;
    resize: none;
    font: 100% tahoma, \5b8b\4f53, arial
}
/*解决firefox按钮文字难以垂直居中问题*/
input[type="reset"]::-moz-focus-inner,
input[type="button"]::-moz-focus-inner,
input[type="submit"]::-moz-focus-inner,
input[type="file"] > input[type="button"]::-moz-focus-inner{
    border:none;
    padding:0;
    -webkit-appearance: none ;
    -moz-appearance: none;
    margin: 0
}
.fl{
    float: left;
}
.fr{
    float: right;
}
/*清除浮动*/
.clearfix::before,
.clearfix::after{
    content:".";
    display: block;
    height: 0;
    line-height: 0;
    visibility: hidden;
    clear: both;
}
/*超出隐藏1行*/
.ov{
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
/*超出隐藏2行*/
.qa{
    font-size: 0.28rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 0.25rem;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    white-space: initial;
}

/* 1px */
/* 边框*/
.border{
    position: relative;
}
.border:before {
    content: "";
    width: 200%;
    height: 200%;
    position: absolute;
    top: 0;
    left: 0;
    border: 1px solid #e5e5e5;
    -webkit-transform-origin: 0 0;
    -webkit-box-sizing: border-box;
    pointer-events: none;
    z-index: 10;
    transform: scale(0.5);
    -webkit-transform: scale(0.5);
}
/* 上边框*/
.border-t{
    position: relative;
}
.border-t:before {
    border-top: 1px solid #e5e5e5;
    content: '';
    display: block;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    transform: scaleY(0.5);
    -webkit-transform: scaleY(0.5);
    -webkit-transform-origin: left top
}
/* 下边框*/
.border-b{
    position: relative;
}
.border-b:before {
    border-bottom: 1px solid #e5e5e5;
    content: '';
    display: block;
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    transform: scaleY(0.5);
    -webkit-transform: scaleY(0.5);
    -webkit-transform-origin: left bottom;
}

/* 上下边框#e5e5e5*/
.border-tb{
    position: relative;
}
.order-tb:before {
    border-top: 1px solid #e9e9e9;
    content: '';
    display: block;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    transform: scaleY(0.5);
    -webkit-transform: scaleY(0.5);
    -webkit-transform-origin: left top;
}
.border-tb:after{
    border-bottom: 1px solid #e9e9e9;
    content: '';
    display: block;
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    transform: scaleY(0.5);
    -webkit-transform: scaleY(0.5);
    -webkit-transform-origin: left bottom;
}

/* 左边框*/
.border-l{
    position: relative;
}
.border-l:before{
    border-left: 1px solid #e9e9e9;
    content: '';
    display: block;
    bottom: 0;
    position: absolute;
    left: 0;
    top: 0;
    transform: scaleX(0.5);
    -webkit-transform: scaleX(0.5);
    -webkit-transform-origin: left top;
}
/* 右边框*/
.border-r{
    position: relative;
}
.border-r:before {
    border-right: 1px solid #e9e9e9;
    content: '';
    display: block;
    bottom: 0;
    position: absolute;
    right: 0;
    top: 0;
    transform: scaleX(0.5);
    -webkit-transform: scaleX(0.5);
    -webkit-transform-origin: right top;
}

/* 圆角边框*/
.border-radius{
    position: relative;
    border-radius: 8px;
}
.border-radius:before {
    content: "";
    width: 200%;
    height: 200%;
    position: absolute;
    top: 0;
    left: 0;
    border: 1px solid #e9e9e9;
    -webkit-transform-origin: 0 0;
    padding: 1px;
    -webkit-box-sizing: border-box;
    border-radius: 8px;
    pointer-events: none;
    z-index: 10;
    transform: scale(0.5);
    -webkit-transform: scale(0.5);
}

/* 弹性盒子 */
.flex{
    display: -webkit-box; /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
    display: -moz-box; /* Firefox 17- */
    display: -webkit-flex; /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
    display: -ms-flexbox; /* IE 10 */
    display: flex; /* Chrome 29+, Firefox 22+, IE 11+, Opera 12.1/17/18, Android 4.4+ */
}
/* 子元素自动占据剩余的空间 */
.flex-1{
    -webkit-box-flex: 1;   /* OLD - iOS 6-, Safari 3.1-6 */
    -moz-box-flex: 1;     /* OLD - Firefox 19- */
    -webkit-flex: 1;      /* Chrome */
    -ms-flex: 1;           /* IE 10 */
    flex: 1;              /* NEW, Spec - Opera 12.1, Firefox 20+ */
}
.flex-2{
    -webkit-box-flex: 2;   /* OLD - iOS 6-, Safari 3.1-6 */
    -moz-box-flex: 2;     /* OLD - Firefox 19- */
    -webkit-flex: 2;      /* Chrome */
    -ms-flex: 2;           /* IE 10 */
    flex: 2;              /* NEW, Spec - Opera 12.1, Firefox 20+ */
}
.flex-3{
    -webkit-box-flex: 3;   /* OLD - iOS 6-, Safari 3.1-6 */
    -moz-box-flex: 3;     /* OLD - Firefox 19- */
    -webkit-flex: 3;      /* Chrome */
    -ms-flex: 3;           /* IE 10 */
    flex: 3;              /* NEW, Spec - Opera 12.1, Firefox 20+ */
}
.flex-4{
    -webkit-box-flex: 4;   /* OLD - iOS 6-, Safari 3.1-6 */
    -moz-box-flex: 4;     /* OLD - Firefox 19- */
    -webkit-flex: 4;      /* Chrome */
    -ms-flex: 4;           /* IE 10 */
    flex: 4;              /* NEW, Spec - Opera 12.1, Firefox 20+ */
}
.flex-5{
    -webkit-box-flex: 5;   /* OLD - iOS 6-, Safari 3.1-6 */
    -moz-box-flex: 5;     /* OLD - Firefox 19- */
    -webkit-flex: 5;      /* Chrome */
    -ms-flex: 5;           /* IE 10 */
    flex: 5;              /* NEW, Spec - Opera 12.1, Firefox 20+ */
}
/* 当子元素超出了容器是不允许子元素换行 */
.flex-a-line{
    -webkit-flex-wrap:nowrap;
    -moz-flex-wrap: nowrap;
    -ms-flex-wrap:nowrap;
    flex-wrap: nowrap;
}
/* 允许子元素换行 */
.flex-multiple-lines{
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
}
/* 设置弹性布局的方向，子元素按照在源文档中声明的顺序从上到下显示 */
.flex-direction-column{
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
}
/* 水平布局下的子元素 水平居中 */
.flex-pack-center{
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    -o-justify-content: center;
    justify-content: center;
}
/* 水平布局下的子元素 2端对齐 */
.flex-pack-justify{
    -webkit-box-pack: justify;/* android 2.1-3.0, ios 3.2-4.3 */
    -webkit-justify-content: space-between;/* Chrome 21+ */
    -ms-flex-pack: justify;/* WP IE 10 */
    justify-content: space-between;/* android 4.4 */
}
/* 水平布局下的子元素 垂直居中 */
.flex-align-center{
    -webkit-box-align: center;/* android 2.1-3.0, ios 3.2-4.3 */
    -webkit-align-items: center;/* Chrome 21+ */
    -ms-flex-align: center;/* WP IE 10 */
    align-items: center;/* android 4.4 */
}
/* 透明 */
.opa2{
    opacity: .2;
    filter: alpha(opacity = 20);
    -moz-opacity: .2;
}
.opa3{
    opacity: .3;
    filter: alpha(opacity = 30);
    -moz-opacity: .3;
}
.opa4{
    opacity: .4;
    filter: alpha(opacity = 40);
    -moz-opacity: .4;
}
.opa5{
    opacity: .5;
    filter: alpha(opacity = 50);
    -moz-opacity: .5;
}
.opa6{
    opacity: .6;
    filter: alpha(opacity = 60);
    -moz-opacity: .6;
}
.opa7{
    opacity: .7;
    filter: alpha(opacity = 70);
    -moz-opacity: .7;
}
.opa8{
    opacity: .8;
    filter: alpha(opacity = 80);
    -moz-opacity: .8;
}

/*居中对齐*/
.align{
    text-align: center;
}
/* 字体 */
.f12{
    font-size: 0.24rem;
}
.f13{
    font-size: 0.26rem;
}
.f14{
    font-size: 0.28rem;
}
.f15{
    font-size: 0.30rem;
}
.f16{
    font-size: 0.32rem;
}
.f17{
    font-size: 0.34rem;
}
.f18{
    font-size: 0.36rem;
}
.f19{
    font-size: 0.38rem;
}
.f20{
    font-size: 0.40rem;
}


/*页面头定位样式*/
.fixed-header{
    position: fixed;
    top: 0;
    left: 0;
    z-index: 250;
}
/*顶部和底部都固定*/
.fixed-footer{
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 250;
}
.fixed-conta{
    width: 100%;
    padding-top:0.8rem;
}
.fixed-contb{
    width: 100%;
    padding-bottom:1rem;
}

/*头*/
.header{
    width: 100%;
    height: 0.9rem;
    line-height: 0.9rem;
    background-color: #fcfcfd;
    border-bottom: 0.01rem solid #e5e5e5;
}
.header .city{
    position: relative;
    padding-left: 0.2rem;
    width: 1.2rem;
    max-width: 1.2rem;
    overflow: hidden;
}
.header .city .city-name{
    max-width: 0.9rem;
    font-size: 0.26rem;
    display: inline-block;
    height: 0.9rem;
    line-height: 0.9rem;
    overflow: hidden;
}
.header .city >i{
    position: absolute;
    top:0;
    font-size: 0.28rem;
    color: rgb(0 0 0 / 50%);
}
.header> .top-sch-box{
    margin: 0.12rem 0.12rem 0.12rem 0.12rem;
    color: #9e9e9e;
    background-color:#ececec;
    -webkit-border-radius:1000px;
    border-radius: 1000px;
    overflow: hidden;
    height: 0.6rem;
    line-height: 0.6rem;
}
.header> .top-sch-box> .centerflex{
    position: relative;
    left: 0;
    top:0;
    height:auto ;
}
.header> .top-sch-box .icon-search{
    position: absolute;
    left: 0.2rem;
    top:0;
    font-size:0.28rem;
}
.header>.top-sch-box .sch-txt {
    font-size: 0.26rem;
    padding-left: 0.6rem;
}


/*页尾*/
.footer-menu{
    width: 100%;
    height:1rem;
    -webkit-overflow-scrolling:touch;
    overflow-y: scroll;
    background-color:#fcfcfd;
    /* border-top: 0.01rem solid #d7d6dc;*/
}
.footer-menu .menu-tabbar{
    height:1rem;
}
.footer-menu .menu-tabbar>a{
    display: block;
    padding: 0.04rem 0 0 0;
    line-height: 1.2;
    text-align: center;
}
.footer-menu .menu-tabbar>a>i{
    font-size: 0.34rem;
}
.footer-menu .menu-tabbar>a>p{
    font-size: 0.24rem;
}
.footer-menu .active{
    color: #1aad19;
}

/*通用标题*/
.page-header{
    height: 0.9rem;
    line-height:0.9rem;
    background-color: #fcfcfd;
    padding:0 0.15rem 0 0.15rem;
}
.page-header .back-icon{
}
.page-header .back-icon>i{
    color: #333;
    font-size: 0.35rem;
}

.page-header .page-title{
    text-align: center;
    font-size: 0.34rem;
}

/*二级导航*/
.wrapper {
    position: relative;
    min-height: 0.8rem;
    width: 100%;
    margin: 0 auto 0.05rem;
    background-color: #fff;
    box-shadow: 0 3px 2px -2px rgba(200, 200, 200, .15);
    overflow: hidden;
}
.wrapper .scroller {
    position: absolute;
}
.wrapper .scroller > ul {
    width: 100%;
    text-align: center;
}
.wrapper .scroller > ul > li {
    flex: 1;
    -webkit-box-flex: 1;
    display: -webkit-box;
    text-align: center;
    white-space: nowrap;
    -webkit-box-align: center;
    -webkit-box-pack: center;
}
.wrapper .scroller > ul > li > a {
    display: block;
    padding: 0.22rem 0.3rem 0.16rem 0.3rem;
    font-size: 0.3rem;
    color: #222;
}
.wrapper .scroller > ul .oneactive > a {
    color: #1aad19;
}
.wrappertwo {
    position: relative;
    background-color:#fff;
    height: 0.8rem;
    line-height: 0.8rem;
    width: 100%;
    overflow: hidden;
    margin: 0 auto 0.06rem;
}
.wrappertwo .scroller {
    position: absolute;
    margin-left: 0.2rem;
}
.wrappertwo .scroller > ul {
    width: 100%;
    text-align: center;
}
.wrappertwo .scroller > ul > li {
    display: inline-block;
    list-style: none;
    text-align: center;
    -webkit-box-flex: 1;
    display: -webkit-box;
    flex: 1;
    white-space: nowrap;
    -webkit-box-align: center;
    -webkit-box-pack: center;
}
.wrappertwo .scroller > ul > li > a {
    background-color: #9999990f;
    padding: 0.1rem 0.2rem 0.1rem 0.2rem;
    width: 100%;
    font-size: 0.24rem;
    color: #666;
    margin-right: 0.2rem;
    border-radius: 5px;
}
.wrappertwo .scroller > ul .twoactive > a {
    color: #1aad19;
}

/*↓上下拉刷新*/
.dropload-up,.dropload-down{
    position: relative;
    height: 0;
    overflow: hidden;
    font-size: 0.24rem;
    -webkit-transform:translateZ(0);
    transform:translateZ(0);
}
.dropload-down{
    width: 100%;
    height: 1rem;
}
.dropload-refresh,.dropload-update,.dropload-load,.dropload-noData{
    height: 1rem;
    line-height: 1rem;
    text-align: center;
}
.dropload-load .loading{
    display: inline-block;
    height: 0.3rem;
    width: 0.3rem;
    border-radius: 100%;
    margin: 0.12rem;
    border: 0.04rem solid #666;
    border-bottom-color: transparent;
    vertical-align: middle;
    -webkit-animation: rotate 0.75s linear infinite;
    animation: rotate 0.75s linear infinite;
}
@-webkit-keyframes rotate {
    0% {
        -webkit-transform: rotate(0deg);
    }
    50% {
        -webkit-transform: rotate(180deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
    }
}
@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(180deg);
    }
    100% {
        transform: rotate(360deg);
    }
}


/*登录框*/
.pop-up-login{
    position: fixed;
    right: 0;
    bottom: 0;
    -webkit-transform: translate(100%,0);
    transform: translate(100%,0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    z-index: 5000;
    width: 100%;
    height: 100%;
    background-color:#fff;
    -webkit-transition: -webkit-transform .3s;
    transition: -webkit-transform .3s;
    transition: transform .3s;
    transition: transform .3s, -webkit-transform .3s;
}
.pop-up-login-toggle{
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
}
.pop-up-login .up-login-content{
    position: relative;
    bottom:0 ;
    left:0;
    z-index: 5;
    padding: 0 0.2rem 0 0.2rem;
}

.pop-up-login .up-login-content .pop-up-shut{
    position: fixed;
    left: 0;
    top: 0;
    z-index: 5005;
    padding: 0.2rem 0 0.2rem 0.2rem;
}
.pop-up-login .up-login-content .pop-up-shut>i{
    font-size: 0.38rem;
    color: #000;
}
.pop-up-login .up-login-content .pop-up-title{
    width: 100%;
    padding: 1.2rem 0 0.4rem 0;
    font-size:0.38rem;
    color: #000;
    text-align: center;
}
.pop-up-login .up-login-content .pop-up-form{
    padding: 0.2rem 0 0.2rem 0;
    font-size: 0.30rem;
    color: #333;
}
.pop-up-login .up-login-content .pop-up-form-name{
    border-bottom: 1px solid #eeeeee;
}
.pop-up-login .up-login-content .pop-up-form-name>input{
    padding: 0.26rem 0 0.26rem 0.1rem;
}
.pop-up-login .up-login-content .pop-up-form-password{
    border-bottom: 1px solid #eeeeee;
}
.pop-up-login .up-login-content .pop-up-form-password>input{
    padding: 0.26rem 0 0.26rem 0.1rem;
}
.pop-up-login .up-login-content .forget-password{
    text-align: right;
    padding-top: 0.12rem;
}
.pop-up-login .up-login-content .forget-password>a{
    color: #1AAD19;
    font-size: 0.26rem;
}
.pop-up-login .up-login-content .pop-up-btn{
    margin-top: 0.36rem;
}
.pop-u-registered{
    position: fixed;
    bottom:0 ;
    left:0 ;
    z-index:1;
    padding-bottom: 10%;
    width: 100%;
    text-align: center;
    font-size: 0.26rem;
}
.pop-u-registered .span-account{
    color: #666;
    padding-right: 0.24rem;
}
.pop-u-registered .a-registered{
    color: #1AAD19;
    padding-right: 0.24rem;
}
/*返回顶部*/
.goTop{
    position: fixed;
    bottom: 1.6rem;
    right: 0.2rem;
    z-index: 9999;
    display: none;
    cursor: pointer;
}
.goTop>i{
    font-size:0.38rem;
    color: #15ab47;
    border: 1px solid #eee;
    border-radius: 50%;
    padding: 0.16rem;
    background-color: #fff;
    box-shadow: 0 -2px 8px 1px rgba(80, 171, 46, 0.2);
}

/*切换站点*/
.mask{
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.6);
    opacity: 1;
    display: none;
}
.site-menu{
    position: fixed;
    right: 0;
    bottom: 0;
    -webkit-transform: translate(100%,0);
    transform: translate(100%,0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    z-index: 50000;
    width: 50%;
    height: 100%;
    background-color:#f7f7f7;
    -webkit-transition: -webkit-transform .3s;
    transition: -webkit-transform .3s;
    transition: transform .3s;
    transition: transform .3s, -webkit-transform .3s;
}
.site-menu-toggle{
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
}
.site-menu .menu-title {
    position: relative;
    height: 1rem;
    padding: 0 0.4rem;
    line-height: 1.4;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    flex-direction: column;
    text-align: center;
    font-size: 0.28rem;
    color: #888;
    background: #FCFCFD;
}
.site-menu .menu-title:before{
    content: " ";
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    height: 0.02rem;
    border-bottom: 0.02rem solid #e5e5e5;
    color: #e5e5e5;
    -webkit-transform-origin: 0 100%;
    transform-origin: 0 100%;
    -webkit-transform: scaleY(0.5);
    transform: scaleY(0.5);
}

.site-menu .menu-title .title{
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}
.site-menu .menu-list{
    background-color: #fff;
}
.site-menu .menu-list .list-cell{
    display: block;
    position: relative;
    padding: 0.2rem 0;
    text-align: center;
    font-size: 0.30rem;
}
.list-cell:before{
    content: " ";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    height: 0.02rem;
    border-top: 0.02rem solid #e5e5e5;
    color: #e5e5e5;
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
    -webkit-transform: scaleY(0.5);
    transform: scaleY(0.5);
}
.list-cell:active {
    background-color: #ECECEC;
}
.list-cell:first-child:before{
    display: none;
}
.site-menu  .menu-cancel{
    margin-top:0.2rem;
}