﻿@charset "UTF-8";

.avg-list li, .cart-item .item-bd .bd-txt {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

@keyframes rotate {
    0% {
        -webkit-transform: rotate(0deg) scale(1);
        transform: rotate(0deg) scale(1);
    }

    50% {
        -webkit-transform: rotate(180deg) scale(1);
        transform: rotate(180deg) scale(1);
    }

    100% {
        -webkit-transform: rotate(360deg) scale(1);
        transform: rotate(360deg) scale(1);
    }
}

@-webkit-keyframes rotate {
    0% {
        -webkit-transform: rotate(0deg) scale(1);
        transform: rotate(0deg) scale(1);
    }

    50% {
        -webkit-transform: rotate(180deg) scale(1);
        transform: rotate(180deg) scale(1);
    }

    100% {
        -webkit-transform: rotate(360deg) scale(1);
        transform: rotate(360deg) scale(1);
    }
}

.upload-item {
    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+ */
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

body {
    position: relative;
    max-width: 640px;
    margin: 0 auto;
    overflow-x: hidden;
    background: #f1f1f1;
}

/* header */
.header--no-bg, .header--no-bg .header-icon:active, .header--no-bg .header-btn:active {
    background: none;
    border-bottom: none;
}

.header--no-bg {
    position: absolute;
    top: 0;
}

.header--date .page-tt {
    left: 44px;
    right: 44px;
    font-size: 14px;
}

/* 字体图标 */
.iconfont {
    vertical-align: middle;
    -webkit-text-stroke-width: 0;
}

/* banner */
.swiper-pagination-bullet-active {
    background: #d23816;
}

/* 页面模块 */
.page-mod {
    background: #fff;
}

    .page-mod .page-tle {
        padding: 10px 0;
        border-bottom: 1px solid #e5e5e5;
    }

        .page-mod .page-tle h3 {
            padding-left: 10px;
            display: inline-block;
            line-height: 1.2;
            border-left: 3px solid #d23816;
        }

    .page-mod .page-con {
        padding: 10px;
    }

/* 复选按钮 */
.label-checkbox, .label-radio {
    position: relative;
    display: inline-block;
}

    .label-checkbox input[type=checkbox], .label-checkbox input[type=radio], .label-radio input[type=checkbox], .label-radio input[type=radio] {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
        opacity: 0;
    }

        .label-checkbox input[type=checkbox]:checked + .icon-checkbox, .label-radio input[type=checkbox]:checked + .icon-checkbox {
            background: #d23816;
            border: 1px solid transparent;
        }

            .label-checkbox input[type=checkbox]:checked + .icon-checkbox:after, .label-radio input[type=checkbox]:checked + .icon-checkbox:after {
                content: "";
                height: 4px;
                width: 10px;
                border: 1px solid #fff;
                border-width: 0 0 2px 2px;
                position: absolute;
                top: 4px;
                left: 3px;
                -webkit-transform: rotate(-52deg);
                transform: rotate(-52deg);
            }

        .label-checkbox input[type=radio]:checked + .icon-radio, .label-radio input[type=radio]:checked + .icon-radio {
            color: #d23816;
        }

            .label-checkbox input[type=radio]:checked + .icon-radio:after, .label-radio input[type=radio]:checked + .icon-radio:after {
                content: "";
                width: 6px;
                height: 6px;
                border-radius: 50%;
                background: currentColor;
                position: absolute;
                left: 50%;
                top: 50%;
                transform: translate(-50%, -50%);
            }

/* 空白页 */
.empty-box {
    position: fixed;
    left: 0;
    right: 0;
    z-index: 1000;
    top: 0;
    bottom: 0;
    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+ */
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center; /* IE 10 */
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
}

/* 页面滑块 */
.slide-page {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 5000;
    width: 100%;
    height: 100%;
    background: #f1f1f1;
    -webkit-transform: translate(100%, 0);
    transform: translate(100%, 0);
    transition: .3s;
}

    .slide-page.active {
        transform: translate(0, 0);
    }

    .slide-page .page {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        overflow: hidden;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        overflow-scrolling: touch;
    }

/* 搜索 */
.search {
    padding: 10px;
    background: #2cae32;
    color: #fff; /* placeholder颜色 */
}

.search-ele {
    position: relative;
    height: 24px;
    line-height: 24px;
}

.search-input {
    width: 100%;
    padding: 0 34px 0 0;
    border: 0;
    background: none;
}

.search .icon-search {
    position: absolute;
    top: 0;
    right: 0;
    width: 24px;
    height: 24px;
}

.search input::-webkit-input-placeholder, .search textarea::-webkit-input-placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.search input:-moz-placeholder, .search textarea:-moz-placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.search input::-moz-placeholder, .search textarea::-moz-placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.search input:-ms-input-placeholder, .search textarea:-ms-input-placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.custom-icon {
    display: block;
    width: 24px;
    height: 24px;
    line-height: 20px;
    text-align: center;
    border: 1px solid #fff;
    border-radius: 50%;
}

/* float */
.float {
    position: fixed;
    bottom: 48px;
    left: 0;
    right: 0;
    background: #fff;
}

.float-bd {
    padding: 0 10px;
    line-height: 44px;
}

/* swiper */
.swiper-tab-tle {
    position: relative;
    background: #fff;
}

    .swiper-tab-tle:after {
        position: absolute;
        left: 0;
        top: 0;
        box-sizing: border-box;
        right: 0;
        height: 0;
        transform: scaleY(0.5);
        border-top: 1px solid #e5e5e5;
        top: auto;
        bottom: 0;
        content: "";
    }

    .swiper-tab-tle li {
        padding: 10px 0;
        font-size: 12px;
        color: #666;
        text-align: center;
    }

        .swiper-tab-tle li.active {
            color: #d23816;
            border-bottom: 2px solid #d23816;
        }

            .swiper-tab-tle li.active span {
                color: #d23816;
            }

        .swiper-tab-tle li span {
            font-size: 14px;
            color: #999;
        }

/* filter */
.filter-wrap.active .overlay {
    display: block;
}

.filter-wrap .line-list + .line-list {
    margin-top: 0;
}

.filter-bar {
    position: relative;
    z-index: 3000;
    background: #fff;
}

.filter-nav {
    padding: 9px 0;
    border-bottom: 1px solid #e5e5e5;
    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+ */
}

    .filter-nav li {
        -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+ */
    }

    .filter-nav > li {
        position: relative;
        text-align: center;
    }

        .filter-nav > li:not(:first-of-type) {
            border-left: 1px solid #e5e5e5;
        }

        .filter-nav > li.active {
            color: #d23816;
        }

        .filter-nav > li i {
            margin-left: 5px;
        }

.filter-list {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding-left: 10px;
    background: #fff;
}

    .filter-list li {
        line-height: 40px;
    }

        .filter-list li:not(:first-of-type) {
            border-top: 1px solid #e5e5e5;
        }

/* 上传相关 */
.upload-item {
    position: relative;
    padding: 10px;
    background: #fff;
}

.upload-field {
    width: 60px;
    height: 60px;
    overflow: hidden;
    padding-top: 5px;
    text-align: center;
    border: 1px dashed #dadaad;
    color: #999;
}

    .upload-field i {
        font-size: 24px;
        line-height: 1.2;
    }

    .upload-field p {
        font-size: 12px;
    }

.file-field {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    width: 100%;
    height: 100%;
    opacity: 0;
}

.upload-list li {
    padding: 5px;
}

    .upload-list li > div {
        position: relative;
        width: 100%;
        height: 120px;
        padding: 0 20px;
        text-align: center;
        color: #999;
        background-repeat: no-repeat;
        background-position: center center;
        background-size: contain;
        background-color: #e5e5e5;
        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+ */
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -moz-box-align: center;
        -ms-flex-align: center; /* IE 10 */
        -webkit-align-items: center;
        -moz-align-items: center;
        align-items: center;
    }

    .upload-list li i {
        font-size: 30px;
    }

.upload-img {
    padding: 15px;
    overflow: hidden;
}

    .upload-img li {
        position: relative;
        float: left;
        margin: 0 15px 15px 0;
    }

        .upload-img li:last-child {
            width: 80px;
            height: 80px;
            line-height: 80px;
            text-align: center;
            border: 1px dashed #aaa;
        }

            .upload-img li:last-child i {
                font-size: 30px;
                color: #bfbfbf;
            }

        .upload-img li a {
            display: block;
        }

        .upload-img li span {
            display: block;
            width: 80px;
            height: 80px;
            overflow: hidden;
            background-repeat: no-repeat;
            background-position: center center;
            background-size: cover;
        }

        .upload-img li .upload-del {
            position: absolute;
            top: -10px;
            right: -10px;
            display: block;
            width: 25px;
            height: 25px;
            line-height: 23px;
            text-align: center;
            color: #fff;
            border-radius: 50%;
            background: rgba(0, 0, 0, 0.5);
        }

.upload-img--no-up li:last-child {
    border: 0;
}

    .upload-img--no-up li:last-child i {
        font-size: 16px;
        color: #fff;
    }

.upload-list li {
    padding: 5px;
}

    .upload-list li > div {
        position: relative;
        width: 100%;
        height: 120px;
        padding: 0 20px;
        text-align: center;
        color: #999;
        background-repeat: no-repeat;
        background-position: center center;
        background-size: contain;
        background-color: #e5e5e5;
        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+ */
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -moz-box-align: center;
        -ms-flex-align: center; /* IE 10 */
        -webkit-align-items: center;
        -moz-align-items: center;
        align-items: center;
    }

    .upload-list li i {
        font-size: 30px;
    }

/* 等分列表 */
.line-equal-list {
    padding: 10px 0;
    background: #fff;
    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+ */
}

    .line-equal-list li {
        -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+ */
    }

    .line-equal-list li {
        position: relative;
        text-align: center;
    }

        .line-equal-list li:not(:first-of-type) {
            border-left: 1px solid #e5e5e5;
        }
	
	.line-equal-list li:not(:first-of-type):after {
            position: absolute;
            top: 0;
            left: 0;
            width: 1px;
            height: 100%;
            background: -webkit-linear-gradient(top, transparent, #e5e5e5, transparent);
            background: linear-gradient(top, transparent, #e5e5e5, transparent);
            content: "";
        }

        .line-equal-list li a {
            display: block;
            color: #666;
        }

/* 标题 */
.com-tle {
    padding: 5px 20px 5px;
    font-size: 12px;
}

/* 浮动栏 */
.float-bottom {
    padding: 10px;
    background: #fff;
}

@supports (border-width: 0.5px) {
    @media only screen and (-webkit-min-device-pixel-ratio: 2), screen and (-webkit-min-device-pixel-ratio: 3) {
        .float-bottom {
            border-width: 0.5px;
        }
    }
}

/* 表单 */
.frm-text {
    width: 100%;
    height: 44px;
    padding: 7px 10px;
    background: #fff;
    border-radius: 30px;
    border: 1px solid transparent;
}

    .frm-text:focus {
        border: 1px solid #d23816;
    }

.form-item--no-ovh {
    overflow: visible;
}

.form-item--no-bg {
    background: none;
}

.form-item .item-field .f-text--has-bd {
    padding: 0 10px;
    border: 1px solid #e5e5e5;
    border-radius: 5px;
}

.form-item .item-field .item-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 10;
    display: none;
    width: 100%;
    max-height: 350px;
    overflow: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    border: 1px solid #e5e5e5;
    border-top: 0;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.form--no-bd:before, .form--no-bd:after {
    content: none;
}

.form--no-bd .form-item:not(:first-of-type)::before {
    content: none;
}

/* 弹窗 */
.dialog {
    overflow: visible;
}

.dialog--full {
    width: 100%;
    border-radius: 0;
}

.dialog--no-bg {
    background: none;
}

.dialog .dialog-bg {
    height: 300px;
    height: 50vh;
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: cover;
}

.dialog .dialog-bg-txt {
    padding: 80px 20px 0;
    font-size: 22px;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
}

    .dialog .dialog-bg-txt p:first-child {
        font-size: 22px;
    }

    .dialog .dialog-tle {
        height: 40px;
        line-height: 40px;
        padding: 0 10px;
        background: #d23816;
        text-align: center;
        color: #fff;
        border-top-left-radius: 5px;
        border-top-right-radius: 5px;
    }

.dialog-container {
    position: relative;
    max-height: 400px;
    overflow: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.btn-dialog-close {
    position: absolute;
    bottom: -15px;
    left: 50%;
    width: 44px;
    height: 44px;
    line-height: 30px;
    text-align: center;
    background: #ff3b30;
    border: 5px solid #fff;
    border-radius: 50%;
    box-shadow: 0 3px 2px rgba(0, 0, 0, 0.5);
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
}

    .btn-dialog-close i {
        font-size: 24px;
        color: #fff;
    }

/* nav-list */
.nav-list--bottom .remind-circle {
    margin-left: 10px;
}

/* nav-tab */
.nav-tab {
    background: #fff;
}

    .nav-tab .tab-tle {
        overflow: hidden;
        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+ */
    }

        .nav-tab .tab-tle li {
            position: relative;
            padding: 10px 0;
            text-align: center;
            border-bottom: 1px solid #e5e5e5;
            -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+ */
        }

            .nav-tab .tab-tle li + li:before {
                position: absolute;
                left: 0;
                top: 0;
                box-sizing: border-box;
                width: 0;
                bottom: 0;
                transform: scaleX(0.5);
                border-left: 1px solid #e5e5e5;
                content: "";
            }

            .nav-tab .tab-tle li.active {
                color: #d23816;
            }

                .nav-tab .tab-tle li.active:after {
                    position: absolute;
                    bottom: -5px;
                    left: 50%;
                    z-index: 10;
                    width: 10px;
                    height: 10px;
                    background: #fff;
                    margin-left: -5px;
                    border-left: 1px solid #d8d8d8;
                    border-bottom: 1px solid #d8d8d8;
                    content: "";
                    transform: rotate(135deg);
                }

    .nav-tab .tab-container .tab-pane {
        display: none;
    }

        .nav-tab .tab-container .tab-pane.active {
            display: block;
        }

/* 背景颜色 */
.bg-warning {
    background: #ff9500;
}

.bg-danger {
    background: #ff3b30;
}

.bg-primary {
    background: #d23816;
}

.bg-info {
    background: #3395ff;
}

.bg-gradient {
    background-image: linear-gradient(to bottom, #d23816, #a2d84e);
}

/* 背景图片 */
.wrap-bg {
    background: url(../images/wrap-bg.jpg) no-repeat;
    background-size: cover;
}

/* 圆点数字 */
.circle-num {
    display: inline-block;
    width: 16px;
    height: 16px;
    line-height: 16px;
    font-size: 12px;
    color: #fff;
    text-align: center;
    background: #ff3b30;
    border-radius: 50%;
}

/* 搜索 */
.search-group-side {
    padding: 0 10px 0 3px;
    color: #999;
}

    .search-group-side i {
        font-size: 18px;
    }

.search-group .search-block {
    background: #fff;
}

    .search-group .search-block .search-text {
        border: 1px solid #e5e5e5;
        border-radius: 5px;
    }

.navbar {
    background: #fff;
    border-bottom: 1px solid #e5e5e5;
    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+ */
}

    .navbar > li {
        position: relative;
        -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+ */
    }

        .navbar > li.has-dropdown:after {
            position: absolute;
            top: 50%;
            right: 0;
            width: 6px;
            height: 6px;
            background: #fff;
            border-left: 1px solid #d23816;
            border-bottom: 1px solid #d23816;
            content: "";
            -webkit-transform: translate(0, -100%) rotate(-45deg);
            transform: translate(0, -100%) rotate(-45deg);
        }

        .navbar > li.has-dropdown.open:after {
            -webkit-transform: translate(0, -50%) rotate(-225deg);
            transform: translate(0, -50%) rotate(-225deg);
        }

        .navbar > li > a {
            display: block;
            padding: 10px 0;
            text-align: center;
        }

        .navbar > li.active > a {
            color: #d23816;
            border-bottom: 1px solid #d23816;
        }

/* n等分 */
.avg-list {
    overflow: hidden;
}

    .avg-list.avg-list--2 li {
        width: 48%;
        margin: 0 4% 10px 0;
    }

        .avg-list.avg-list--2 li:nth-of-type(2n) {
            margin-right: 0;
        }

    .avg-list.avg-list--3 li {
        width: 30%;
        margin: 0 5% 10px 0;
    }

        .avg-list.avg-list--3 li:nth-of-type(3n) {
            margin-right: 0;
        }

    .avg-list.avg-list--4 li {
        width: 22%;
        margin: 0 4% 10px 0;
    }

        .avg-list.avg-list--4 li:nth-of-type(4n) {
            margin-right: 0;
        }

    .avg-list.avg-list--5 li {
        width: 16%;
        margin: 0 5% 10px 0;
    }

        .avg-list.avg-list--5 li:nth-of-type(5n) {
            margin-right: 0;
        }

    .avg-list li {
        float: left;
    }

/* dropdown */
.dropdown-wrap {
    position: fixed;
    top: 87px;
    left: 0;
    z-index: 1002;
    width: 100%;
    height: 100%;
}

    .dropdown-wrap .overlay {
        top: 87px;
    }

.dropdown-container {
    position: relative;
    z-index: 1001;
    min-height: 320px;
    background: #fff;
}

.dropdown-side {
    position: absolute;
    top: 0;
    left: 0;
    width: 90px;
    height: 100%;
    background: #eee;
}

    .dropdown-side li {
        height: 40px;
        line-height: 40px;
        border-bottom: 1px solid #e5e5e5;
        text-align: center;
    }

        .dropdown-side li.active {
            border-left: 1px solid #d23816;
            color: #d23816;
            background: #fff;
        }

.dropdown-main {
    padding-left: 90px;
}

/* user-media */
.user-media {
    text-align: center;
}

    .user-media .media-img {
        width: 30px;
        height: 30px;
        border-radius: 50%;
    }

/* report */
.chartCav {
    width: 100%;
    padding: 10px;
}

.report-swiper-tle {
    padding: 10px;
}

    .report-swiper-tle .swiper-wrapper {
        width: 100%;
        background: #d23816;
        border-radius: 30px;
        box-sizing: border-box;
    }

        .report-swiper-tle .swiper-wrapper .swiper-slide {
            padding: 5px;
        }

            .report-swiper-tle .swiper-wrapper .swiper-slide.active span {
                background: #7bde80;
            }

            .report-swiper-tle .swiper-wrapper .swiper-slide span {
                display: block;
                height: 42px;
                line-height: 42px;
                font-size: 16px;
                color: #fff;
                text-align: center;
                border-radius: 30px;
            }

/* 用户等级 */
.level-icon {
    display: inline-block;
    padding: 0 5px;
    height: 20px;
    line-height: 20px;
    font-size: 12px;
    color: #fff;
    background: #ff6e02;
    border-radius: 5px;
    vertical-align: middle;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
    -webkit-transform: skew(-10deg);
    transform: skew(-10deg);
}

    .level-icon.two {
        background: #ff5cae;
    }

    .level-icon.three {
        background: #5c95ff;
    }

/* 动画 */
.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

@-webkit-keyframes fadeInDown {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.fadeInDown {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
}

@-webkit-keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.fadeIn {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
}

/* 背景 */
.bg {
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
}

/* mobiscroll */
.mbsc-ios .mbsc-fr-btn, .mbsc-mobiscroll .mbsc-cal-btn-txt, .mbsc-mobiscroll .mbsc-cal-days, .mbsc-mobiscroll .mbsc-cal-hl-now .mbsc-cal-today, .mbsc-mobiscroll .mbsc-fr-btn {
    color: #d23816 !important;
}

.mbsc-mobiscroll.mbsc-range .mbsc-cal-table .mbsc-cal-day-sel .mbsc-cal-day-i, .mbsc-mobiscroll .mbsc-fr-btn-a {
    background: #90e394;
}

.mbsc-mobiscroll .mbsc-range-btn-sel .mbsc-range-btn, .mbsc-mobiscroll.mbsc-range .mbsc-cal-table .mbsc-cal-day-hl .mbsc-cal-day-i {
    background: #d23816;
}

.mbsc-mobiscroll .mbsc-range-btn {
    border-color: #d23816;
}

.mbsc-mobiscroll .mbsc-cal-days th {
    border-color: #d23816;
}

.line-item .mbsc-control, .line-item .mbsc-comp {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    padding-right: 30px;
    text-align: right;
    color: #999;
    border: 0;
    background: transparent;
}

/* 按钮 */
.btn-outline.disabled {
    background: none !important;
    color: #999 !important;
}

.btn-custom {
    background-image: linear-gradient(to bottom, #fefefe, #ebebeb);
    box-shadow: inset 0 0 2px #fff, 0 2px 3px rgba(0, 0, 0, 0.1);
}

/* nav-menu */
.nav-menu {
    padding: 10px 0;
    background: #fff;
}

    .nav-menu .menu-item {
        text-align: center;
    }

        .nav-menu .menu-item .menu-icon {
            display: inline-block;
            width: 50px;
            height: 50px;
            line-height: 50px;
            background: #f1f1f1;
            text-align: center;
            border-radius: 20px;
        }

            .nav-menu .menu-item .menu-icon .iconfont {
                font-size: 28px;
                line-height: 24px;
                color: #fff;
            }

        .nav-menu .menu-item .menu-tle {
            margin-top: 5px;
            color: #666;
        }

/* flyer */
.flyer {
    display: block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

/* sku */
.sku-list {
    overflow: hidden;
    margin-bottom: -10px;
}

    .sku-list .sku-item {
        float: left;
        height: 30px;
        line-height: 30px;
        padding: 0 15px;
        margin: 0 10px 10px 0;
        text-align: center;
        background: #fff;
        border: 1px solid #e5e5e5;
        border-radius: 5px;
    }

        .sku-list .sku-item.active {
            color: #3091dc;
            border-color: #3091dc;
        }

/* 购物车 */
.cart-list {
    padding: 5px;
}

.cart-item {
    position: relative;
    padding: 10px;
    background: #fff;
}

    .cart-item:not(:first-of-type) {
        margin: 5px 0 0 0;
    }

    .cart-item.edit .item-bd .bd-tt, .cart-item.edit .item-bd .bd-txt {
        display: none;
    }

    .cart-item.edit .item-bd .bd-sku-edit {
        display: flex;
    }

    .cart-item.edit .item-opt a.del {
        display: inline-block;
    }

    .cart-item .item-inner {
        position: relative;
    }

    .cart-item .item-thumb {
        width: 90px;
        height: 90px;
        margin: 0 5px 0 25px;
    }

    .cart-item .item-bd .bd-tt {
        max-height: 36px;
        line-height: 1.3;
        overflow: hidden;
    }

    .cart-item .item-bd .bd-txt {
        font-size: 12px;
        color: #999;
    }

    .cart-item .item-bd .bd-price {
        margin: 8px 0 0 0;
        font-size: 14px;
        color: #ff3b30;
    }

        .cart-item .item-bd .bd-price span {
            font-size: 18px;
        }

    .cart-item .item-bd .bd-sku-edit {
        position: relative;
        display: none;
        padding: 5px;
        background: #f2f2f2;
    }

        .cart-item .item-bd .bd-sku-edit i {
            line-height: 20px;
            color: #999;
        }

        .cart-item .item-bd .bd-sku-edit p {
            max-height: 40px;
            font-size: 12px;
            overflow: hidden;
        }

    .cart-item .item-opt {
        text-align: right;
        line-height: 1.3;
    }

        .cart-item .item-opt a {
            display: inline-block;
            color: #666;
            vertical-align: middle;
        }

            .cart-item .item-opt a:not(:first-of-type):before {
                content: "|";
                margin: 0 5px;
                color: #e5e5e5;
            }

            .cart-item .item-opt a.del {
                display: none;
            }

    .cart-item .jiajian {
        position: absolute;
        top: 60px;
        right: 0;
    }

    .cart-item .label-checkbox {
        position: absolute;
        top: 35px;
        left: 0;
    }

/* switch 开关 */
.label-switch {
    position: relative;
    display: inline-block;
    height: 30px;
}

    .label-switch .switch-hook {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1;
        width: 100%;
        height: 100%;
        opacity: 0;
    }

        .label-switch .switch-hook:checked + .icon-switch:before {
            left: 0;
        }

        .label-switch .switch-hook:checked + .icon-switch:after {
            left: 22px;
        }

    .label-switch .icon-switch {
        vertical-align: 0;
    }

/* panel */
.panel-wrap {
    position: fixed;
    top: 44px;
    left: 0;
    right: 0;
    z-index: 1001;
    display: none;
}

    .panel-wrap.active {
        display: block;
    }

    .panel-wrap .panel {
        position: relative;
        z-index: 1001;
        background: #fff;
    }

/* 下拉菜单 */
.dropdown-menu {
    position: relative;
    display: inline-block;
    height: 30px;
    line-height: 28px;
    padding: 0 10px;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 5px;
}

    .dropdown-menu .menu-list {
        position: absolute;
        top: 31px;
        left: 0;
        right: 0;
        display: none;
        padding: 5px 0;
        background: #fff;
        box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
    }

        .dropdown-menu .menu-list li a {
            display: block;
            height: 30px;
            line-height: 30px;
            font-size: 12px;
            color: #666;
            text-align: center;
        }

/** 文字排版 */
.fs12 {
    font-size: 12px !important;
}

.fs14 {
    font-size: 14px !important;
}

.fs15 {
    font-size: 15px !important;
}

.fs16 {
    font-size: 16px;
}

.fs18 {
    font-size: 18px;
}

.fs20 {
    font-size: 20px;
}

.fs22 {
    font-size: 22px;
}

.fs24 {
    font-size: 24px;
}

.fs32 {
    font-size: 32px;
}

.fs48 {
    font-size: 48px;
}

.fb {
    font-weight: 700;
}

.fn {
    font-weight: 400;
}

.ttu {
    text-transform: uppercase;
}

.tal {
    text-align: left !important;
}

.tar {
    text-align: right;
}

.tac {
    text-align: center;
}

.tdul {
    text-decoration: underline;
}

.no-indent {
    text-indent: 0 !important;
}

/* 遮罩 */
.mask {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    z-index: 1;
    background: rgba(0, 0, 0, 0.5);
}

/* 加减图标 */
.stepper-icon {
    position: relative;
    display: inline-block;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #fd4743;
    vertical-align: middle;
}

    .stepper-icon:before {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 8px;
        height: 1px;
        background: #fff;
        content: "";
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }

.stepper-icon--primary {
    background: #d23816;
}

    .stepper-icon--primary:after {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 1px;
        height: 8px;
        background: #fff;
        content: "";
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }

/* 心形图标 */
.like-icon {
    display: inline-block;
    width: 24px;
    height: 24px;
    background: url(../images/icon-like-spr.png) no-repeat;
    background-size: 24px auto;
    transition: .3s;
}

    .like-icon.active {
        background-position: 0 -24px;
    }
