/**********取消click事件背景框：-webkit-tap-highlight-color:rgba(0,0,0,0);***********************/
/**取消右侧滚动条：html,body同时设置{height:100%;overflow:hidden;overflow-y: scroll;}**/
@font-face {
    font-family: 'Roboto';
    src: url('//img.rfcc.com.cn/static/fonts/roboto_regular_macroman/Roboto-Regular-webfont.eot');
    src: url('//img.rfcc.com.cn/static/fonts/roboto_regular_macroman/Roboto-Regular-webfont.eot?#iefix') format('eot'),
        url('//img.rfcc.com.cn/static/fonts/roboto_regular_macroman/Roboto-Regular-webfont.woff') format('woff'),
        url('//img.rfcc.com.cn/static/fonts/roboto_regular_macroman/Roboto-Regular-webfont.ttf') format('truetype'),
        url('//img.rfcc.com.cn/static/fonts/roboto_regular_macroman/Roboto-Regular-webfont.svg#webfont') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Open Sans';
    src: url('//img.rfcc.com.cn/static/fonts/opensans_regular_macroman/OpenSans-Regular-webfont.eot');
    src: url('//img.rfcc.com.cn/static/fonts/opensans_regular_macroman/OpenSans-Regular-webfont.eot?#iefix') format('eot'),
        url('//img.rfcc.com.cn/static/fonts/opensans_regular_macroman/OpenSans-Regular-webfont.woff') format('woff'),
        url('//img.rfcc.com.cn/static/fonts/opensans_regular_macroman/OpenSans-Regular-webfont.ttf') format('truetype'),
        url('//img.rfcc.com.cn/static/fonts/opensans_regular_macroman/OpenSans-Regular-webfont.svg#webfont') format('svg');
    font-weight: normal;
    font-style: normal;
}

@media screen and (min-width: 750px) {
    html{
        /*font-size: 200% !important;*/
    }
    body>div:first-child{
        margin-left: auto;
        margin-right: auto;
        width: 750px;
    }
    body{
        background: #f8f8f8 !important;
    }
    .login-modal{
        width: 675px !important;
        margin-top: 0 !important;
    }
    .login-modal .p1{
        font-size: .8125rem !important;
    }
    .login-modal .p2{
        font-size: .625rem !important;
    }
    .weui-half-screen-dialog,
    .weui-actionsheet,
    .popup,
    [class$="-dialog"]{
        width: 750px !important;
        margin-left: calc(50% - 375px) !important;
    }
}

.mescroll-downwarp .downwarp-tip, .mescroll-upwarp .upwarp-tip, .mescroll-upwarp .upwarp-nodata{
    font-size: .9375rem !important;
}

* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
    -webkit-overflow-scrolling: touch;
}

::-webkit-scrollbar {
    display: none;
}

input[type=search]::-webkit-search-cancel-button {
    -webkit-appearance: none;
}

input::-webkit-input-placeholder {
    color: #8B909D;
}

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

input:-moz-placeholder {
    /* Mozilla Firefox 4 to 18 */
    color: #8B909D;
}

input:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #8B909D;
}

.weui-cells_checkbox .weui-check:checked+.weui-icon-checked {
    color: #2E68FA !important;
}

html {
    font-size: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    font-family: 'Open Sans', 'Roboto', 'Helvetica Neue', Helvetica, 'Segoe UI', Arial, sans-serif;
}

body {
    font-family: 'Open Sans', 'Roboto', 'Helvetica Neue', Helvetica, 'Segoe UI', Arial, sans-serif;
}

body>div {
    position: relative;
}

input,
textarea,
button {
    border: 0;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    caret-color: inherit;
}

ul,
li {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

.mask {
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    position: fixed;
    z-index: 9;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.flex {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.backimg {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

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

.required:after {
    content: '*';
    margin-left: .3125rem;
    font-size: .9375rem;
    color: #FF5400;
}

.ellip {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.ellip-2 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.hide {
    display: none !important;
}

.image-zoom-wrapper {
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: 999999;
    background-color: #000;
    -webkit-user-drag: none;
    overflow: hidden;
    padding: 3.663004rem 0;
}

.image-zoom-wrapper img {
    max-width: 100%;
    max-height: 80%;
    -webkit-user-drag: none;
}

.fl {
    float: left !important;
}

.fr {
    float: right !important;
}

i {
    font-style: normal;
}

.fixed-el {
    width: 100%;
}

@-webkit-keyframes bottomIn {
    0% {
        opacity: 0;
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes bottomIn {
    0% {
        opacity: 0;
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes popup_show {
    0% {
        opacity: 1;
        transform: translateX(100%);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.popup {
    position: fixed;
    animation: popup_show .2s ease-out;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #fff;
    z-index: 9;
    overflow-y: auto;
}

/* @media screen and (min-width:1024PX) {
  .layui-m-layerchild{
    width: 337.5px;
  }
  html,body, .page-wrapper, .fixed-el{
    width: 375px !important;
    margin: 0 auto !important;
  }
  .popup{
    position: absolute !important;
  }
  .header,
  .footer {
    width: 375px !important;
  }
  .header {
    left: 50% !important;
    margin-left: -187.5px !important;
  }
} */
[v-cloak] {
    display: none
}

[class^="hr-"] {
    width: 100%;
    background-color: #f0f0f0;
}

[class$="-dialog"] {
    height: 100%;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #fff;
    z-index: 10;
    -webkit-animation: bottomIn .2s ease-out;
    animation: bottomIn .2s ease-out;
}

.hr {
    width: 100%;
    display: block;
    background-color: #F5F5F5;
}

.hr.hr-10 {
    height: .625rem;
}

.hr.hr-15 {
    height: .9375rem;
}

.hr.hr-20 {
    height: 1.125rem;
}

.hr.hr-grey {
    background-color: #f0f0f0;
}

.page-wrapper {
    position: relative;
}

.container {
    height: 100%;
    width: 100%;
    overflow-y: scroll;
}

.money-tag:before {
    content: '￥';
}

.login-modal {
    padding: 1rem 1.125rem;
    text-align: center;
    position: relative;
    background: #fff;
    border-radius: .3125rem;
    width: 90%;
    margin: 0 auto;
    margin-top: calc(50vh - 16.15rem);
}

.login-modal .guanbi-btn {
    position: absolute;
    font-size: 1.5rem;
    color: #666;
    top: .5rem;
    right: .625rem;
    line-height: 1em;
}

.login-modal .logo {
    height: 3.5rem;
}

.login-modal .item {
    text-align: left;
    position: relative;
    padding-left: 3.7rem;
    margin-bottom: 1rem;
}

.login-modal .item>img {
    width: 3rem;
    position: absolute;
    left: 0;
    top: .4rem;
}

.login-modal .item>p {
    font-size: .875rem;
    font-weight: 700;
    line-height: 1.5em;
}

.login-modal .item>.p2 {
    font-size: .75rem;
    color: #666;
    font-weight: 400;
}

.login-modal .btn {
    font-size: .875rem;
    line-height: 1.3;
    padding: .625rem;
    display: block;
    width: 80%;
    border-radius: 5px;
    outline: none;
    appearance: none;
    border: 0;
    color: #fff;
    text-align: center;
    background-image: -webkit-linear-gradient(90deg, #1c89ff 0%, #0052D4 100%);
    background-image: linear-gradient(90deg, #1c89ff 0%, #0052D4 100%);
    box-shadow: 0px 12px 8px -12px #000;
    -webkit-box-shadow: 0px 12px 8px -12px #333;
    margin: 1.2rem auto 1rem auto;
}

.weui-switch-cp__input:checked~.weui-switch-cp__box,
.weui-switch:checked {
    border-color: #2E68FA;
    background-color: #2E68FA;
}

.weui-switch,
.weui-switch-cp__box {
    width: 3.1875rem;
    height: 1.75rem;
    border-radius: 1.75rem;
}

.weui-switch-cp__box:after,
.weui-switch:after {
    height: 1.5rem;
    width: 1.5rem;
    border-radius: 50%;
}

.weui-switch-cp__input:checked~.weui-switch-cp__box:after,
.weui-switch:checked:after {
    transform: translateX(1.4375rem);
}

.hhb-radio,
.hhb-checkbox {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    color: #8B909D !important;
    position: relative;
}

.hhb-radio>input[type=radio],
.hhb-checkbox>input[type=checkbox] {
    width: 1.125rem;
    height: 1.125rem;
}

.hhb-radio>span,
.hhb-checkbox>span {
    margin-left: .3125rem;
}

.hhb-radio>input[type=radio]::before,
.hhb-radio>input[type=radio]:checked::before,
.hhb-checkbox>input[type=checkbox]::before,
.hhb-checkbox>input[type=checkbox]:checked::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    border: 1px solid #B8BCC8;
    border-radius: 50%;
    box-sizing: border-box;
}

.hhb-radio>input[type=radio]:checked::before {
    border: .35rem solid #2E68FA;
}

.hhb-checkbox>input[type=checkbox]:checked::before {
    background-color: #2E68FA;
    border-color: #2E68FA;
    content: '';
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAC0AAAAjCAYAAAAAEIPqAAABZElEQVRYhc3OzStEURzG8fmPrKysrCytJEkiSZJIkiQvk2k03pm8TCaTaTT+I0tLS0urr4WbDua657n3zv2db53l+T2fUinQgDFrgxQwzlfP1havgAl+FjYcmKR3YcKBqRhwmHBgOgEcFhyY8QSHAQdmRXDXGjwngp+swfMiuGMNXhDBbWvwogh+tAYvieCWOjAA7OQIXhbBD+rAIPASfc4MB1ZEcFMdGAJefx1JDQdWRfC9OjAMvMUck+HAmghuqAMjwHvCUW84sC6C71TwKPDheTwRDmyI4FsJHI10xZFYOLAp3rqWwc5YJysc2BJv1FODndF2WjiwLf69ygx2xlsqPHpKF7mBHXhTRCid5w524I0+gE/7BnbgNzmCT/oOduD1HMBHhYEd+GUGcK1wsAM/SwE+NAM78GMBXLX2fgfUPMAVa+efgOo/4ANrX2xApQe4bO1KDCg74H1rj3fAHrBb9O4nEjS43Gf4j48AAAAASUVORK5CYII=');
    background-position: center;
    background-repeat: no-repeat;
    background-size: .875rem .68rem;
}

.hhb-radio>input[type=radio]:checked+span,
.hhb-checkbox>input[type=checkbox]:checked+span {
    color: #060A15;
}

.hhb-radio>input[type=radio]+span,
.hhb-checkbox>input[type=checkbox]+span {
    color: #8B909D;
}

.hhb-checkbox>input[type=checkbox]::before,
.hhb-checkbox>input[type=checkbox]:checked::before {
    border-radius: .125rem;
}

.sprite-icon {
    display: inline-block;
    background-repeat: no-repeat;
    background-position: 0 0;
    background-size: 23.4375rem 46.84375rem;
}

.search-bar {
    width: calc(100% - 1.875rem);
    height: 2.5rem;
    margin: 0 .9375rem .9375rem .9375rem;
    background: #f4f4f4;
    border-radius: 2.5rem;
    position: relative;
}

.search-bar .search-input {
    width: 100%;
    padding: 0 1.25rem;
    background: transparent;
    height: 100%;
    line-height: 2.5rem;
    text-align: center;
    font-size: .875rem;
    color: #333;
    display: none;
}

.search-bar.focused .search-input {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
    display: block;
}

.search-bar .search-icon {
    position: absolute;
    width: 3.25rem;
    height: 2.5rem;
    left: 50%;
    top: 0;
    margin-left: -1.625rem;
    line-height: 2.5rem;
    color: #a2a2a2;
    font-size: .875rem;
}

.search-bar.focused .search-icon {
    left: .75rem;
    margin-left: 0;
}

.search-bar.focused .search-icon>span {
    display: none;
}

.search-bar .iconfont {
    font-size: .875rem;
}

.reset-search-input {
    display: inline-block;
    height: 1rem;
    width: 1rem;
    border-radius: 100%;
    background: #a2a2a2;
    color: #fff;
    text-align: center;
    font-size: .625rem !important;
    line-height: 1rem;
    position: absolute;
    right: .75rem;
    top: .75rem;
    display: none;
}

.btn {
    font-size: .8125rem;
    color: #2E68FA;
    line-height: 1.2em;
    padding: .5rem .75rem;
    border-radius: 2rem;
    border: 1px solid #2E68FA;
    background: #fff;
    text-align: center;
}

.pay-confirm-wrapper {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    position: absolute;
    background: rgba(0, 0, 0, 0.7);
    z-index: 99999;
    display: none;
}

.pay-confirm-wrapper .dialog {
    width: 80%;
    height: 11rem;
    background: #fff;
    border-radius: .3125rem;
    position: absolute;
    top: 50%;
    left: 10%;
    margin-top: -6.5rem;
}

.pay-confirm-wrapper .dialog .pay-confirm-tips {
    font-size: 1rem;
    text-align: center;
    height: 5rem;
    width: 100%;
    font-weight: 700;
    border-bottom: 1px solid #DCDFE6;
    line-height: 1rem;
    padding: 2rem;
}

.pay-confirm-wrapper .dialog .pay-confirm-btn {
    font-size: .9375rem;
    text-align: center;
    width: 100%;
    border-bottom: 1px solid #DCDFE6;
    line-height: 1rem;
    padding: 1rem;
}

.pay-confirm-wrapper .dialog .pay-confirm-btn.done {
    color: #2E68FA;
    font-weight: 700;
}

.pay-confirm-wrapper .dialog .pay-confirm-btn.undone {
    color: #8D8D8D;
    border: 0;
}

.weui-btn_primary {
    background-color: #2E68FA !important;
}

.btn-primary-fill {
    background: #2E68FA;
    color: #fff;
}

.btn-lg {
    height: 2.8125rem;
    border-radius: 2.8125rem;
    font-size: 1rem;
}

.btn-block {
    display: block;
    width: 100%;
}