/*reset*/
html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,
address,big,cite,code,del,dfn,em,font,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,
var,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td {
    margin: 0;
    padding: 0;
    border: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

html,body {
    font-family: -apple-system-font,Helvetica Neue,Helvetica,sans-serif;
    color: #333;
    font: 14px/1.5 -apple-system-font,Helvetica Neue,Helvetica,sans-serif;
    overflow-x: hidden;
}
body{
    font: 14px/1.5 -apple-system-font,Helvetica Neue,Helvetica,sans-serif;
    color: #333;
    overflow: hidden;
}
h1,h2,h3,h4,h5,h6 {
    font-size: 100%;
}

article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section {
    display: block;
    box-sizing: border-box;
}

input,textarea{
    margin: 0;
    padding: 0;
    outline: 0;
    -webkit-appearance: none;
    border-radius: 0;
    font-family: -apple-system-font;
    box-sizing: border-box;
}

a,a:link,a:visited,a:hover,a:active {
    text-decoration: none;
    color: #333;
    -webkit-tap-highlight-color: transparent;
}

table {
    border-collapse: separate;
    border-spacing: 0;
}

ol,ul {
    list-style: none;
}

hr {
    margin: 0;
    padding: 0;
    border: 0;
    color: #000;
    background-color: #000;
    height: 1px
}

em,span,i {
    font-style: normal;
}

body {
    background: #f6f5f5;
}

body.home-body {
    background: #fff;
}

* {
    margin: 0;
    padding: 0;
    /*去掉禁用文字或者在其他地方用类添加，否则input禁掉文字，ios输入不了文字*/
    /*-webkit-user-select:none;*/
    /*-moz-user-select:none;*/
    /*-ms-user-select:none;*/
    /*user-select:none;*/
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    tap-highlight-color: transparent;
    border: none;
    outline: none;
}

.select-none {
    -webkit-user-select:none;
    -moz-user-select:none;
    -ms-user-select:none;
    user-select:none;
}

::-webkit-scrollbar {
    width: 6px;
    /*height: 6px;*/
    overflow: auto;
}

::-webkit-scrollbar-thumb {
    background-color: rgba(180,180,180,0.2);
    border-radius: 12px;
    background-clip: padding-box;
    border: 1px solid rgba(180,180,180,0.4);
    /*min-height: 28px;*/
}

::-webkit-scrollbar-track-piece {
    background-color: rgba(180,180,180,0.06);
    border-radius: 3px;
}

.swiper-slide {
    display: block;
}

.cursor-pointer {
    cursor: pointer;
}

/*公共部分*/
.pa {
    position: absolute;
}

.pr {
    position: relative;
}

.pf {
    position: fixed;
}

.tr {
    text-align: right;
}

.tc {
    text-align: center;
}

.strong {
    font-weight: 700;
}

.block {
    display: block;
}

.cursor-pointer {
    cursor: pointer;
}

.flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
}

.flex-row {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: horizontal;
    flex-direction: row;
}

.flex-col {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    flex-direction: column;
}

.flex-grow-0 {
    min-width: 0;
    -webkit-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.flex-grow-1 {
    min-width: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-negative: 1;
    flex-shrink: 1;
}

.flex-x-center {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.flex-y-center {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -ms-grid-row-align: center;
    align-items: center;
}

.flex-y-bottom {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    -ms-grid-row-align: flex-end;
    align-items: flex-end;
}
.text-more {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    word-break: break-all;
}

.text-more-2 {
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    word-break: break-all;
}

.text-more-3 {
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    word-break: break-all;
}

.hidden {
    visibility: hidden;
}

.none {
    display: none!important;
}

.tip-wrap {
    z-index: 999999999;
}

.tip-main {
    display: table;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.tip-section {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}

.tip-msg {
    position: relative;
    display: inline-block;
    text-align: left;
    background-color: #fff;
    font-size: 14px;
    border-radius: 5px;
    box-shadow: 0 0 8px rgba(0,0,0,.1);
    pointer-events: auto;
    -webkit-overflow-scrolling: touch;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-duration: .2s;
    animation-duration: .2s;
    width: auto;
    max-width: 90%;
    margin: 0 auto;
    bottom: -150px;
    background-color: rgba(0,0,0,.7);
    color: #fff;
}

.tip-content {
    padding: 10px 18px;
    line-height: 22px;
    text-align: center;
}


.weui-mask_transparent {
    position: fixed;
    z-index: 999999999;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
}

.weui-toast {
    position: fixed;
    z-index: 5000;
    width: 136px;
    height: 136px;
    top: 40%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    text-align: center;
    border-radius: 12px;
    color: rgba(255,255,255,0.9);
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    background-color: #4c4c4c;
    box-sizing: border-box;
    line-height: 1.4;
}

.weui-icon_toast {
    display: block;
    width: 40px;
    height: 40px;
    margin-bottom: 16px;
}

.weui-primary-loading {
    font-size: 16px;
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: inline-flex;
    position: relative;
    width: 1em;
    height: 1em;
    vertical-align: middle;
    color: #606060;
    -webkit-animation: circleLoading 1s steps(60,end) infinite;
    animation: circleLoading 1s steps(60,end) infinite;
}

@keyframes circleLoading {
  0% {
    transform: rotate3d(0, 0, 1, 0deg);
  }
  100% {
    transform: rotate3d(0, 0, 1, 360deg);
  }
}

.weui-icon_toast.weui-primary-loading {
    font-size: 40px;
    color: #EDEDED;
}

.weui-primary-loading:before, .weui-primary-loading:after {
    content: "";
    display: block;
    width: 0.5em;
    height: 1em;
    box-sizing: border-box;
    border: 0.125em solid;
    border-color: currentColor;
}

.weui-primary-loading:before {
    border-right-width: 0;
    border-top-left-radius: 1em;
    border-bottom-left-radius: 1em;
    -webkit-mask-image: -webkit-linear-gradient(top,#000000 8%,rgba(0,0,0,0.3) 95%);
}

.weui-icon_toast.weui-primary-loading:before {
    border-width: 4px 0 4px 4px;
}

.weui-primary-loading:after {
    border-left-width: 0;
    border-top-right-radius: 1em;
    border-bottom-right-radius: 1em;
    -webkit-mask-image: -webkit-linear-gradient(top,rgba(0,0,0,0) 8%,rgba(0,0,0,0.3) 95%);
}

.weui-icon_toast.weui-primary-loading:after {
    border-width: 4px 4px 4px 0;
}

.weui-primary-loading__dot {
    position: absolute;
    top: 0;
    left: 50%;
    margin-left: -0.0625em;
    width: 0.125em;
    height: 0.125em;
    border-top-right-radius: 0.125em;
    border-bottom-right-radius: 0.125em;
    background: currentColor;
}

.weui-icon_toast.weui-primary-loading .weui-primary-loading__dot {
    width: 4px;
    height: 4px;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}

.weui-toast__content {
    font-size: 17px;
    padding: 0 12px;
    word-wrap: break-word;
    -webkit-hyphens: auto;
    hyphens: auto;
}