.fade-enter-active,
.fade-leave-active {
    transition: opacity .5s
}

.marquee-active {
    transition: transform 15s linear
}

.loading-fade-enter-active {
    transition: opacity .2s
}

.fade-leave-active {
    transition: opacity .3s
}

.fade-enter,
.fade-leave-to {
    opacity: 0
}

.loading-mask {
    position: absolute;
    z-index: 10000;
    background-color: hsla(0, 0%, 100%, .9);
    margin: 0;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
}

.loading-mask.is-fullscreen {
    position: fixed
}

.loading-mask.is-fullscreen .loading-spinner {
    margin-top: -25px
}

.loading-mask.is-fullscreen .loading-spinner .circular {
    width: 50px;
    height: 50px
}

.loading-spinner {
    top: 50%;
    margin-top: -21px;
    width: 100%;
    text-align: center;
    position: absolute
}

.loading-spinner .loading-text {
    color: #ff2d55;
    margin: 3px 0;
    font-size: 14px
}

.loading-spinner .circular {
    width: 42px;
    height: 42px;
    animation: loading-rotate 2s linear infinite
}

.loading-spinner .path {
    animation: loading-dash 1.5s ease-in-out infinite;
    stroke-dasharray: 90, 150;
    stroke-dashoffset: 0;
    stroke-width: 3;
    stroke: #ff2d55;
    stroke-linecap: round
}

@keyframes loading-rotate {
    to {
        transform: rotate(1turn)
    }
}

@keyframes loading-dash {
    0% {
        stroke-dasharray: 1, 200;
        stroke-dashoffset: 0
    }
    50% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -40px
    }
    to {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -120px
    }
}

:root:after {
    display: none;
    content: "author:hexin,update:20180328"
}

.tip_box {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 150px;
    min-height: 90px;
    padding: 10px 0;
    color: #fff;
    font-size: 14px;
    position: fixed;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    border-radius: 4px;
    text-align: center;
    background: #000;
    background: rgba(0, 0, 0, .7);
    z-index: 1000;
    line-height: 70px
}

.tip_box div {
    display: inline-block;
    vertical-align: middle;
    width: 100%;
    line-height: 1.5
}

.tip_box p {
    word-break: break-all;
    word-wrap: break-word;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    margin: 0;
    cursor: default;
    padding: 0 15px;
    text-align: center
}

.tip_box p span.tip_user_name {
    color: #d2ba0a;
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 85px;
    line-height: 1.2;
    vertical-align: middle;
    position: relative;
    top: -1px
}

.pop_area {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #000;
    background: rgba(0, 0, 0, .6);
    z-index: 999
}

.pop_box {
    color: #000;
    background: #fff;
    border-radius: 6px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    font-size: 14px;
    min-width: 320px;
    text-align: center
}

.pop_box,
.pop_box_title {
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

.pop_box_title {
    padding: 20px 18px 0;
    border-radius: 6px 6px 0 0
}

.pop_box_title>h2 {
    font-size: 15px
}

.pop_box_title>h2>span {
    color: #fff;
    color: hsla(0, 0%, 100%, .7);
    margin-left: 10px
}

.pop_box>div {
    word-break: break-all;
    word-wrap: break-word
}

.pop_box_main {
    padding: 30px 10px;
    text-align: center;
    font-size: 16px
}

.pop_close {
    top: 12px;
    right: 17px;
    position: absolute;
    -webkit-transition: .2s;
    transition: .2s;
    display: none;
    width: 10px;
    height: 10px;
    background-repeat: no-repeat;
    background-position: 50%;
    padding: 3px
}

.pop_close:hover {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg)
}

.pop_btn {
    text-align: center;
    border-top: 1px solid #e5e5e5;
    height: 46px;
    line-height: 46px;
    position: relative
}

.pop_btn:after {
    content: "";
    display: block;
    width: 1px;
    height: 100%;
    background: #e5e5e5;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto
}

.pop_btn>a {
    width: 47%;
    font-size: 17px;
    margin: 0 1%;
    display: inline-block;
    vertical-align: middle
}

.pop_btn .pop_content_cancle {
    color: #9b9b9b
}

.pop_btn .pop_content_done {
    color: #ff2c55
}

.bg .pop_box_title {
    padding-top: 0;
    color: #fff;
    background: #2f2f2f;
    text-align: left;
    height: 40px;
    line-height: 40px
}

.bg .pop_close {
    display: block
}

.bg .pop_btn {
    height: 75px;
    line-height: 75px
}

.btn_hide .pop_btn {
    border-top: 0;
    padding-bottom: 10px
}

.btn_hide .pop_btn:after,
.btn_hide .pop_content_cancle {
    display: none
}

.btn_hide .pop_content_done {
    width: 280px;
    height: 44px;
    line-height: 44px;
    background: #ff2c55;
    color: #fff;
    margin: 0 auto 10px;
    border-radius: 6px
}

.icon_pop_fail,
.icon_pop_suc {
    display: block;
    margin: 0 auto 5px;
    width: 60px;
    height: 60px
}