/*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, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
button,article, aside, canvas, details, embed, figure,
figcaption, footer, header, hgroup, menu, nav,
output, ruby, section, summary, time, mark,
audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    vertical-align: baseline;
    background: transparent;
    outline: none;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section { display: block; }
ol, ul { list-style: none; }
button{background: transparent;}
blockquote, q { quotes: none; }
blockquote:before, blockquote:after, q:before, q:after { content: ''; content: none; }
strong { font-weight: bold; }
table { border-collapse: collapse; border-spacing: 0; }
img { border: 0; max-width: 100%; }
html{
    line-height: initial;
}
body{
    font-size: 0.32rem;
    font-family: "Helvetica Neue", Helvetica, sans-serif;
}
a{
    text-decoration: none;
}

/*动画*/
.fade-appear, .fade-enter-active {
    animation-duration: .3s;
    animation-fill-mode: both;
    animation-play-state: paused
}

.fade-leave-active {
    animation-duration: .3s;
    animation-fill-mode: both;
    animation-play-state: paused
}

.fade-appear, .fade-enter-active {
    animation-name: ivuFadeIn;
    animation-play-state: running
}

.fade-leave-active {
    animation-name: ivuFadeOut;
    animation-play-state: running
}

.fade-appear, .fade-enter-active {
    opacity: 0;
    animation-timing-function: linear
}

.fade-leave-active {
    animation-timing-function: linear
}

@keyframes ivuFadeIn {
    0% {
        opacity: 0
    }
    100% {
        opacity: 1
    }
}

@keyframes ivuFadeOut {
    0% {
        opacity: 1
    }
    100% {
        opacity: 0
    }
}

.ease-appear, .ease-enter-active {
    animation-duration: .3s;
    animation-fill-mode: both;
    animation-play-state: paused
}

.ease-leave-active {
    animation-duration: .3s;
    animation-fill-mode: both;
    animation-play-state: paused
}

.ease-appear, .ease-enter-active {
    animation-name: ivuEaseIn;
    animation-play-state: running
}

.ease-leave-active {
    animation-name: ivuEaseOut;
    animation-play-state: running
}

.ease-appear, .ease-enter-active {
    opacity: 0;
    animation-timing-function: linear;
    animation-duration: .2s
}

.ease-leave-active {
    animation-timing-function: linear;
    animation-duration: .2s
}

@keyframes ivuEaseIn {
    0% {
        opacity: 0;
        transform: scale(.9)
    }
    100% {
        opacity: 1;
        transform: scale(1)
    }
}

@keyframes ivuEaseOut {
    0% {
        opacity: 1;
        transform: scale(1)
    }
    100% {
        opacity: 0;
        transform: scale(.9)
    }
}

.slide-up-appear, .slide-up-enter-active {
    animation-duration: .3s;
    animation-fill-mode: both;
    animation-play-state: paused
}

.slide-up-leave-active {
    animation-duration: .3s;
    animation-fill-mode: both;
    animation-play-state: paused
}

.slide-up-appear, .slide-up-enter-active {
    animation-name: ivuSlideUpIn;
    animation-play-state: running
}

.slide-up-leave-active {
    animation-name: ivuSlideUpOut;
    animation-play-state: running
}

.slide-up-appear, .slide-up-enter-active {
    opacity: 0;
    animation-timing-function: ease-in-out
}

.slide-up-leave-active {
    animation-timing-function: ease-in-out
}

.slide-down-appear, .slide-down-enter-active {
    animation-duration: .3s;
    animation-fill-mode: both;
    animation-play-state: paused
}

.slide-down-leave-active {
    animation-duration: .3s;
    animation-fill-mode: both;
    animation-play-state: paused
}

.slide-down-appear, .slide-down-enter-active {
    animation-name: ivuSlideDownIn;
    animation-play-state: running
}

.slide-down-leave-active {
    animation-name: ivuSlideDownOut;
    animation-play-state: running
}

.slide-down-appear, .slide-down-enter-active {
    opacity: 0;
    animation-timing-function: ease-in-out
}

.slide-down-leave-active {
    animation-timing-function: ease-in-out
}

.slide-left-appear, .slide-left-enter-active {
    animation-duration: .3s;
    animation-fill-mode: both;
    animation-play-state: paused
}

.slide-left-leave-active {
    animation-duration: .3s;
    animation-fill-mode: both;
    animation-play-state: paused
}

.slide-left-appear, .slide-left-enter-active {
    animation-name: ivuSlideLeftIn;
    animation-play-state: running
}

.slide-left-leave-active {
    animation-name: ivuSlideLeftOut;
    animation-play-state: running
}

.slide-left-appear, .slide-left-enter-active {
    opacity: 0;
    animation-timing-function: ease-in-out
}

.slide-left-leave-active {
    animation-timing-function: ease-in-out
}

.slide-right-appear, .slide-right-enter-active {
    animation-duration: .3s;
    animation-fill-mode: both;
    animation-play-state: paused
}

.slide-right-leave-active {
    animation-duration: .3s;
    animation-fill-mode: both;
    animation-play-state: paused
}

.slide-right-appear, .slide-right-enter-active {
    animation-name: ivuSlideRightIn;
    animation-play-state: running
}

.slide-right-leave-active {
    animation-name: ivuSlideRightOut;
    animation-play-state: running
}

.slide-right-appear, .slide-right-enter-active {
    opacity: 0;
    animation-timing-function: ease-in-out
}

.slide-right-leave-active {
    animation-timing-function: ease-in-out
}

@keyframes ivuSlideUpIn {
    0% {
        opacity: 0;
        transform-origin: 0 0;
        transform: scaleY(.8)
    }
    100% {
        opacity: 1;
        transform-origin: 0 0;
        transform: scaleY(1)
    }
}

@keyframes ivuSlideUpOut {
    0% {
        opacity: 1;
        transform-origin: 0 0;
        transform: scaleY(1)
    }
    100% {
        opacity: 0;
        transform-origin: 0 0;
        transform: scaleY(.8)
    }
}

@keyframes ivuSlideDownIn {
    0% {
        opacity: 0;
        transform-origin: 100% 100%;
        transform: scaleY(.8)
    }
    100% {
        opacity: 1;
        transform-origin: 100% 100%;
        transform: scaleY(1)
    }
}

@keyframes ivuSlideDownOut {
    0% {
        opacity: 1;
        transform-origin: 100% 100%;
        transform: scaleY(1)
    }
    100% {
        opacity: 0;
        transform-origin: 100% 100%;
        transform: scaleY(.8)
    }
}

@keyframes ivuSlideLeftIn {
    0% {
        opacity: 0;
        transform-origin: 0 0;
        transform: scaleX(.8)
    }
    100% {
        opacity: 1;
        transform-origin: 0 0;
        transform: scaleX(1)
    }
}

@keyframes ivuSlideLeftOut {
    0% {
        opacity: 1;
        transform-origin: 0 0;
        transform: scaleX(1)
    }
    100% {
        opacity: 0;
        transform-origin: 0 0;
        transform: scaleX(.8)
    }
}

@keyframes ivuSlideRightIn {
    0% {
        opacity: 0;
        transform-origin: 100% 0;
        transform: scaleX(.8)
    }
    100% {
        opacity: 1;
        transform-origin: 100% 0;
        transform: scaleX(1)
    }
}

@keyframes ivuSlideRightOut {
    0% {
        opacity: 1;
        transform-origin: 100% 0;
        transform: scaleX(1)
    }
    100% {
        opacity: 0;
        transform-origin: 100% 0;
        transform: scaleX(.8)
    }
}

.move-up-appear, .move-up-enter-active {
    animation-duration: .3s;
    animation-fill-mode: both;
    animation-play-state: paused
}

.move-up-leave-active {
    animation-duration: .3s;
    animation-fill-mode: both;
    animation-play-state: paused
}

.move-up-appear, .move-up-enter-active {
    animation-name: ivuMoveUpIn;
    animation-play-state: running
}

.move-up-leave-active {
    animation-name: ivuMoveUpOut;
    animation-play-state: running
}

.move-up-appear, .move-up-enter-active {
    opacity: 0;
    animation-timing-function: ease-in-out
}

.move-up-leave-active {
    animation-timing-function: ease-in-out
}

.move-down-appear, .move-down-enter-active {
    animation-duration: .3s;
    animation-fill-mode: both;
    animation-play-state: paused
}

.move-down-leave-active {
    animation-duration: .3s;
    animation-fill-mode: both;
    animation-play-state: paused
}

.move-down-appear, .move-down-enter-active {
    animation-name: ivuMoveDownIn;
    animation-play-state: running
}

.move-down-leave-active {
    animation-name: ivuMoveDownOut;
    animation-play-state: running
}

.move-down-appear, .move-down-enter-active {
    opacity: 0;
    animation-timing-function: ease-in-out
}

.move-down-leave-active {
    animation-timing-function: ease-in-out
}

.move-left-appear, .move-left-enter-active {
    animation-duration: .3s;
    animation-fill-mode: both;
    animation-play-state: paused
}

.move-left-leave-active {
    animation-duration: .3s;
    animation-fill-mode: both;
    animation-play-state: paused
}

.move-left-appear, .move-left-enter-active {
    animation-name: ivuMoveLeftIn;
    animation-play-state: running
}

.move-left-leave-active {
    animation-name: ivuMoveLeftOut;
    animation-play-state: running
}

.move-left-appear, .move-left-enter-active {
    opacity: 0;
    animation-timing-function: ease-in-out
}

.move-left-leave-active {
    animation-timing-function: ease-in-out
}

.move-right-appear, .move-right-enter-active {
    animation-duration: .3s;
    animation-fill-mode: both;
    animation-play-state: paused
}

.move-right-leave-active {
    animation-duration: .3s;
    animation-fill-mode: both;
    animation-play-state: paused
}

.move-right-appear, .move-right-enter-active {
    animation-name: ivuMoveRightIn;
    animation-play-state: running
}

.move-right-leave-active {
    animation-name: ivuMoveRightOut;
    animation-play-state: running
}

.move-right-appear, .move-right-enter-active {
    opacity: 0;
    animation-timing-function: ease-in-out
}

.move-right-leave-active {
    animation-timing-function: ease-in-out
}

@keyframes ivuMoveDownIn {
    0% {
        transform-origin: 0 0;
        transform: translateY(100%);
        opacity: 0
    }
    100% {
        transform-origin: 0 0;
        transform: translateY(0);
        opacity: 1
    }
}

@keyframes ivuMoveDownOut {
    0% {
        transform-origin: 0 0;
        transform: translateY(0);
        opacity: 1
    }
    100% {
        transform-origin: 0 0;
        transform: translateY(100%);
        opacity: 0
    }
}

@keyframes ivuMoveLeftIn {
    0% {
        transform-origin: 0 0;
        transform: translateX(-100%);
        opacity: 0
    }
    100% {
        transform-origin: 0 0;
        transform: translateX(0);
        opacity: 1
    }
}

@keyframes ivuMoveLeftOut {
    0% {
        transform-origin: 0 0;
        transform: translateX(0);
        opacity: 1
    }
    100% {
        transform-origin: 0 0;
        transform: translateX(-100%);
        opacity: 0
    }
}

@keyframes ivuMoveRightIn {
    0% {
        opacity: 0;
        transform-origin: 0 0;
        transform: translateX(100%)
    }
    100% {
        opacity: 1;
        transform-origin: 0 0;
        transform: translateX(0)
    }
}

@keyframes ivuMoveRightOut {
    0% {
        transform-origin: 0 0;
        transform: translateX(0);
        opacity: 1
    }
    100% {
        transform-origin: 0 0;
        transform: translateX(100%);
        opacity: 0
    }
}

@keyframes ivuMoveUpIn {
    0% {
        transform-origin: 0 0;
        transform: translateY(-100%);
        opacity: 0
    }
    100% {
        transform-origin: 0 0;
        transform: translateY(0);
        opacity: 1
    }
}

@keyframes ivuMoveUpOut {
    0% {
        transform-origin: 0 0;
        transform: translateY(0);
        opacity: 1
    }
    100% {
        transform-origin: 0 0;
        transform: translateY(-100%);
        opacity: 0
    }
}

/* -- door -- */
/* -- door -- */
@keyframes door-enter {
    from {
        -webkit-transform: scale3d(0, 1, 1);
        transform: scale3d(0, 1, 1);
    }
}

.door-enter-active {
    animation: door-enter both cubic-bezier(0.4, 0, 0, 1.5) .5s;
}

@keyframes door-leave {
    60% {
        -webkit-transform: scale3d(.01, 1, 1);
        transform: scale3d(.01, 1, 1);
    }
    to {
        -webkit-transform: scale3d(0, 1, .1);
        transform: scale3d(0, 1, .1);
    }
}
.door-leave-active {
    animation: door-leave both .3s;
}


.ibd-slide-left-appear, .ibd-slide-left-enter-active {
    animation-duration: .3s;
    animation-fill-mode: both;
    animation-play-state: paused
}

.ibd-slide-left-leave-active {
    animation-duration: .3s;
    animation-fill-mode: both;
    animation-play-state: paused
}

.ibd-slide-left-appear, .ibd-slide-left-enter-active {
    animation-name: ibdMoveLeftIn;
    animation-play-state: running
}

.ibd-slide-left-leave-active {
    animation-name: ibdMoveLeftOut;
    animation-play-state: running
}

.ibd-slide-left-appear, .ibd-slide-left-enter-active {
    /*opacity: 0;*/
    animation-timing-function: ease-in-out
}

.ibd-slide-left-leave-active {
    animation-timing-function: ease-in-out
}

@keyframes ibdMoveLeftIn {
    0% {
        transform-origin: 0 0;
        transform: translateX(-100%);
    }
    100% {
        transform-origin: 0 0;
        transform: translateX(0);
    }
}

@keyframes ibdMoveLeftOut {
    0% {
        transform-origin: 0 0;
        transform: translateX(0);
    }
    100% {
        transform-origin: 0 0;
        transform: translateX(-100%);
    }
}

.ibd-slide-top-appear, .ibd-slide-top-enter-active {
    animation-duration: .3s;
    animation-fill-mode: both;
    animation-play-state: paused
}

.ibd-slide-top-leave-active {
    animation-duration: .3s;
    animation-fill-mode: both;
    animation-play-state: paused
}

.ibd-slide-top-appear, .ibd-slide-top-enter-active {
    animation-name: ibdMoveTopIn;
    animation-play-state: running
}

.ibd-slide-top-leave-active {
    animation-name: ibdMoveTopOut;
    animation-play-state: running
}

.ibd-slide-top-appear, .ibd-slide-top-enter-active {
    /*opacity: 0;*/
    animation-timing-function: ease-in-out
}

.ibd-slide-top-leave-active {
    animation-timing-function: ease-in-out
}

@keyframes ibdMoveTopIn {
    0% {
        transform-origin: 0 0;
        transform: translateY(100%);
    }
    100% {
        transform-origin: 0 0;
        transform: translateY(0);
    }
}

@keyframes ibdMoveTopOut {
    0% {
        transform-origin: 0 0;
        transform: translateY(0);
    }
    100% {
        transform-origin: 0 0;
        transform: translateY(100%);
    }
}

.f-cb:after, .f-cbli li:after {
    display: block;
    clear: both;
    visibility: hidden;
    height: 0;
    overflow: hidden;
    content: ".";
}

.f-cb, .f-cbli li {
    zoom: 1;
}

.f-ib {
    display: inline-block;
    *display: inline;
    *zoom: 1;
    vertical-align: middle;
}

.f-dn {
    display: none;
}

.f-db {
    display: block;
}

.f-fl {
    float: left;
}

.f-fr {
    float: right;
}

.f-pr {
    position: relative;
}

.f-prz {
    position: relative;
    zoom: 1;
}

.f-oh {
    overflow: hidden;
}

.f-ff0 {
    font-family: arial, \5b8b\4f53;
}

.f-ff1 {
    font-family: "Microsoft YaHei", \5fae\8f6f\96c5\9ed1, arial, \5b8b\4f53;
}

.f-fs1 {
    font-size: 12px;
}

.f-fs2 {
    font-size: 14px;
}

.f-fwn {
    font-weight: normal;
}

.f-fwb {
    font-weight: bold;
}

.f-tal {
    text-align: left;
}

.f-tac {
    text-align: center;
}

.f-tar {
    text-align: right;
}

.f-taj {
    text-align: justify;
    text-justify: inter-ideograph;
}

.f-vam, .f-vama * {
    vertical-align: middle;
}

.f-wsn {
    word-wrap: normal;
    white-space: nowrap;
}

.f-pre {
    overflow: hidden;
    text-align: left;
    white-space: pre-wrap;
    word-wrap: break-word;
    word-break: break-all;
}

.f-wwb {
    white-space: normal;
    word-wrap: break-word;
    word-break: break-all;
}

.f-ti {
    overflow: hidden;
    text-indent: -30000px;
}

.f-ti2 {
    text-indent: 2em;
}

.f-lhn {
    line-height: normal;
}

.f-tdu, .f-tdu:hover {
    text-decoration: underline;
}

.f-tdn, .f-tdn:hover {
    text-decoration: none;
}

.f-toe {
    overflow: hidden;
    word-wrap: normal;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.f-csp {
    cursor: pointer;
}

.f-csd {
    cursor: default;
}

.f-csh {
    cursor: help;
}

.f-csm {
    cursor: move;
}

.f-usn {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
}

.ibd-loading-mask{
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    /*background-color: rgba(55,55,55,.6);*/
    /*background-color: none;*/
    height: 100%;
    z-index: 1000;
}
.preloader:after {
    display: block;
    content: "";
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
    background-position: 50%;
    background-size: 100%;
    background-repeat: no-repeat;
}
.preloader-white:after {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}
.preloader{
    display: inline-block;
    width: 1rem;
    height: 1rem;
    -webkit-transform-origin: 50%;
    transform-origin: 50%;
    -webkit-animation: preloader-spin 1s steps(12, end) infinite;
    animation: preloader-spin 1s steps(12, end) infinite;
}
.ibd-loading {
    position: fixed;
    left: 50%;
    top: 50%;
    padding: 0.15rem;
    margin-left: -0.5rem;
    margin-top: -0.5rem;
    background: rgba(0, 0, 0, 0.8);
    z-index: 11000;
    border-radius: 0.1rem;
}

.ibd-loading .preloader {
    display: block;
    width: 0.7rem;
    height: 0.7rem;
}
@-webkit-keyframes preloader-spin {
    100% {
        -webkit-transform: rotate(360deg);
    }
}
@keyframes preloader-spin {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.ibd-sidebar-mask{
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    z-index: 1100;
}
.ibd-sidebar{
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    width: 6rem;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1101;
    overflow: auto;
}
.ibd-sidebar-close{
    text-decoration: none;
    color: #fff;
    font-size: 0.6rem;
    font-family: "宋体";
    position: absolute;
    right: 0;
    top: 0;
}

.ibd-toast.active{
    opacity: 1 !important;
}

.modal-overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 10600;
    visibility: hidden;
    opacity: 0;
    -webkit-transition-duration: 400ms;
    transition-duration: 400ms;
}

.modal-overlay.modal-overlay-visible {
    visibility: visible;
    opacity: 1;
}

.modal {
    width: 5.5rem;
    position: absolute;
    z-index: 11000;
    left: 50%;
    margin-left: -2.75rem;
    margin-top: 0;
    top: 50%;
    text-align: center;
    border-radius: 0.35rem;
    opacity: 0;
    -webkit-transform: translate3d(0, 0, 0) scale(1.185);
    transform: translate3d(0, 0, 0) scale(1.185);
    -webkit-transition-property: -webkit-transform, opacity;
    transition-property: transform, opacity;
    color: #3d4145;
    display: none;
}
.modal.modal-in {
    opacity: 1;
    -webkit-transition-duration: 400ms;
    transition-duration: 400ms;
    -webkit-transform: translate3d(0, 0, 0) scale(1);
    transform: translate3d(0, 0, 0) scale(1);
}
.modal.modal-out {
    opacity: 0;
    z-index: 10999;
    -webkit-transition-duration: 400ms;
    transition-duration: 400ms;
    -webkit-transform: translate3d(0, 0, 0) scale(0.815);
    transform: translate3d(0, 0, 0) scale(0.815);
}
.modal-inner {
    padding: 0.75rem;
    border-radius: 0.35rem 0.35rem 0 0;
    position: relative;
    background: #e8e8e8;
}
.modal-inner:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    right: auto;
    top: auto;
    height: 1px;
    width: 100%;
    background-color: #b5b5b5;
    display: block;
    z-index: 15;
    -webkit-transform-origin: 50% 100%;
    transform-origin: 50% 100%;
}
@media only screen and (-webkit-min-device-pixel-ratio: 2) {
    .modal-inner:after {
        -webkit-transform: scaleY(0.5);
        transform: scaleY(0.5);
    }
}
@media only screen and (-webkit-min-device-pixel-ratio: 3) {
    .modal-inner:after {
        -webkit-transform: scaleY(0.33);
        transform: scaleY(0.33);
    }
}
.modal-title {
    font-weight: 500;
    font-size: 0.9rem;
    text-align: center;
}
.modal-title + .modal-text {
    margin-top: 0.25rem;
}
.modal-buttons {
    height: 2.2rem;
    overflow: hidden;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
}
.modal-buttons.modal-buttons-vertical {
    display: block;
    height: auto;
}
.modal-button {
    width: 100%;
    padding: 0 0.25rem;
    height: 1.2rem;
    font-size: 0.3rem;
    line-height: 1.2rem;
    text-align: center;
    color: #0894ec;
    background: #e8e8e8;
    display: block;
    position: relative;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    cursor: pointer;
    box-sizing: border-box;
    -webkit-box-flex: 1;
    -ms-flex: 1;
}
.modal-button:after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    left: auto;
    bottom: auto;
    width: 1px;
    height: 100%;
    background-color: #b5b5b5;
    display: block;
    z-index: 15;
    -webkit-transform-origin: 100% 50%;
    transform-origin: 100% 50%;
}
@media only screen and (-webkit-min-device-pixel-ratio: 2) {
    .modal-button:after {
        -webkit-transform: scaleY(0.5);
        transform: scaleY(0.5);
    }
}
@media only screen and (-webkit-min-device-pixel-ratio: 3) {
    .modal-button:after {
        -webkit-transform: scaleY(0.33);
        transform: scaleY(0.33);
    }
}
.modal-button:first-child {
    border-radius: 0 0 0 0.35rem;
}
.modal-button:last-child {
    border-radius: 0 0 0.35rem 0;
}
.modal-button:last-child:after {
    display: none;
}
.modal-button:first-child:last-child {
    border-radius: 0 0 0.35rem 0.35rem;
}
.modal-button.modal-button-bold {
    font-weight: 500;
}
html:not(.watch-active-state) .modal-button:active,
.modal-button.active-state {
    background: #d4d4d4;
}
.modal-buttons-vertical .modal-button {
    border-radius: 0;
}
.modal-buttons-vertical .modal-button:after {
    display: none;
}
.modal-buttons-vertical .modal-button:before {
    display: none;
}
.modal-buttons-vertical .modal-button:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    right: auto;
    top: auto;
    height: 1px;
    width: 100%;
    background-color: #b5b5b5;
    display: block;
    z-index: 15;
    -webkit-transform-origin: 50% 100%;
    transform-origin: 50% 100%;
}
@media only screen and (-webkit-min-device-pixel-ratio: 2) {
    .modal-buttons-vertical .modal-button:after {
        -webkit-transform: scaleY(0.5);
        transform: scaleY(0.5);
    }
}
@media only screen and (-webkit-min-device-pixel-ratio: 3) {
    .modal-buttons-vertical .modal-button:after {
        -webkit-transform: scaleY(0.33);
        transform: scaleY(0.33);
    }
}
.modal-buttons-vertical .modal-button:last-child {
    border-radius: 0 0 0.35rem 0.35rem;
}
.modal-buttons-vertical .modal-button:last-child:after {
    display: none;
}
.modal-no-buttons .modal-inner {
    border-radius: 0.35rem;
}
.modal-no-buttons .modal-inner:after {
    display: none;
}
.modal-no-buttons .modal-buttons {
    display: none;
}

/*无线中奖记录统用table*/
.ibd-record-table{
    width: 100%;
    color: #fff;
}
.ibd-record-table > thead > tr > th{
    padding: 0.2rem 0.1rem;
    font-weight: 400;
    font-size: 0.28rem;
    text-align: left;
    color: #fff;
    /*border-bottom: 1px solid #fff;*/
    word-wrap: break-word;
    position: relative;
}
.ibd-record-table > tbody > tr > td{
    padding: 0.2rem 0.1rem;
    /*border-bottom: 1px solid #fff;*/
    font-size: 0.24rem;
    vertical-align: middle;
    text-align: left;
    word-wrap: break-word;
    position: relative;
}
.ibd-record-table > thead > tr > th:after{
    content: " ";
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    height: 1px;
    border-top: 1px solid #fff;
    color: #fff;
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
    -webkit-transform: scaleY(0.5);
    transform: scaleY(0.5);
}
.ibd-record-table > tbody > tr > td:after{
    content: " ";
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    height: 1px;
    border-top: 1px solid #fff;
    color: #fff;
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
    -webkit-transform: scaleY(0.5);
    transform: scaleY(0.5);
}

.inline-block{
    display: inline-block;
    vertical-align: middle;
}
.clearfix:before,
.clearfix:after{
    display: table;
    content: " ";
}
.clearfix:after{
    clear: both;
}

/*通用获奖名单*/
.ibd-win-name{
    margin: 0.5rem 0.8rem;
    padding: 0.3rem;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.3);
    position: relative;
}
.ibd-win-name .name{
    position: absolute;
    top: -0.3rem;
    left: 50%;
    width: 3.08rem;
    height: 0.46rem;
    margin-left: -1.54rem;
    background-image: url("https://img10.360buyimg.com/imgzone/jfs/t20383/173/437287818/1686/bc170c84/5b0e256fN2ac59d0e.png");
    background-repeat: no-repeat;
    background-size: 100%;
}
.ibd-win-name .ctn{
    height: 4rem;
    overflow: hidden;
}
.ibd-win-name ul{
    height: 4.8rem;
    overflow: auto;
}
.ibd-win-name ul li{
    height: 0.8rem;
    line-height: 0.8rem;
    overflow: hidden;
    /*border-bottom: 1px dashed #999;*/
    position: relative;
    font-size: 0.28rem;
    background: url("https://img10.360buyimg.com/imgzone/jfs/t20353/283/457089967/998/1cdf509/5b0e3f7cNa6ff600e.png") repeat-x left bottom;
}

.ibd-foot-copy{
    background: #e6e6e6;
    text-align: center;
    color: #999;
    font-size: .24rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    align-content: flex-start;
    height:.9rem;
}
.ibd-foot-copy a{
    color: #3f80ff;
}
.ibd-rule-ctn{
    margin: 0.5rem 0.6rem;
    position: relative;
    color: #fff;
}
.ibd-rule-ctn .name{
    text-align: center;
    font-size: 0.3rem;
    position: relative;
}
.ibd-rule-ctn .name .name-left{
    position: absolute;
    left: 0;
    right: 50%;
    top: 8px;
    height: 1px;
    text-align: left;
}
.ibd-rule-ctn .name .name-left:before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: -50%;
    height: 1px;
    background: #fff;
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
}
.ibd-rule-ctn .name .name-left:after{
    content: "";
    position: absolute;
    top: -2px;
    right: 18.5%;
    width: 8px;
    height: 8px;
    border: 1px solid #fff;
    border-radius: 100%;
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
}
.ibd-rule-ctn .name .name-right{
    position: absolute;
    left: 50%;
    right: 0;
    top: 8px;
    height: 1px;
    text-align: right;
}
.ibd-rule-ctn .name .name-right:before{
    content: "";
    position: absolute;
    top: 0;
    left: -50%;
    right: 0;
    height: 1px;
    background: #fff;
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
    -webkit-transform-origin: 0 0;
    transform-origin: 100% 100%;
}
.ibd-rule-ctn .name .name-right:after{
    content: "";
    position: absolute;
    top: -2px;
    left: 21.5%;
    width: 8px;
    height: 8px;
    border: 1px solid #fff;
    border-radius: 100%;
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
}
.ibd-rule-ctn .ctn{
    padding: 0.3rem 0;
    line-height: 0.5rem;
    font-size: 0.24rem;
}
.ibd-rule-ctn.black{
    color: #000;
}
.ibd-rule-ctn.black .name .name-left:before{
    background: #000;
}
.ibd-rule-ctn.black .name .name-left:after{
    border: 1px solid #000;
}
.ibd-rule-ctn.black .name .name-right:before{
    background: #000;
}
.ibd-rule-ctn.black .name .name-right:after{
    border: 1px solid #000;
}

.ibd-modal-mask{
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba( 0, 0, 0, .55);
    height: 100%;
    z-index: 1000;
}
.ibd-modal-wrap{
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    z-index: 1000;
}
.ibd-modal-wrap .ibd-modal-modal{
    margin: 2.2rem 0.84rem 0 0.84rem;
    font-size: .24rem;
    border-radius: 15px;
    /*background: #fff;*/
    /*box-shadow: 1px 1px 3px rgba(0,0,0,.32);*/
    /*position: absolute;*/
    /*left: 50%;*/
    /*margin-left: -0.42rem;*/
    position: relative;
}
.ibd-modal-wrap .ibd-modal-modal .ibd-modal-content{
    /*width: 5.27rem;*/
}
.ibd-modal-wrap .ibd-modal-modal .ibd-modal-content .ibd-modal-head{
    position: relative;
    height: 1.65rem;
    text-align: center;
    background-image: url("https://img10.360buyimg.com/imgzone/jfs/t21232/214/451126300/11738/eb737235/5b0e256fN2f3313d3.png");
    background-repeat: no-repeat;
    background-size: 100% 100%;
}
.ibd-modal-wrap .ibd-modal-modal .ibd-modal-content .ibd-modal-body{
    padding: 0.28rem;
    border-radius: 0 0 10px 10px;
    background: #fff;
}
.ibd-modal-wrap .ibd-modal-modal .ibd-modal-btn-cancel{
    position: absolute;
    top: 0;
    right: 0;
    width: 0.6rem;
    height: 0.6rem;
    text-decoration: none;
    z-index: 9;
    display: block;
}

/**我的奖品table*/
.ibd-prize-table{
    width: 100%;
    color: #333;
}
.ibd-prize-table > thead > tr > th{
    padding: 0.2rem 0.1rem;
    font-weight: 400;
    font-size: 0.28rem;
    text-align: left;
    color: #ffa033;
    /*border-bottom: 1px solid #fff;*/
    word-wrap: break-word;
    position: relative;
}
.ibd-prize-table > tbody > tr{
    background: #fff3e0;
}
.ibd-prize-table > tbody > tr:nth-child(even){
    background: #fffaf2;
}
.ibd-prize-table > tbody > tr > td{
    padding: 0.2rem 0.1rem;
    /*border-bottom: 1px solid #fff;*/
    font-size: 0.24rem;
    vertical-align: middle;
    text-align: left;
    word-wrap: break-word;
    position: relative;
}
.ibd-prize-table > thead > tr > th:after{
    content: " ";
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    height: 1px;
    border-top: 1px solid #fff;
    color: #fff;
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
    -webkit-transform: scaleY(0.5);
    transform: scaleY(0.5);
}
.ibd-prize-table > tbody > tr > td:after{
    content: " ";
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    height: 1px;
    border-top: 1px solid #fff;
    color: #fff;
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
    -webkit-transform: scaleY(0.5);
    transform: scaleY(0.5);
}

.win-modal-mask{
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba( 0, 0, 0, .85);
    height: 100%;
    z-index: 1000;
}
.win-modal-wrap{
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    z-index: 1000;
}
.win-modal-wrap .win-modal-modal{
    margin: 1rem 1.12rem;
    font-size: .24rem;
    border-radius: 15px;
    /*background: #fff;*/
    /*box-shadow: 1px 1px 3px rgba(0,0,0,.32);*/
    position: absolute;
    left: 50%;
    margin-left: -2.635rem;
}
.win-modal-wrap .win-modal-modal .win-modal-content{
    width: 5.27rem;
}
.win-modal-wrap .win-modal-modal .win-modal-header{
    width: 5.27rem;
    height: 4.42rem;
    background-image: url("https://img10.360buyimg.com/imgzone/jfs/t18595/232/384300419/18626/2be860c7/5a71269dNaa7a4a45.png");
    background-repeat: no-repeat;
    background-size: 100% 100%;
}
.win-modal-wrap .win-modal-modal .win-modal-header-inner{
    padding-top: 1.7rem;
    position: relative;
    text-align: center;
}
.win-modal-wrap .win-modal-modal .win-modal-header-inner .header-img{
    position: absolute;
    top: 1.7rem;
    left: 0;
    right: 0;
    z-index: 3;
}
.win-modal-wrap .win-modal-modal .win-modal-body{
    margin-top: -1px;
    padding: 0.36rem;
    text-align: center;
    background: #fff;
}
.win-modal-wrap .win-modal-modal .win-modal-footer{
    padding: 0 0.36rem 0.36rem 0.36rem;
    border-radius: 0 0 10px 10px;
    text-align: center;
    background: #fff;
    margin-top:-2px;
}
.win-modal-wrap .win-modal-modal .win-modal-footer .showbtn{
    width: 50%;
    color: #666;
    font-size: 0.3rem;
    text-decoration: none;
}
.win-modal-wrap .win-modal-modal .win-modal-btn-confirm{
    margin-left: 1.5rem;
    cursor: pointer;
    color: #3089dc;
}
.win-modal-wrap .win-modal-modal .win-modal-btn-cancel{
    position: absolute;
    top: 1.43rem;
    right: -0.25rem;
    width: 0.5rem;
    height: 0.5rem;
    background-image: url("https://img10.360buyimg.com/imgzone/jfs/t21163/95/459418051/517/e07be561/5b0e40b3Nbd093241.png");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    text-decoration: none;
    z-index: 9;
    display: block;
}
.win-modal-wrap .win-modal-modal .win-modal-header.nomal{
    width: 5.27rem;
    height: 2.72rem;
    background: #f6f6f6;
    border-radius: 10px 10px 0 0;
    margin-top: 1.7rem;
}
.win-modal-wrap .win-modal-modal .win-modal-btn-cancel.nomal{
    top: 1.5rem;
    right: -0.25rem;
}

.ibd-modal-wrap .ibd-modal-modal .ibd-modal-content .ibd-draw-chance-head{
    /*position: relative;*/
    height: 1.65rem;
    text-align: center;
    background-image: url("https://img10.360buyimg.com/imgzone/jfs/t21520/124/447125391/19308/28c0c122/5b0e256eN842ee162.png");
    background-repeat: no-repeat;
    background-size: 100% 100%;
}
.draw-chance{

}
.draw-chance .drow-chance-btn{
    position: relative;
    overflow: hidden;
    width: 3.5rem;
    height: 1rem;
    line-height: 0.72rem;
    background-image: url("https://img10.360buyimg.com/imgzone/jfs/t20218/109/472562343/14078/12e90d2b/5b0e256eNfd19da8f.png");
    background-size: 100%;
    background-repeat: no-repeat;
}

.draw-chance .draw-chance-num{
    color: red;
    font-size: 0.35rem;
}
.draw-chance .draw-chance-text{
    color: #333333;
    font-size: 0.15rem;
}

.draw-chance .drow-chance-follow{
    /*position: relative;*/
    overflow: hidden;
    width: 5.2rem;
    height: 1.5rem;
    line-height: 0.72rem;
    background-image: url("https://img10.360buyimg.com/imgzone/jfs/t22381/321/458532315/59583/9b503572/5b0e256eNf122fee3.png");
    background-size: 100%;
    background-repeat: no-repeat;
}
.draw-chance .drow-chance-sale{
    /*position: relative;*/
    overflow: hidden;
    width: 5.2rem;
    height: 1.5rem;
    line-height: 0.72rem;
    background-image: url("https://img10.360buyimg.com/imgzone/jfs/t22108/57/464152066/46087/fe7b5218/5b0e256eNb52dfe57.png");
    background-size: 100%;
    background-repeat: no-repeat;
}
.draw-chance .drow-chance-share{
    /*position: relative;*/
    overflow: hidden;
    width: 5.2rem;
    height: 1.5rem;
    line-height: 0.72rem;
    background-image: url("https://img10.360buyimg.com/imgzone/jfs/t22078/91/445736951/58194/3169fc04/5b0e256fN9423f27c.png");
    background-size: 100%;
    background-repeat: no-repeat;
}
.draw-chance .drow-chance-addcart{
    /*position: relative;*/
    overflow: hidden;
    width: 5.2rem;
    height: 1.5rem;
    line-height: 0.72rem;
    background-image: url("https://img10.360buyimg.com/imgzone/jfs/t1/79532/40/6738/21114/5d4d2bb3Efd7fa273/f7462e47d5a7aefa.png");
    background-size: 100%;
    background-repeat: no-repeat;
}

.wechat-share-mask{
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    z-index: 1024;
    background: rgba(0,0,0,0.7);
}
.wechat-share-content{
    position: fixed;
    top: 0;
    right: 0.32rem;
    width: 4.28rem;
    height: 3.05rem;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    z-index: 1026;
    color: #ffffff;
    font-size: 0.6rem;
    text-align: center;
    background-image: url("https://img10.360buyimg.com/imgzone/jfs/t1/18504/29/8138/79587/5c738423Ea807d3d1/ae0311769b1abbf7.png");
}