/* 层级说明    header footer => 1200
*             mask   => 1300
*             无数据组件 => 1100
*/


/* mui样式覆盖 */

.mui-btn-blue {
    color: #fff;
    border: 1px solid #01aaed;
    background-color: #01aaed;
}

p {
    word-wrap: break-word;
}


/* swiper分页器激活色 */

.swiper-pagination-bullet-active {
    background-color: #01aaed;
}


/* 颜色 结束 */

* {
    margin: 0;
    padding: 0;
    /* box-sizing: border-box; */
}

html,
body {
    font-size: .28rem;
    font-family: PingFang SC;
    background: #f8f8f8;
    font-weight: 400;
    color: #333333;
}

a {
    color: #333;
    text-decoration: none;
}

em,
i {
    font-style: normal;
}

b,
strong,
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: normal
}

ul,
ol,
li {
    list-style: none
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

.hide {
    display: none;
}

.show {
    display: block;
}


/* 头部标题 */

#app {
    width: 100%;
    height: 100%;
    transition: .3s;
    -webkit-transition: .3s;
}

img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar {
    border-radius: 50%;
}


/* 头部样式 */

header {
    width: 100%;
    height: 0.88rem;
    position: fixed;
    top: 0;
    left: 0;
    background: #FFFFFF;
    z-index: 999;
    padding: 0 0.32rem;
    display: box;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -o-align-items: center;
    align-items: center;
    box-sizing: border-box;
}

header .back {
    position: absolute;
    left: 0.28rem;
    width: .3rem;
    height: 0.3rem;
}

header .title {
    color: #333;
    font-size: 0.36rem;
    /* font-weight: bold; */
    line-height: 0.88rem;
    width: 100%;
    text-align: center;
}

header .rt {
    position: absolute;
    right: 0.28rem;
    font-size: 0.28rem;
    color: #fff;
}

header .share {
    position: absolute;
    right: .28rem;
    width: .32rem;
    height: .32rem;
}


/*底部样式*/


/* 
footer {
    width: 100%;
    height: 0.98rem;
    position: relative;
} */

footer {
    width: 100%;
    height: 0.98rem;
    padding: 0 .9rem;
    box-sizing: border-box;
    position: fixed;
    z-index: 99;
    bottom: 0;
    left: 0;
    background: #FFFFFF;
    box-shadow: 0px 0px .56rem .01rem rgba(175, 181, 192, 0.21);
    font-size: 0.24rem;
    font-family: PingFang SC;
    font-weight: 400;
    color: #999;
}


/* footer>p:nth-child(2)>img {
    width: .36rem;
    height: .44rem;
    margin-bottom: .08rem;
} */

footer>div>img {
    width: .46rem;
    height: .46rem;
    margin-bottom: .06rem;
}

footer .cs_on {
    display: none;
}

footer .active {
    color: #096AFF;
    font-size: .24rem;
    font-weight: bold;
}

footer .active .cs {
    display: none;
}

footer .active .cs_on {
    display: block;
}


/* 元素兼容处理 */

input,
textarea {
    background: none;
    outline: none;
    border: 0px;
    -webkit-appearance: none;
    appearance: none;
    /* font-size      : .32rem; */
}

textarea::placeholder {
    color: #999;
}

input::-webkit-input-placeholder {
    color: #999;
}

input::placeholder {
    color: #999;
}

textarea {
    resize: none;
    -webkit-appearance: none;
    appearance: none;
}

input[type="text"]:focus,
input[type="password"]:focus {
    outline: none;
}

.transform-center {
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}

.transformx-center {
    transform: translate(-50%);
    -ms-transform: translate(-50%);
    -moz-transform: translate(-50%);
    -webkit-transform: translate(-50%);
    -o-transform: translate(-50%);
}

.elehide {
    opacity: 0;
    transition: .3s;
    -webkit-transition: .3s;
}

.eleshow {
    opacity: 1;
    transition: .3s;
    -webkit-transition: .3s;
}

.wrpshow {
    /* display: block; */
    opacity: 1;
    transition: .3s;
    -webkit-transition: .3s;
}

.wrphide {
    /* display: none; */
    opacity: .1;
    transition: .3s;
    -webkit-transition: .3s;
}

input {
    -webkit-appearance: none;
    appearance: none;
}

textarea {
    -webkit-appearance: none;
    appearance: none
}

.scrollbar-hide {
    -ms-overflow-style: none;
    overflow: -moz-scrollbars-none;
    -webkit-overflow-scrolling: touch;
}

.scrollbar-hide::-webkit-scrollbar {
    display: none;
}


/* 一行根据宽度省略多余字体 */

.ell1 {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ell2 {
    text-overflow: -o-ellipsis-lastline;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    /*! autoprefixer  : off */
    -webkit-box-orient: vertical;
    /* autoprefixer   : on */
}

.ell3 {
    text-overflow: -o-ellipsis-lastline;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    /*! autoprefixer  : off */
    -webkit-box-orient: vertical;
    /* autoprefixer   : on */
}


/* 蒙层 */

.mask {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, .3);
    z-index: 999;
}


/* 无数据 */

.no_data {
    margin-top: 2.95rem;
}

.no_data>img {
    width: 5.34rem;
    height: 5.34rem;
}

.no_data>span {
    font-size: .36rem;
    color: #666;
}

.refresh {
    margin-top: 1.76rem;
    width: 3.29rem;
    height: .97rem;
    border: 1px solid #999999;
    border-radius: .1rem;
    font-size: .4rem;
    text-align: center;
    line-height: .97rem;
}


/* 到底了 */

.nomore {
    width: 100%;
    padding: .2rem 0;
    text-align: center;
    font-size: .28rem;
    color: #ccc;
}

.btn-center {
    display: box;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -o-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    -o-justify-content: center;
    justify-content: center;
}

.v-loading {
    width: 100%;
    padding: .2rem 0;
}

.van-dialog__confirm,
.van-dialog__confirm:active {
    color: #4B9AFE;
}

button {
    border: none;
    background-color: transparent;
    outline: none;
}


/* 防止页面加载时出现 vuejs 的变量名而设计的 */

[v-cloak] {
    display: none;
}


/*弹性布局兼容*/


/* .flex {
    display: box;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
} */

.flex-wrap {
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
}

.flex-nwrap {
    -webkit-flex-wrap: nowrap;
    -moz-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    -o-flex-wrap: nowrap;
    flex-wrap: nowrap;
}

.flex-center {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    -o-justify-content: center;
    justify-content: center;
}

.flex-v {
    display: box;
    /* OLD - Android 4.4- */
    display: -webkit-box;
    /* OLD - iOS 6-, Safari 3.1-6 */
    display: -moz-box;
    /* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-flexbox;
    /* TWEENER - IE 10 */
    display: -webkit-flex;
    /* NEW - Chrome */
    display: flex;
    /* NEW, Spec - Opera 12.1, Firefox 20+ */
    /* 09版 */
    -webkit-box-orient: vertical;
    /* 12版 */
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
}

.flex-end {
    -webkit-box-pack: flex-end;
    -webkit-justify-content: flex-end;
    -moz-justify-content: flex-end;
    -ms-justify-content: flex-end;
    -o-justify-content: flex-end;
    justify-content: flex-end;
}

.space-between {
    -webkit-box-pack: space-between;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    -o-justify-content: space-between;
    justify-content: space-between;
}


/* .flex1 {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
} */

.space-around {
    -webkit-box-pack: space-around;
    -webkit-justify-content: space-around;
    -moz-justify-content: space-around;
    -ms-justify-content: space-around;
    -o-justify-content: space-around;
    justify-content: space-around;
}

.align-items {
    /*在flex当前容器中纵轴中的位置如果是文字必须包裹在span之中 */
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -o-align-items: center;
    align-items: center;
}

.align-items-start {
    -webkit-box-align: flex-start;
    -webkit-align-items: flex-start;
    -moz-align-items: flex-start;
    -ms-align-items: flex-start;
    -o-align-items: flex-start;
    align-items: flex-start;
}

.align-items-end {
    -webkit-box-align: flex-end;
    -webkit-align-items: flex-end;
    -moz-align-items: flex-end;
    -ms-align-items: flex-end;
    -o-align-items: flex-end;
    align-items: flex-end;
}

.align-content-start {
    -webkit-box-align: flex-start;
    -webkit-align-content: flex-start;
    -moz-align-content: flex-start;
    -ms-align-content: flex-start;
    -o-align-content: flex-start;
    align-content: flex-start;
}

.align-content-end {
    -webkit-box-align: flex-end;
    -webkit-align-content: flex-end;
    -moz-align-content: flex-end;
    -ms-align-content: flex-end;
    -o-align-content: flex-end;
    align-content: flex-end;
}

.align-content-stretch {
    -webkit-box-align: stretch;
    -webkit-align-content: stretch;
    -moz-align-content: stretch;
    -ms-align-content: stretch;
    -o-align-content: stretch;
    align-content: stretch;
}

.align-content-center {
    -webkit-box-align: center;
    -webkit-align-content: center;
    -moz-align-content: center;
    -ms-align-content: center;
    -o-align-content: center;
    align-content: center;
}

.align-content-around {
    -webkit-box-align: space-around;
    -webkit-align-content: space-around;
    -moz-align-content: space-around;
    -ms-align-content: space-around;
    -o-align-content: space-around;
    align-content: space-around;
}

.align-content-between {
    -webkit-box-align: space-between;
    -webkit-align-content: space-between;
    -moz-align-content: space-between;
    -ms-align-content: space-between;
    -o-align-content: space-between;
    align-content: space-between;
}

.align-self-start {
    -webkit-align-self: flex-start;
    -moz-align-self: flex-start;
    -ms-align-self: flex-start;
    -o-align-self: flex-start;
    align-self: flex-start;
}

.align-self-start {
    -webkit-align-self: flex-start;
    -moz-align-self: flex-start;
    -ms-align-self: flex-start;
    -o-align-self: flex-start;
    align-self: flex-start;
}

.align-self-end {
    -webkit-align-self: flex-end;
    -moz-align-self: flex-end;
    -ms-align-self: flex-end;
    -o-align-self: flex-end;
    align-self: flex-end;
}

.align-self-center {
    -webkit-align-self: center;
    -moz-align-self: center;
    -ms-align-self: center;
    -o-align-self: center;
    align-self: center;
}

.align-self-baseline {
    -webkit-align-self: baseline;
    -moz-align-self: baseline;
    -ms-align-self: baseline;
    -o-align-self: baseline;
    align-self: baseline;
}

.align-self-stretch {
    -webkit-align-self: stretch;
    -moz-align-self: stretch;
    -ms-align-self: stretch;
    -o-align-self: stretch;
    align-self: stretch;
}

.flex-shrink {
    flex-shrink: 0;
}

.flex-grow {
    flex-grow: 1;
}

.fn-ctr {
    display: box;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -o-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    -o-justify-content: center;
    justify-content: center;
}


/* flex布局 */

.box {
    overflow: hidden;
}

.df {
    display: flex;
}

.flex {
    display: flex;
    align-items: center;
}

.flex_between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.flex_column {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.flex_around {
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.flex_center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.flex_wrap {
    display: flex;
    flex-wrap: wrap;
    /* justify-content: space-between; */
}

.flex_jsb {
    -webkit-box-pack: space-between;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    -o-justify-content: space-between;
    justify-content: space-between;
}

.flex_jsa {
    -webkit-box-pack: space-around;
    -webkit-justify-content: space-around;
    -moz-justify-content: space-around;
    -ms-justify-content: space-around;
    -o-justify-content: space-around;
    justify-content: space-around;
}

.flex_wrap {
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
}

.flex_nwrap {
    -webkit-flex-wrap: nowrap;
    -moz-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    -o-flex-wrap: nowrap;
    flex-wrap: nowrap;
}

.flex_end {
    -webkit-box-pack: flex-end;
    -webkit-justify-content: flex-end;
    -moz-justify-content: flex-end;
    -ms-justify-content: flex-end;
    -o-justify-content: flex-end;
    justify-content: flex-end;
}

.flex1 {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
}


/* padding margin */

.plr20 {
    padding: 0 .2rem;
}

.ptb20 {
    padding: .2rem 0rem;
}

.plr30 {
    padding: .3rem;
}

.plr28 {
    padding: 0 .28rem;
}

.plr32 {
    padding: 0 .32rem;
}
.plr36{
    padding: 0 .36rem;
}
.pdd28 {
    padding: .28rem;
}

.plr40 {
    padding: 0 .40rem;
}

.plr44 {
    padding: 0 .44rem;
}
.plr50 {
    padding: 0 .50rem;
}
.plr64 {
    padding: 0 .64rem;
}

.ptb28 {
    padding: .28rem 0;
}

.mt10 {
    margin-top: .1rem;
}

.mt20 {
    margin-top: .2rem;
}

.mt24 {
    margin-top: .24rem;
}

.mt30 {
    margin-top: .3rem;
}

.mt36 {
    margin-top: .36rem;
}

.mt40 {
    margin-top: .4rem;
}

.mt70 {
    margin-top: .7rem;
}
.mt80{
    margin-top: .8rem;
}
.mt88 {
    margin-top: .88rem;
}

.mt98 {
    margin-top: .98rem;
}

.mt108 {
    margin-top: 1.08rem;
}

.mt112 {
    margin-top: 1.12rem;
}

.mt118 {
    margin-top: 1.18rem;
}
.mt128{
    margin-top: 1.28rem;
}
.mb10 {
    margin-bottom: .1rem;
}

.mb20 {
    margin-bottom: .2rem;
}

.mb24 {
    margin-bottom: .24rem;
}

.mb90 {
    margin-bottom: .9rem;
}

.mb100 {
    margin-bottom: 1rem;
}

.mb120 {
    margin-bottom: 1.2rem;
}

.b_w {
    background: #fff;
}

.br10 {
    border-radius: .1rem;
}

.br15 {
    border-radius: .15rem;
}

.br20 {
    border-radius: .2rem;
}