﻿/*#region free */
/* #ifndef APP-PLUS-NVUE */
/* scroll-view */
.text-title-main {
    color: #303133
}

.scroll-row {
    width: 100%;
    white-space: nowrap;
}

.scroll-row-item {
    display: inline-block !important;
}

/* #endif */

.view,
.text {
    font-size: 14px;
    line-height: 1.8;
    color: #0E151D;
}

/* 宽度 */
/* #ifndef APP-PLUS-NVUE */
.w-100 {
    width: 100%;
}

.w-80 {
    width: 80%;
}

.h-100 {
    height: 100%;
}

.w-1024 {
    width: 1024px;
    margin: 0 auto;
}


/* 主文字色 */
.text-main {
    color: #2fb3ff;
}

.text-main2 {
    color: #778CA2;
}

    .text-main2 img {
        max-width: 120px;
    }

.text-main3 {
    color: #A6B6C6;
}

.opacity-5 {
    opacity: .5;
}
/* #endif */
.row {
    margin-right: -10px;
    margin-left: -10px;
    /* #ifndef APP-PLUS-NVUE */
    display: flex;
    /* #endif */
    flex-wrap: wrap;
    flex-direction: row;
}

.row-2 {
    /* #ifndef APP-PLUS-NVUE */
    display: flex;
    /* #endif */
    flex-wrap: wrap;
    flex-direction: row;
}

.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
.col-12 {
    position: relative;
    padding-right: 10px;
    padding-left: 10px;
}

.col-12 {
    width: 100%;
}

.col-11 {
    width: 91.66666666666666%;
}

.col-10 {
    width: 83.33333333333333%;
}

.col-9 {
    width: 75%;
}

.col-8 {
    width: 66.66666666666666%;
}

.col-7 {
    width: 58.33333333333333%;
}

.col-6 {
    width: 50%;
}

.col-5 {
    width: 41.66666666666666%;
}

.col-4 {
    width: 33.33333333333333%;
}

.col-3 {
    width: 25%;
}

.col-3-2 {
    width: 20%;
}

.col-2 {
    width: 16.66666666666666%;
}

.col-1 {
    width: 8.33333333333333%;
}

.col-offset-12 {
    margin-left: 100%;
}

.col-offset-11 {
    margin-left: 91.66666666666666%;
}

.col-offset-10 {
    margin-left: 83.33333333333333%;
}

.col-offset-9 {
    margin-left: 75%;
}

.col-offset-8 {
    margin-left: 66.66666666666666%;
}

.col-offset-7 {
    margin-left: 58.33333333333333%;
}

.col-offset-6 {
    margin-left: 50%;
}

.col-offset-5 {
    margin-left: 41.66666666666666%;
}

.col-offset-4 {
    margin-left: 33.33333333333333%;
}

.col-offset-3 {
    margin-left: 25%;
}

.col-offset-2 {
    margin-left: 16.66666666666666%;
}

.col-offset-1 {
    margin-left: 8.33333333333333%;
}

.col-offset-0 {
    margin-left: 0;
}

.cursor-pointer {
    cursor: pointer;
}

.cursor-not-allowed {
    cursor: not-allowed;
}

.hidden {
    display: none !important;
}

/* flex 布局 */
.flex {
    /* #ifndef APP-PLUS-NVUE */
    display: flex !important;
    /* #endif */
    flex-direction: row;
}

    .flex.hidden {
        display: none !important;
    }

.flex-row {
    flex-direction: row !important;
}

.flex-column {
    flex-direction: column !important;
}

.flex-row-reverse {
    flex-direction: row-reverse !important;
}

.flex-column-reverse {
    flex-direction: column-reverse !important;
}

.flex-wrap {
    flex-wrap: wrap;
}

.flex-nowrap {
    flex-wrap: nowrap;
}

/*沾满剩余空间*/
.flex-grow {
    flex-grow: 1;
}

.justify-start {
    justify-content: flex-start;
}

.justify-end {
    justify-content: flex-end;
}

.justify-between {
    justify-content: space-between;
}

.justify-center {
    justify-content: center;
}

.align-center {
    align-items: center;
}

.align-stretch {
    align-items: stretch;
}

.align-start {
    align-items: flex-start;
}

.align-end {
    align-items: flex-end;
}

/* #ifndef APP-PLUS-NVUE */
.content-start {
    align-content: flex-start;
}

.content-end {
    align-content: flex-end;
}

.content-center {
    align-content: center;
}

.content-between {
    align-content: space-between;
}

.content-around {
    align-content: space-around;
}

.content-stretch {
    align-content: stretch;
}

/* #endif */
.flex-1 {
    flex: 1;
}

.flex-2 {
    flex: 2;
}

.flex-3 {
    flex: 3;
}

.flex-4 {
    flex: 4;
}

.flex-5 {
    flex: 5;
}

/* #ifndef APP-PLUS-NVUE */
.flex-shrink {
    flex-shrink: 0;
}

/* #endif */


/*#region buton*/
.btn-yellow,
.btn-black,
.btn-blue,
.btn-gray,
.btn-gray1 {
    padding: 0.3125rem 0.625rem;
    /* line-height: 1.75rem; */
    -moz-border-radius: 0.125rem;
    -webkit-border-radius: 0.125rem;
    border-radius: 0.125rem;
    border: solid 1px;
    text-align: center;
    -moz-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -moz-transition-property: background;
    -o-transition-property: background;
    -webkit-transition-property: background;
    transition-property: background;
    font-size: 0.875rem;
    text-indent: 0px;
    cursor: pointer;
}

    .btn-black i,
    .btn-blue i,
    .btn-gray i {
        margin-right: 0.3125rem;
    }

    .btn-yellow:active,
    .btn-blue:active,
    .btn-black:active,
    .btn-gray:active {
        color: #00647f;
        -moz-transition-duration: 0s;
        -o-transition-duration: 0s;
        -webkit-transition-duration: 0s;
        transition-duration: 0s;
        -webkit-text-shadow: 0 1px 0 rgba(255, 255, 255, 0.4);
        text-shadow: 0 1px 0 rgba(255, 255, 255, 0.4);
        -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3) inset, 0 1px 0 #fff;
        -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3) inset, 0 1px 0 #fff;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3) inset, 0 1px 0 #fff;
    }

.btn-black {
    color: #ffffff;
    background: #494748;
    border: 1px solid #5A5859;
}

.btn-gray {
    color: #000;
    background: #d5dde8;
    border-color: #d5dde8;
}

.btn-gray1 {
    color: #2fb3ff;
    background-color: transparent;
    border-color: #2fb3ff;
}

.btn-blue {
    color: #ffffff;
    background: #2fb3ff;
    border: 1px solid #2fb3ff;
}

.btn-yellow {
    color: #ffffff;
    background: #fb660d;
    /*border-color: #fb660d;*/
    border: 1px solid #ff742f;
    background: -webkit-linear-gradient(right, #fc9857, #ffc736);
    /* Safari 5.1 - 6.0 */
    background: -o-linear-gradient(right, #fc9857, #ffc736);
    /* Opera 11.1 - 12.0 */
    background: -moz-linear-gradient(right, #fc9857, #ffc736);
    /* Firefox 3.6 - 15 */
    background: linear-gradient(to right, #fc9857, #ffc736);
    /* 标准的语法 */
}

.btn-black:hover {
    background-color: #201F20;
    border-color: #201F20;
    text-decoration: none;
}

.btn-gray:hover {
    color: #000;
    background-color: #D1D1D1;
    text-decoration: none;
}

.btn-blue:hover {
    background-color: #15a0f1;
    color: #ffffff;
    text-decoration: none;
}

.btn-gray1:hover {
    border-color: #2a6496;
}

.btn-yellow:hover {
    background: #e25b0b;
    border-color: #e25b0b;
    color: #ffffff;
    text-decoration: none;
}

.btn-black:active {
    background-color: #0A0909;
    border-color: #0A0909;
}

.btn-gray:active {
    background-color: #CCCCCC;
    color: #000;
}

.btn-blue:active {
    background-color: #0071e6;
    color: #ffffff;
}

.btn-yellow:active {
    background: #e25b0b;
    color: #ffffff;
}

a.btn-blue:visited {
    color: #fff;
    text-decoration: none;
}

.btn-blue.disabled {
    background-color: #e6e3e3;
    color: #606060;
    border-color: transparent;
}

/*#endregion*/

.container {
    padding-right: 10px;
    padding-left: 10px;
}

/*  -- 内外边距 -- */
.m-0 {
    margin: 0;
}

/* #ifndef APP-PLUS-NVUE */
.m-auto {
    margin: auto;
}

/* #endif */
.m-1 {
    margin: 5px;
}

.m-2 {
    margin: 10px;
}

.m-3 {
    margin: 15px;
}

.m-4 {
    margin: 20px;
}

.m-5 {
    margin: 25px;
}

.mt-0 {
    margin-top: 0;
}

/* #ifndef APP-PLUS-NVUE */
.mt-auto {
    margin-top: auto;
}

/* #endif */
.mt-1 {
    margin-top: 5px;
}

.mt-2 {
    margin-top: 10px;
}

.mt-3 {
    margin-top: 15px;
}

.mt-4 {
    margin-top: 20px;
}

.mt-5 {
    margin-top: 25px;
}

.mb-0 {
    margin-bottom: 0;
}

/* #ifndef APP-PLUS-NVUE */
.mb-auto {
    margin-bottom: auto;
}

/* #endif */
.mb-1 {
    margin-bottom: 5px;
}

.mb-2 {
    margin-bottom: 10px;
}

.mb-3 {
    margin-bottom: 15px;
}

.mb-4 {
    margin-bottom: 20px;
}

.mb-5 {
    margin-bottom: 25px;
}

.ml-0 {
    margin-left: 0;
}

/* #ifndef APP-PLUS-NVUE */
.ml-auto {
    margin-left: auto;
}

/* #endif */
.ml-1 {
    margin-left: 5px;
}

.ml-2 {
    margin-left: 10px;
}

.ml-3 {
    margin-left: 15px;
}

.ml-4 {
    margin-left: 20px;
}

.ml-5 {
    margin-left: 25px;
}

.mr-0 {
    margin-right: 0;
}

/* #ifndef APP-PLUS-NVUE */
.mr-auto {
    margin-right: auto;
}

/* #endif */
.mr-1 {
    margin-right: 5px;
}

.mr-2 {
    margin-right: 10px;
}

.mr-3 {
    margin-right: 15px;
}

.mr-4 {
    margin-right: 20px;
}

.mr-5 {
    margin-right: 25px;
}

.my-0 {
    margin-top: 0;
    margin-bottom: 0;
}

/* #ifndef APP-PLUS-NVUE */
.my-auto {
    margin-top: auto;
    margin-bottom: auto;
}

/* #endif */
.my-1 {
    margin-top: 5px;
    margin-bottom: 5px;
}

.my-2 {
    margin-top: 10px;
    margin-bottom: 10px;
}

.my-3 {
    margin-top: 15px;
    margin-bottom: 15px;
}

.my-4 {
    margin-top: 20px;
    margin-bottom: 20px;
}

.my-5 {
    margin-top: 25px;
    margin-bottom: 25px;
}

.mx-0 {
    margin-left: 0;
    margin-right: 0;
}

/* #ifndef APP-PLUS-NVUE */
.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

/* #endif */
.mx-1 {
    margin-left: 5px;
    margin-right: 5px;
}

.mx-2 {
    margin-left: 10px;
    margin-right: 10px;
}

.mx-3 {
    margin-left: 15px;
    margin-right: 15px;
}

.mx-4 {
    margin-left: 20px;
    margin-right: 20px;
}

.mx-5 {
    margin-left: 25px;
    margin-right: 25px;
}

.p-0 {
    padding: 0;
}

.p {
    padding: 2.5px;
}

.p-1 {
    padding: 5px;
}

.p-2 {
    padding: 10px;
}

.p-3 {
    padding: 15px;
}

.p-4 {
    padding: 20px;
}

.p-5 {
    padding: 25px;
}

.pt-0 {
    padding-top: 0;
}

.pt {
    padding-top: 2.5px;
}

.pt-1 {
    padding-top: 5px;
}

.pt-2 {
    padding-top: 10px;
}

.pt-3 {
    padding-top: 15px;
}

.pt-4 {
    padding-top: 20px;
}

.pt-5 {
    padding-top: 25px;
}

.pb-0 {
    padding-bottom: 0;
}

.pb-1 {
    padding-bottom: 5px;
}

.pb {
    padding-bottom: 2.5px;
}

.pb-2 {
    padding-bottom: 10px;
}

.pb-3 {
    padding-bottom: 15px;
}

.pb-4 {
    padding-bottom: 20px;
}

.pb-5 {
    padding-bottom: 25px;
}

.pl-0 {
    padding-left: 0;
}

.pl {
    padding-left: 2.5px;
}

.pl-1 {
    padding-left: 5px;
}

.pl-2 {
    padding-left: 10px;
}

.pl-3 {
    padding-left: 15px;
}

.pl-4 {
    padding-left: 20px;
}

.pl-5 {
    padding-left: 25px;
}

.pr-0 {
    padding-right: 0;
}

.pr {
    padding-right: 2.5px;
}

.pr-1 {
    padding-right: 5px;
}

.pr-2 {
    padding-right: 10px;
}

.pr-3 {
    padding-right: 15px;
}

.pr-4 {
    padding-right: 20px;
}

.pr-5 {
    padding-right: 25px;
}

.py-0 {
    padding-top: 0;
    padding-bottom: 0;
}

.py {
    padding-top: 2.5px;
    padding-bottom: 2.5px;
}

.py-1 {
    padding-top: 5px;
    padding-bottom: 5px;
}

.py-1-1 {
    padding-top: 6px;
    padding-bottom: 8px;
}

.py-2 {
    padding-top: 10px;
    padding-bottom: 10px;
}

.py-3 {
    padding-top: 15px;
    padding-bottom: 15px;
}

.py-4 {
    padding-top: 20px;
    padding-bottom: 20px;
}

.py-5 {
    padding-top: 25px;
    padding-bottom: 25px;
}

.px-0 {
    padding-left: 0;
    padding-right: 0;
}

.px-1 {
    padding-left: 5px;
    padding-right: 5px;
}

.px {
    padding-left: 2.5px;
    padding-right: 2.5px;
}

.px-2 {
    padding-left: 10px;
    padding-right: 10px;
}

.px-3 {
    padding-left: 15px;
    padding-right: 15px;
}

.px-4 {
    padding-left: 20px;
    padding-right: 20px;
}

.px-5 {
    padding-left: 25px;
    padding-right: 25px;
}

/* 文字大小 */
.font-smaller {
    font-size: 15px;
}

.font-small {
    font-size: 12px;
    -webkit-transform-origin-x: 0; /*缩小后文字居左*/
    -webkit-transform: scale(0.80); /*关键*/
    transform: scale(0.8);
}

.font-sm {
    font-size: 12px;
}

.font {
    font-size: 15px !important;
}

.font-md {
    font-size: 17.5px !important;
}

.font-lg {
    font-size: 20px;
}

.h1 {
    font-size: 40px;
    line-height: 1.8;
}

.h2 {
    font-size: 30px;
    line-height: 1.8;
}

.h3 {
    font-size: 22.5px;
    line-height: 1.8;
}

.h4 {
    font-size: 16px;
    line-height: 1.8;
}

.h5 {
    font-size: 15px;
    line-height: 1.8;
}

.h6 {
    font-size: 14px;
    line-height: 1.8;
}

/* 文字缩进 */
/* #ifndef APP-PLUS-NVUE */
.text-indent {
    text-indent: 2;
}

/* #endif */
/* 文字划线 */
.text-through {
    text-decoration: line-through;
}

/* 文字对齐 */
.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.text-center {
    text-align: center;
}

/* 文字换行溢出处理 */
.text-ellipsis {
    /* #ifndef APP-PLUS-NVUE */
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    /* #endif */
    /* #ifdef APP-PLUS-NVUE */
    lines: 1;
    /* #endif */
}

/* 文字粗细和斜体 */
.font-weight-light {
    font-weight: 300;
}

/*细*/
.font-weight-lighter {
    font-weight: 100;
}

/*更细*/
.font-weight-normal {
    font-weight: 400;
}

/*正常*/
.font-weight-bold {
    font-weight: 700;
}

/*粗*/
.font-weight-bolder {
    font-weight: bold;
}

/*更粗*/
.font-italic {
    font-style: italic;
}

/*斜体*/
/* 文字颜色 */
.text-white {
    color: #ffffff;
}

.text-primary {
    color: #46a0fb;
}

.text-primary-opacity {
    color: rgba(70,160,251,0.5);
}


.text-hover-primary {
    color: #0056b3;
}

.text-secondary {
    color: #6c757d;
}

.text-hover-secondary {
    color: #494f54;
}

.text-success {
    color: #28a745;
}

.text-hover-success {
    color: #19692c;
}

.text-info {
    color: #17a2b8;
}

.text-hover-info {
    color: #0f6674;
}

.text-warning {
    color: #ff7300;
}

.text-hover-warning {
    color: #ba8b00;
}

.text-danger {
    color: #FF5722;
}

.text-hover-danger {
    color: #a71d2a;
}

.text-light {
    color: #f8f9fa;
}

.text-hover-light {
    color: #999;
}

.text-dark {
    color: #343a40;
}

.text-hover-dark {
    color: #121416;
}

.text-body {
    color: #212529;
}

.text-muted {
    color: #6c757d;
}

.text-muted33 {
    color: #888888;
}

.text-tip {
    color: #ff9000;
    border: 1px solid #f3d995;
    background: #fefcee;
}
/* 浅灰色 */
.text-light-muted {
    color: #A9A5A0;
}

.text-light-black {
    color: rgba(0, 0, 0, 0.5);
}

.text-light-white {
    color: rgba(255, 255, 255, 0.5);
}

.text-333 {
    color: #333333;
}
/* 背景颜色 */
/*.bg-gray2 {
    background: #f1f3f4;
    max-width: 1024px;
}*/

.bg-blue {
    color: #1890ff;
    background: #e6f7ff;
    border: 1px solid #91d5ff;
}

.bg-blue-opacity {
    background-color: #e8f2ff;
}

.bg-red {
    color: #f5222d;
    background: #fff1f0;
    border: 1px solid #ffa39e;
}

.bg-primary {
    background-color: #46a0fb;
}

.bg-primary-opacity {
    background-color: rgba(70,160,251,0.5);
}

.bg-hover-primary:hover {
    background-color: #0062cc;
}

.bg-secondary {
    background-color: #6c757d;
}

.bg-hover-secondary:hover {
    background-color: #545b62;
}

.bg-success {
    background-color: #28a745;
}

.bg-hover-success {
    background-color: #1e7e34;
}

.bg-info {
    background-color: #17a2b8;
}

.bg-hover-info {
    background-color: #117a8b;
}

.bg-warning {
    background-color: #ff7300;
}

.bg-light-warning {
    background-color: #ffcfb2;
}

.bg-hover-warning {
    background-color: #d39e00;
}

.bg-danger {
    background-color: #FF5722;
}

.bg-hover-danger {
    background-color: #bd2130;
}

.bg-light {
    /*background-color: #f8f9fa;*/
    /*background-color: #e6eef5;*/
    background-color: #f1f3f4;
    background-color: #f9f9f9;
}

.bg-hover-light {
    background-color: #dae0e5;
}

.bg-dark {
    background-color: #343a40;
}

.bg-hover-dark {
    background-color: #1d2124;
}

.bg-white {
    background-color: #ffffff;
}

.bg-gray-opacity {
    background-color: #2158870d;
}

.bg-white-opacity {
    background-color: rgba(255,255,255,0.9)
}

.bg-2 {
    background-color: #eff0f4;
}

.bg-transparent {
    background-color: transparent;
}

.bg-violet {
    background-color: #ad9efe;
}

/* 边框 */
.border {
    border-width: 1px;
    border-style: solid;
    border-color: #dee2e6;
}

.border-top {
    border-top-width: 1px;
    border-top-style: solid;
    border-top-color: #dee2e6;
}

.border-right {
    border-right-width: 1px;
    border-right-style: solid;
    border-right-color: #dee2e6;
}

.border-bottom {
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: #dee2e6;
}

.border-bottom-dashed {
    border-bottom-width: 1px;
    border-bottom-style: dashed;
    border-bottom-color: #dee2e6;
}

.border-left {
    border-left-width: 1px;
    border-left-style: solid;
    border-left-color: #dee2e6;
}

.border-0 {
    border-width: 0 !important;
}

.border-2 {
    border-width: 2px !important;
}

.border-top-0 {
    border-top-width: 0 !important;
}

.border-right-0 {
    border-right-width: 0 !important;
}

.border-bottom-0 {
    border-bottom-width: 0 !important;
}

.border-left-0 {
    border-left-width: 0 !important;
}

.border-primary {
    border-color: #46a0fb;
}

.border-secondary {
    border-color: #6c757d;
}

.border-muted {
    border-color: #ebebeb;
}


.border-light-secondary {
    border-color: #F1F1F1;
}

.border-success {
    border-color: #28a745;
}

.border-info {
    border-color: #17a2b8;
}

.border-warning {
    border-color: #ff7300;
}

.border-danger {
    border-color: #FF5722;
}

.border-light {
    border-color: #f8f9fa;
}

.border-dark {
    border-color: #343a40;
}

.border-white {
    border-color: #FFFFFF;
}

/* 圆角 */
.rounded {
    border-radius: 4px;
}

.rounded-lg {
    border-radius: 7px;
}

.rounded-top {
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}

.rounded-top-left {
    border-top-left-radius: 4px;
}

.rounded-bottom-left {
    border-top-left-radius: 4px;
}

.rounded-top-right {
    border-top-left-radius: 4px;
}

.rounded-bottom-right {
    border-top-left-radius: 4px;
}

.rounded-top-lg {
    border-top-left-radius: 7px;
    border-top-right-radius: 7px;
}

.rounded-right {
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}

.rounded-bottom {
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 4px;
}

.rounded-bottom-lg {
    border-bottom-right-radius: 7px;
    border-bottom-left-radius: 7px;
}

.rounded-left {
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}

.rounded-circle {
    border-radius: 100%;
}

.rounded-0 {
    border-radius: 0;
}

/* 显示 */
/* #ifndef APP-PLUS-NVUE */
.d-none {
    display: none;
}

.d-inline-block {
    display: inline-block;
}

.d-block {
    display: block;
}

/* #endif */
/* 内容溢出 */
.overflow-hidden {
    overflow: hidden;
}

.overflow-y {
    overflow: hidden;
    overflow-y: auto;
}

.overflow-x {
    overflow: hidden;
    overflow-x: auto;
}

.overflow-auto {
    overflow: auto;
}

/* 定位 */
.position-relative {
    position: relative;
}

.position-absolute {
    position: absolute;
}

.position-fixed {
    position: fixed;
}

/* 定位 - 固定顶部 */
.fixed-full {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 999;
}

.fixed-top {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
}

.fixed-left {
    position: fixed;
    top: 0px;
    left: 0;
    z-index: 1030;
    bottom: 10px;
}

.fixed-right {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1030;
}

/* 定位 - 固定底部 */
.fixed-bottom {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1030;
}

.absolute-full {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 1030;
}

.absolute-bottom {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1030;
}

.absolute-top {
    position: absolute;
    right: 0;
    top: 0;
    left: 0;
    z-index: 1030;
}

.absolute-right {
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1030;
}

.absolute-left {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1030;
}

.top-0 {
    top: 0;
}

.left-0 {
    left: 0;
}

.right-0 {
    right: 0;
}

.bottom-0 {
    bottom: 0;
}

/* 阴影 */
/* #ifndef APP-PLUS-NVUE */
.shadow {
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.15);
}

.shadow-212 {
    box-shadow: 2px 1px 2px rgb(0 0 0 / 15%);
}

.shadow-lg {
    box-shadow: 0px 20px 50px 0px rgba(0, 0, 0, 0.175);
}

.shadow-none {
    box-shadow: none !important;
}

/* #endif */
.mask {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 100;
}


.clearfix {
    *zoom: 1;
}

    .clearfix:after {
        clear: both;
        display: table;
        content: " ";
    }

    .clearfix:before {
        display: table;
        content: " ";
    }



.color-approve {
    background-color: #F78738;
    padding: 0 4px;
    color: #fff;
    border-radius: 2px;
}

.color-success {
    background-color: #28a745;
    padding: 0 4px;
    color: #fff;
    border-radius: 2px;
}

.color-purchase {
    background-color: #F78738;
    padding: 0 4px;
    color: #fff;
    border-radius: 2px;
}

.color-delivery {
    background-color: #7B91FE;
    padding: 0 4px;
    color: #fff;
    border-radius: 2px;
}

/*#endregion*/

/*#region core*/
/*#region 设置滚动条的样式*/
/*ie滚动条样式*/
* {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    background: transparent;
    border: 0;
    margin: 0;
    padding: 0;
    -ms-scrollbar-face-color: #B4B4B4;
    scrollbar-face-color: #B4B4B4;
    -ms-scrollbar-3dlight-color: #B5CBF7;
    scrollbar-3dlight-color: #B5CBF7;
    -ms-scrollbar-darkshadow-color: #B5CBF7;
    scrollbar-darkshadow-color: #B5CBF7;
    -ms-scrollbar-base-color: #B5CBF7;
    scrollbar-base-color: #B5CBF7;
    -ms-scrollbar-shadow-color: #efeff4;
    scrollbar-shadow-color: #efeff4;
    -ms-scrollbar-highlight-color: #efeff4;
    scrollbar-highlight-color: #efeff4;
    -ms-scrollbar-track-color: #efeff4;
    scrollbar-track-color: #efeff4;
    -ms-scrollbar-arrow-color: #4A6184;
    scrollbar-arrow-color: #4A6184;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    /*font-family: -apple-system,BlinkMacSystemFont,Segoe UI,PingFang SC,Hiragino Sans GB,Microsoft YaHei,Helvetica Neue,Helvetica,Arial,simsun,sans-serif;*/
    font-family: "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
}

/*chrome滚动条样式*/
/*滚动条整体部分，其中的属性有width,height,background,border（就和一个块级元素一样）等。*/
::-webkit-scrollbar {
    width: 8px;
    height: 10px;
}

::-webkit-scrollbar-button {
    width: 0;
    height: 10px;
}

::-webkit-scrollbar-track-piece {
    /*内层轨道，滚动条中间部分（除去）。*/
    background: rgb(240, 240, 240);
}

::-webkit-scrollbar-thumb {
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    /*滚动条里面可以拖动的那部分*/
    background: #dee1e6;
}

    ::-webkit-scrollbar-thumb:hover {
        /*滚动条里面可以拖动的那部分*/
        background: rgb(180, 180, 180);
    }

::-webkit-scrollbar-corner {
    /*边角*/
    background: rgb(200, 200, 200);
}

::-webkit-scrollbar-resizer {
    /*定义右下角拖动块的样式*/
    background: rgb(200, 200, 200);
}

::-webkit-scrollbar-track {
    background: #eee;
    border: thin solid lightgray;
    -moz-box-shadow: 0 0 3px #dfdfdf inset;
    -webkit-box-shadow: 0 0 3px #dfdfdf inset;
    box-shadow: 0 0 3px #dfdfdf inset;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    border-radius: 10px;
}

.console-aside ::-webkit-scrollbar-track-piece { /*内层轨道，滚动条中间部分（除去）。*/
    background: #152036;
}

.console-aside ::-webkit-scrollbar-thumb {
    background: #485163;
}

.console-aside.bg-white ::-webkit-scrollbar-track-piece { /*内层轨道，滚动条中间部分（除去）。*/
    background: rgb(240, 240, 240);
}

.console-aside.bg-white ::-webkit-scrollbar-thumb {
    background: rgb(180, 180, 180);
}


input:-webkit-autofill,
textarea:-webkit-autofill,
select:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus {
    background-color: #fff !important;
    -webkit-box-shadow: 0 0 0px 1000px white inset !important;
    -moz-box-shadow: 0 0 0px 1000px white inset !important;
    box-shadow: 0 0 0px 1000px white inset !important;
}

input:-internal-autofill-selected {
    background-color: transparent;
    box-shadow: none;
}

::-webkit-input-placeholder {
    /* WebKit browsers */
    color: #999 !important;
}

:-moz-placeholder {
    /* Mozilla Firefox 4 to 18 */
    color: #999 !important;
}

::-moz-placeholder {
    /* Mozilla Firefox 19+ */
    color: #999 !important;
}

:-ms-input-placeholder {
    /* Internet Explorer 10+ */
    color: #999 !important;
}

/*#endregion*/

/*#region reset*/

*:before,
*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

html,
body {
    height: 100%;
    width: 100%;
    overflow: hidden;
    /*background-color: #F7FAF8;*/
    background-color: #ffffff;
    position: relative;
    background-color: #f5f7fb;
}

body {
    overflow: auto;
    color: #333333;
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    font: 12px "Microsoft YaHei", Helvetica Neue, Helvetica, PingFang SC, "Hiragino Sans GB", Tahoma, Arial, sans-serif;
    line-height: 1.28571;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: normal;
}

ul {
    list-style: none;
}

blockquote {
    quotes: none;
}

    blockquote:before,
    blockquote:after {
        content: '';
        content: none;
    }

del {
    text-decoration: line-through;
}

a {
    text-decoration: none;
    outline: 0px;
    color: #2fb3ff;
    cursor: pointer;
}

    a:hover {
        text-decoration: none;
        color: #0071e6;
    }

p {
    color: #333;
    font-size: 0.75rem;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
    font-size: 0.75rem;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
    font-weight: normal;
    line-height: 1em;
}

h1,
h1 a {
    font-size: 1.1875rem;
}

h2,
h2 a {
    font-size: 1.0625rem;
}

h3,
h3 a {
    font-size: 0.9375rem;
}

h4,
h4 a {
    font-size: 0.875rem;
}

h5,
h5 a {
    font-size: 0.8125rem;
}

h6,
h6 a {
    font-size: 0.75rem;
}

pre {
    white-space: pre-wrap;
    -ms-word-wrap: break-word;
    word-wrap: break-word;
}

input,
button,
textarea {
    -webkit-appearance: none;
    resize: none;
    outline: 0;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    border-radius: 0;
    font-size: 12px;
}


input {
    border: 0.0625rem solid #ced4da;
    background-color: #fff;
    height: 2.125rem;
    width: 100%;
    padding: 0 0.625rem;
    border-radius: 3px;
}

    input:focus, textarea:focus {
        border-color: #3D8CF7;
        box-shadow: 1px 1px 6px rgba(0, 0, 0, 0.15);
    }

    input[readonly], textarea[readonly] {
        background-color: #f1f3f4;
    }

        input[readonly].leo-date {
            background-color: #ffffff;
        }

    input.etip {
        width: 40%;
        margin-left: 5px;
    }

select {
    border: 0.0625rem solid #ced4da;
}

textarea {
    border: 0.0625rem solid #ced4da;
    background-color: #fff;
    padding: 0.3125rem;
    width: 100%;
    resize: auto;
}


input[type=checkbox],
input[type=radio] {
    width: 1rem;
    height: 1rem;
    padding: 0 !important;
    line-height: 1rem;
    border: none;
    font-family: "iconfont" !important;
    font-size: 0.875rem;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #ced4da;
}

input[type=radio] {
    font-size: 1rem;
}

input[type=checkbox]:before {
    content: "\e60f";
}

input[type=checkbox]:checked:before {
    content: "\e606";
    color: #0071e6;
}

input[type=radio]:before {
    content: "\e7bb";
}

input[type=radio]:checked:before {
    content: "\e888";
    color: #0071e6;
}


/*input:focus {
    border-color: #0071e6;
}*/

input[readonly]:focus, textarea[readonly]:focus {
    border: 0.0625rem solid #ced4da;
}

fieldset {
    /* border: 0.0625rem solid #dee2e6;*/
    padding: 10px;
    border-radius: .25rem;
    /*解决width不生效的问题**/
    min-width: inherit !important;
}

    fieldset legend {
        font-size: 14px;
        padding: 0 5px;
    }

        fieldset legend .font-weight-lighter {
            font-size: 12px;
            font-weight: normal;
        }


    fieldset.active legend {
        color: #28a745;
    }

    fieldset.over {
        opacity: 0.4;
    }

/*#endregion*/

/*#region com*/
.leo-pull-right {
    float: right;
}

.leo-pull-left {
    float: left;
}

.leo-clearfix {
    *zoom: 1;
}

    .leo-clearfix:after {
        clear: both;
        display: table;
        content: " ";
    }

    .leo-clearfix:before {
        display: table;
        content: " ";
    }

.leo-ellipsis {
    overflow: hidden;
    white-space: nowrap;
    -ms-text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
}

.leo-ellipsis-2 {
    display: -webkit-box;
    overflow: hidden;
    white-space: normal !important;
    -ms-text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    -ms-word-wrap: break-word;
    word-wrap: break-word;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    *white-space: nowrap !important;
    _white-space: nowrap !important;
}

.leo-inline-block {
    display: inline-block;
    vertical-align: top;
    *display: inline;
    *zoom: 1;
}

.leo-hidden {
    display: none !important;
}

.leo-backdrop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 999;
    background-color: rgba(0,0,0,.2);
    display: none;
}


.w-100 {
    width: 100% !important;
}

.w-50 {
    width: 50% !important;
}

.h-100 {
    height: 100% !important;
}

.h-50 {
    height: 50% !important;
}

/*定位*/
.position-absolute {
    position: absolute;
    z-index: 100;
}

.position-fixed {
    position: fixed;
    z-index: 100;
}

.position-relative {
    position: relative;
}

.absolute-top {
    position: absolute !important;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
}

.left-0 {
    left: 0;
}

.right-0 {
    right: 0;
}

.bottom-0 {
    bottom: 0;
}

.top-0 {
    top: 0;
}

/*#endregion*/

/*#region buton*/
.leo-btn-yellow,
.leo-btn-black,
.leo-btn-blue,
.leo-btn-gray,
.leo-btn-gray1 {
    padding: 5px 10px;
    /*  line-height: 1.75rem;*/
    -moz-border-radius: 0.125rem;
    -webkit-border-radius: 0.125rem;
    border-radius: 0.125rem;
    border: solid 1px;
    text-align: center;
    -moz-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -moz-transition-property: background;
    -o-transition-property: background;
    -webkit-transition-property: background;
    transition-property: background;
    font-size: 12px;
    text-indent: 0px;
    cursor: pointer;
}

    .leo-btn-black i,
    .leo-btn-blue i,
    .leo-btn-gray i {
        margin-right: 0.3125rem;
    }

    .leo-btn-yellow:active,
    .leo-btn-blue:active,
    .leo-btn-black:active,
    .leo-btn-gray:active {
        color: #00647f;
        -moz-transition-duration: 0s;
        -o-transition-duration: 0s;
        -webkit-transition-duration: 0s;
        transition-duration: 0s;
        -webkit-text-shadow: 0 1px 0 rgba(255, 255, 255, 0.4);
        text-shadow: 0 1px 0 rgba(255, 255, 255, 0.4);
        -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3) inset, 0 1px 0 #fff;
        -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3) inset, 0 1px 0 #fff;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3) inset, 0 1px 0 #fff;
    }

.leo-btn-black {
    color: #ffffff;
    background: #494748;
    border: 1px solid #5A5859;
}

.leo-btn-gray {
    color: #000;
    background: #dee2e6;
    border-color: #dee2e6;
}

.leo-btn-gray1 {
    color: #2fb3ff;
    background-color: transparent;
    border-color: #2fb3ff;
}

.leo-btn-blue {
    color: #ffffff;
    background: #2fb3ff;
    border: 1px solid #2fb3ff;
}

.leo-btn-yellow {
    color: #ffffff;
    background: #fb660d;
    /*border-color: #fb660d;*/
    border: 1px solid #ff742f;
    background: -webkit-linear-gradient(right, #fc9857, #ffc736);
    /* Safari 5.1 - 6.0 */
    background: -o-linear-gradient(right, #fc9857, #ffc736);
    /* Opera 11.1 - 12.0 */
    background: -moz-linear-gradient(right, #fc9857, #ffc736);
    /* Firefox 3.6 - 15 */
    background: linear-gradient(to right, #fc9857, #ffc736);
    /* 标准的语法 */
}

.leo-btn-black:hover {
    background-color: #201F20;
    border-color: #201F20;
    text-decoration: none;
}

.leo-btn-gray:hover {
    color: #000;
    background-color: #D1D1D1;
    text-decoration: none;
}

.leo-btn-blue:hover {
    background-color: #15a0f1;
    color: #ffffff;
    text-decoration: none;
}

.leo-btn-gray1:hover {
    border-color: #2a6496;
}

.leo-btn-yellow:hover {
    background: #e25b0b;
    border-color: #e25b0b;
    color: #ffffff;
    text-decoration: none;
}

.leo-btn-black:active {
    background-color: #0A0909;
    border-color: #0A0909;
}

.leo-btn-gray:active {
    background-color: #CCCCCC;
    color: #000;
}

.leo-btn-blue:active {
    background-color: #0071e6;
    color: #ffffff;
}

.leo-btn-yellow:active {
    background: #e25b0b;
    color: #ffffff;
}

a.leo-btn-blue:visited {
    color: #fff;
    text-decoration: none;
}

.leo-btn-blue.disabled {
    background-color: #e6e3e3;
    color: #606060;
    border-color: transparent;
}

/*#endregion*/

/*#region pop box*/
.leo-pop-box {
    position: fixed;
    z-index: 3000;
    min-width: 160px;
    padding: 0;
    background-color: #fff;
    border: 1px solid #aaa;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    -moz-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    -moz-background-clip: padding-box;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
}

    .leo-pop-box.leo-condition {
        width: 800px;
        top: 140px;
        left: 10px;
    }

    .leo-pop-box.default {
        top: 50%;
        left: 50%;
    }

    .leo-pop-header, .leo-pop-box .leo-pop-footer {
        left: 0px;
        right: 0px;
        position: absolute;
        padding: 0 10px;
    }

.leo-pop-header {
    line-height: 40px;
    border-bottom: 1px solid #ccc;
    top: 0;
    background-color: #293c55;
    color: #fff;
    -webkit-border-top-left-radius: 5px;
    border-top-left-radius: 5px;
    -webkit-border-top-right-radius: 5px;
    border-top-right-radius: 5px;
}

    .leo-pop-header .icon-hebingxingzhuang {
        position: absolute;
        right: 10px;
        top: 50%;
        margin-top: -20px;
        cursor: pointer;
    }

        .leo-pop-header .icon-hebingxingzhuang:hover {
            color: red;
        }

.leo-pop-content {
    min-height: 150px;
    overflow: hidden;
    height: 100%;
}

    .leo-pop-content .leo-form {
        padding: 10px 5px;
    }

.leo-pop-header ~ .leo-pop-content {
    padding-top: 41px;
}

.leo-pop-footer ~ .leo-pop-content {
    padding-bottom: 45px;
}

.leo-pop-iframe {
    height: 100%;
    width: 100%;
}

.leo-pop-footer {
    border-top: 1px solid #ccc;
    bottom: 0;
    line-height: 40px;
    text-align: right;
}

    .leo-pop-footer .leo-btn-blue {
        margin-left: 15px;
    }
/*#endregion*/

/*#region popup*/
.leo-popup {
    background-color: #fff;
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 10000;
    display: none;
    width: 270px;
    overflow: hidden;
    color: #000;
    text-align: center;
    -moz-border-radius: 13px;
    -webkit-border-radius: 13px;
    border-radius: 13px;
    opacity: 0;
    -webkit-transition-property: -webkit-transform, opacity;
    -moz-transition-property: transform, opacity;
    -o-transition-property: transform, opacity;
    transition-property: transform, opacity;
    -webkit-transform: translate3d(-50%, -50%, 0) scale(1.185);
    -moz-transform: translate3d(-50%, -50%, 0) scale(1.185);
    -ms-transform: translate3d(-50%, -50%, 0) scale(1.185);
    -o-transform: translate3d(-50%, -50%, 0) scale(1.185);
    transform: translate3d(-50%, -50%, 0) scale(1.185);
}

    .leo-popup.leo-popup-in {
        display: block;
        opacity: 1;
        -webkit-transition-duration: 400ms;
        -moz-transition-duration: 400ms;
        -o-transition-duration: 400ms;
        transition-duration: 400ms;
        -webkit-transform: translate3d(-50%, -50%, 0) scale(1);
        -moz-transform: translate3d(-50%, -50%, 0) scale(1);
        -ms-transform: translate3d(-50%, -50%, 0) scale(1);
        -o-transform: translate3d(-50%, -50%, 0) scale(1);
        transform: translate3d(-50%, -50%, 0) scale(1);
    }

.leo-popup-header {
    line-height: 40px;
    border-bottom: 1px solid #ccc;
    top: 0;
    background-color: #293c55;
    color: #fff;
    -webkit-border-top-left-radius: 5px;
    border-top-left-radius: 5px;
    -webkit-border-top-right-radius: 5px;
    border-top-right-radius: 5px;
}

.leo-popup-inner {
    position: relative;
    padding: 15px;
    background: rgba(255, 255, 255, .95);
    -moz-border-radius: 13px 13px 0 0;
    -webkit-border-radius: 13px 13px 0 0;
    border-radius: 13px 13px 0 0;
}

    .leo-popup-inner:after {
        position: absolute;
        top: auto;
        right: auto;
        bottom: 0;
        left: 0;
        z-index: 15;
        display: block;
        width: 100%;
        height: 1px;
        content: '';
        background-color: rgba(0, 0, 0, .2);
        -webkit-transform: scaleY(.5);
        -moz-transform: scaleY(.5);
        -ms-transform: scaleY(.5);
        -o-transform: scaleY(.5);
        transform: scaleY(.5);
        -webkit-transform-origin: 50% 100%;
        -moz-transform-origin: 50% 100%;
        -ms-transform-origin: 50% 100%;
        -o-transform-origin: 50% 100%;
        transform-origin: 50% 100%;
    }

.leo-popup-title {
    font-size: 18px;
    font-weight: 500;
    text-align: center;
}

    .leo-popup-title + .leo-popup-text {
        margin: 5px 0 0;
        font-family: inherit;
        font-size: 14px;
    }

.leo-popup-buttons {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    height: 44px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
}

.leo-popup-button {
    position: relative;
    display: block;
    width: 100%;
    height: 44px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0 5px;
    overflow: hidden;
    font-size: 17px;
    line-height: 44px;
    color: #007aff;
    text-align: center;
    text-overflow: ellipsis;
    white-space: nowrap;
    cursor: pointer;
    background: rgba(255, 255, 255, .95);
    -webkit-box-flex: 1;
}

    .leo-popup-button.leo-popup-button-bold {
        font-weight: 600;
    }

.leo-toast-container {
    line-height: 17px;
    position: fixed;
    z-index: 9999;
    top: 100px;
    left: 50%;
    -webkit-transition: opacity .3s;
    -moz-transition: opacity .3s;
    -o-transition: opacity .3s;
    transition: opacity .3s;
    -webkit-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    -o-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    opacity: 0;
}

    .leo-toast-container.loading {
        top: 30%;
    }

    .leo-toast-container.leo-active {
        opacity: .9;
    }

.leo-toast-message {
    font-size: 14px;
    padding: 10px 25px;
    text-align: center;
    color: #fff;
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
    border-radius: 6px;
    background-color: #323232;
}

    .leo-toast-message span {
        color: #fff;
    }

    .leo-toast-message img {
        display: block;
        margin: 0 auto 10px;
        width: 60px;
    }

.leo-toast-success {
    border: 1px solid #c7ddb9;
    min-width: 200px;
    position: fixed;
    top: 10px;
    left: 50%;
    z-index: 1000;
    max-width: 400px;
    -webkit-transition: opacity .3s;
    -moz-transition: opacity .3s;
    -o-transition: opacity .3s;
    transition: opacity .3s;
    -webkit-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    -o-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    opacity: 0;
    background-color: #f2ffea;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    padding: 10px;
}

    .leo-toast-success p {
        color: #3d8b26;
        text-align: center;
    }

    .leo-toast-success.leo-active {
        opacity: .9;
    }

    .leo-toast-success p strong {
    }

/*#endregion*/

/*#region alert*/
.leo-alert {
    position: relative;
    padding: .75rem 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: .25rem;
}

    .leo-alert .iconfont {
        cursor: pointer;
    }

    .leo-alert .icon-hebingxingzhuang {
        position: absolute;
        top: 50%;
        margin-top: -11px;
        right: 10px;
    }

        .leo-alert .icon-hebingxingzhuang:hover {
            color: #856404;
        }

        .leo-alert .icon-hebingxingzhuang ~ span {
            padding-right: 20px;
        }

    .leo-alert.tiperror {
        position: fixed;
        top: 5px;
        left: 50%;
        margin-left: -100px;
        z-index: 100;
    }

.leo-alert-danger {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #cc858d;
}

.leo-alert-primary {
    color: #004085;
    background-color: #cce5ff;
    border-color: #b8daff;
}

.leo-alert-secondary {
    color: #383d41;
    background-color: #e2e3e5;
    border-color: #d6d8db;
}

.leo-alert-success {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
}

.leo-alert-warning {
    color: red;
    background-color: #fff3cd;
    border-color: #ffeeba;
}

.leo-alert-info {
    color: #0c5460;
    background-color: #d1ecf1;
    border-color: #bee5eb;
}

.leo-alert-dark {
    color: #1b1e21;
    background-color: #d6d8d9;
    border-color: #c6c8ca;
}

.leo-alert-light {
    color: #818182;
    background-color: #fefefe;
    border-color: #fdfdfe;
}

/*#endregion*/

/*#region dropdown menu*/

.leo-dropdown-menu {
    -moz-box-shadow: 0 0.1875rem 0.375rem rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: 0 0.1875rem 0.375rem rgba(0, 0, 0, 0.3);
    box-shadow: 0 0.1875rem 0.375rem rgba(0, 0, 0, 0.3);
    padding: 0.1875rem 0;
    min-height: 0;
    background-color: #2fb3ff;
    border-radius: 0.1875rem;
    position: absolute;
    right: 0;
    top: 1.75rem;
    width: 100%;
    min-width: 6.25rem;
    display: none;
}

    .leo-dropdown-menu a {
        display: block;
        /* font-weight: 900; */
        color: #FFFFFF;
        padding: 0.625rem;
        font-size: 0.875rem;
        border-bottom: 0.0625rem solid rgba(175, 172, 172, 0.2);
    }

        .leo-dropdown-menu a:hover {
            color: #FFFFFF !important;
        }

        .leo-dropdown-menu a:last-child {
            border-bottom: none;
        }

        .leo-dropdown-menu a.leo-active {
            background-color: #3f4a61 !important;
            color: #fff;
        }

        .leo-dropdown-menu a i {
            font-size: 0.875rem;
            padding-right: 0.625rem;
        }

        .leo-dropdown-menu a:hover {
            text-decoration: none;
            color: #668cf3;
        }
/*#endregion*/

/*#region dropdown*/
.leo-dropdown {
    display: none;
    border: 1px solid #2fb3ff;
    padding: 5px;
    top: 140px;
    left: 1473px;
    width: 120px;
    position: fixed;
    z-index: 1100;
    background: #fff;
    color: #000;
    -moz-border-radius: 0 0 4px 4px;
    -webkit-border-radius: 0 0 4px 4px;
    border-radius: 0 0 4px 4px;
    -webkit-box-shadow: 0 4px 5px rgba(0, 0, 0, .15);
    -moz-box-shadow: 0 4px 5px rgba(0, 0, 0, .15);
    box-shadow: 0 4px 5px rgba(0, 0, 0, .15);
    background-color: white;
    overflow: auto;
}

.leo-dropdown-search {
    position: relative;
}

    .leo-dropdown-search input {
        width: 100%;
        height: 30px;
        padding: 4px 20px 4px 5px;
        margin: 0;
        outline: 0;
        font-family: sans-serif;
        font-size: 1em;
        border: 1px solid #aaa;
        -moz-border-radius: 0;
        -webkit-border-radius: 0;
        border-radius: 0;
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        box-shadow: none;
        background: #fff;
    }

    .leo-dropdown-search .iconfont {
        position: absolute;
        right: 5px;
        top: 50%;
        margin-top: -8px;
    }

.leo-dropdown-conent {
    position: relative;
}

.leo-dropdown-aside {
    width: 100px;
    position: absolute;
    left: -5px;
    bottom: -5px;
    top: 0px;
    overflow: hidden;
    overflow-y: auto;
    background: #eaedf1;
    -moz-box-shadow: 0 0 10px #BDBDBD;
    -webkit-box-shadow: 0 0 10px #BDBDBD;
    box-shadow: 0 0 10px #BDBDBD;
    z-index: 100;
}

    .leo-dropdown-aside p {
        cursor: pointer;
        font-size: 12px;
        position: relative;
        display: block;
        width: 100%;
        color: #000;
        padding: 8px 5px;
        text-align: left;
        overflow: hidden;
        white-space: nowrap;
        -ms-text-overflow: ellipsis;
        -o-text-overflow: ellipsis;
        text-overflow: ellipsis;
        border-bottom: 1px solid #dce0e2;
    }

        .leo-dropdown-aside p.leo-active {
            background-color: #fff;
            color: #000;
            font-weight: bold;
        }

        .leo-dropdown-aside p label, .leo-dropdown-aside p input {
            display: inline-block;
            vertical-align: middle;
        }

        .leo-dropdown-aside p label {
            width: 100%;
        }

        .leo-dropdown-aside p input {
            margin-right: 5px;
            font-size: 15px;
            width: 15px;
            height: 15px;
        }

.leo-dropdown-items, .leo-dropdown-items2 {
    padding-top: 5px;
    overflow: hidden;
    max-height: 150px;
    overflow-y: auto;
    /*min-height: 100px;*/
}

.leo-dropdown-aside ~ .leo-dropdown-items2 {
    padding-left: 100px;
}

.leo-dropdown-items2 li {
    border: 1px solid #dce0e2;
    margin-top: 3px;
    margin-left: 3px;
    cursor: pointer;
    width: 30%;
    text-align: center;
    padding: 5px;
    display: inline-block;
    vertical-align: top;
    *display: inline; /* IE6、7 block 元素 */
    *zoom: 1;
}

    .leo-dropdown-items2 li.checkbox {
        width: 46%;
    }

    .leo-dropdown-items2 li:hover {
        background-color: #f1f8ff;
        color: #2fb3ff;
    }

    .leo-dropdown-items2 li.leo-active {
        background-color: #2fb3ff;
        color: #fff;
    }

        .leo-dropdown-items2 li.leo-active .text-light-muted, .leo-dropdown-items li.leo-active .text-light-muted {
            color: #333333;
        }

    .leo-dropdown-items2 li input, .leo-dropdown-items2 label {
        vertical-align: middle;
        display: inline-block;
    }

    .leo-dropdown-items2 li input {
        margin-right: 5px;
        font-size: 15px;
        width: 15px;
        height: 15px;
    }

.leo-dropdown-items li {
    line-height: 30px;
    position: relative;
}

    .leo-dropdown-items li:hover, .leo-dropdown-items li.leo-active2 {
        background-color: #c8e8fb;
    }

    .leo-dropdown-items li.leo-active {
        background-color: #2fb3ff;
        color: #fff;
    }

    .leo-dropdown-items li label {
        cursor: pointer;
        display: inline-block;
        vertical-align: middle;
        padding: 0 3px;
    }

        .leo-dropdown-items li label input {
            display: inline-block;
            vertical-align: middle;
            margin-right: 5px;
        }

    .leo-dropdown-items li.leo-active .iconfont {
        color: #fff;
    }

    .leo-dropdown-items li .iconfont {
        position: absolute;
        color: #0ae;
        cursor: pointer;
        display: none;
        right: 10px;
        top: 0px;
    }

    .leo-dropdown-items li.leo-active2 .iconfont.icon-duihao {
        display: inline-block;
        position: absolute;
        right: 10px;
    }

    .leo-dropdown-items li:hover .iconfont {
        display: inline-block;
    }

    .leo-dropdown-items li .icon-delete {
        right: 10px;
    }

    .leo-dropdown-items li .icon-iconzhongmingming {
        right: 40px;
    }

    .leo-dropdown-items li.iconfont {
        width: 30px;
        font-size: 20px;
        display: inline-block;
        vertical-align: top;
        zoom: 1;
        text-align: center;
    }

/*#endregion*/
.leo-form-content {
    padding: 0.625rem;
}

/*.leo-form {
    font-size: 0;
}*/

.leo-input-row {
    font-size: 0.75rem;
    line-height: 1.5;
    color: #495057;
    background-clip: padding-box;
    border-radius: .25rem;
    position: relative;
    padding: 10px 10px 0 100px;
    width: 33.33333333%;
}

.leo-form-group .leo-input-row {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.leo-input-row.full {
    width: 100%;
}

.leo-input-row.w50 {
    width: 50%;
}

.leo-input-row.w25 {
    width: 25%;
}

.leo-input-row.w55 {
    width: 56%;
}

.leo-input-row.w66 {
    width: 66.66%;
}

.leo-input-row.w33 {
    width: 33.33%;
}

.leo-input-row.gongxinag {
    width: 10%;
    padding: 10px 0 0 40px;
}

    .leo-input-row.gongxinag .leo-input-label {
        width: 35px !important;
    }

.leo-input-label.required > label {
    color: red;
}

.leo-form .leo-input-row .leo-input-label {
    text-align: left;
    color: #333;
    font-weight: bold;
    font-size: 12px;
    position: absolute;
    left: 0;
    text-align: right;
    width: 90px;
}

    .leo-form .leo-input-row .leo-input-label label.required {
        color: orangered;
    }

    .leo-form .leo-input-row .leo-input-label .leo-alert {
        margin-bottom: 0;
        line-height: 0.75rem;
        padding: 0.5rem;
        margin-top: 0.125rem;
        font-size: 0.75rem !important;
        margin-left: 0.625rem;
        border: none;
    }

        .leo-form .leo-input-row .leo-input-label .leo-alert:before {
            content: "\e603";
            position: absolute;
            left: -8px;
            color: #f8d7da;
        }

.leo-input-row.down:after,
.leo-input-row.date:after {
    position: absolute;
    right: 15px;
    /*  bottom: 8px;*/
    color: #A3B1CC;
}

.leo-input-row input.downimg[readonly] {
    background-color: #ffffff;
    background-image: url(../Images/drop-arrow-down.png);
    background-position: right;
    background-repeat: no-repeat;
}

.leo-input-row .iconfont.down:after {
    position: absolute;
    right: 15px;
    /*  bottom: 8px;*/
    color: #A3B1CC;
}

.leo-input-row.down.plus:after,
.leo-input-row.date.plus:after {
    right: 45px;
}

.leo-input-row.plus .icon-jiashang, .leo-input-row.plus .icon-gengduo, .leo-table .icon-jiashang {
    padding-left: 10px;
    cursor: pointer;
    color: #ced4da;
}

    .leo-input-row.plus .icon-jiashang:hover, .leo-input-row.plus .icon-gengduo:hover, .leo-table.edit .icon-jiashang:hover {
        color: #333333;
    }

.leo-input-row .txtnum {
    height: 100%;
    top: 5px;
}

.leo-table.edit .icon-jiashang {
    position: absolute;
    right: 0px;
    top: 50%;
    margin-top: -10px;
}

.leo-input-row.down input[readonly] {
    /* background-color: transparent;*/
    background-color: #ffffff;
}

.leo-input-row.down:hover:after,
.leo-input-row.date:hover:after {
    color: #333333;
}

.leo-input-row.down:after {
    content: "\e601";
}

.leo-input-row.date:after {
    content: "\e607";
}

.leo-input-row input:focus ~ label {
    color: #0071e6;
    border-color: #0071e6;
}

.leo-input-row label.checkbox {
    line-height: 2.5rem;
    /*margin-left: 1.125rem;*/
    /*display: block;*/
    font-size: 14px;
}

.leo-input-row .error {
    border-color: orangered;
}

.leo-input.leo-active {
    border: 1px solid #2fb3ff !important;
    border-bottom: none !important;
}

.leo-input.down {
    background: #fff url(../Images/drop-arrow-down.png) no-repeat center right;
}

.leo-input.loading {
    background: #fff url(../Images/loading-s.gif) no-repeat center right;
}

/*.leo-input.leo-date {
    background: url(/Content/Images/date.png) no-repeat center right;
}*/

.leo-input-prepend,
.leo-input-after {
    padding: 0 .75rem;
    line-height: 2rem;
    color: #495057;
    text-align: center;
    white-space: nowrap;
    background-color: #e9ecef;
    border: 1px solid #ced4da;
    font-size: 0.75rem;
}

.leo-input-prepend {
    border-top-left-radius: 0.3125rem;
    border-bottom-left-radius: 0.3125rem;
    border-right: none;
}

.leo-input-after {
    border-top-right-radius: 0.3125rem;
    border-bottom-right-radius: 0.3125rem;
    border-left: none;
}

.leo-input-prepend ~ input {
    border-radius: 0;
}

.leo-form-action {
    position: relative;
}

    .leo-form-action .leo-btn-blue, .leo-form-action .leo-btn-gray, .leo-form-action .leo-btn-yellow {
        padding: 12px 50px;
        position: relative;
        line-height: 20px;
    }

    .leo-form-action .leo-btn-gray {
        padding-right: 38px;
        color: #333;
    }

        .leo-form-action .leo-btn-gray img {
            position: absolute;
            right: 0px;
            top: 0;
        }

    .leo-form-action.fixed {
        position: fixed;
        bottom: 0px;
        border-top: 1px solid #ccc;
        z-index: 999;
        background-color: #fff;
        left: 0;
        width: 100%;
        padding: 15px 0 20px;
        text-align: center;
    }

.leo-radio-star label,
.leo-checkbox-group label,
.leo-radio-group label {
    line-height: 2.126rem;
    margin-right: 0.9375rem;
    font-size: 14px;
}

    .leo-radio-star label.iconfont,
    .leo-checkbox-group label.iconfont,
    .leo-radio-group label.iconfont {
        font-size: 20px;
    }

#outputColumns.leo-checkbox-group label, #outputColumns.leo-radio-group label,
#orderColumns.leo-checkbox-group label, #orderColumns.leo-radio-group label {
    width: 120px;
}

.leo-radio-group label input {
    margin-right: 0.1875rem;
}

.leo-radio-group .color {
    width: 16px;
    height: 16px;
    margin-top: 8px;
    margin-left: 2px;
}

.leo-form-header {
    margin: 10px 0;
    background-color: #e6e9ea;
    border-radius: 4px;
    line-height: 40px;
    height: 40px;
    border-bottom: 1px dotted #ccc;
    padding-left: 10px;
}

.leo-form .leo-form-header:first-child {
    margin-top: 0;
}

.leo-form-group {
    margin-bottom: 10px;
    background: #ffffff;
    max-width: 1124px;
    box-shadow: 1px 1px 6px rgba(0, 0, 0, 0.05);
}

   /* .leo-form-group.w-100 {
        max-width: 100%;
    }*/

.console-detail .leo-form-group {
    max-width: 1024px;
}

.leo-form-header .toolbar {
    padding-left: 20px;
    padding-top: 3px;
}

.leo-form-header a {
    font-size: 14px;
    color: #000;
}

.leo-form-header .toolbar a {
    padding: 2px 5px 3px;
    position: relative;
    color: #fff;
    font-size: 12px;
}

    .leo-form-header .toolbar a .iconfont {
        font-size: 20px;
    }

.leo-form-attachs {
    position: relative;
}

    .leo-form-attachs .leo-btn-blue.button, .leo-form-attachs .leo-btn-gray.button {
        position: relative;
        padding: 5px 15px;
        margin-bottom: 10px;
    }

    .leo-form-attachs .button input {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 100;
        opacity: 0;
        cursor: pointer;
    }

.toolbar .leo-btn-gray {
    margin-right: 10px;
    padding: 8px 15px;
}

    .toolbar .leo-btn-gray.iconfont {
        font-weight: bold;
        padding: 0 10px;
        font-size: 18px;
        background-color: #fff;
        border: none;
        color: #2fb3ff;
    }

.leo-input-vmulti {
    border: 0.0625rem solid #ced4da;
    background-color: #fff;
    width: 100%;
    padding: 0 0.625rem 0 0;
    min-height: 2.125rem;
}

    .leo-input-vmulti.downimg {
        background-color: #fff;
        background-image: url(../Images/drop-arrow-down.png);
        background-position: right;
        background-repeat: no-repeat;
    }

.leo-search-container .leo-input-vmulti {
    max-height: 2.125rem;
    overflow: auto;
}

.leo-input-vmulti p {
    background-color: #dbe9f1;
    margin: 4px;
    padding: 3px 5px;
    border-radius: 3px;
}

    .leo-input-vmulti p label {
    }

    .leo-input-vmulti p span {
        padding-left: 3px;
        cursor: pointer;
    }


.leo-iframe-body {
    position: relative;
    width: 100%;
    height: 100%;
}

.leo-toobar {
}

    .leo-toobar.top {
        right: 20px;
        top: 10px;
    }

    .leo-toobar a {
        padding: 7px 10px;
        border-radius: 0;
        border-right: 1px solid #cccccc;
    }

        .leo-toobar a:first-child {
            border-bottom-left-radius: 3px;
            border-top-left-radius: 3px;
        }

        .leo-toobar a:last-child {
            border-bottom-right-radius: 3px;
            border-top-right-radius: 3px;
            border-right: none;
        }

.leo-search-container {
    padding: 0.3125rem;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 101;
    background-color: #ffffff;
    /* 	border-bottom: 0.0625rem solid #c5d0dc; */
}


    .leo-search-container input, .leo-search-container select {
        border-radius: 0;
        border: none;
        border-top: 0.0625rem solid #ced4da;
        border-bottom: 0.0625rem solid #ced4da;
        border-radius: 0;
        border-right: 0.0625rem solid #ced4da;
    }

    .leo-search-container .leo-form-group .justify-end h3 + .leo-input-row input {
        border-left: 0.0625rem solid #ced4da;
        border-bottom-left-radius: 3px;
        border-top-left-radius: 3px;
    }

    .leo-search-container .iants-search-pop input, .leo-search-container .iants-search-pop select {
        border-radius: 3px;
        border: 0.0625rem solid #ced4da;
    }

    .leo-search-container .leo-search .leo-input-row {
        padding: 0;
    }

        .leo-search-container .leo-search .leo-input-row.fixed-left {
            position: fixed;
            height: 34px;
            top: 5px;
            left: 10px;
            border: none;
        }

            .leo-search-container .leo-search .leo-input-row.fixed-left .leo-radio-group {
                border: none !important;
            }

    .leo-search-container .leo-radio-group {
        border-top: 0.0625rem solid #ced4da;
        border-bottom: 0.0625rem solid #ced4da;
        border-radius: 0;
        height: 2.125rem;
        border-right: 0.0625rem solid #ced4da;
    }

        .leo-search-container .leo-radio-group input {
            border: none !important;
        }

.leo-search {
    text-align: right;
}

    .leo-search.leo-form {
        padding: 0;
    }

    .leo-search .leo-input-row {
        margin-bottom: 0;
        padding: 0 5px 0 0;
        max-width: 8.5rem;
        min-width: 7.5rem;
    }

        .leo-search .leo-input-row.down:after,
        .leo-search .leo-input-row.date:after {
            right: 10px;
            bottom: 8px;
        }

        .leo-search .leo-input-row.date {
            max-width: 360px;
            width: 360px;
            flex-shrink: 0;
        }

            .leo-search .leo-input-row.date input[readonly] {
                background-color: transparent;
            }

            .leo-search .leo-input-row.date select {
                height: 2.125rem;
                /* margin-right: 3px;*/
                padding: 0 0.625rem;
                width: 100px
            }

        .leo-search .leo-input-row.range {
            max-width: 220px;
        }

.leo-input-row.range .leo-input {
    width: 46%;
}

.leo-input-row.range span {
    width: 6%;
    text-align: center;
    line-height: 2.125rem;
}

.leo-search .leo-form-action {
    font-size: 0;
}


.leo-search .leo-btn-blue, .leo-search .leo-btn-gray, .leo-search .leo-btn-yellow {
    padding: 0px 0.625rem;
    line-height: 1.99rem;
    border-radius: 0;
    margin: 0;
}

.leo-search .leo-btn-gray {
    border-left: 1px solid #c0c1c3 !important;
}

.console-detail {
    padding: 0.625rem 1.25rem;
}

    .console-detail .leo-form .leo-input-row {
        min-height: 30px;
    }

        .console-detail .leo-form .leo-input-row p, .console-detail .leo-form .leo-input-row .leo-input-label {
            line-height: 15px;
        }

        .console-detail .leo-form .leo-input-row .leo-input-label {
            font-size: 12px;
            color: #b3b2b2;
        }

    .console-detail .detail-img {
        width: 50px;
    }

/*#region table */

.leo-conetnt-body {
    position: relative;
    padding-top: 2.75rem;
    padding-bottom: 2.625rem;
    height: 100%;
    width: 100%;
    overflow: auto;
}

.leo-footer {
    z-index: 99;
    height: 2.625rem;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #fff;
}

.leo-iframe-body .leo-footer {
    border-top: 1px solid #aaa;
}

.leo-table-content {
    position: relative;
    height: 100%;
    width: 100%;
    overflow: hidden;
}

.leo-table-scroll .empty {
    padding: 10px 0;
    color: #9aabab;
    background-color: #fffef3;
    border: 1px solid #ebe0ca;
    text-align: center;
}
.leo-table-header {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 56;
    right: 0px;
    overflow: hidden;
}

.leo-table-header-inner {
    width: 100%;
}


.leo-table-fixed {
    position: absolute;
    top: 0;
    /*bottom: 0.625rem;*/
    z-index: 100;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, .12);
    background-color: #ffffff;
}

    .leo-table-fixed.fixed-right {
        /*  right: 10px;*/
        right: 0px;
        width: 7.5rem;
        text-align: center;
    }

    .leo-table-fixed.fixed-left {
        left: 0;
        width: 200px;
        bottom: 0;
    }

    .leo-table-fixed.fixed-right ~ .leo-table-scroll {
        padding-right: 7.5rem;
    }

.leo-table-scroll {
    overflow: auto;
    height: 100%;
    /* padding-left: 1px;*/
    padding-bottom: 10px;
    /*  max-height:400px;*/
    /* padding-right: 10px;*/
}

.leo-table {
    table-layout: fixed;
    border: none;
    width: 100%;
    background-color: #fff;
    border-top: 1px solid #9aabab;
    border-left: 1px solid #9aabab;
}

.console-detail .leo-table {
    border-left: 1px solid #9aabab;
    border-right: 1px solid #9aabab;
}

.leo-table th,
.leo-table td {
    text-align: center;
    border: none;
    border-bottom: 1px solid #9aabab;
}

.leo-table th {
    background-color: #ecf3f5;
    color: #000;
    font-weight: bold;
    line-height: 33px;
    overflow: hidden;
    white-space: nowrap;
    -ms-text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    font-size: 12px;
    border-right: 1px solid #9aabab;
    position: relative;
    /* -webkit-user-select: none;*/
}

    .leo-table th .iconfont {
        font-size: 14px;
        color: #ccc;
        cursor: pointer;
    }

        .leo-table th .iconfont.icon-xiugai {
            font-weight: bold;
            color: #2fb3ff;
            display: block;
            /* position: absolute;
            right: 10px;
            font-size: 12px;*/
            /* display: none;*/
        }

.leo-table.edit th .iconfont.icon-xiugai {
    display: none;
}

.leo-table.edit th[m="operate"]:hover .iconfont.icon-xiugai {
    display: block;
}

.leo-table th .iconfont.icon-sortdown,
.leo-table th .iconfont.icon-sortup {
    color: #000;
}

/*  .leo-table th input[type=checkbox] {
            background-color: #dbe9f1;
        }
*/

.leo-table th .resize {
    cursor: col-resize;
    padding: 0;
    margin: 0;
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    width: 8px;
    right: -5px;
    z-index: 100;
}

.leo-table tbody tr td,
.leo-table tfoot tr td {
    padding: 5px 0;
    -ms-word-wrap: break-word;
    word-wrap: break-word;
    -ms-word-break: break-all;
    word-break: break-all;
    line-height: 20px;
    position: relative;
}

.leo-table tbody tr.noborder td {
    border: none;
}

    .leo-table tbody tr.noborder td.border-right {
        border-right: 1px solid #eeeeee
    }

.leo-table .icon-jisuanqi, .leo-table .icon-jiagebiangeng {
    position: absolute;
    right: 10px;
    z-index: 50;
    top: 50%;
    font-size: 30px;
    margin-top: -10px;
    cursor: pointer;
    color: #0ae;
}

.leo-table.edit td .icon-jiagebiangeng {
    font-size: 12px;
    top: 10px;
    right: 5px;
}

.leo-table td .icon-jiagebiangeng {
    font-size: 12px;
    top: 24px;
    right: 10px;
}

.leo-table tbody tr td.leo-nodata {
    border-bottom: none;
}

.leo-table tbody tr.success, .leo-table tbody tr.success p, .leo-table tbody tr.success:hover {
    /*   color: #9bfab1;
    font-weight: bold;*/
    background-color: #9bfab1 !important;
}

.leo-table tbody tr.danger, .leo-table tbody tr.danger:hover {
    background-color: #f0b29f !important;
}

    .leo-table tbody tr.danger p, .leo-table tbody tr.danger:hover p {
        /*color: #fc4444;
    font-weight: bold;*/
        background-color: #f0b29f !important;
    }

.leo-table tbody tr.danger2, .leo-table tbody tr.danger2:hover {
    background-color: #f96e42 !important;
}

    .leo-table tbody tr.danger2 p, .leo-table tbody tr.danger2:hover p {
        /*color: #fc4444;
    font-weight: bold;*/
        background-color: #f96e42 !important;
    }

.leo-table tbody tr td.leo-nodata img {
    display: block;
    margin: 0 auto;
    width: 459px;
    height: 213px;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    border-radius: 0;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.leo-table tbody tr td > a {
    padding: 2px 5px;
    display: inline-block;
    vertical-align: top;
    z-index: 50;
}

    .leo-table tbody tr td > a.icon-ico_niantiejiankongrenwu {
        position: absolute;
        bottom: 0;
        right: 0;
    }

.leo-table tbody tr td pre {
    text-align: center;
    padding: 0 3px;
    font-size: 12px;
    max-height: 200px !important;
}


.leo-table-imgs {
    height: 100%;
    overflow: auto;
}

    .leo-table-imgs img {
        width: 50px;
        height: 50px;
        margin: 0px 10px 0px 0;
    }

.leo-table .groupstat {
    text-align: left;
}

    .leo-table .groupstat span {
        padding: 0 20px;
    }

.leo-table th p,
.leo-table td p {
    width: 100%;
    max-height: 45px;
    overflow: hidden;
    line-height: 20px;
    padding: 2px 0;
}

.leo-table tbody tr td > a.leo-btn-blue,
.leo-table tbody tr td > a.leo-btn-gray,
.leo-table tbody tr td > a.leo-btn-gray1 {
    padding: 0 5px;
    line-height: 22px;
    margin: 2px auto;
    font-size: 12px;
    margin-left: 5px;
}

.leo-table tbody tr td > img,
.leo-table tbody tr td > a img {
    width: 50px;
    height: 50px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
}

.leo-table tbody tr td img.unfolded,
.leo-table tbody tr td img.folded {
    width: 25px;
    height: 25px;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    border-radius: 0;
    cursor: pointer;
}

/*.leo-table tbody tr:nth-child(2n) {
    background-color: #f8f8f8;
}*/

.leo-table tbody tr.select,
.leo-table tbody tr:hover {
    background: #f8f8f8 !important;
}

.leo-table.nohover tbody tr:hover {
    background-color: transparent !important;
}

.leo-table tbody tr.leo-tr-innerdetail {
    background-color: #f8f8f8 !important;
}

.leo-table-innerdiv {
    padding: 20px;
    overflow: auto;
    width: 100%;
}

    .leo-table-innerdiv .leo-table {
        background-color: #fff;
    }

.leo-table tbody tr.warn {
    background-color: red !important;
    color: #fff;
}

    .leo-table tbody tr.warn:hover {
        background-color: red;
    }

    .leo-table tbody tr.warn * {
        color: #000;
    }

.leo-table tbody tr td .opt.icon-delete {
    font-size: 20px;
    padding: 0 5px;
}

.leo-table tbody tr td .opt.icon-edit {
    font-size: 25px;
    padding: 0 5px;
}

.leo-table-inner {
    position: relative;
    padding: 10px 20px;
}

    .leo-table-inner .leo-table-header {
        left: 20px;
        top: 10px;
        right: 20px;
    }

    .leo-table-inner .leo-table th {
        background-color: #f0f5f7;
    }

    .leo-table-inner .leo-table tbody tr.select,
    .leo-table-inner .leo-table tbody tr:hover {
        background-color: #fff !important;
    }

.leo-table tbody tr.bordertop > td {
    border-top: 1px solid #2fb3ff !important;
}

.leo-table tbody tr.borderbottom > td {
    border-bottom: 1px solid #2fb3ff !important;
}


.leo-table .icon-xiala1, .leo-table .icon-xiala {
    cursor: pointer;
    color: #0ae;
}

.leo-table tfoot tr {
    background-color: #ccc;
    font-weight: bold;
}

.leo-table .iconfont.unfolded {
    font-size: 30px;
    cursor: pointer;
    color: #0ae;
}

.leo-table.edit {
}

    .leo-table.edit td {
        padding: 0;
        min-height: 45px;
    }

    .leo-table.edit td, .leo-table.edit th {
        border-right: 1px solid #9aabab;
    }

    .leo-table.edit th {
        /* color: #909399;*/
    }

        .leo-table.edit th.text-danger {
            color: #FF5722;
        }

    .leo-table.edit td.bg-gray {
        background-color: #f5f6f7;
    }

    .leo-table.edit input, .leo-table.edit select {
        border-color: transparent;
        border-radius: 0;
        text-align: center;
        height: 100%;
        width: 100%;
    }

        .leo-table.edit input.border-danger, .leo-table.edit input.error {
            border: 1px solid #FF5722;
        }

        .leo-table.edit input[type=radio],
        .leo-table.edit input[type=checkbox] {
            width: auto;
        }

    .leo-table.edit .leo-input-vmulti {
        border: none;
    }

        .leo-table.edit .leo-input-vmulti p {
            width: auto;
            padding: 3px 5px;
        }

    .leo-table.edit input[type=checkbox] {
        height: 16px;
        width: 16px;
        margin: 3px auto 3px;
        min-height: 16px;
        display: inline-block;
        vertical-align: middle;
    }

    .leo-table.edit textarea {
        border-color: transparent;
        border-radius: 0;
        text-align: left;
        height: 100%;
        -webkit-appearance: none;
        resize: none;
        -moz-outline: 0;
        outline: 0;
        -moz-border-radius: 0;
        -webkit-border-radius: 0;
        border-radius: 0;
    }

        .leo-table.edit textarea:focus, .leo-table.edit input:focus {
            box-shadow: none;
        }

    .leo-table.edit .group {
        display: flex !important;
        flex-direction: row;
        height: 90%;
        align-items: center;
        justify-items: center;
        padding: 3px 0;
    }

        .leo-table.edit .group input {
            border: 0.0625rem solid #ced4da;
        }
    /*.leo-table.edit input:focus, .leo-table.edit textarea:focus {
        border-color: #0071e6;
    }*/
    .leo-table.edit tbody tr:nth-child(2n) {
        background-color: transparent !important;
    }

    .leo-table.edit tbody tr.select,
    .leo-table.edit tbody tr:hover {
        background-color: transparent !important;
    }

    .leo-table.edit .relative {
        height: 100%;
        position: relative;
    }

.leo-loading-inner,
.leo-nodata {
    width: 100%;
    padding: 10px 0;
    text-align: center;
    line-height: 28px;
    color: #636262;
    background-color: #fffef3;
    border: 1px solid #ebe0ca;
}

    .leo-loading-inner img {
        margin-right: 10px;
    }

    .leo-loading-inner p {
        color: #c8c9ca;
    }

/*#endregion*/

/*#region leo-pagination**/
.leo-pagination {
    background-color: #FFFFFF;
    padding: 0.3125rem 0.3125rem;
    border-top: 0.0625rem solid #c5d0dc;
    height: 2.5rem;
}

.leo-footer .leo-pagination {
    border-top: none;
}

.leo-pagination.fixed {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
    text-align: right;
}

.leo-pagination .total {
    padding: 0.375rem 0.625rem;
}

.leo-pagination .leo-input-row {
    width: 6.25rem;
    padding: 0;
}

    .leo-pagination .leo-input-row select {
        width: 100%;
        text-align: center;
        height: 1.75rem;
        border: 0.0625rem solid #ced4da;
        padding: 0 0.625rem;
    }

    .leo-pagination .leo-input-row input {
        height: 1.75rem;
    }

    .leo-pagination .leo-input-row.down:after {
        right: 10px;
    }

    .leo-pagination .leo-input-row.go {
        font-size: 0;
        width: 90px;
        margin-right: 30px;
    }

        .leo-pagination .leo-input-row.go input {
            width: 40px;
            text-align: center;
        }

.leo-pagination .leo-input-prepend,
.leo-pagination .leo-input-after {
    line-height: 1.6875rem;
    padding: 0 2px;
    background-color: transparent;
    border: none;
}

    .leo-pagination .leo-input-prepend ~ input {
        border-radius: .25rem;
    }

.leo-pagination .leo-input-row.page {
    line-height: 1.75rem;
    width: auto;
}

    .leo-pagination .leo-input-row.page span {
        display: inline-block;
        vertical-align: top;
        padding: 0 0.625rem;
        font-weight: bold;
    }

        .leo-pagination .leo-input-row.page span.disabled {
            cursor: not-allowed;
            color: #c8c9ca;
        }

/*#endregion **/

/*#region leo-accordion**/
.leo-accordion {
    border: 1px solid #eee;
    border-bottom: none;
    width: 180px;
    position: relative;
    /*-moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;*/
}

.console-aside .leo-accordion {
    background-color: #ffffff;
}

.leo-accordion h3 {
    padding: 10px 30px;
    background-color: #eee;
    border-bottom: 1px solid #ddd;
    position: relative;
}

    .leo-accordion h3.leo-active {
    }

    .leo-accordion h3 .iconfont {
        position: absolute;
        top: 8px;
        font-size: 18px;
    }

    .leo-accordion h3 .icon-caidan {
        left: 8px;
    }

    .leo-accordion h3 .icon-xiala, .leo-accordion h3 .icon-xiala2 {
        right: 8px;
    }

    .leo-accordion h3 a {
        color: #000;
    }

.leo-accordion menu {
    display: none;
}

.leo-accordion h3.absolute-top ~ menu {
    overflow: auto;
    padding-top: 40px;
}


.leo-accordion menu a {
    border-bottom: 1px solid #dee2e6;
    display: block;
    padding: 10px 15px 10px 30px;
    color: #555;
    text-align: left;
    position: relative;
}

    .leo-accordion menu a:hover {
        text-decoration: none;
        background-color: rgb(230, 242, 255);
    }

    .leo-accordion menu a.leo-active {
        background-color: rgb(230, 242, 255);
    }

        .leo-accordion menu a:hover .tname, .leo-accordion menu a.leo-active .tname {
            color: rgb(0, 119, 255);
        }

    .leo-accordion menu a .iconfont {
        display: none;
        position: absolute;
        color: rgb(0, 119, 255);
    }

    .leo-accordion menu a:hover .iconfont {
        display: block;
    }


    .leo-accordion menu a .icon-xiugai {
        right: 40px;
        top: 9px;
        font-size: 14px;
    }

    .leo-accordion menu a .icon-hebingxingzhuang {
        right: 10px;
        font-size: 20px;
        top: 5px;
    }
/*#endregion **/

/*#region condition*/
.leo-condition {
}

.leo-input-row .leo-condition {
    margin-top: 5px;
}

.leo-condition ul li {
    margin-bottom: 5px;
    line-height: 25px;
}

.leo-condition select {
    line-height: 25px !important;
    height: 25px !important;
    font-size: 12px;
    margin-right: 5px;
}

.leo-condition a {
    padding-left: 10px;
}

    .leo-condition a.icon-delete {
        font-size: 18px;
    }

    .leo-condition a:hover {
        text-decoration: none;
    }


.leo-condition .authority-relation label {
    margin-right: 10px;
    color: #ccc;
    background-color: #2e3033;
    line-height: 24px;
    padding: 0 5px;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    border-radius: 2px;
}

.leo-condition ul li ul {
    margin-top: 5px;
    padding-left: 70px;
}

.leo-condition .leo-input-row {
    width: 150px;
    padding-left: 0;
    padding-bottom: 0;
    padding-top: 2px;
}

    .leo-condition .leo-input-row.full {
        width: 120px !important;
    }

    .leo-condition .leo-input-row input, .leo-condition .leo-input-row select, .leo-condition .leo-input-row textarea {
        line-height: 25px !important;
        height: 25px !important;
    }

.leo-condition .leo-checkbox {
    margin: 4px 0 8px;
}

.leo-condition .leo-input-row label.checkbox {
    line-height: normal;
}

/*#endregion*/

/*#region lodding*/
.lodding {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999999;
    background: #FFF;
    text-align: center;
    /*新增by pekey 20171211*/
    padding-top: 250px;
}

.loading_tit {
    padding: 20px 0px 0px 15px;
    display: inline-block;
    font-size: 16px;
    font-weight: bold;
    color: #333;
    font-family: 微軟正黑體;
    text-align: center;
}

#circularG {
    position: relative;
    width: 58px;
    height: 58px;
    margin: auto;
}

.circularG {
    position: absolute;
    background-color: rgb(27,95,172);
    width: 14px;
    height: 14px;
    border-radius: 9px;
    -o-border-radius: 9px;
    -ms-border-radius: 9px;
    -webkit-border-radius: 9px;
    -moz-border-radius: 9px;
    animation-name: bounce_circularG;
    -o-animation-name: bounce_circularG;
    -ms-animation-name: bounce_circularG;
    -webkit-animation-name: bounce_circularG;
    -moz-animation-name: bounce_circularG;
    animation-duration: 1.1s;
    -o-animation-duration: 1.1s;
    -ms-animation-duration: 1.1s;
    -webkit-animation-duration: 1.1s;
    -moz-animation-duration: 1.1s;
    animation-iteration-count: infinite;
    -o-animation-iteration-count: infinite;
    -ms-animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite;
    -moz-animation-iteration-count: infinite;
    animation-direction: normal;
    -o-animation-direction: normal;
    -ms-animation-direction: normal;
    -webkit-animation-direction: normal;
    -moz-animation-direction: normal;
}

#circularG_1 {
    left: 0;
    top: 23px;
    animation-delay: 0.41s;
    -o-animation-delay: 0.41s;
    -ms-animation-delay: 0.41s;
    -webkit-animation-delay: 0.41s;
    -moz-animation-delay: 0.41s;
}

#circularG_2 {
    left: 6px;
    top: 6px;
    animation-delay: 0.55s;
    -o-animation-delay: 0.55s;
    -ms-animation-delay: 0.55s;
    -webkit-animation-delay: 0.55s;
    -moz-animation-delay: 0.55s;
}

#circularG_3 {
    top: 0;
    left: 23px;
    animation-delay: 0.69s;
    -o-animation-delay: 0.69s;
    -ms-animation-delay: 0.69s;
    -webkit-animation-delay: 0.69s;
    -moz-animation-delay: 0.69s;
}

#circularG_4 {
    right: 6px;
    top: 6px;
    animation-delay: 0.83s;
    -o-animation-delay: 0.83s;
    -ms-animation-delay: 0.83s;
    -webkit-animation-delay: 0.83s;
    -moz-animation-delay: 0.83s;
}

#circularG_5 {
    right: 0;
    top: 23px;
    animation-delay: 0.97s;
    -o-animation-delay: 0.97s;
    -ms-animation-delay: 0.97s;
    -webkit-animation-delay: 0.97s;
    -moz-animation-delay: 0.97s;
}

#circularG_6 {
    right: 6px;
    bottom: 6px;
    animation-delay: 1.1s;
    -o-animation-delay: 1.1s;
    -ms-animation-delay: 1.1s;
    -webkit-animation-delay: 1.1s;
    -moz-animation-delay: 1.1s;
}

#circularG_7 {
    left: 23px;
    bottom: 0;
    animation-delay: 1.24s;
    -o-animation-delay: 1.24s;
    -ms-animation-delay: 1.24s;
    -webkit-animation-delay: 1.24s;
    -moz-animation-delay: 1.24s;
}

#circularG_8 {
    left: 6px;
    bottom: 6px;
    animation-delay: 1.38s;
    -o-animation-delay: 1.38s;
    -ms-animation-delay: 1.38s;
    -webkit-animation-delay: 1.38s;
    -moz-animation-delay: 1.38s;
}



@keyframes bounce_circularG {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(.3);
    }
}

@-o-keyframes bounce_circularG {
    0% {
        -o-transform: scale(1);
    }

    100% {
        -o-transform: scale(.3);
    }
}

@-ms-keyframes bounce_circularG {
    0% {
        -ms-transform: scale(1);
    }

    100% {
        -ms-transform: scale(.3);
    }
}

@-webkit-keyframes bounce_circularG {
    0% {
        -webkit-transform: scale(1);
    }

    100% {
        -webkit-transform: scale(.3);
    }
}

@-moz-keyframes bounce_circularG {
    0% {
        -moz-transform: scale(1);
    }

    100% {
        -moz-transform: scale(.3);
    }
}
/*#endregion*/


/*#region leo-tree*/
.leo-tree {
    padding-left: 10px;
    padding-bottom: 15px;
    background-color: #fff;
    -ms-text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    white-space: nowrap;
    line-height: 40px;
    height: auto;
}

    .leo-tree ul ul {
        display: none;
    }

.leo-tree-item {
    height: 30px;
    position: relative;
}

    .leo-tree-item.leo-tree-sub {
        padding-left: 3px;
    }

    .leo-tree-item span, .leo-tree-item label {
        display: inline-block;
        vertical-align: middle;
        max-width: 120px;
    }

    .leo-tree-item input[type=checkbox] {
        vertical-align: middle;
    }

    .leo-tree-item a {
        display: inline-block;
        vertical-align: middle;
        padding-right: 10px;
    }

.leo-tree-open-line {
    background: url(../Images/Tree/tree-open-line.png) no-repeat left center;
    width: 13px;
    height: 100%;
    cursor: pointer;
}

.leo-tree-open {
    background: url(../Images/Tree/tree-open.png) no-repeat left center;
    width: 15px;
    height: 100%;
    cursor: pointer;
}

.leo-tree-close-line {
    background: url(../Images/Tree/tree-close-line.png) no-repeat 1px center;
    width: 13px;
    height: 100%;
    cursor: pointer;
}

.leo-tree-close {
    background: url(../Images/Tree/tree-close.png) no-repeat center center;
    width: 15px;
    height: 10px;
    cursor: pointer;
}

.leo-tree-vline {
    width: 17px;
    height: 100%;
    background: url(../Images/Tree/vline.png) no-repeat left center;
}

.leo-tree-text {
    color: #3d5266;
    white-space: nowrap;
    overflow: hidden;
    -ms-text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    margin-left: 3px;
    cursor: pointer;
    height: 20px;
    padding: 0 2px;
    line-height: 18px;
    border: 1px solid transparent;
    display: inline-block;
    margin-right: 10px;
}

    .leo-tree-text.select {
        background-color: #fff5e5;
        border: 1px solid #efd6af;
        -moz-border-radius: 3px;
        -webkit-border-radius: 3px;
        border-radius: 3px;
    }

.leo-tree-last-node {
    background: url(../Images/Tree/last.png) no-repeat center center;
    width: 13px;
    height: 11px;
}

.leo-tree-vlinelast {
    width: 17px;
    height: 100%;
    background: url(../Images/Tree/vlinelast.png) no-repeat left center;
}

.leo-tree-hline {
    width: 20px;
    height: 100%;
    background: url(../Images/Tree/hline.png) repeat-y left center;
}
/*#endregion*/

/*#region tree2*/
.leo-tree2 {
    display: block;
    position: relative;
    padding: 5px 15px;
}

    .leo-tree2 .leo-alert {
        padding: 2px;
        margin-left: 10px;
    }

    .leo-tree2 li > label {
        display: inline-block;
        box-sizing: border-box;
        height: 30px;
        line-height: 28px;
        min-width: 60px;
        text-align: center;
        color: #888;
        border: 1px solid #ddd;
        border-radius: 5px;
        padding: 0 8px;
    }

    .leo-tree2 ul {
        position: relative;
        padding-left: 60px;
        margin: 0;
    }

        .leo-tree2 ul > li {
            position: relative;
            padding: 5px 0;
        }

    .leo-tree2 > ul {
        padding: 0;
        margin: 0;
    }
        /** 水平方向连线 */
        .leo-tree2 > ul ul > li:after {
            content: ' ';
            position: absolute;
            top: 20px;
            left: -45px;
            width: 45px;
            border: none;
            border-top: 1px solid #ddd;
        }
    /** 垂直方向连线 */
    .leo-tree2 ul > li:not(:last-child):before {
        content: ' ';
        position: absolute;
        top: 0;
        left: -45px;
        height: 100%;
        border: none;
        border-left: 1px solid #ddd;
    }

    .leo-tree2 ul > li:last-child:before {
        content: ' ';
        position: absolute;
        top: 0;
        left: -45px;
        height: 20px;
        border: none;
        border-left: 1px solid #ddd;
    }
/*#endregion*/

/*#region atlas*/
.leo-atlas {
    display: block;
    position: relative;
    padding: 5px 15px;
    display: flex;
}

    .leo-atlas ul li.autoleft:after {
        left: 70px;
        right: 232px;
    }

    .leo-atlas ul li.left:after {
        border-bottom: none;
    }





    .leo-atlas .line-no:after, .leo-atlas .line-no:before, .leo-atlas .line-no label:after {
        border: none;
    }

.line-no-top:before {
    border: none !important;
}


.leo-atlas ul {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    position: relative;
}

    .leo-atlas ul ul {
        align-items: flex-start;
    }

    .leo-atlas ul li {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin-right: 10px;
        position: relative;
    }


.leo-atlas li label {
    display: inline-block;
    box-sizing: border-box;
    height: 30px;
    line-height: 28px;
    min-width: 60px;
    text-align: center;
    color: #888;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 0 8px;
    margin-bottom: 20px;
}

    .leo-atlas li label:after {
        content: ' ';
        position: absolute;
        top: 30px;
        left: 50%;
        height: 12px;
        border: none;
        border-left: 1px solid #ddd;
    }

    .leo-atlas li label:before {
        content: ' ';
        position: absolute;
        top: -10px;
        left: 50%;
        height: 12px;
        border: none;
        border-left: 1px solid #ddd;
    }

.leo-atlas ul li div {
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
    text-align: center;
    margin-bottom: 10px;
    position: absolute;
    top: 30px;
    left: 30px;
    right: 40px;
}
/*#endregion*/

/*#region leo-droptree*/
.leo-droptree {
    top: 320px;
    left: 235px;
    padding: 10px;
    width: 793px;
}

.leo-droptree-tab {
    border-bottom: 2px solid red;
    height: 44px;
}

    .leo-droptree-tab a {
        border: 1px solid #CECBCE;
        padding: 10px;
        display: inline-block;
        vertical-align: top;
        background-color: #fff;
        border-bottom-color: #fff;
        border-right: none;
    }

        .leo-droptree-tab a.select {
            border: 2px solid red;
            border-bottom: none;
            height: 44px;
        }

.leo-droptree-content {
    padding-top: 10px;
    font-size: 0;
    max-height: 200px;
    overflow: auto;
    position: relative;
}

    .leo-droptree-content .icon-plus {
        position: absolute;
        font-size: 22px;
        color: #0ae;
        right: 10px;
        font-weight: bold;
        cursor: pointer;
        top: 0;
    }

    .leo-droptree-content a {
        width: 20%;
        font-size: 12px;
        padding: 10px 0;
        margin-right: 5px;
    }

        .leo-droptree-content a:hover {
            color: orangered;
        }

/*#endregion*/

/*#region leo-numbox*/
.leo-numbox {
    position: relative;
    display: inline-block;
    width: 120px;
    height: 35px;
    padding: 0 40px;
    overflow: hidden;
    vertical-align: top;
    vertical-align: middle;
    /* background-color: #efeff4;*/
    /* border: solid 1px #bbb;*/
    border-radius: 3px;
}

.leo-table .leo-numbox {
    margin: 5px;
}

.leo-numbox .leo-numbox-minus, .leo-numbox .leo-numbox-plus {
    position: absolute;
    top: 0;
    width: 40px;
    height: 100%;
    padding: 0;
    overflow: hidden;
    font-size: 18px;
    font-weight: 400;
    line-height: 100%;
    color: #555;
    /*   background-color: #f9f9f9;*/
    border: none;
    border-radius: 0;
    cursor: pointer;
}

.leo-numbox .leo-numbox-minus {
    left: 0;
    /*border-right: solid 1px #bbb;*/
}

.leo-numbox .leo-numbox-plus {
    right: 0;
    /* border-left: solid 1px #bbb;*/
}

.leo-numbox .leo-input-numbox {
    text-align: center;
    width: 100% !important;
    /* border: solid 1px #bbb;*/
    color: red;
    font-weight: bold;
    font-size: 14px;
}

.leo-table.edit .leo-numbox input.leo-input-numbox {
    /* border: solid 1px #bbb;*/
}
/*#endregion*/
/*#region switch*/
.leo-switch {
    position: relative;
    display: block;
    width: 74px;
    height: 30px;
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
    -webkit-transition-duration: .2s;
    transition-duration: .2s;
    -webkit-transition-property: background-color, border;
    transition-property: background-color, border;
    border: 2px solid #ddd;
    border-radius: 20px;
    background-color: #fff;
    background-clip: padding-box;
}

.leo-table .leo-switch {
    margin: 0 auto;
}

.leo-switch.leo-disabled {
    opacity: .3;
}

.leo-switch .leo-switch-handle {
    position: absolute;
    z-index: 1;
    top: -1px;
    left: -1px;
    width: 28px;
    height: 28px;
    -webkit-transition: .2s ease-in-out;
    transition: .2s ease-in-out;
    -webkit-transition-property: -webkit-transform, width,left;
    transition-property: transform, width,left;
    border-radius: 16px;
    background-color: #fff;
    background-clip: padding-box;
    -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, .4);
    box-shadow: 0 2px 5px rgba(0, 0, 0, .4);
}

.leo-switch:before {
    font-size: 13px;
    position: absolute;
    top: 3px;
    right: 11px;
    content: 'Off';
    text-transform: uppercase;
    color: #999;
}

.leo-switch.leo-dragging {
    border-color: #f7f7f7;
    background-color: #f7f7f7;
}

    .leo-switch.leo-dragging .leo-switch-handle {
        width: 38px;
    }

    .leo-switch.leo-dragging.leo-active .leo-switch-handle {
        left: -11px;
        width: 38px;
    }

.leo-switch.leo-active {
    border-color: #4cd964;
    background-color: #4cd964;
}

    .leo-switch.leo-active .leo-switch-handle {
        -webkit-transform: translate(43px, 0);
        transform: translate(43px, 0);
    }

    .leo-switch.leo-active:before {
        right: auto;
        left: 15px;
        content: 'On';
        color: #fff;
    }

.leo-switch input[type='checkbox'] {
    display: none;
}

.leo-switch-mini {
    width: 47px;
}

    .leo-switch-mini:before {
        display: none;
    }

    .leo-switch-mini.leo-active .leo-switch-handle {
        -webkit-transform: translate(16px, 0);
        transform: translate(16px, 0);
    }

.leo-switch-blue.leo-active {
    border: 2px solid #007aff;
    background-color: #007aff;
}
/*#endregion*/


/*#region upload*/
.leo-input-upload {
    font-size: 12px;
    width: 96%;
    max-width: 250px;
    position: relative;
    margin-left: 4px;
    padding: 4px 0;
}

    .leo-input-upload > img {
        width: 90px;
        height: 90px;
        cursor: pointer;
        display: block;
    }

    .leo-input-upload input {
        overflow: hidden;
        width: 90px;
        height: 90px;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 100;
        opacity: 0;
        cursor: pointer;
    }

    .leo-input-upload.small {
        width: 60px;
        margin: 0 auto;
    }

        .leo-input-upload.small > img {
            width: 60px;
            height: 60px;
            cursor: pointer;
            display: block;
        }


        .leo-input-upload.small input {
            width: 60px;
            height: 60px;
        }

    .leo-input-upload p {
        color: #abaaaa;
        position: absolute;
        bottom: 2px;
        left: 100px;
        overflow: hidden;
        top: 10px;
    }

    .leo-input-upload .iconfont {
        color: #ccc;
        cursor: pointer;
        padding: 6px;
    }

    .leo-input-upload span img {
        width: 20px;
        height: 20px;
        cursor: pointer;
        display: block;
        margin-left: 5px;
    }

    .leo-input-upload.detail {
        min-height: 50px;
    }

        .leo-input-upload.detail div img {
            width: 120px;
        }

    .leo-input-upload .files div {
        width: 50px;
        /* height: 50px;*/
        position: relative;
        margin-right: 10px;
    }

        .leo-input-upload .files div .icon-shanchu {
            left: 36px;
            top: -8px;
            display: none;
        }

        .leo-input-upload .files div:hover .icon-shanchu {
            display: block;
        }

    .leo-input-upload .placeholder {
        width: 50px;
        height: 50px;
        position: relative;
    }

    .leo-input-upload.detail .iconfont {
        color: #ccc;
        position: relative;
        cursor: pointer;
        left: 0;
        top: 0px;
        display: block;
    }

    .leo-input-upload.detail .files div {
        text-align: center;
    }

.leo-rich-text {
}

    .leo-rich-text .leo-input-upload {
        width: 80px;
    }

        .leo-rich-text .leo-input-upload img, .leo-rich-text .leo-input-upload input {
            height: 60px;
            width: 60px;
        }

    .leo-rich-text .leo-btn-blue {
        height: 60px;
        line-height: 60px;
        padding: 0 20px;
        font-size: 16px;
        font-weight: bold;
    }

.leo-table.edit tbody tr td input[type=file] {
    width: 100%;
    height: 50px;
}

.leo-table.edit .leo-input-upload {
    padding: 0;
    margin: 0;
    height: 100%;
}

    .leo-table.edit .leo-input-upload > img {
        width: 50px;
        height: 50px;
        cursor: pointer;
        display: block;
        margin: 0 auto;
    }
/*#endregion*/
.leo-menuright-opt {
    margin-bottom: 10px;
}

    .leo-menuright-opt div {
        line-height: 30px;
    }

    .leo-menuright-opt label {
        padding-left: 20px;
    }

    .leo-menuright-opt input[type=checkbox] {
        font-size: 14px;
        margin-right: 5px;
    }

    .leo-menuright-opt select {
        height: 28px;
        line-height: 26px;
        font-size: 12px;
        margin-left: 5px;
    }

/*#region tab*/
.leo-tab {
    display: block;
    width: 100%;
}

.leo-search-container .leo-tab {
    position: absolute;
    left: 0;
    top: 5px;
}

.leo-tab .leo-tab-header {
    text-align: left;
}

.leo-tab-header {
    clear: both;
    font-size: 0;
}

    .leo-tab-header a {
        font-size: 12px;
        cursor: pointer;
        line-height: 30px;
        border: 1px solid #e5e5e5;
        border-left: none;
        display: inline-block;
        background: #fafafa;
        position: relative;
        padding: 0 15px;
    }

        .leo-tab-header a:first-child {
            border-left: 1px solid #e5e5e5;
        }

        .leo-tab-header a:hover {
            text-decoration: none;
        }

        .leo-tab-header a.select {
            background: #2fb3ff;
            padding-top: 1px;
            color: #fff;
            border: 1px solid #2fb3ff;
        }

            .leo-tab-header a.select::after {
                -webkit-transform: rotate(45deg);
                -moz-transform: rotate(45deg);
                -ms-transform: rotate(45deg);
                -o-transform: rotate(45deg);
                transform: rotate(45deg);
                background-color: inherit;
                position: absolute;
                display: block;
                bottom: -2px;
                content: "";
                height: 5px;
                width: 5px;
                right: 50%;
            }

    .leo-tab-header img.plus, .leo-tab-header img.select, .leo-tab-header img.reload, .leo-tab-header img.piliangtianjia {
        width: 32px;
        height: 32px;
        cursor: pointer;
        margin-left: 5px;
    }

    .leo-tab-header img.piliangtianjia {
        width: 28px;
        height: 28px;
    }

.leo-tab-content {
}

.leo-tab-item {
    display: none;
    position: relative;
    padding-top: 20px;
}

    .leo-tab-item.select {
        display: block;
    }
/*#endregion*/

/*#region steps*/
.leo-steps {
}

    .leo-steps .steps-item:last-child .steps-text {
        border: none;
    }

    .leo-steps .steps-line {
        width: 30px;
    }

        .leo-steps .steps-line .line-before,
        .leo-steps .steps-line .line-circle,
        .leo-steps .steps-line .line-after {
            width: 1px;
            background-color: #999;
        }

    .leo-steps .steps-item.active .steps-line .line-before,
    .leo-steps .steps-item.active .steps-line .line-circle,
    .leo-steps .steps-item.active .steps-line .line-after {
        background-color: #28a745;
    }

    .leo-steps .steps-item.active .steps-text {
        color: #28a745;
    }

    .leo-steps .steps-line .line-before {
        height: 6px;
    }

        .leo-steps .steps-line .line-before.first {
            background-color: transparent !important;
        }



    .leo-steps .steps-line .line-circle {
        width: 5px;
        height: 5px;
        -webkit-border-radius: 100px;
        border-radius: 100px;
        background-color: #999;
    }

    .leo-steps .steps-line .line-after {
    }

    .leo-steps .steps-line .line-check {
        font-size: 12px;
        color: #999;
    }

        .leo-steps .steps-line .line-check.active {
            color: #28a745;
        }
/*#endregion**/

.leo-detail-table {
    width: 710px;
    margin: 0 auto;
}

    .leo-detail-table table {
        width: 100%;
        border-left: 1px solid #000000;
        border-top: 1px solid #000000;
        table-layout: fixed;
    }

        .leo-detail-table table td, .leo-detail-table table td th {
            border-right: 1px solid #000000;
            border-bottom: 1px solid #000000;
            padding: 10px;
            font-size: 14px;
        }

            .leo-detail-table table td th {
                font-weight: normal !important;
                width: 25%;
            }

            .leo-detail-table table td td {
                text-align: center;
                border: none;
                border-top: 1px solid #000000;
                border-left: 1px solid #000000;
            }

        .leo-detail-table table table {
            width: 100%;
            border: none;
            margin-left: -1px;
        }

            .leo-detail-table table table thead tr th:last-child {
                border-right: none;
            }

.leo-card {
    position: relative;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border-radius: .25rem;
    border: 0.0625rem solid #dee2e6;
}

.leo-card-header {
    border-bottom: 1px solid #dee2e6;
    padding: 10px;
}

.leo-card-title {
    font-size: 0.125rem;
    line-height: 1.2;
    font-weight: bold;
    position: relative;
    color: #333;
    font-size: 14px;
    font-weight: bold;
}

.leo-card-body {
    padding: 10px;
}
/*

@media screen and (min-width:1700px) {
    .leo-input-row {
        width: 25%;
    }

    #orderContainer .leo-input-row {
        width: 33.33333333%;
    }
}

@media screen and (max-width:1199px) {
    .leo-input-row {
        width: 33.33333333%;
    }
}

@media screen and (max-width:600px) {
    .leo-input-row, .leo-input-row.w50, .leo-input-row.w25, .leo-input-row.w33 {
        width: 100%;
    }

    .leo-form-content {
        padding: 0.625rem 0;
    }
}

@media screen and (min-width:601px) and (max-width:901px) {
    .leo-input-row {
        width: 50%;
    }
}
*/

/*.toolbar {
    text-align: right;
}
*/
/*#region console*/
.console-header {
    background: #ffffff;
    -webkit-box-shadow: 0 1px 1px 0 #dadada;
    box-shadow: 0 1px 1px 0 #dadada;
    left: 180px;
    top: 0;
    right: 0;
    position: fixed;
    z-index: 999;
    height: 3.625rem;
}

.console-header-left {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    padding: 0.3125rem 0 0 1.25rem;
}

    .console-header-left .title {
        margin-bottom: 0.25rem;
        font-weight: 600;
        color: #333;
        font-size: 1.25rem;
    }

    .console-header-left .message {
        color: #555;
    }

.console-header-right {
    float: right;
    position: relative;
    padding-right: 0.625rem;
}

    .console-header-right .user {
        cursor: pointer;
        height: 3.625rem;
        position: relative;
        background-color: #fff;
        padding-top: 0.5rem;
    }

        .console-header-right .user img {
            width: 2.5rem;
            height: 2.5rem;
            position: absolute;
            left: 0.125rem;
            top: 0.5rem;
            border-radius: 2.5rem;
        }

        .console-header-right .user h3 {
            height: 1.75rem;
            line-height: 1.75rem;
            padding: 0 1.875rem 0 3.125rem;
            color: #668dff;
        }

        .console-header-right .user h4 {
            margin-top: -0.3125rem;
            font-size: 0.75rem;
            color: #555;
            padding: 0 1.875rem 0 3.125rem;
        }

        .console-header-right .user .more {
            position: absolute;
            right: 0.625rem;
            top: 50%;
            margin-top: -0.625rem;
            color: #dadada;
        }

        .console-header-right .user:hover .more {
            color: #555555;
        }

        .console-header-right .user .more:before {
            content: "\e601";
        }

        .console-header-right .user:hover .more:before {
            content: "\e602";
        }

        .console-header-right .user .leo-dropdown-menu {
            top: 3.625rem;
        }

        .console-header-right .user:hover .leo-dropdown-menu {
            display: block;
        }

    .console-header-right .tool.user {
        padding: 0;
    }

    .console-header-right .tool a {
        display: inline-block;
        width: 2.5rem;
        height: 3.625rem;
        line-height: 3.625rem;
        text-align: center;
        font-size: 1.25rem;
        color: #9ba3af;
        position: relative;
        padding: 0;
    }

        .console-header-right .tool a i {
            height: 0.3125rem;
            width: 0.3125rem;
            border-radius: 50%;
            background: #f90000;
            position: absolute;
            right: 0.625rem;
            top: 0.8125rem;
            display: none;
        }

.console-aside {
    position: fixed;
    z-index: 100;
    width: 180px;
    top: 0;
    bottom: 0px;
    overflow: hidden;
    -moz-box-shadow: 0 0 0.625rem #BDBDBD;
    -webkit-box-shadow: 0 0 0.625rem #BDBDBD;
    box-shadow: 0 0 0.625rem #BDBDBD;
    background-color: #1b2a47;
    background-color: #222b3b;
    padding-top: 125px;
}

    .console-aside.bg-white {
        background-color: #ffffff;
        overflow: auto;
    }

body > .console-aside.bg-white {
    top: 0px;
}

.console-aside .logo {
    text-align: center;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    background-color: #222b3b;
}

    .console-aside .logo .md {
        width: 170px;
        margin-top: 10px;
    }

    .console-aside .logo .sm {
        height: 3.125rem;
        display: none;
    }


.console-aside .nav {
    overflow: auto;
    margin: 0;
    padding: 0;
    height: 100%;
    background-color: #222b3b;
    width: 100%;
}

    .console-aside .nav .nav-main {
        cursor: pointer;
        border-bottom: 1px solid #354156;
        -webkit-transition: all .15s ease-out 0s;
        transition: all .15s ease-out 0s;
    }

        .console-aside .nav .nav-main .title {
            background-color: transparent;
            line-height: 49px;
            color: #245582;
            position: relative;
            border-bottom: 1px solid #354156a8;
        }

            .console-aside .nav .nav-main .title a {
                display: block;
            }

        .console-aside .nav .nav-main.active {
            background-color: #222b3b;
        }

            .console-aside .nav .nav-main.active .title {
                background-color: #222b3b;
                color: #fff;
            }

                .console-aside .nav .nav-main.active .title .iconfont,
                .console-aside .nav .nav-main.active .title .text {
                    color: #fff;
                }

        .console-aside .nav .nav-main .iconfont {
            width: 1.875rem;
            height: 2.5rem;
            text-align: center;
            color: #8b919e;
            position: absolute;
            /* left: 0; */
            top: 0;
        }

        .console-aside .nav .nav-main .text {
            color: #8b919e;
            font-size: 0.875rem;
            padding-left: 1.875rem;
        }

        .console-aside .nav .nav-main .active .text {
            color: #f0f5ff;
        }

        .console-aside .nav .nav-main ul {
            display: none;
            -webkit-transition: all .15s ease-out 0s;
            transition: all .15s ease-out 0s;
        }

        .console-aside .nav .nav-main.active > ul {
            display: block;
        }

        .console-aside .nav .nav-main ul li {
            line-height: 2.5rem;
            position: relative;
        }

            .console-aside .nav .nav-main ul li:hover {
                background-color: #131B28;
            }
            /* 
.console-aside .nav .nav-main ul li:after {
	content: "";
	width: 100%;
	height: 0.0625rem;
	background: #283040;
	display: table;
	margin: 0 auto;
} */

            .console-aside .nav .nav-main ul li:last-child:after {
                background-color: transparent;
            }

            .console-aside .nav .nav-main ul li a {
                display: block;
                text-indent: 0.875rem;
                height: 2.5rem;
                overflow: hidden;
                position: relative;
                padding-right: 0.625rem;
            }


            .console-aside .nav .nav-main ul li .text {
                padding-left: 1.25rem;
            }

            .console-aside .nav .nav-main ul li.active {
                background-color: #131B28;
                color: #fff !important;
            }

                .console-aside .nav .nav-main ul li.active .iconfont {
                    color: #fff !important;
                }

.console-body {
    position: relative;
    overflow: hidden;
    height: 100%;
}

.console-header ~ .console-body {
    padding-top: 3.625rem;
}

.console-aside ~ .console-body {
    margin-left: 180px;
}

    .console-aside ~ .console-body .leo-table-content {
        overflow: auto;
    }

.console-body-iframe {
    width: 100%;
    height: 100%;
}
/*#endregion*/

/*#region renshi nav **/
.renshi-nav {
    width: 100%;
    height: 100%;
    overflow: auto;
}

    .renshi-nav ul li {
        border-bottom: 0;
        line-height: 35px;
        display: block;
    }

    .renshi-nav ul > li, .renshi-nav ul > li > a, .renshi-nav > ul > li > a > .iconfont {
        line-height: 49px;
    }

    .renshi-nav > ul > li {
        background: #2B3648;
    }

    .renshi-nav ul li a {
        color: #fff;
        border-bottom: 1px solid #354156a8;
        display: block;
    }

        .renshi-nav ul li a .iconfont {
            height: 49px;
            width: 40px;
            text-align: center;
        }

        .renshi-nav ul li a .txt {
            font-size: 16px;
        }

    .renshi-nav ul li li .iconfont {
        line-height: 35px;
        height: 35px;
        width: 35px;
    }

    .renshi-nav ul li .inactive {
    }

    .renshi-nav ul li .inactives {
        background: #1e9fffa8;
    }

        .renshi-nav ul li .inactives ~ ul {
            display: block;
        }

    .renshi-nav ul li li .inactives {
        background: #1e9fff63;
    }

        .renshi-nav ul li li .inactives span {
            transform: rotate(90deg);
            -ms-transform: rotate(90deg);
            -moz-transform: rotate(90deg);
            -webkit-transform: rotate(90deg);
            -o-transform: rotate(90deg);
        }

    .renshi-nav ul li ul {
        display: none;
    }

    .renshi-nav ul li ul {
        background: #222b3b;
    }

        .renshi-nav ul li ul li, .renshi-nav ul li ul li a {
            line-height: 35px;
        }

            .renshi-nav ul li ul li ul {
                display: none;
            }

            .renshi-nav ul li ul li a {
                padding-left: 8px;
            }

            .renshi-nav ul li ul li ul li {
                background-color: #222b3b;
            }

                .renshi-nav ul li ul li ul li a {
                    color: #20262f;
                    padding-left: 43px;
                    color: #ffffffa8;
                }

                    .renshi-nav ul li ul li ul li a:hover {
                        color: #fff;
                    }
/*#endregion*/

/*#region login*/
.leo-login {
    background-image: url('../Images/login/login_bg.png');
    background-repeat: no-repeat;
    background-size: 60% 100%;
    width: 100%;
    height: 100%;
}

    .leo-login .leo-alert-danger {
        overflow: hidden;
        margin-top: 20px;
        border-radius: 0.125rem;
    }

.leo-login-logo {
    width: 12.5rem;
    margin: 1.875rem 2.5rem;
}

.leo-login-image {
    width: 30%;
    position: absolute;
    top: 50%;
    margin-top: -18%;
    left: 14%;
}

.leo-login-right {
    position: absolute;
    width: 40%;
    right: 0;
    top: 0;
    bottom: 0;
}

.leo-login .langauge {
    position: absolute;
    right: 1.25rem;
    top: 1.25rem;
    z-index: 100;
}

    .leo-login .langauge:hover .leo-dropdown-menu {
        display: block;
    }

    .leo-login .langauge a {
        border-radius: 0rem;
        padding: 0.625rem 1rem;
    }

    .leo-login .langauge .iconfont {
        font-size: 0.75rem;
        margin-left: 0.3125rem;
    }

        .leo-login .langauge .iconfont:before {
            content: "\e601";
        }

    .leo-login .langauge:hover .iconfont:before {
        content: "\e602";
    }

    .leo-login .langauge .leo-dropdown-menu {
        background-color: #2fb3ff;
        box-shadow: none;
        color: #fff;
        border-radius: 0rem;
    }

.leo-login-form {
    width: 80%;
    max-width: 400px;
    padding: 1.25rem;
    font-weight: bold;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -30%;
    margin-top: -250px;
}

    .leo-login-form h1 {
        padding: 1.25rem;
        text-align: center;
        font-size: 1.375rem;
        margin-bottom: 10px;
    }

    .leo-login-form .leo-input-row {
        margin-bottom: 26px;
        width: 100%;
        padding: 0;
    }

        .leo-login-form .leo-input-row label {
            position: absolute;
            left: 0px;
            top: 0px;
            width: 48px;
            line-height: 48px;
            text-align: center;
            color: #888;
        }

        .leo-login-form .leo-input-row input {
            padding-left: 48px;
            border-radius: 5px;
            height: 48px;
        }

            .leo-login-form .leo-input-row input:focus ~ label {
                color: #0071e6;
            }

    .leo-login-form .leo-btn-blue, .leo-login-form .leo-btn-gray {
        width: 100%;
        display: block;
        position: relative;
        cursor: pointer;
    }

        .leo-login-form .leo-btn-gray img {
            position: absolute;
            right: 0px;
            top: 8px;
        }

    .leo-login-form .forget {
        font-size: 0.75rem;
        font-weight: normal;
        text-align: right;
        display: block;
        color: #888;
    }

        .leo-login-form .forget:hover {
            text-decoration: underline;
        }

.leo-login .leo-footer {
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    height: auto;
}

    .leo-login .leo-footer p {
        color: #888888;
        text-align: center;
        padding-bottom: 0.625rem;
    }

.leo-login-form .leo-btn-blue, .leo-login-form .leo-btn-gray {
    padding: 10px;
    font-size: 16px;
}

@media screen and (max-width:700px) {
    .leo-login {
        background-image: none;
        background-color: #4294ff;
    }

    .leo-login-image {
        display: none;
    }

    .leo-login-logo {
        width: 9.375rem;
    }

    .leo-login-right {
        width: 100%;
    }

    .leo-login .langauge {
        top: 2.8125rem;
    }

    .leo-login-form h1 {
        color: #FFFFFF;
    }

    .leo-login-form .forget {
        color: #FFFFFF;
    }

    .leo-login .leo-footer p {
        color: #FFFFFF;
        padding: 0 1.25rem;
    }

        .leo-login .leo-footer p.browser {
            display: none;
        }

    .leo-login .leo-footer {
        background-color: transparent;
    }

    .leo-login .leo-login-form {
        margin-left: -45%;
        max-width: none;
        width: 90%;
    }
}

/*#endregion*/

/*#region tdc*/
.tdc-title {
    font-weight: bold;
    padding-bottom: 10px;
    text-align: center;
    font-size: 20px;
}

.tdc-brief {
    width: 100%;
    background-color: #f8f8f9;
    border: 1px solid #eee;
    padding: 10px;
    margin-bottom: 10px;
}

.tdc-article p {
    line-height: 20px;
}

.tdc-article pre {
    border-radius: 5px;
    background-color: #e6e9ea;
    padding: 10px !important;
}
/*#endregion*/

/*#region doc*/
.doc-body {
    height: 100%;
    width: 100%;
}

.doc-nav {
    width: 100%;
    z-index: 10;
    box-shadow: 0 2px 4px #e1e5e9;
    padding: 14px 0;
    text-align: center;
    border-bottom: 1px solid #eee;
    position: fixed;
    background: #fff;
    padding: 9px 0;
    margin: 0;
}

    .doc-nav h1 {
        font-weight: bold;
    }

.doc-content {
}

.doc-nav ~ .doc-content {
    padding-top: 43px;
}

.doc-content {
    position: relative;
    height: 100%;
    width: 100%;
}

.doc-toolbar {
    background-color: #f9fafb;
    border-bottom: 1px solid #f0f0f0;
    padding: 0 10px;
    position: absolute;
    top: 43px;
    left: 0;
    right: 0;
    z-index: 100;
}

.doc-toolbar-btns a {
    color: #09AAFF;
    padding: 0 10px;
    display: inline-block;
    vertical-align: top;
    border: 1px solid #83bdff;
    line-height: 32px;
    margin-top: 7px;
    border-radius: 4px;
    margin-right: 10px;
    font-size: 14px;
}

    .doc-toolbar-btns a:hover {
        color: #0071e6;
    }

    .doc-toolbar-btns a i {
        margin-right: 5px;
    }

.doc-search {
    position: absolute;
    top: 0px;
    right: 0;
    z-index: 100;
    width: 340px;
}

.doc-search-form {
    padding-left: 15px;
    padding-right: 54px;
    background: #f1f2f4;
    border-radius: 33px;
    width: 250px;
    margin-top: 6px;
    position: relative;
}

    .doc-search-form input {
        width: 100%;
        height: 38px;
        background: 0 0;
        border: 0;
        outline: 0;
        font-size: 12px;
    }

    .doc-search-form .iconfont {
        position: absolute;
        top: 0;
        height: 38px;
        display: block;
        line-height: 38px;
        font-size: 18px;
        font-weight: bold;
        right: 0;
        width: 38px;
        text-align: center;
        z-index: 200;
        cursor: pointer;
    }

.doc-search-sort {
    margin-top: 6px;
    position: relative;
    padding-left: 5px;
}

    .doc-search-sort .iconfont {
        font-size: 20px;
        line-height: 38px;
        padding: 0 5px;
        cursor: pointer;
    }

        .doc-search-sort .iconfont:hover, .doc-search-form .iconfont:hover {
            color: #0071e6;
        }

.doc-loc {
    line-height: 40px;
    position: relative;
}

.doc-loc-nav {
    color: #666;
}

    .doc-loc-nav a {
        padding: 0 5px;
    }

    .doc-loc-nav .iconfont {
        font-size: 14px;
        line-height: 30px;
    }

.doc-files {
    width: 100%;
    padding-top: 50px;
    overflow: auto;
}

.doc-loc-page a, .doc-loc-page span {
    padding: 0 5px;
}

.doc-checkall {
    padding-bottom: 10px;
}

    .doc-checkall span {
        padding-left: 5px;
    }

.doc-files {
    padding-top: 112px;
    overflow: auto;
    height: 100%;
}

.doc-file {
    width: 120px;
    height: 127px;
    float: left;
    margin: 4px 0 0 6px;
    text-align: center;
    border: 1px solid #fff;
    position: relative;
    border-radius: 5px;
    position: relative;
}

    .doc-file input {
        position: absolute;
        top: 5px;
        left: 5px;
        background-color: #f1f5fa;
        display: none;
    }

    .doc-file p {
        margin: 6px 5px 5px;
        font-size: 14px;
    }

    .doc-file.leo-active, .doc-file:hover {
        background-color: #f1f5fa;
        border: 1px solid #83bdff;
    }

        .doc-file.leo-active input, .doc-file:hover input {
            display: block;
        }

.doc-media {
    position: relative;
    margin: 9px auto 0;
    width: 84px;
    height: 84px;
    overflow: hidden;
}

    .doc-media .iconfont {
        font-size: 70px;
        color: #ffd659;
    }

    .doc-media img {
        width: 100%;
    }
/*#endregion*/

/*#region doc upload*/
.doc-upload {
    height: 100%;
    width: 100%;
}

.doc-uploadfiles {
    padding-bottom: 112px;
    overflow: auto;
    height: 100%;
}

.doc-uploadfile {
    width: 120px;
    float: left;
    margin: 4px 0 0 6px;
    text-align: center;
    position: relative;
    border-radius: 5px;
    border: 0.0625rem solid #ced4da;
}

    .doc-uploadfile .icon-shanchu {
        position: absolute;
        left: 0;
        top: 0;
        padding: 3px;
        cursor: pointer;
        z-index: 100;
    }

    .doc-uploadfile .icon-tijiaochenggong {
        position: absolute;
        right: 0;
        top: 0;
        cursor: pointer;
        z-index: 100;
        color: #26d769;
        display: none;
    }

    .doc-uploadfile .progress {
        position: absolute;
        left: 0;
        bottom: 2px;
        right: 0;
        z-index: 100;
        width: 100%;
        background-color: #ddd;
        height: 18px;
        border-radius: 16px;
        display: none;
    }

        .doc-uploadfile .progress div {
            width: 0%;
            background-color: #26d769;
            height: 100%;
            border-radius: 16px;
            line-height: 20px;
            color: #ffffff;
        }

.doc-uploadmedia {
    position: relative;
    margin: 0px auto 0;
    width: 84px;
    height: 84px;
    overflow: hidden;
}

    .doc-uploadmedia .iconfont {
        font-size: 70px;
        color: #ffd659;
    }

    .doc-uploadmedia img {
        width: 100%;
    }

.doc-uploadfile input {
    border: none;
    border-top: 0.0625rem solid #ced4da;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    text-align: center;
}

.doc-uploadplaceholder {
    width: 120px;
    margin: 4px 0 0 6px;
    text-align: center;
    position: relative;
    border-radius: 5px;
    padding-top: 10px;
}

    .doc-uploadplaceholder input {
        overflow: hidden;
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 100;
        opacity: 0;
        cursor: pointer;
    }

.doc-contextmenu {
    -moz-box-shadow: 0 0.1875rem 0.375rem rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: 0 0.1875rem 0.375rem rgba(0, 0, 0, 0.3);
    box-shadow: 0 0.1875rem 0.375rem rgba(0, 0, 0, 0.3);
    padding: 0.1875rem 0;
    min-height: 0;
    background-color: #245582;
    border-radius: 0.1875rem;
    position: fixed;
    left: 100px;
    top: 50px;
    width: 150px;
    color: #ffffff;
    padding: 8px 0;
    z-index: 1000;
}

    .doc-contextmenu a {
        color: #ffffff;
        display: block;
        font-size: 14px;
        padding: 8px;
    }

        .doc-contextmenu a:hover {
            color: #8b919e;
        }

        .doc-contextmenu a i {
            margin-right: 5px;
        }

    .doc-contextmenu span {
        border-bottom: 2px solid #697386;
        display: block;
        margin: 5px 8px;
    }

.doc-gtlist {
    padding: 20px 20px 0 20px;
    overflow: auto;
    height: 100%;
}

.doc-gtitem {
    position: relative;
    width: 60%;
    margin-bottom: 10px;
    border-bottom: 1px solid #f0f0f0;
}

.doc-gtitem-photo {
    position: absolute;
    left: 0;
    top: 0;
}

.doc-gtitem.leo-pull-right .doc-gtitem-photo {
    left: auto;
    right: 0;
}

.doc-gtitem-photo img {
    width: 45px;
    height: 45px;
    border-radius: 45px;
}

.doc-gtitem-photo p {
    text-align: center;
    width: 100%;
    margin-bottom: 10px;
}

    .doc-gtitem-photo p .leo-alert {
        padding: 5px 8px;
        display: block;
        margin-bottom: 4px;
    }

.doc-gtitem-photo a {
    display: block;
    padding: 10px;
}

.doc-gtitem-content {
    padding-left: 60px;
    min-height: 120px;
}

.doc-gtitem.leo-pull-right .doc-gtitem-content {
    padding-left: 0;
    padding-right: 60px;
    text-align: right;
}

.doc-gtitem-content .tool {
    padding-bottom: 10px;
}

    .doc-gtitem-content .tool span {
        line-height: 20px;
        color: #9b9ea0;
    }

    .doc-gtitem-content .tool a {
        line-height: 20px;
        padding: 0 10px;
    }

    .doc-gtitem-content .tool .leo-alert {
        padding: 5px 8px;
    }


.doc-article {
    padding-top: 54px;
    padding-left: 250px;
    overflow: auto;
}

.doc-article-item {
    margin: 15px 25px 10px;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 10px;
}

    .doc-article-item h3 {
        font-size: 14px;
        color: #161616;
        font-weight: 500;
        width: 90%;
        padding-bottom: 10px;
    }

        .doc-article-item h3 a {
            color: #161616;
        }

.doc-article-summary {
    color: #6c6c6c;
    line-height: 20px;
}

.doc-article-time {
    font-size: 12px;
    font-weight: normal;
    color: #999;
    line-height: 30px;
}

    .doc-article-time span {
        margin-right: 10px;
    }

.doc-article-tool a {
    line-height: 20px;
    padding: 0 10px;
}

    .doc-article-tool a.icon-icon_chakan {
        font-weight: bold;
        font-size: 20px;
    }
/*#endregion*/


.card-small a {
    width: 46%;
    padding: 8%;
    margin-right: 4%;
}

    .card-small a:hover {
        color: #ffffff;
    }


.leo-btn-gray.fixed-right {
    display: block;
    padding: 2px 15px;
    top: 20px;
}

p.statuscolor {
    color: #ffffff;
    padding: 5px;
    border-radius: 5px;
}

/*#endregion*/

button {
    cursor: pointer;
}

.iants-layout-aside {
    box-shadow: 1px 0 2px 0 rgba(0, 0, 0, .05);
    width: 208px;
    z-index: 300;
    /*  background-color: #262e3b;*/
    background-color: #1d2b37;
    border-top: 2px solid #262e3b;
    transition: all .3s;
    -webkit-transition: all .3s;
    bottom: 0;
}

.iants-layout-nav {
    /*    color: rgba(255, 255, 255, .7);*/
    color: #9ab6ca;
    height: calc(100% - 56px);
    border-top: 1px solid #16222c;
}

.iants-layout-aside ::-webkit-scrollbar-track-piece { /*内层轨道，滚动条中间部分（除去）。*/
    background: #152036;
}

.iants-layout-aside ::-webkit-scrollbar-thumb {
    background: #485163;
}

.iants-layout-aside.bg-white ::-webkit-scrollbar-track-piece { /*内层轨道，滚动条中间部分（除去）。*/
    background: rgb(240, 240, 240);
}

.iants-layout-aside.bg-white ::-webkit-scrollbar-thumb {
    background: rgb(180, 180, 180);
}

.iants-layout-nav .nav-title,
.iants-layout-nav .nav-subtitle {
    /*    border-bottom: 1px #434c59 solid;*/
    cursor: pointer;
}

.iants-layout-nav .nav-title {
    background: #1d2b37;
    padding: 14px 10px 14px 0px;
    position: relative;
}

    .iants-layout-nav .nav-title.select {
        background: #131e27;
        color: rgba(255, 255, 255);
    }

    .iants-layout-nav .nav-title .split {
        width: 2px;
        background-color: #4795e7;
        display: none;
        left: 0;
    }

    .iants-layout-nav .nav-title .first {
        width: 40px;
        text-align: center;
    }

.iants-layout-nav .nav-subtitle {
    padding: 0px 10px;
    /*border-bottom: 1px #434c59 solid;*/
    position: relative;
    font-size: 13px;
}

    .iants-layout-nav .nav-subtitle a {
        color: #ffffff;
    }
/*.iants-layout-nav li  {
    background: #131e27 url(/Content/Images/Tree/hline.png) no-repeat 15px center;
}*/
/* .iants-layout-nav .nav-subtitle:before {
        position: absolute;
        width: 1px;
        height: 100%;
        color: #5c8098;
        top: 50%;
        margin-top: -8px;
        font-size: 12px;
    }*/
/*.iants-layout-nav .nav-subtitle .split {
        width: 1px;*/
/* background-color: #4795e7;*/
/*left: 15px;
        top: 0;
        background-image: url(/Content/Images/Tree/hline.png);
        background-size: 100% 100%;
    }*/
/* .iants-layout-nav .nav-subtitle .split.top {
            background-image: url(/Content/Images/Tree/tree-open-line.png);
            left: 11px;
        }*/
/* .iants-layout-nav .nav-subtitle .split.top {
            top: 24px;
        }*/
.iants-layout-nav .hline {
    width: 20px;
    background: url(../Images/menu/hline.png) repeat-y left center;
}

.iants-layout-nav .vline {
    width: 17px;
    background: url(../Images/menu/vline.png) no-repeat left center;
}

.iants-layout-nav .vlinelast {
    width: 17px;
    background: url(../Images/menu/vlinelast.png) no-repeat left center;
}

.iants-layout-nav .close-line {
    background: url(../Images/menu/tree-close-line.html) no-repeat 1px center;
    width: 13px;
    cursor: pointer;
}

.iants-layout-nav .open-line {
    background: url(../Images/menu/tree-open-line.png) no-repeat left center;
    width: 13px;
    cursor: pointer;
}

.iants-layout-nav .open-line-top {
    background: url(../Images/menu/tree-open-line-top.png) no-repeat left center;
    width: 13px;
    cursor: pointer;
}

.iants-layout-nav .open-line-top-select {
    background: url(../Images/menu/tree-open-line-top-select.png) no-repeat left center;
    width: 13px;
    cursor: pointer;
}

.iants-layout-nav .open-line-select {
    background: url(../Images/menu/tree-open-line-select.png) no-repeat left center;
    width: 13px;
    cursor: pointer;
}

.iants-layout-nav .nav-subtitle.bg-primary {
    color: white;
    font-weight: bold;
}

.iants-layout-nav .nav-subtitle.lastselect {
    color: #ffffff;
    font-weight: bold;
}
/*.iants-layout-nav .nav-subtitle:hover .split {
        display: block;
        color: #2075db;
    }*/


/*.iants-layout-nav .nav-subtitle.select {
    font-weight: bold;
    color: #000;
}*/

.iants-layout-nav ul {
    transition: all .3s;
    -webkit-transition: all .3s;
    /* background-color: #131e27;*/
    background-color: #1d2b37;
    position: relative;
}

    .iants-layout-nav ul ul {
        background-color: #131e27;
    }

.iants-badge {
    color: #fff;
    right: 10px;
    background-color: red;
    padding: 1px 3px;
    border-radius: 2px;
    text-align: center;
}

#nav .iants-badge {
    width: 20px;
    height: 20px;
    top: 50%;
    margin-top: -10px;
    padding: 0;
}

    #nav .iants-badge.flex.hidden {
        display: none !important;
    }

.iants-layout-aside.small {
    width: 60px;
}

    .iants-layout-aside.small .nav-title {
        padding: 14px 0;
    }

        .iants-layout-aside.small .nav-title .first {
            width: 100%;
        }

        /*.iants-layout-aside.small ul ul {
        display: none !important;
    }*/

        .iants-layout-aside.small .nav-title .ml-auto,
        .iants-layout-aside.small .nav-title span {
            display: none !important;
        }


.iants-layout-top {
    left: 208px;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, .1);
    transition: all .3s;
    -webkit-transition: all .3s;
}

    .iants-layout-top menu {
        display: none;
        z-index: 1040;
        top: 34px;
        right: 15px;
    }

    .iants-layout-top .user:hover menu {
        display: block;
    }

    .iants-layout-top menu a:hover {
        color: #E2E2E2;
    }

.iants-layout-aside.small ~ .iants-layout-top {
    left: 60px;
}

.iants-layout-body {
    padding: 84px 0 0 208px;
    height: 100%;
    overflow: hidden;
}

.iants-layout-aside.small ~ .iants-layout-body {
    padding-left: 60px;
    transition: all .3s;
    -webkit-transition: all .3s;
}

.iants-layout-logo {
    padding: 2px 10px;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, .15);
}

    .iants-layout-logo img {
        height: 46px;
    }


.iants-header .iconfont:hover {
    color: #333333;
    cursor: pointer;
    font-weight: bold;
}

.iants-pagetab .absolute-left,
.iants-pagetab .absolute-right {
    width: 36px;
    line-height: 36px;
    text-align: center;
}



/* 20210114添加 */
.iants-layout-logo {
    overflow: hidden;
}

.iants-layout-aside.small > .iants-layout-nav > ul > li:hover > ul {
    position: fixed;
    margin-top: -50px;
    background: #333d4b;
    left: 58px;
    display: block !important;
}

/*.iants-layout-aside.small ul ul li .nav-subtitle + ul {
    display: none !important;
}*/

.iants-pagetab {
    height: 36px;
    box-shadow: 0 4px 6px 0 rgb(8 14 26 / 4%), 0 1px 10px 0 rgb(8 14 26 / 5%), 0 2px 4px -1px rgb(8 14 26 / 6%);
}

.iants-pagetab-tabs {
    padding: 0 74px;
    color: #666;
    overflow: hidden;
    width: 100%;
    height: 100%;
    position: relative;
}

    .iants-pagetab-tabs ul {
        transition: all .3s;
        -webkit-transition: all .3s;
    }

    .iants-pagetab-tabs li {
        line-height: 36px;
        /*max-width: 160px;*/
        text-overflow: ellipsis;
        padding-right: 36px;
        /*padding-left: 10px;*/
        overflow: hidden;
        border-right: 1px solid #f6f6f6;
        transition: all .2s;
        -webkit-transition: all .2s;
        border-top: 2px solid transparent;
        float: left;
        cursor: pointer;
        min-width: 80px;
        text-align: left;
    }

        .iants-pagetab-tabs li:hover {
            background-color: #f6f6f6;
        }

        .iants-pagetab-tabs li.active {
            background-color: #f6f6f6;
            border-top: 2px solid #262e3b;
            color: #000000;
        }

        .iants-pagetab-tabs li span {
            padding-left: 10px;
            display: block;
        }

    .iants-pagetab-tabs .icon-hebingxingzhuang {
        color: #c2c2c2;
        z-index: 1000;
    }

.iants-pagetab-control {
    border-right: 1px solid #f6f6f6;
    color: #666;
}

    .iants-pagetab-control.icon-gengduo menu {
        width: 120px;
        right: 0;
    }

    .iants-pagetab-control.icon-gengduo:hover menu {
        display: block;
    }

/*#region tab*/
.iants-tab {
    width: 100%;
    height: 100%;
}

.iants-tabheader {
    width: 100%;
    cursor: pointer;
}

    .iants-tabheader .active {
        border-bottom: 2px solid #000000;
        font-size: 15px !important;
    }

        .iants-tabheader .active span:first-child {
            font-weight: bold;
        }

.iants-tabcontent {
    height: calc(100% - 43px);
}
/*#endregion*/


/*#regin dialog*/
.iants-backdrop {
    background-color: rgba(0, 0, 0, .2);
    z-index: 999;
}

.iants-dialog {
    width: 300px;
    height: 180px;
    z-index: 1031;
    top: 50%;
    left: 50%;
    margin: -150px 0 0 -90px;
}

.iants-dialog-header {
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

    .iants-dialog-header .headertool .iconfont {
        cursor: pointer;
    }

        .iants-dialog-header .headertool .iconfont:hover {
            color: orangered;
        }

.iants-dialog-body {
    padding-top: 40px;
    height: 100%;
}

.iants-dialog-footer {
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

    .iants-dialog-footer ~ .iants-dialog-body {
        padding-bottom: 43px;
    }

.iants-toast-container {
    line-height: 17px;
    position: fixed;
    z-index: 9999;
    top: 70px;
    left: 50%;
    -webkit-transition: opacity .3s;
    -moz-transition: opacity .3s;
    -o-transition: opacity .3s;
    transition: opacity .3s;
    -webkit-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    -o-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    opacity: 0;
}

    .iants-toast-container.loading {
        top: 30%;
    }

    .iants-toast-container.active {
        opacity: .9;
    }

.iants-toast-message {
    font-size: 14px;
    padding: 10px 25px;
    text-align: center;
    color: #fff;
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
    border-radius: 6px;
    background-color: #323232;
}

    .iants-toast-message span {
        color: #fff;
    }

    .iants-toast-message img {
        display: block;
        margin: 0 auto 10px;
        width: 60px;
    }

/*#endregion*/

/*#region plugin*/

/*#region animate**/
@charset "UTF-8";

/*!
 * animate.css -https://daneden.github.io/animate.css/
 * Version - 3.7.2
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2019 Daniel Eden
 */

@-webkit-keyframes bounce {
    from, 20%, 53%, 80%, to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    40%, 43% {
        -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        -webkit-transform: translate3d(0, -30px, 0);
        transform: translate3d(0, -30px, 0);
    }

    70% {
        -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        -webkit-transform: translate3d(0, -15px, 0);
        transform: translate3d(0, -15px, 0);
    }

    90% {
        -webkit-transform: translate3d(0, -4px, 0);
        transform: translate3d(0, -4px, 0);
    }
}

@keyframes bounce {
    from, 20%, 53%, 80%, to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    40%, 43% {
        -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        -webkit-transform: translate3d(0, -30px, 0);
        transform: translate3d(0, -30px, 0);
    }

    70% {
        -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        -webkit-transform: translate3d(0, -15px, 0);
        transform: translate3d(0, -15px, 0);
    }

    90% {
        -webkit-transform: translate3d(0, -4px, 0);
        transform: translate3d(0, -4px, 0);
    }
}

.bounce {
    -webkit-animation-name: bounce;
    animation-name: bounce;
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
}

@-webkit-keyframes flash {
    from, 50%, to {
        opacity: 1;
    }

    25%, 75% {
        opacity: 0;
    }
}

@keyframes flash {
    from, 50%, to {
        opacity: 1;
    }

    25%, 75% {
        opacity: 0;
    }
}

.flash {
    -webkit-animation-name: flash;
    animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes pulse {
    from {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }

    50% {
        -webkit-transform: scale3d(1.05, 1.05, 1.05);
        transform: scale3d(1.05, 1.05, 1.05);
    }

    to {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

@keyframes pulse {
    from {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }

    50% {
        -webkit-transform: scale3d(1.05, 1.05, 1.05);
        transform: scale3d(1.05, 1.05, 1.05);
    }

    to {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

.pulse {
    -webkit-animation-name: pulse;
    animation-name: pulse;
}

@-webkit-keyframes rubberBand {
    from {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }

    30% {
        -webkit-transform: scale3d(1.25, 0.75, 1);
        transform: scale3d(1.25, 0.75, 1);
    }

    40% {
        -webkit-transform: scale3d(0.75, 1.25, 1);
        transform: scale3d(0.75, 1.25, 1);
    }

    50% {
        -webkit-transform: scale3d(1.15, 0.85, 1);
        transform: scale3d(1.15, 0.85, 1);
    }

    65% {
        -webkit-transform: scale3d(0.95, 1.05, 1);
        transform: scale3d(0.95, 1.05, 1);
    }

    75% {
        -webkit-transform: scale3d(1.05, 0.95, 1);
        transform: scale3d(1.05, 0.95, 1);
    }

    to {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

@keyframes rubberBand {
    from {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }

    30% {
        -webkit-transform: scale3d(1.25, 0.75, 1);
        transform: scale3d(1.25, 0.75, 1);
    }

    40% {
        -webkit-transform: scale3d(0.75, 1.25, 1);
        transform: scale3d(0.75, 1.25, 1);
    }

    50% {
        -webkit-transform: scale3d(1.15, 0.85, 1);
        transform: scale3d(1.15, 0.85, 1);
    }

    65% {
        -webkit-transform: scale3d(0.95, 1.05, 1);
        transform: scale3d(0.95, 1.05, 1);
    }

    75% {
        -webkit-transform: scale3d(1.05, 0.95, 1);
        transform: scale3d(1.05, 0.95, 1);
    }

    to {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

.rubberBand {
    -webkit-animation-name: rubberBand;
    animation-name: rubberBand;
}

@-webkit-keyframes shake {
    from, to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    10%, 30%, 50%, 70%, 90% {
        -webkit-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0);
    }

    20%, 40%, 60%, 80% {
        -webkit-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0);
    }
}

@keyframes shake {
    from, to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    10%, 30%, 50%, 70%, 90% {
        -webkit-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0);
    }

    20%, 40%, 60%, 80% {
        -webkit-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0);
    }
}

.shake {
    -webkit-animation-name: shake;
    animation-name: shake;
}

@-webkit-keyframes headShake {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    6.5% {
        -webkit-transform: translateX(-6px) rotateY(-9deg);
        transform: translateX(-6px) rotateY(-9deg);
    }

    18.5% {
        -webkit-transform: translateX(5px) rotateY(7deg);
        transform: translateX(5px) rotateY(7deg);
    }

    31.5% {
        -webkit-transform: translateX(-3px) rotateY(-5deg);
        transform: translateX(-3px) rotateY(-5deg);
    }

    43.5% {
        -webkit-transform: translateX(2px) rotateY(3deg);
        transform: translateX(2px) rotateY(3deg);
    }

    50% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes headShake {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    6.5% {
        -webkit-transform: translateX(-6px) rotateY(-9deg);
        transform: translateX(-6px) rotateY(-9deg);
    }

    18.5% {
        -webkit-transform: translateX(5px) rotateY(7deg);
        transform: translateX(5px) rotateY(7deg);
    }

    31.5% {
        -webkit-transform: translateX(-3px) rotateY(-5deg);
        transform: translateX(-3px) rotateY(-5deg);
    }

    43.5% {
        -webkit-transform: translateX(2px) rotateY(3deg);
        transform: translateX(2px) rotateY(3deg);
    }

    50% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

.headShake {
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-name: headShake;
    animation-name: headShake;
}

@-webkit-keyframes swing {
    20% {
        -webkit-transform: rotate3d(0, 0, 1, 15deg);
        transform: rotate3d(0, 0, 1, 15deg);
    }

    40% {
        -webkit-transform: rotate3d(0, 0, 1, -10deg);
        transform: rotate3d(0, 0, 1, -10deg);
    }

    60% {
        -webkit-transform: rotate3d(0, 0, 1, 5deg);
        transform: rotate3d(0, 0, 1, 5deg);
    }

    80% {
        -webkit-transform: rotate3d(0, 0, 1, -5deg);
        transform: rotate3d(0, 0, 1, -5deg);
    }

    to {
        -webkit-transform: rotate3d(0, 0, 1, 0deg);
        transform: rotate3d(0, 0, 1, 0deg);
    }
}

@keyframes swing {
    20% {
        -webkit-transform: rotate3d(0, 0, 1, 15deg);
        transform: rotate3d(0, 0, 1, 15deg);
    }

    40% {
        -webkit-transform: rotate3d(0, 0, 1, -10deg);
        transform: rotate3d(0, 0, 1, -10deg);
    }

    60% {
        -webkit-transform: rotate3d(0, 0, 1, 5deg);
        transform: rotate3d(0, 0, 1, 5deg);
    }

    80% {
        -webkit-transform: rotate3d(0, 0, 1, -5deg);
        transform: rotate3d(0, 0, 1, -5deg);
    }

    to {
        -webkit-transform: rotate3d(0, 0, 1, 0deg);
        transform: rotate3d(0, 0, 1, 0deg);
    }
}

.swing {
    -webkit-transform-origin: top center;
    transform-origin: top center;
    -webkit-animation-name: swing;
    animation-name: swing;
}

@-webkit-keyframes tada {
    from {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }

    10%, 20% {
        -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    }

    30%, 50%, 70%, 90% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    }

    40%, 60%, 80% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    }

    to {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

@keyframes tada {
    from {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }

    10%, 20% {
        -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    }

    30%, 50%, 70%, 90% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    }

    40%, 60%, 80% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    }

    to {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

.tada {
    -webkit-animation-name: tada;
    animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes wobble {
    from {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    15% {
        -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
        transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    }

    30% {
        -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
        transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    }

    45% {
        -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
        transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    }

    60% {
        -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
        transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    }

    75% {
        -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
        transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes wobble {
    from {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    15% {
        -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
        transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    }

    30% {
        -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
        transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    }

    45% {
        -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
        transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    }

    60% {
        -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
        transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    }

    75% {
        -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
        transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.wobble {
    -webkit-animation-name: wobble;
    animation-name: wobble;
}

@-webkit-keyframes jello {
    from, 11.1%, to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    22.2% {
        -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
        transform: skewX(-12.5deg) skewY(-12.5deg);
    }

    33.3% {
        -webkit-transform: skewX(6.25deg) skewY(6.25deg);
        transform: skewX(6.25deg) skewY(6.25deg);
    }

    44.4% {
        -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
        transform: skewX(-3.125deg) skewY(-3.125deg);
    }

    55.5% {
        -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
        transform: skewX(1.5625deg) skewY(1.5625deg);
    }

    66.6% {
        -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
        transform: skewX(-0.78125deg) skewY(-0.78125deg);
    }

    77.7% {
        -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
        transform: skewX(0.390625deg) skewY(0.390625deg);
    }

    88.8% {
        -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
        transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    }
}

@keyframes jello {
    from, 11.1%, to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    22.2% {
        -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
        transform: skewX(-12.5deg) skewY(-12.5deg);
    }

    33.3% {
        -webkit-transform: skewX(6.25deg) skewY(6.25deg);
        transform: skewX(6.25deg) skewY(6.25deg);
    }

    44.4% {
        -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
        transform: skewX(-3.125deg) skewY(-3.125deg);
    }

    55.5% {
        -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
        transform: skewX(1.5625deg) skewY(1.5625deg);
    }

    66.6% {
        -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
        transform: skewX(-0.78125deg) skewY(-0.78125deg);
    }

    77.7% {
        -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
        transform: skewX(0.390625deg) skewY(0.390625deg);
    }

    88.8% {
        -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
        transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    }
}

.jello {
    -webkit-animation-name: jello;
    animation-name: jello;
    -webkit-transform-origin: center;
    transform-origin: center;
}

@-webkit-keyframes heartBeat {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    14% {
        -webkit-transform: scale(1.3);
        transform: scale(1.3);
    }

    28% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    42% {
        -webkit-transform: scale(1.3);
        transform: scale(1.3);
    }

    70% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes heartBeat {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    14% {
        -webkit-transform: scale(1.3);
        transform: scale(1.3);
    }

    28% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    42% {
        -webkit-transform: scale(1.3);
        transform: scale(1.3);
    }

    70% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

.heartBeat {
    -webkit-animation-name: heartBeat;
    animation-name: heartBeat;
    -webkit-animation-duration: 1.3s;
    animation-duration: 1.3s;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
}

@-webkit-keyframes bounceIn {
    from, 20%, 40%, 60%, 80%, to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }

    20% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1);
    }

    40% {
        -webkit-transform: scale3d(0.9, 0.9, 0.9);
        transform: scale3d(0.9, 0.9, 0.9);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(1.03, 1.03, 1.03);
        transform: scale3d(1.03, 1.03, 1.03);
    }

    80% {
        -webkit-transform: scale3d(0.97, 0.97, 0.97);
        transform: scale3d(0.97, 0.97, 0.97);
    }

    to {
        opacity: 1;
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

@keyframes bounceIn {
    from, 20%, 40%, 60%, 80%, to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }

    20% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1);
    }

    40% {
        -webkit-transform: scale3d(0.9, 0.9, 0.9);
        transform: scale3d(0.9, 0.9, 0.9);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(1.03, 1.03, 1.03);
        transform: scale3d(1.03, 1.03, 1.03);
    }

    80% {
        -webkit-transform: scale3d(0.97, 0.97, 0.97);
        transform: scale3d(0.97, 0.97, 0.97);
    }

    to {
        opacity: 1;
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

.bounceIn {
    -webkit-animation-duration: 0.75s;
    animation-duration: 0.75s;
    -webkit-animation-name: bounceIn;
    animation-name: bounceIn;
}

@-webkit-keyframes bounceInDown {
    from, 60%, 75%, 90%, to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -3000px, 0);
        transform: translate3d(0, -3000px, 0);
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, 25px, 0);
        transform: translate3d(0, 25px, 0);
    }

    75% {
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0);
    }

    90% {
        -webkit-transform: translate3d(0, 5px, 0);
        transform: translate3d(0, 5px, 0);
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes bounceInDown {
    from, 60%, 75%, 90%, to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -3000px, 0);
        transform: translate3d(0, -3000px, 0);
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, 25px, 0);
        transform: translate3d(0, 25px, 0);
    }

    75% {
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0);
    }

    90% {
        -webkit-transform: translate3d(0, 5px, 0);
        transform: translate3d(0, 5px, 0);
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.bounceInDown {
    -webkit-animation-name: bounceInDown;
    animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
    from, 60%, 75%, 90%, to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(-3000px, 0, 0);
        transform: translate3d(-3000px, 0, 0);
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(25px, 0, 0);
        transform: translate3d(25px, 0, 0);
    }

    75% {
        -webkit-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0);
    }

    90% {
        -webkit-transform: translate3d(5px, 0, 0);
        transform: translate3d(5px, 0, 0);
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes bounceInLeft {
    from, 60%, 75%, 90%, to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(-3000px, 0, 0);
        transform: translate3d(-3000px, 0, 0);
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(25px, 0, 0);
        transform: translate3d(25px, 0, 0);
    }

    75% {
        -webkit-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0);
    }

    90% {
        -webkit-transform: translate3d(5px, 0, 0);
        transform: translate3d(5px, 0, 0);
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.bounceInLeft {
    -webkit-animation-name: bounceInLeft;
    animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
    from, 60%, 75%, 90%, to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    from {
        opacity: 0;
        -webkit-transform: translate3d(3000px, 0, 0);
        transform: translate3d(3000px, 0, 0);
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(-25px, 0, 0);
        transform: translate3d(-25px, 0, 0);
    }

    75% {
        -webkit-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0);
    }

    90% {
        -webkit-transform: translate3d(-5px, 0, 0);
        transform: translate3d(-5px, 0, 0);
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes bounceInRight {
    from, 60%, 75%, 90%, to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    from {
        opacity: 0;
        -webkit-transform: translate3d(3000px, 0, 0);
        transform: translate3d(3000px, 0, 0);
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(-25px, 0, 0);
        transform: translate3d(-25px, 0, 0);
    }

    75% {
        -webkit-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0);
    }

    90% {
        -webkit-transform: translate3d(-5px, 0, 0);
        transform: translate3d(-5px, 0, 0);
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.bounceInRight {
    -webkit-animation-name: bounceInRight;
    animation-name: bounceInRight;
}

@-webkit-keyframes bounceInUp {
    from, 60%, 75%, 90%, to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 3000px, 0);
        transform: translate3d(0, 3000px, 0);
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0);
    }

    75% {
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0);
    }

    90% {
        -webkit-transform: translate3d(0, -5px, 0);
        transform: translate3d(0, -5px, 0);
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes bounceInUp {
    from, 60%, 75%, 90%, to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 3000px, 0);
        transform: translate3d(0, 3000px, 0);
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0);
    }

    75% {
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0);
    }

    90% {
        -webkit-transform: translate3d(0, -5px, 0);
        transform: translate3d(0, -5px, 0);
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.bounceInUp {
    -webkit-animation-name: bounceInUp;
    animation-name: bounceInUp;
}

@-webkit-keyframes bounceOut {
    20% {
        -webkit-transform: scale3d(0.9, 0.9, 0.9);
        transform: scale3d(0.9, 0.9, 0.9);
    }

    50%, 55% {
        opacity: 1;
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1);
    }

    to {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }
}

@keyframes bounceOut {
    20% {
        -webkit-transform: scale3d(0.9, 0.9, 0.9);
        transform: scale3d(0.9, 0.9, 0.9);
    }

    50%, 55% {
        opacity: 1;
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1);
    }

    to {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }
}

.bounceOut {
    -webkit-animation-duration: 0.75s;
    animation-duration: 0.75s;
    -webkit-animation-name: bounceOut;
    animation-name: bounceOut;
}

@-webkit-keyframes bounceOutDown {
    20% {
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0);
    }

    40%, 45% {
        opacity: 1;
        -webkit-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0);
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0);
    }
}

@keyframes bounceOutDown {
    20% {
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0);
    }

    40%, 45% {
        opacity: 1;
        -webkit-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0);
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0);
    }
}

.bounceOutDown {
    -webkit-animation-name: bounceOutDown;
    animation-name: bounceOutDown;
}

@-webkit-keyframes bounceOutLeft {
    20% {
        opacity: 1;
        -webkit-transform: translate3d(20px, 0, 0);
        transform: translate3d(20px, 0, 0);
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0);
    }
}

@keyframes bounceOutLeft {
    20% {
        opacity: 1;
        -webkit-transform: translate3d(20px, 0, 0);
        transform: translate3d(20px, 0, 0);
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0);
    }
}

.bounceOutLeft {
    -webkit-animation-name: bounceOutLeft;
    animation-name: bounceOutLeft;
}

@-webkit-keyframes bounceOutRight {
    20% {
        opacity: 1;
        -webkit-transform: translate3d(-20px, 0, 0);
        transform: translate3d(-20px, 0, 0);
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0);
    }
}

@keyframes bounceOutRight {
    20% {
        opacity: 1;
        -webkit-transform: translate3d(-20px, 0, 0);
        transform: translate3d(-20px, 0, 0);
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0);
    }
}

.bounceOutRight {
    -webkit-animation-name: bounceOutRight;
    animation-name: bounceOutRight;
}

@-webkit-keyframes bounceOutUp {
    20% {
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0);
    }

    40%, 45% {
        opacity: 1;
        -webkit-transform: translate3d(0, 20px, 0);
        transform: translate3d(0, 20px, 0);
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0);
    }
}

@keyframes bounceOutUp {
    20% {
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0);
    }

    40%, 45% {
        opacity: 1;
        -webkit-transform: translate3d(0, 20px, 0);
        transform: translate3d(0, 20px, 0);
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0);
    }
}

.bounceOutUp {
    -webkit-animation-name: bounceOutUp;
    animation-name: bounceOutUp;
}

@-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;
}

@-webkit-keyframes fadeInDown {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.fadeInDown {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDownBig {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInDownBig {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.fadeInDownBig {
    -webkit-animation-name: fadeInDownBig;
    animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInLeft {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.fadeInLeft {
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeftBig {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInLeftBig {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.fadeInLeftBig {
    -webkit-animation-name: fadeInLeftBig;
    animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRight {
    from {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.fadeInRight {
    -webkit-animation-name: fadeInRight;
    animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRightBig {
    from {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInRightBig {
    from {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.fadeInRightBig {
    -webkit-animation-name: fadeInRightBig;
    animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUpBig {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInUpBig {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.fadeInUpBig {
    -webkit-animation-name: fadeInUpBig;
    animation-name: fadeInUpBig;
}

@-webkit-keyframes fadeOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

.fadeOut {
    -webkit-animation-name: fadeOut;
    animation-name: fadeOut;
}

@-webkit-keyframes fadeOutDown {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }
}

@keyframes fadeOutDown {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }
}

.fadeOutDown {
    -webkit-animation-name: fadeOutDown;
    animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutDownBig {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0);
    }
}

@keyframes fadeOutDownBig {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0);
    }
}

.fadeOutDownBig {
    -webkit-animation-name: fadeOutDownBig;
    animation-name: fadeOutDownBig;
}

@-webkit-keyframes fadeOutLeft {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
}

@keyframes fadeOutLeft {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
}

.fadeOutLeft {
    -webkit-animation-name: fadeOutLeft;
    animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutLeftBig {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0);
    }
}

@keyframes fadeOutLeftBig {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0);
    }
}

.fadeOutLeftBig {
    -webkit-animation-name: fadeOutLeftBig;
    animation-name: fadeOutLeftBig;
}

@-webkit-keyframes fadeOutRight {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
}

@keyframes fadeOutRight {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
}

.fadeOutRight {
    -webkit-animation-name: fadeOutRight;
    animation-name: fadeOutRight;
}

@-webkit-keyframes fadeOutRightBig {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0);
    }
}

@keyframes fadeOutRightBig {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0);
    }
}

.fadeOutRightBig {
    -webkit-animation-name: fadeOutRightBig;
    animation-name: fadeOutRightBig;
}

@-webkit-keyframes fadeOutUp {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
}

@keyframes fadeOutUp {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
}

.fadeOutUp {
    -webkit-animation-name: fadeOutUp;
    animation-name: fadeOutUp;
}

@-webkit-keyframes fadeOutUpBig {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0);
    }
}

@keyframes fadeOutUpBig {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0);
    }
}

.fadeOutUpBig {
    -webkit-animation-name: fadeOutUpBig;
    animation-name: fadeOutUpBig;
}

@-webkit-keyframes flip {
    from {
        -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
        transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    40% {
        -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
        transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    50% {
        -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
        transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    80% {
        -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
        transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    to {
        -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
        transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
}

@keyframes flip {
    from {
        -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
        transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    40% {
        -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
        transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    50% {
        -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
        transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    80% {
        -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
        transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    to {
        -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
        transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
}

.animated.flip {
    -webkit-backface-visibility: visible;
    backface-visibility: visible;
    -webkit-animation-name: flip;
    animation-name: flip;
}

@-webkit-keyframes flipInX {
    from {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 0;
    }

    40% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    60% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        opacity: 1;
    }

    80% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    }

    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }
}

@keyframes flipInX {
    from {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 0;
    }

    40% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    60% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        opacity: 1;
    }

    80% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    }

    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }
}

.flipInX {
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
    -webkit-animation-name: flipInX;
    animation-name: flipInX;
}

@-webkit-keyframes flipInY {
    from {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 0;
    }

    40% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    60% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
        opacity: 1;
    }

    80% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    }

    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }
}

@keyframes flipInY {
    from {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 0;
    }

    40% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    60% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
        opacity: 1;
    }

    80% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    }

    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }
}

.flipInY {
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
    -webkit-animation-name: flipInY;
    animation-name: flipInY;
}

@-webkit-keyframes flipOutX {
    from {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }

    30% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        opacity: 1;
    }

    to {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        opacity: 0;
    }
}

@keyframes flipOutX {
    from {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }

    30% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        opacity: 1;
    }

    to {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        opacity: 0;
    }
}

.flipOutX {
    -webkit-animation-duration: 0.75s;
    animation-duration: 0.75s;
    -webkit-animation-name: flipOutX;
    animation-name: flipOutX;
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
}

@-webkit-keyframes flipOutY {
    from {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }

    30% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
        opacity: 1;
    }

    to {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        opacity: 0;
    }
}

@keyframes flipOutY {
    from {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }

    30% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
        opacity: 1;
    }

    to {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        opacity: 0;
    }
}

.flipOutY {
    -webkit-animation-duration: 0.75s;
    animation-duration: 0.75s;
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
    -webkit-animation-name: flipOutY;
    animation-name: flipOutY;
}

@-webkit-keyframes lightSpeedIn {
    from {
        -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
        transform: translate3d(100%, 0, 0) skewX(-30deg);
        opacity: 0;
    }

    60% {
        -webkit-transform: skewX(20deg);
        transform: skewX(20deg);
        opacity: 1;
    }

    80% {
        -webkit-transform: skewX(-5deg);
        transform: skewX(-5deg);
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes lightSpeedIn {
    from {
        -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
        transform: translate3d(100%, 0, 0) skewX(-30deg);
        opacity: 0;
    }

    60% {
        -webkit-transform: skewX(20deg);
        transform: skewX(20deg);
        opacity: 1;
    }

    80% {
        -webkit-transform: skewX(-5deg);
        transform: skewX(-5deg);
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.lightSpeedIn {
    -webkit-animation-name: lightSpeedIn;
    animation-name: lightSpeedIn;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedOut {
    from {
        opacity: 1;
    }

    to {
        -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
        transform: translate3d(100%, 0, 0) skewX(30deg);
        opacity: 0;
    }
}

@keyframes lightSpeedOut {
    from {
        opacity: 1;
    }

    to {
        -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
        transform: translate3d(100%, 0, 0) skewX(30deg);
        opacity: 0;
    }
}

.lightSpeedOut {
    -webkit-animation-name: lightSpeedOut;
    animation-name: lightSpeedOut;
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
}

@-webkit-keyframes rotateIn {
    from {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: rotate3d(0, 0, 1, -200deg);
        transform: rotate3d(0, 0, 1, -200deg);
        opacity: 0;
    }

    to {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}

@keyframes rotateIn {
    from {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: rotate3d(0, 0, 1, -200deg);
        transform: rotate3d(0, 0, 1, -200deg);
        opacity: 0;
    }

    to {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}

.rotateIn {
    -webkit-animation-name: rotateIn;
    animation-name: rotateIn;
}

@-webkit-keyframes rotateInDownLeft {
    from {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, -45deg);
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0;
    }

    to {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}

@keyframes rotateInDownLeft {
    from {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, -45deg);
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0;
    }

    to {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}

.rotateInDownLeft {
    -webkit-animation-name: rotateInDownLeft;
    animation-name: rotateInDownLeft;
}

@-webkit-keyframes rotateInDownRight {
    from {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, 45deg);
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0;
    }

    to {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}

@keyframes rotateInDownRight {
    from {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, 45deg);
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0;
    }

    to {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}

.rotateInDownRight {
    -webkit-animation-name: rotateInDownRight;
    animation-name: rotateInDownRight;
}

@-webkit-keyframes rotateInUpLeft {
    from {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, 45deg);
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0;
    }

    to {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}

@keyframes rotateInUpLeft {
    from {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, 45deg);
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0;
    }

    to {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}

.rotateInUpLeft {
    -webkit-animation-name: rotateInUpLeft;
    animation-name: rotateInUpLeft;
}

@-webkit-keyframes rotateInUpRight {
    from {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, -90deg);
        transform: rotate3d(0, 0, 1, -90deg);
        opacity: 0;
    }

    to {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}

@keyframes rotateInUpRight {
    from {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, -90deg);
        transform: rotate3d(0, 0, 1, -90deg);
        opacity: 0;
    }

    to {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}

.rotateInUpRight {
    -webkit-animation-name: rotateInUpRight;
    animation-name: rotateInUpRight;
}

@-webkit-keyframes rotateOut {
    from {
        -webkit-transform-origin: center;
        transform-origin: center;
        opacity: 1;
    }

    to {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: rotate3d(0, 0, 1, 200deg);
        transform: rotate3d(0, 0, 1, 200deg);
        opacity: 0;
    }
}

@keyframes rotateOut {
    from {
        -webkit-transform-origin: center;
        transform-origin: center;
        opacity: 1;
    }

    to {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: rotate3d(0, 0, 1, 200deg);
        transform: rotate3d(0, 0, 1, 200deg);
        opacity: 0;
    }
}

.rotateOut {
    -webkit-animation-name: rotateOut;
    animation-name: rotateOut;
}

@-webkit-keyframes rotateOutDownLeft {
    from {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        opacity: 1;
    }

    to {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, 45deg);
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0;
    }
}

@keyframes rotateOutDownLeft {
    from {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        opacity: 1;
    }

    to {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, 45deg);
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0;
    }
}

.rotateOutDownLeft {
    -webkit-animation-name: rotateOutDownLeft;
    animation-name: rotateOutDownLeft;
}

@-webkit-keyframes rotateOutDownRight {
    from {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        opacity: 1;
    }

    to {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, -45deg);
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0;
    }
}

@keyframes rotateOutDownRight {
    from {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        opacity: 1;
    }

    to {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, -45deg);
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0;
    }
}

.rotateOutDownRight {
    -webkit-animation-name: rotateOutDownRight;
    animation-name: rotateOutDownRight;
}

@-webkit-keyframes rotateOutUpLeft {
    from {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        opacity: 1;
    }

    to {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, -45deg);
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0;
    }
}

@keyframes rotateOutUpLeft {
    from {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        opacity: 1;
    }

    to {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, -45deg);
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0;
    }
}

.rotateOutUpLeft {
    -webkit-animation-name: rotateOutUpLeft;
    animation-name: rotateOutUpLeft;
}

@-webkit-keyframes rotateOutUpRight {
    from {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        opacity: 1;
    }

    to {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, 90deg);
        transform: rotate3d(0, 0, 1, 90deg);
        opacity: 0;
    }
}

@keyframes rotateOutUpRight {
    from {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        opacity: 1;
    }

    to {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, 90deg);
        transform: rotate3d(0, 0, 1, 90deg);
        opacity: 0;
    }
}

.rotateOutUpRight {
    -webkit-animation-name: rotateOutUpRight;
    animation-name: rotateOutUpRight;
}

@-webkit-keyframes hinge {
    0% {
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
    }

    20%, 60% {
        -webkit-transform: rotate3d(0, 0, 1, 80deg);
        transform: rotate3d(0, 0, 1, 80deg);
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
    }

    40%, 80% {
        -webkit-transform: rotate3d(0, 0, 1, 60deg);
        transform: rotate3d(0, 0, 1, 60deg);
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
        opacity: 1;
    }

    to {
        -webkit-transform: translate3d(0, 700px, 0);
        transform: translate3d(0, 700px, 0);
        opacity: 0;
    }
}

@keyframes hinge {
    0% {
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
    }

    20%, 60% {
        -webkit-transform: rotate3d(0, 0, 1, 80deg);
        transform: rotate3d(0, 0, 1, 80deg);
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
    }

    40%, 80% {
        -webkit-transform: rotate3d(0, 0, 1, 60deg);
        transform: rotate3d(0, 0, 1, 60deg);
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
        opacity: 1;
    }

    to {
        -webkit-transform: translate3d(0, 700px, 0);
        transform: translate3d(0, 700px, 0);
        opacity: 0;
    }
}

.hinge {
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-name: hinge;
    animation-name: hinge;
}

@-webkit-keyframes jackInTheBox {
    from {
        opacity: 0;
        -webkit-transform: scale(0.1) rotate(30deg);
        transform: scale(0.1) rotate(30deg);
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom;
    }

    50% {
        -webkit-transform: rotate(-10deg);
        transform: rotate(-10deg);
    }

    70% {
        -webkit-transform: rotate(3deg);
        transform: rotate(3deg);
    }

    to {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes jackInTheBox {
    from {
        opacity: 0;
        -webkit-transform: scale(0.1) rotate(30deg);
        transform: scale(0.1) rotate(30deg);
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom;
    }

    50% {
        -webkit-transform: rotate(-10deg);
        transform: rotate(-10deg);
    }

    70% {
        -webkit-transform: rotate(3deg);
        transform: rotate(3deg);
    }

    to {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

.jackInTheBox {
    -webkit-animation-name: jackInTheBox;
    animation-name: jackInTheBox;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes rollIn {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
        transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes rollIn {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
        transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.rollIn {
    -webkit-animation-name: rollIn;
    animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes rollOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
        transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    }
}

@keyframes rollOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
        transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    }
}

.rollOut {
    -webkit-animation-name: rollOut;
    animation-name: rollOut;
}

@-webkit-keyframes zoomIn {
    from {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }

    50% {
        opacity: 1;
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }

    50% {
        opacity: 1;
    }
}

.zoomIn {
    -webkit-animation-name: zoomIn;
    animation-name: zoomIn;
}

@-webkit-keyframes zoomInDown {
    from {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}

@keyframes zoomInDown {
    from {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}

.zoomInDown {
    -webkit-animation-name: zoomInDown;
    animation-name: zoomInDown;
}

@-webkit-keyframes zoomInLeft {
    from {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}

@keyframes zoomInLeft {
    from {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}

.zoomInLeft {
    -webkit-animation-name: zoomInLeft;
    animation-name: zoomInLeft;
}

@-webkit-keyframes zoomInRight {
    from {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}

@keyframes zoomInRight {
    from {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}

.zoomInRight {
    -webkit-animation-name: zoomInRight;
    animation-name: zoomInRight;
}

@-webkit-keyframes zoomInUp {
    from {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}

@keyframes zoomInUp {
    from {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}

.zoomInUp {
    -webkit-animation-name: zoomInUp;
    animation-name: zoomInUp;
}

@-webkit-keyframes zoomOut {
    from {
        opacity: 1;
    }

    50% {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }

    to {
        opacity: 0;
    }
}

@keyframes zoomOut {
    from {
        opacity: 1;
    }

    50% {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }

    to {
        opacity: 0;
    }
}

.zoomOut {
    -webkit-animation-name: zoomOut;
    animation-name: zoomOut;
}

@-webkit-keyframes zoomOutDown {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }

    to {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom;
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}

@keyframes zoomOutDown {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }

    to {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom;
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}

.zoomOutDown {
    -webkit-animation-name: zoomOutDown;
    animation-name: zoomOutDown;
}

@-webkit-keyframes zoomOutLeft {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    }

    to {
        opacity: 0;
        -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
        transform: scale(0.1) translate3d(-2000px, 0, 0);
        -webkit-transform-origin: left center;
        transform-origin: left center;
    }
}

@keyframes zoomOutLeft {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    }

    to {
        opacity: 0;
        -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
        transform: scale(0.1) translate3d(-2000px, 0, 0);
        -webkit-transform-origin: left center;
        transform-origin: left center;
    }
}

.zoomOutLeft {
    -webkit-animation-name: zoomOutLeft;
    animation-name: zoomOutLeft;
}

@-webkit-keyframes zoomOutRight {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    }

    to {
        opacity: 0;
        -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
        transform: scale(0.1) translate3d(2000px, 0, 0);
        -webkit-transform-origin: right center;
        transform-origin: right center;
    }
}

@keyframes zoomOutRight {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    }

    to {
        opacity: 0;
        -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
        transform: scale(0.1) translate3d(2000px, 0, 0);
        -webkit-transform-origin: right center;
        transform-origin: right center;
    }
}

.zoomOutRight {
    -webkit-animation-name: zoomOutRight;
    animation-name: zoomOutRight;
}

@-webkit-keyframes zoomOutUp {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }

    to {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom;
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}

@keyframes zoomOutUp {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }

    to {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom;
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}

.zoomOutUp {
    -webkit-animation-name: zoomOutUp;
    animation-name: zoomOutUp;
}

@-webkit-keyframes slideInDown {
    from {
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
        visibility: visible;
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes slideInDown {
    from {
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
        visibility: visible;
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.slideInDown {
    -webkit-animation-name: slideInDown;
    animation-name: slideInDown;
}

@-webkit-keyframes slideInLeft {
    from {
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
        visibility: visible;
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes slideInLeft {
    from {
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
        visibility: visible;
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.slideInLeft {
    -webkit-animation-name: slideInLeft;
    animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
    from {
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
        visibility: visible;
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes slideInRight {
    from {
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
        visibility: visible;
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.slideInRight {
    -webkit-animation-name: slideInRight;
    animation-name: slideInRight;
}

@-webkit-keyframes slideInUp {
    from {
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
        visibility: visible;
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes slideInUp {
    from {
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
        visibility: visible;
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.slideInUp {
    -webkit-animation-name: slideInUp;
    animation-name: slideInUp;
}

@-webkit-keyframes slideOutDown {
    from {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    to {
        visibility: hidden;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }
}

@keyframes slideOutDown {
    from {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    to {
        visibility: hidden;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }
}

.slideOutDown {
    -webkit-animation-name: slideOutDown;
    animation-name: slideOutDown;
}

@-webkit-keyframes slideOutLeft {
    from {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    to {
        visibility: hidden;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
}

@keyframes slideOutLeft {
    from {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    to {
        visibility: hidden;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
}

.slideOutLeft {
    -webkit-animation-name: slideOutLeft;
    animation-name: slideOutLeft;
}

@-webkit-keyframes slideOutRight {
    from {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    to {
        visibility: hidden;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
}

@keyframes slideOutRight {
    from {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    to {
        visibility: hidden;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
}

.slideOutRight {
    -webkit-animation-name: slideOutRight;
    animation-name: slideOutRight;
}

@-webkit-keyframes slideOutUp {
    from {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    to {
        visibility: hidden;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
}

@keyframes slideOutUp {
    from {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    to {
        visibility: hidden;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
}

.slideOutUp {
    -webkit-animation-name: slideOutUp;
    animation-name: slideOutUp;
}

.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

    .animated.infinite {
        -webkit-animation-iteration-count: infinite;
        animation-iteration-count: infinite;
    }

    .animated.delay-1s {
        -webkit-animation-delay: 1s;
        animation-delay: 1s;
    }

    .animated.delay-2s {
        -webkit-animation-delay: 2s;
        animation-delay: 2s;
    }

    .animated.delay-3s {
        -webkit-animation-delay: 3s;
        animation-delay: 3s;
    }

    .animated.delay-4s {
        -webkit-animation-delay: 4s;
        animation-delay: 4s;
    }

    .animated.delay-5s {
        -webkit-animation-delay: 5s;
        animation-delay: 5s;
    }

    .animated.fast {
        -webkit-animation-duration: 800ms;
        animation-duration: 800ms;
    }

    .animated.faster {
        -webkit-animation-duration: 500ms;
        animation-duration: 500ms;
    }

    .animated.slow {
        -webkit-animation-duration: 2s;
        animation-duration: 2s;
    }

    .animated.slower {
        -webkit-animation-duration: 3s;
        animation-duration: 3s;
    }

@media (print), (prefers-reduced-motion: reduce) {
    .animated {
        -webkit-animation-duration: 1ms !important;
        animation-duration: 1ms !important;
        -webkit-transition-duration: 1ms !important;
        transition-duration: 1ms !important;
        -webkit-animation-iteration-count: 1 !important;
        animation-iteration-count: 1 !important;
    }
}


/*#endregion*/

/*#region 图片查看器**/
/*!
 * Viewer v1.0.0
 * https://github.com/fengyuanchen/viewer
 *
 * Copyright (c) 2015-2018 Chen Fengyuan
 * Released under the MIT license
 *
 * Date: 2018-04-01T06:09:55.194Z
 */

.viewer-zoom-in::before,
.viewer-zoom-out::before,
.viewer-one-to-one::before,
.viewer-reset::before,
.viewer-prev::before,
.viewer-play::before,
.viewer-next::before,
.viewer-rotate-left::before,
.viewer-rotate-right::before,
.viewer-flip-horizontal::before,
.viewer-flip-vertical::before,
.viewer-fullscreen::before,
.viewer-fullscreen-exit::before,
.viewer-close::before {
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAARgAAAAUCAYAAABWOyJDAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAABx0RVh0U29mdHdhcmUAQWRvYmUgRmlyZXdvcmtzIENTNui8sowAAAQPSURBVHic7Zs/iFxVFMa/0U2UaJGksUgnIVhYxVhpjDbZCBmLdAYECxsRFBTUamcXUiSNncgKQbSxsxH8gzAP3FU2jY0kKKJNiiiIghFlccnP4p3nPCdv3p9778vsLOcHB2bfveeb7955c3jvvNkBIMdxnD64a94GHMfZu3iBcRynN7zAOI7TG15gHCeeNUkr8zaxG2lbYDYsdgMbktBsP03jdQwljSXdtBhLOmtjowC9Mg9L+knSlcD8TNKpSA9lBpK2JF2VdDSR5n5J64m0qli399hNFMUlpshQii5jbXTbHGviB0nLNeNDSd9VO4A2UdB2fp+x0eCnaXxWXGA2X0au/3HgN9P4LFCjIANOJdrLr0zzZ+BEpNYDwKbpnQMeAw4m8HjQtM6Z9qa917zPQwFr3M5KgA6J5rTJCdFZJj9/lyvGhsDvwFNVuV2MhhjrK6b9bFiE+j1r87eBl4HDwCF7/U/k+ofAX5b/EXBv5JoLMuILzf3Ap6Z3EzgdqHMCuF7hcQf4HDgeoHnccncqdK/TvSDWffFXI/exICY/xZyqc6XLWF1UFZna4gJ7q8BsRvgd2/xXpo6P+D9dfT7PpECtA3cnWPM0GXGFZh/wgWltA+cDNC7X+AP4GzjZQe+k5dRxuYPeiuXU7e1qwLpDz7dFjXKRaSwuMLvAlG8zZlG+YmiK1HoFqT7wP2z+4Q45TfEGcMt01xLoNZEBTwRqD4BLpnMLeC1A41UmVxsXgXeBayV/Wx20rpTyrpnWRft7p6O/FdqzGrDukPNtkaMoMo3FBdBSQMOnYBCReyf05s126fU9ytfX98+mY54Kxnp7S9K3kj6U9KYdG0h6UdLbkh7poFXMfUnSOyVvL0h6VtIXHbS6nOP+s/Zm9mvyXW1uuC9ohZ72E9uDmXWLJOB1GxsH+DxPftsB8B6wlGDN02TAkxG6+4D3TWsbeC5CS8CDFce+AW500LhhOW2020TRjK3b21HEmgti9m0RonxbdMZeVzV+/4tF3cBpP7E9mKHNL5q8h5g0eYsCMQz0epq8gQrwMXAgcs0FGXGFRcB9wCemF9PkbYqM/Bas7fxLwNeJPdTdpo4itQti8lPMqTpXuozVRVXPpbHI3KkNTB1NfkL81j2mvhDp91HgV9MKuRIqrykj3WPq4rHyL+axj8/qGPmTqi6F9YDlHOvJU6oYcTsh/TYSzWmTE6JT19CtLTJt32D6CmHe0eQn1O8z5AXgT4sx4Vcu0/EQecMydB8z0hUWkTd2t4CrwNEePqMBcAR4mrBbwyXLPWJa8zrXmmLEhNBmfpkuY2102xxrih+pb+ieAb6vGhuA97UcJ5KR8gZ77K+99xxeYBzH6Q3/Z0fHcXrDC4zjOL3hBcZxnN74F+zlvXFWXF9PAAAAAElFTkSuQmCC');
    background-repeat: no-repeat;
    color: transparent;
    display: block;
    font-size: 0;
    height: 20px;
    line-height: 0;
    width: 20px;
}

.viewer-zoom-in::before {
    background-position: 0 0;
    content: 'Zoom In';
}

.viewer-zoom-out::before {
    background-position: -20px 0;
    content: 'Zoom Out';
}

.viewer-one-to-one::before {
    background-position: -40px 0;
    content: 'One to One';
}

.viewer-reset::before {
    background-position: -60px 0;
    content: 'Reset';
}

.viewer-prev::before {
    background-position: -80px 0;
    content: 'Previous';
}

.viewer-play::before {
    background-position: -100px 0;
    content: 'Play';
}

.viewer-next::before {
    background-position: -120px 0;
    content: 'Next';
}

.viewer-rotate-left::before {
    background-position: -140px 0;
    content: 'Rotate Left';
}

.viewer-rotate-right::before {
    background-position: -160px 0;
    content: 'Rotate Right';
}

.viewer-flip-horizontal::before {
    background-position: -180px 0;
    content: 'Flip Horizontal';
}

.viewer-flip-vertical::before {
    background-position: -200px 0;
    content: 'Flip Vertical';
}

.viewer-fullscreen::before {
    background-position: -220px 0;
    content: 'Enter Full Screen';
}

.viewer-fullscreen-exit::before {
    background-position: -240px 0;
    content: 'Exit Full Screen';
}

.viewer-close::before {
    background-position: -260px 0;
    content: 'Close';
}

.viewer-container {
    bottom: 0;
    direction: ltr;
    font-size: 0;
    left: 0;
    line-height: 0;
    overflow: hidden;
    position: absolute;
    right: 0;
    -webkit-tap-highlight-color: transparent;
    top: 0;
    -webkit-touch-callout: none;
    -ms-touch-action: none;
    touch-action: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    .viewer-container::-moz-selection,
    .viewer-container *::-moz-selection {
        background-color: transparent;
    }

    .viewer-container::selection,
    .viewer-container *::selection {
        background-color: transparent;
    }

    .viewer-container img {
        display: block;
        height: auto;
        max-height: none !important;
        max-width: none !important;
        min-height: 0 !important;
        min-width: 0 !important;
        width: 100%;
    }

.viewer-canvas {
    bottom: 0;
    left: 0;
    overflow: hidden;
    position: absolute;
    right: 0;
    top: 0;
}

    .viewer-canvas > img {
        height: auto;
        margin: 15px auto;
        max-width: 90% !important;
        width: auto;
    }

.viewer-footer {
    bottom: 0;
    left: 0;
    overflow: hidden;
    position: absolute;
    right: 0;
    text-align: center;
}

.viewer-navbar {
    background-color: rgba(0, 0, 0, .5);
    overflow: hidden;
}

.viewer-list {
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    height: 50px;
    margin: 0;
    overflow: hidden;
    padding: 1px 0;
}

    .viewer-list > li {
        color: transparent;
        cursor: pointer;
        float: left;
        font-size: 0;
        height: 50px;
        line-height: 0;
        opacity: .5;
        overflow: hidden;
        -webkit-transition: opacity .15s;
        transition: opacity .15s;
        width: 30px;
    }

        .viewer-list > li:hover {
            opacity: .75;
        }

        .viewer-list > li + li {
            margin-left: 1px;
        }

    .viewer-list > .viewer-loading {
        position: relative;
    }

        .viewer-list > .viewer-loading::after {
            border-width: 2px;
            height: 20px;
            margin-left: -10px;
            margin-top: -10px;
            width: 20px;
        }

    .viewer-list > .viewer-active,
    .viewer-list > .viewer-active:hover {
        opacity: 1;
    }

.viewer-player {
    background-color: #000;
    bottom: 0;
    cursor: none;
    display: none;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
}

    .viewer-player > img {
        left: 0;
        position: absolute;
        top: 0;
    }

.viewer-toolbar ul {
    display: inline-block;
    margin: 0 auto 5px;
    overflow: hidden;
    padding: 3px 0;
}

.viewer-toolbar li {
    background-color: rgba(0, 0, 0, .5);
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    cursor: pointer;
    float: left;
    height: 24px;
    overflow: hidden;
    -webkit-transition: background-color .15s;
    transition: background-color .15s;
    width: 24px;
}

    .viewer-toolbar li:hover {
        background-color: rgba(0, 0, 0, .8);
    }

    .viewer-toolbar li::before {
        margin: 2px;
    }

    .viewer-toolbar li + li {
        margin-left: 1px;
    }

.viewer-toolbar .viewer-small {
    height: 18px;
    margin-bottom: 3px;
    margin-top: 3px;
    width: 18px;
}

    .viewer-toolbar .viewer-small::before {
        margin: -1px;
    }

.viewer-toolbar .viewer-large {
    height: 30px;
    margin-bottom: -3px;
    margin-top: -3px;
    width: 30px;
}

    .viewer-toolbar .viewer-large::before {
        margin: 5px;
    }

.viewer-tooltip {
    background-color: rgba(0, 0, 0, .8);
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    color: #fff;
    display: none;
    font-size: 12px;
    height: 20px;
    left: 50%;
    line-height: 20px;
    margin-left: -25px;
    margin-top: -10px;
    position: absolute;
    text-align: center;
    top: 50%;
    width: 50px;
}

.viewer-title {
    color: #ccc;
    display: inline-block;
    font-size: 12px;
    line-height: 1;
    margin: 0 5% 5px;
    max-width: 90%;
    opacity: .8;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-transition: opacity .15s;
    transition: opacity .15s;
    white-space: nowrap;
}

    .viewer-title:hover {
        opacity: 1;
    }

.viewer-button {
    background-color: rgba(0, 0, 0, .5);
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    cursor: pointer;
    height: 80px;
    overflow: hidden;
    position: absolute;
    right: -40px;
    top: -40px;
    -webkit-transition: background-color .15s;
    transition: background-color .15s;
    width: 80px;
}

    .viewer-button:focus,
    .viewer-button:hover {
        background-color: rgba(0, 0, 0, .8);
    }

    .viewer-button::before {
        bottom: 15px;
        left: 15px;
        position: absolute;
    }

.viewer-fixed {
    position: fixed;
}

.viewer-open {
    overflow: hidden;
}

.viewer-show {
    display: block;
}

.viewer-hide {
    display: none;
}

.viewer-backdrop {
    background-color: rgba(0, 0, 0, .5);
}

.viewer-invisible {
    visibility: hidden;
}

.viewer-move {
    cursor: move;
    cursor: -webkit-grab;
    cursor: grab;
}

.viewer-fade {
    opacity: 0;
}

.viewer-in {
    opacity: 1;
}

.viewer-transition {
    -webkit-transition: all .3s;
    transition: all .3s;
}

@-webkit-keyframes viewer-spinner {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes viewer-spinner {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.viewer-loading::after {
    -webkit-animation: viewer-spinner 1s linear infinite;
    -moz-animation: viewer-spinner 1s linear infinite;
    -o-animation: viewer-spinner 1s linear infinite;
    animation: viewer-spinner 1s linear infinite;
    border: 4px solid rgba(255, 255, 255, .1);
    border-left-color: rgba(255, 255, 255, .5);
    border-radius: 50%;
    content: '';
    display: inline-block;
    height: 40px;
    left: 50%;
    margin-left: -20px;
    margin-top: -20px;
    position: absolute;
    top: 50%;
    width: 40px;
    z-index: 1;
}

@media (max-width: 767px) {
    .viewer-hide-xs-down {
        display: none;
    }
}

@media (max-width: 991px) {
    .viewer-hide-sm-down {
        display: none;
    }
}

@media (max-width: 1199px) {
    .viewer-hide-md-down {
        display: none;
    }
}

/*#endregion*/

/*编辑器code内容不显示*/
.w-e-text pre code {
    font-size: 12px;
}

/*#region tipso 移动显示标题 Tipso*/
.tipso_bubble, .tipso_bubble > .tipso_arrow {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.tipso_bubble {
    position: absolute;
    text-align: center;
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
    border-radius: 6px;
    z-index: 9999;
    padding: 10px;
}

    .tipso_bubble > .tipso_arrow {
        position: absolute;
        width: 0;
        height: 0;
        border: 8px solid;
        pointer-events: none;
    }

    .tipso_bubble.top > .tipso_arrow {
        border-top-color: #000;
        border-right-color: transparent;
        border-left-color: transparent;
        border-bottom-color: transparent;
        top: 100%;
        left: 50%;
        margin-left: -8px;
    }

    .tipso_bubble.bottom > .tipso_arrow {
        border-bottom-color: #000;
        border-right-color: transparent;
        border-left-color: transparent;
        border-top-color: transparent;
        bottom: 100%;
        left: 50%;
        margin-left: -8px;
    }

    .tipso_bubble.left > .tipso_arrow {
        border-left-color: #000;
        border-top-color: transparent;
        border-bottom-color: transparent;
        border-right-color: transparent;
        top: 50%;
        left: 100%;
        margin-top: -8px;
    }

    .tipso_bubble.right > .tipso_arrow {
        border-right-color: #000;
        border-top-color: transparent;
        border-bottom-color: transparent;
        border-left-color: transparent;
        top: 50%;
        right: 100%;
        margin-top: -8px;
    }
/*#endregion*/
/*#endregion*/

/*#region date**/
.iants-date {
    width: 280px;
    color: #666;
}

.iants-date-header span, .iants-date-footer span {
    cursor: pointer;
}

.iants-date-header .icon-NMStubiao-, .iants-date-header .icon-NMStubiao-1 {
    font-size: 14px;
}

.iants-date-body table {
    text-align: center;
}

    .iants-date-body table th {
        font-weight: bold;
    }

    .iants-date-body table td, .iants-date-body table th {
        padding: 12px 5px;
        cursor: pointer;
    }

        .iants-date-body table td:hover {
            background-color: #F1F1F1;
        }

        .iants-date-body table td.disable {
            color: #d2d2d2;
        }

        .iants-date-body table td.select {
            color: #fff;
            font-weight: bold;
            background-color: #2fb3ff;
        }
/*#endregion **/

.iants-stat-group.fixed-bottom {
    right: auto;
    line-height: 40px;
    height: 40px;
    border-bottom: 2px solid #fd974d;
    bottom: 5px;
    width: calc(100% - 460px);
    overflow: auto;
}

    .iants-stat-group.fixed-bottom span {
        font-weight: bold;
        display: inline-block;
        vertical-align: middle;
        padding: 0;
    }



.iants-stat-group span.title {
    border-top-right-radius: 20px;
    padding: 0 8px;
    color: #fff;
    background-color: #fd974d;
    background: -webkit-linear-gradient(left, #fd974d, #fe6054);
    background: -o-linear-gradient(right, #fd974d, #fe6054);
    background: -moz-linear-gradient(right, #fd974d, #fe6054);
    background: linear-gradient(to right, #fd974d, #fe6054);
}

.iants-stat-group .innertitle {
    padding: 0;
    margin-left: 10px;
}

.iant-detail-self fieldset {
    border-left: none;
    border-right: none;
    border-bottom: none;
    border-radius: 0;
}

.iant-list-self {
    width: 100%;
    position: relative;
}

    .iant-list-self .leo-search-container {
        width: 100%;
        position: relative;
        padding: 0;
        margin-top: -20px;
    }

    .iant-list-self .leo-footer {
        position: relative;
    }

    .iant-list-self .leo-conetnt-body {
        padding: 5px 0;
    }

    .iant-list-self .leo-form-group {
        border-left: 0.0625rem solid #ced4da;
    }
/*#region 产品选择**/
.iants-product-selected h5 {
    font-size: 12px;
}

.iants-product-selected img {
    width: 50px;
    height: 50px;
}

.iants-product-selected input[type="number"] {
    width: 80px;
    height: 26px;
}

.iants-product-selected .iconfont {
    cursor: pointer;
}
/*#endregion 产品选择**/


.temptool a, .iants-shoplist .text-right a {
    margin-right: 15px;
}


.leo-search.leo-form h3 {
    display: none;
}

.leo-search.leo-form .leo-input-row .leo-input-label {
    display: none;
}

.leo-search.leo-form .leo-form-group {
    margin-bottom: 0;
}

.leo-search.leo-form .leo-form-action.fixed {
    position: relative;
    width: auto;
    padding: 0;
    border: none;
}

.iants-search-pop {
    width: 350px;
    background-color: #ffffff;
    bottom: 0;
    border-left: 1px solid #ccc;
    padding-top: 42px;
    position: fixed;
    top: 0;
    right: 0px;
    bottom: 0;
    z-index: 1030;
}

    .iants-search-pop .flex {
        flex-direction: column;
    }

    .iants-search-pop.leo-search.leo-form .leo-form-action.fixed {
        position: absolute;
        border-top: 1px solid #ccc;
        width: 100%;
    }

    .iants-search-pop.leo-search.leo-form .leo-input-row.leo-hidden {
        display: block !important;
    }

    .iants-search-pop.leo-search.leo-form .leo-input-row .leo-input-label {
        display: block;
    }


    .iants-search-pop.leo-search.leo-form {
        padding: 50px 20px 50px 0px;
    }

    .iants-search-pop.leo-search .leo-form-group {
        overflow: auto;
        height: 100%;
    }

    .iants-search-pop.leo-search .leo-input-row.down:after, .iants-search-pop.leo-search .leo-input-row.date:after {
        right: 15px;
    }

    .iants-search-pop.leo-search.leo-form h3 {
        display: block;
        text-align: left;
    }

    .iants-search-pop.leo-search.leo-form .leo-btn-gray {
        display: none;
    }

    .iants-search-pop.leo-search.leo-form .leo-btn-blue {
        width: 40%;
        margin: 10px auto 10px;
    }

    .iants-search-pop h3 .icon-hebingxingzhuang {
        cursor: pointer;
    }

        .iants-search-pop h3 .icon-hebingxingzhuang:hover {
            color: orangered;
        }

    .iants-search-pop .leo-form {
        padding-right: 30px;
    }

        .iants-search-pop.leo-form.leo-search .leo-form-group .leo-input-row {
            width: 100%;
            max-width: 100%;
            margin-bottom: 10px;
            padding: 10px 10px 0 100px;
        }

.iants-product-selected {
    padding-bottom: 50px;
}

.leo-td-innertable {
    border-bottom: 1px solid #dee2e6;
    border-top: none;
}

.leo-table tr.innertable_ptr td {
    border: none !important;
}

.leo-table tr.innertable_ptr:hover, .leo-table tr.innertable_tr:hover {
    background-color: #fff !important;
}

.leo-td-innertable .leo-table tr.select,
.leo-td-innertable .leo-table tr:hover {
    background: #f1f3f4 !important;
}

.leo-innertable {
    padding: 10px;
}

    .leo-innertable .leo-table {
        width: auto;
        background: #f1f3f4;
    }

    .leo-innertable table th {
        background-color: #f1f3f4;
    }

.leo-table .leo-innertable table th, .leo-table .leo-innertable table td {
    border-right: 1px solid #dadadd !important;
    border-bottom: 1px solid #dadadd !important;
}

.leo-innertable table {
    border-top: 1px solid #dadadd;
    border-left: 1px solid #dadadd;
    width: 90%;
    margin: 0 auto;
}


.iants-mall-images.row {
    margin: 10px;
}

.iants-mall-images img {
    width: 118px;
    height: 118px;
}

.iants-mall-images div {
    cursor: pointer;
}

.iants-mall-images .img {
    width: 150px;
    height: 150px;
    border: 1px solid #fff;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: 50%;
}

.iants-mall-images .img-container {
    width: 150px;
    display: inline-block;
    cursor: pointer;
    vertical-align: top;
    position: relative;
}
    /*  .iants-mall-images .img-container:hover,*/
    .iants-mall-images .img-container.select {
        border-color: rgb(0, 119, 255);
    }

    .iants-mall-images .img-container .img-tool {
        background: rgba(0, 0, 0, .8);
        color: #fff;
        display: none;
    }

        .iants-mall-images .img-container .img-tool .iconfont {
            font-size: 14px;
            cursor: pointer;
        }

            .iants-mall-images .img-container .img-tool .iconfont.icon-Info {
                font-size: 20px;
            }

    .iants-mall-images .img-container:hover .img-tool {
        display: block;
    }
/*#region upload*/
.iants-input-upload {
}

    .iants-input-upload img {
        width: 80px;
        height: 80px;
        cursor: pointer;
        display: block;
    }

    .iants-input-upload input {
        overflow: hidden;
        width: 80px;
        height: 80px;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 100;
        opacity: 0;
        cursor: pointer;
    }

    .iants-input-upload p {
        color: #abaaaa;
        position: absolute;
        bottom: 2px;
        left: 60px;
        overflow: hidden;
    }

    .iants-input-upload .iconfont {
        color: #ccc;
        position: absolute;
        cursor: pointer;
        left: 60px;
        top: 0px;
    }

    .iants-input-upload.detail {
        min-height: 50px;
    }

    .iants-input-upload .files div {
        width: 80px;
        position: relative;
        margin-right: 10px;
    }

        .iants-input-upload .files div .icon-shanchu {
            left: 70px;
            top: -8px;
            display: none;
        }

        .iants-input-upload .files div:hover .icon-shanchu {
            display: block;
        }

    .iants-input-upload .placeholder {
        width: 80px;
        height: 80px;
        position: relative;
    }

/*#endregion*/



/*#region 下单**/
.iants-xiadan-cate ul li {
    display: inline-block;
    cursor: pointer;
}

    .iants-xiadan-cate ul li a {
        display: block;
        padding: 10px 15px;
        color: #333;
        border-top-left-radius: 5px;
        border-top-right-radius: 5px;
        margin-bottom: -1px;
    }

    .iants-xiadan-cate ul li.select a {
        color: #ffffff;
        background-color: #46a0fb;
    }

.iants-xiada-searchinput {
    border: none;
}

    .iants-xiada-searchinput:focus {
        border: none;
    }

.iants-xiada-shopCart {
    width: 120px;
    max-width: 20%;
    border: 1px #eee solid;
    height: 39px;
    position: relative;
    justify-content: center;
    border-radius: 2px;
    text-align: center;
    display: flex;
    align-items: center;
    font-size: 12px;
    color: #46a0fb;
}

    .iants-xiada-shopCart small {
        background: #df3028;
        color: #fff;
        border-radius: 10px;
        padding: 0 5px;
        font-style: normal;
        margin-right: 3px;
    }

.spList-sortbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f5f5f5;
    padding: 5px 0;
    margin-bottom: 10px;
}

.spList-sortbar-right {
    flex: 1;
    justify-content: flex-end;
}

    .spList-sortbar-right .total {
        line-height: 37px;
    }

        .spList-sortbar-right .total b {
            margin: 0 5px;
        }

.spList-sortbar-pricesearch {
}

    .spList-sortbar-pricesearch input {
        width: 90px;
        height: 28px;
        line-height: 26px;
    }

    .spList-sortbar-pricesearch button {
        padding: 0 10px;
        background: #46a0fb;
        cursor: pointer;
        height: 26px;
        color: #fff;
        display: none;
    }

    .spList-sortbar-pricesearch:hover button {
        display: inline-block;
    }

.spList-sortbar ul li {
    float: left;
    padding: 0 20px;
}

    .spList-sortbar ul li a {
        display: block;
        line-height: 28px;
        color: #333;
        border-bottom: 2px solid transparent;
    }

        .spList-sortbar ul li a .iconfont {
            font-size: 14px;
            margin-left: 5px;
        }

    .spList-sortbar ul li.select a {
        border-bottom: 2px solid #46a0fb;
    }

div.tpage {
    height: 37px;
}

    div.tpage a {
        padding: 0 15px;
        color: #333;
    }

        div.tpage a:hover {
            color: #46a0fb;
        }

    div.tpage a, div.tpage span {
        display: inline-block;
        line-height: 37px;
    }

.iants-xiadan-pitem {
    width: 20%;
    max-width: 250px;
    border: 1px solid #dae0e5;
    margin-right: 20px;
    margin-bottom: 20px;
}
    .iants-xiadan-pitem.border-danger {
        border-color: #FF5722;
    }

    .iants-xiadan-pitem:hover {
        box-shadow: 0 1px 6px rgba(0, 0, 0, 0.15);
    }

    .iants-xiadan-pitem img {
        width: 100%;
    }

    .iants-xiadan-pitem a {
        color: #333333;
    }

        .iants-xiadan-pitem a:hover {
            color: #e4393c;
        }
/*#endregion**/


/*#region 下单**/
.iants-numbox {
    position: relative;
    display: inline-block;
    overflow: hidden;
    width: 120px;
    height: 35px;
    padding: 0 40px;
    vertical-align: top;
    vertical-align: middle;
    border: solid 1px #bbb;
    border-radius: 3px;
    background-color: #efeff4;
}

    .iants-numbox [class*=btn-numbox], .iants-numbox [class*=numbox-btn] {
        font-size: 18px;
        font-weight: 400;
        line-height: 100%;
        position: absolute;
        top: 0;
        overflow: hidden;
        width: 40px;
        height: 100%;
        padding: 0;
        color: #555;
        border: none;
        border-radius: 0;
        background-color: #f9f9f9;
    }

    .iants-numbox .iants-btn-numbox-minus, .iants-numbox .iants-numbox-btn-minus {
        left: 0;
        border-top-left-radius: 3px;
        border-bottom-left-radius: 3px;
    }

    .iants-numbox .iants-input-numbox, .iants-numbox .iants-numbox-input {
        display: inline-block;
        overflow: hidden;
        width: 100% !important;
        height: 100%;
        margin: 0;
        padding: 0 3px !important;
        text-align: center;
        text-overflow: ellipsis;
        word-break: normal;
        border: none !important;
        border-right: solid 1px #ccc !important;
        border-left: solid 1px #ccc !important;
        border-radius: 0 !important;
    }

.iants-xiadan-pimgs {
    width: 410px;
}

    .iants-xiadan-pimgs .img-main img {
        width: 100%;
        /* height: 410px;*/
    }

    .iants-xiadan-pimgs .img-small img {
        width: 50px;
        height: 50px;
        cursor: pointer;
    }

        .iants-xiadan-pimgs .img-small img:hover, .iants-xiadan-pimgs .img-small img.select {
            border-color: red;
        }

.iants-xiadan-spec {
}

    .iants-xiadan-spec span {
        cursor: pointer;
    }

    .iants-xiadan-spec img, .buyer-product-list .iants-xiadan-spec img {
        width: 50px;
        height: 50px;
        cursor: pointer;
    }


        .iants-xiadan-spec span.select, .iants-xiadan-spec img.select {
            border-color: red;
        }

.lixiadan {
    color: #E5511D;
    border-color: #F0CAB6;
    background: #FFD9BC;
    border-radius: 2px;
    border-width: 1px;
    border-style: solid;
    cursor: pointer;
    width: 150px;
}

.addcart {
    border-width: 1px;
    border-style: solid;
    width: 180px;
    color: #FFF;
    border-color: #F40;
    background: #F40;
    border-radius: 2px;
}

.iants-xiadan-tabselect {
    border-top: 2px solid #f40;
    background-color: #fff;
    color: #f40;
    border-bottom: none;
}

.mall-attributes-list {
    clear: both;
}

    .mall-attributes-list li {
        display: inline;
        float: left;
        width: 206px;
        height: 24px;
        margin-right: 20px;
        overflow: hidden;
        text-indent: 5px;
        line-height: 24px;
        white-space: nowrap;
        text-overflow: ellipsis;
    }

.mall-description img {
    max-width: 750px;
    display: block;
    width: 100%;
}

.mall-quick-filter li {
    cursor: pointer;
}

.mall-quick-filter .icon-jiaobiao {
    top: -2px;
}

.mall-table {
    width: 100%;
    table-layout: fixed;
}

    .mall-table th, .mall-table td {
        text-align: left;
        padding-left: 15px;
        border: 1px solid #ebebeb;
    }

    .mall-table th {
        color: rgba(0, 0, 0, 0.6);
        padding: 10px 15px;
        position: relative;
        font-weight: 400;
        background: rgb(247, 248, 250);
        font-size: 14px;
    }

    .mall-table td {
    }

        .mall-table td.split {
            border: none;
        }

        .mall-table td.title {
            background: rgb(247, 248, 250);
            padding: 10px 12px;
        }

    .mall-table .opt a {
        padding: 5px 8px;
        display: inline-block;
        vertical-align: top;
    }

.mall-dropdown {
    top: 35px;
    left: 0;
    display: none;
}

#flag .mall-dropdown, #bz .mall-dropdown {
    top: 28px;
}

.mall-down {
    cursor: pointer;
}

    .mall-down label ~ .mall-dropdown {
        left: 105px;
    }

.mall-dropdown li {
    cursor: pointer;
}

    .mall-dropdown li:hover, .mall-dropdown li.select {
        background-color: #dae0e5;
    }

/*.mall-down:hover .mall-dropdown {
            display: block;
        }*/
.mall-down input[readonly], .mall-date input[readonly] {
    background-color: white;
}

.mall-down:after {
    content: "\e729";
    position: absolute;
    right: 5px;
    color: #A3B1CC;
}

.mall-down.multi:after {
    right: 10px;
    top: 50%;
    margin-top: -10px;
}

.mall-down.multi {
    min-height: 2.125rem;
    padding: 0 30px 0 4px;
    min-width: 220px;
}

    .mall-down.multi p {
        background-color: #dbe9f1;
        margin: 4px 2px;
        padding: 3px 5px;
        border-radius: 3px;
    }

        .mall-down.multi p label {
        }

        .mall-down.multi p span {
            padding-left: 5px;
            cursor: pointer;
        }


.mall-date:after {
    content: "\eb3f";
    right: 10px;
    position: absolute;
    color: #A3B1CC;
}

.mall-custom-btns a {
    padding: 0 20px;
    margin-right: 10px;
    height: 2.125rem;
    line-height: 2.125rem;
}
/*#endregion**/


input.border-danger {
    border: 1px solid #FF5722;
}


.iants-table-stat thead, .iants-table-stat tr {
    border-top-width: 1px;
    border-top-style: solid;
    border-top-color: #a8bfde;
}

.iants-table-stat {
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: #a8bfde;
}

    /* Padding and font style */
    .iants-table-stat td, .iants-table-stat th {
        padding: 10px;
        font-size: 12px;
        font-family: Verdana;
        color: #5b7da3;
        text-align: center;
    }

/* Alternating background colors */
/* .iants-table-stat tr:nth-child(even) {
        background: #d3dfed
    }

    .iants-table-stat tr:nth-child(odd) {
        background: #FFF
    }*/

.leo-table.edit td .iants-color-group {
    width: 100%;
    height: 100%;
    overflow-y: auto;
}

    .leo-table.edit td .iants-color-group input {
        padding: 5px 4px;
        margin-bottom: 5px;
        border-left-color: #dee2e6;
        border-bottom-color: #dee2e6;
        border-radius: 0;
    }

    .leo-table.edit td .iants-color-group.stock input {
        margin-bottom: 0px;
        color: #999;
    }

    .leo-table.edit td .iants-color-group input.ys {
        border-left: none;
    }


.leo-table td .iants-color-grouplabel {
    height: auto;
    overflow-y: auto;
    width: 100%;
}

    .leo-table td .iants-color-grouplabel input {
        padding: 5px 4px;
        margin-bottom: 5px;
        border-left-color: #dee2e6;
        border-bottom-color: #dee2e6;
    }

    .leo-table td .iants-color-grouplabel .leo-input-label.ys {
        border-left: none;
    }

    .leo-table td .iants-color-grouplabel input {
        border: none !important;
        text-align: center;
        border-radius: 0;
    }


/*订单总金额*/
#group_280 .leo-input-row.Czongje {
    width: 23.3%;
}

    #group_280 .leo-input-row.Czongje input[name=Czongje] {
        color: #dc3545;
        font-weight: bold;
        font-size: 16px;
        width: 100%;
    }

#group_280 .leo-input-row.Cbibie {
    width: 10%;
    padding-left: 0;
}

    #group_280 .leo-input-row.Cbibie .leo-input-label,
    #group_280 .leo-input-row.Czheusdje .leo-input-label,
    #group_280 .leo-input-row.Czhermbje .leo-input-label {
        display: none;
    }

/*USD汇率*/
/*RMB汇率*/
#group_280 .leo-input-row.Cusdhl,
#group_280 .leo-input-row.Crmbhl {
    width: 20%;
}

#group_280 .leo-input-row.Czheusdje,
#group_280 .leo-input-row.Czhermbje {
    width: 13.3%;
    padding-left: 0;
}

/*#region 详情页操作按钮*/
.iants-btn-group {
    top: 10px;
    right: 20px;
}

    .iants-btn-group a {
        padding: 8px 15px;
        font-weight: bold;
        line-height: normal;
        border: solid 1px;
        text-align: center;
        -moz-transition-duration: 0.3s;
        -o-transition-duration: 0.3s;
        -webkit-transition-duration: 0.3s;
        transition-duration: 0.3s;
        -moz-transition-property: background;
        -o-transition-property: background;
        -webkit-transition-property: background;
        transition-property: background;
        font-size: 12px;
        text-indent: 0px;
        cursor: pointer;
        color: #000;
        background: #efeff4;
        border-color: #efeff4;
        border-radius: unset;
        border-right: 1px solid #ddd;
    }

        .iants-btn-group a:first-child {
            border-top-left-radius: 0.125rem;
            border-bottom-left-radius: 0.125rem;
        }

        .iants-btn-group a:last-child {
            border-top-right-radius: 0.125rem;
            border-bottom-right-radius: 0.125rem;
            border: none
        }

        .iants-btn-group a:active {
            color: #00647f;
            -moz-transition-duration: 0s;
            -o-transition-duration: 0s;
            -webkit-transition-duration: 0s;
            transition-duration: 0s;
            -webkit-text-shadow: 0 1px 0 rgba(255, 255, 255, 0.4);
            text-shadow: 0 1px 0 rgba(255, 255, 255, 0.4);
            -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3) inset, 0 1px 0 #fff;
            -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3) inset, 0 1px 0 #fff;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3) inset, 0 1px 0 #fff;
        }



        .iants-btn-group a:hover {
            color: #000;
            background-color: #D1D1D1;
            text-decoration: none;
        }


        .iants-btn-group a:active {
            background-color: #CCCCCC;
            color: #000;
        }
/*#endregion*/


.iants-w990 {
    width: 990px;
    margin: 0 auto;
}



.mui-badge {
    font-size: 12px;
    line-height: 1;
    display: inline-block;
    padding: 3px 6px;
    color: #333;
    border-radius: 100px;
    background-color: rgba(0, 0, 0, .15);
}

    .mui-badge.mui-badge-inverted {
        padding: 0 5px 0 0;
        color: #929292;
        background-color: transparent;
    }

.mui-badge-primary, .mui-badge-blue {
    color: #fff;
    background-color: #007aff;
}

    .mui-badge-primary.mui-badge-inverted, .mui-badge-blue.mui-badge-inverted {
        color: #007aff;
        background-color: transparent;
    }

.mui-badge-success, .mui-badge-green {
    color: #fff;
    background-color: #4cd964;
}

    .mui-badge-success.mui-badge-inverted, .mui-badge-green.mui-badge-inverted {
        color: #4cd964;
        background-color: transparent;
    }

.mui-badge-warning, .mui-badge-yellow {
    color: #fff;
    background-color: #f0ad4e;
}

    .mui-badge-warning.mui-badge-inverted, .mui-badge-yellow.mui-badge-inverted {
        color: #f0ad4e;
        background-color: transparent;
    }

.mui-badge-danger, .mui-badge-red {
    color: #fff;
    background-color: #dd524d;
}

    .mui-badge-danger.mui-badge-inverted, .mui-badge-red.mui-badge-inverted {
        color: #dd524d;
        background-color: transparent;
    }

.mui-badge-royal, .mui-badge-purple {
    color: #fff;
    background-color: #8a6de9;
}

    .mui-badge-royal.mui-badge-inverted, .mui-badge-purple.mui-badge-inverted {
        color: #8a6de9;
        background-color: transparent;
    }


.iants-print-content table {
    min-width: 800px;
}



.iants-order-container .leo-form-content {
    height: 100%;
    padding: 0px;
}

.iants-order-container .leo-form-action.fixed {
    width: 60%;
    border-right: 1px solid #dee2e6;
    padding: 10px 0 10px;
}

.iants-order-container .leo-form-action .leo-btn-yellow {
    padding: 8px 50px;
}

.iants-order-container .leo-footer {
    left: 60%;
}

.iants-dropmenu {
    z-index: 999999;
}

    .iants-dropmenu a {
        display: block;
    }



        .iants-dropmenu a.leo-btn-blue, .iants-dropmenu a.leo-btn-yellow, .iants-mobile-menu a {
            border-radius: 0;
            background: none;
            background-color: transparent;
            border: none;
            border-bottom: 1px solid #ced4da;
            padding: 10px;
            color: #fff;
        }

    .iants-dropmenu.iants-mobile-menu a {
        padding: 15px 10px;
    }

    .iants-dropmenu a.leo-btn-blue:hover, .iants-dropmenu a.leo-btn-yellow:hover {
        background-color: #5c5a5a;
    }

    .iants-dropmenu .iconfont {
        color: red;
        padding-top: 1px;
        right: -5px;
        top: -10px;
        background: #343a40;
        border-radius: 24px;
        width: 24px;
        height: 24px;
        text-align: center;
        cursor: pointer;
    }


.iants-order-sproduct {
    padding-top: 5px;
    padding-bottom: 5px;
    border-bottom: 1px solid #dee2e6;
    background-color: #ffffff;
}

    .iants-order-sproduct .img {
        width: 20%;
        padding: 5px;
    }

        .iants-order-sproduct .img img {
            width: 100%;
            height: 100%;
            border-radius: 5px;
        }

    .iants-order-sproduct .cpcheckbox.absolute-top {
        left: 5px;
        top: 5px;
    }

    .iants-order-sproduct .sproduct-item {
        width: 40%;
        text-align: left;
    }

        .iants-order-sproduct .sproduct-item span {
            word-break: break-all;
            max-width: 150px;
        }

        .iants-order-sproduct .sproduct-item .text-light-muted {
            overflow: hidden;
            text-align: right;
        }

    .iants-order-sproduct .sproduct-color {
        width: 30%;
    }

        .iants-order-sproduct .sproduct-color label {
            word-break: break-all;
            max-width: 200px;
        }

        .iants-order-sproduct .sproduct-color input[type=text] {
            width: 33%;
        }

        .iants-order-sproduct .sproduct-color input[type=text] {
            border-radius: 0;
            border-right: none;
        }

        .iants-order-sproduct .sproduct-color div input[type=text]:first-child {
            border-top-left-radius: 4px;
            border-bottom-left-radius: 4px;
        }

        .iants-order-sproduct .sproduct-color div input[type=text]:last-child {
            border-right: 0.0625rem solid #ced4da;
            border-top-right-radius: 4px;
            border-bottom-right-radius: 4px;
        }

.iants-page-left {
    height: 2.5rem;
    padding-left: 10px;
}

.iants-quick-width {
    width: 100%;
    margin-bottom: 10px;
}

.iants-quick {
    width: 100%;
}

    .iants-quick input {
        border-radius: 0;
        border-right: none;
        text-align: center;
        min-width: 60px;
    }

        .iants-quick input.iants-quick-suffix {
            margin-right: 10px;
            border-right: 0.0625rem solid #ced4da;
        }

    .iants-quick label {
        border-left: 0.0625rem solid #ced4da;
        height: 2.125rem;
        padding: 0 0.625rem;
        align-items: center;
        display: flex;
    }

    .iants-quick input:last-child {
        border-right: 0.0625rem solid #ced4da;
    }

    .iants-quick input:focus {
        border-right: 0.0625rem solid #3D8CF7;
    }

.toolbar .iants-quick .leo-btn-gray {
    margin-right: 0px;
    line-height: 2.125rem;
    padding: 0px 10px;
    color: red;
    height: 2.125rem;
}


.iants-footer-cart {
    bottom: 0;
    padding: 0 15px;
    cursor: pointer;
}

    .iants-footer-cart .icon-gouwuche1 {
        font-weight: bold;
        font-size: 24px;
        color: #f21a1a;
    }

    .iants-footer-cart .icon-circle {
        position: absolute;
        left: 38px;
        top: 5px;
        color: red;
    }

.iants-currentstatus {
    background-color: #ff8f38;
    color: #000;
    margin: 0px 0 10px;
    padding: 10px 15px;
    width: 200px;
    border-radius: 4px;
    text-align: center;
    font-weight: bold;
    font-size: 14px;
    box-shadow: 1px 1px 6px rgba(0, 0, 0, 0.05);
}


.iants-grouptip {
    text-align: center;
    border: 1px solid #f3d995;
    color: orangered;
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    padding: 5px 20px 5px 15px;
    background: #fefcee;
    position: relative;
    margin-bottom: 10px;
    border-radius: 4px;
}

.iants-quick-menu a {
    background: #f7f9fa;
    color: #333;
    cursor: pointer;
}

.iants-quick-menu label {
    cursor: pointer;
    padding-bottom: 20px;
}

.iants-quick-menu a:hover {
    background-color: #e6eef5;
}

.iants-quick-menu .iconfont {
    font-family: "iconfontMobile" !important;
    font-size: 40px;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin-bottom: 10px;
}


.iants-cp-template.thumbnail {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
}

    .iants-cp-template.thumbnail > div {
        width: 33.33333333333333%;
        position: relative;
    }

    .iants-cp-template.thumbnail .iants-order-sproduct {
        border-right: 1px solid #dee2e6;
    }

.text-danger input[type=checkbox], .text-danger input[type=radio] {
    color: #FF5722;
}


.iants-order-container .icon-caidan-dakai, .iants-order-container .icon-menu-open {
    font-size: 24px;
    font-weight: bold;
    padding: 5px 10px;
}

.leo-table.edit .iants-xitem input, .leo-table.edit .iants-xitem select {
    text-align: left;
}

.leo-table.edit .iants-xitem .iants-xitem-label {
    width: 60px;
    overflow: hidden;
    text-align: left;
}

.leo-table.edit .iants-xitem input {
    height: 34px !important;
    font-weight: bold;
    font-size: 16px;
    color: #28a745;
    padding: 0;
}

.leo-table.edit .iants-xitem .xCtijm input {
    border: 0.0625rem solid #ced4da;
    border-color: #ced4da;
    font-weight: bold;
    font-size: 14px;
    padding: 0 0.625rem;
    color: #28a745;
    height: 40px !important;
    border-radius: 4px;
}


.iants-mobile {
}

.iants-mobile-nav {
    color: #252631;
    font-size: 14px;
}

    .iants-mobile-nav .iconfont {
        font-size: 22px;
    }

    .iants-mobile-nav .text-main {
        color: #2fb3ff;
        font-weight: bold;
    }

.iants-mobile-menu.iants-quick-menu .iconfont {
    width: 40px;
    height: 40px;
    font-size: 30px;
    margin: 0;
}

.iants-mobile-menu.iants-quick-menu label, .iants-mobile-nav.iants-quick-menu label {
    padding-bottom: 0;
}

.iants-mobile-nav.iants-quick-menu .iconfont {
    margin: 0;
    font-size: 24px;
}

.iants-mlist-btns a {
    padding: 10px;
}

#popoutputlist {
}

    #popoutputlist.draglist {
        list-style-type: none;
        margin: 0px;
    }

        #popoutputlist.draglist li, #popoutputlist.draglist li {
            width: 150px;
            word-break: break-all;
        }

        #popoutputlist.draglist div, #popoutputlist.draglist div {
            width: 90%;
            height: 90%;
            border: solid 1px #999;
            background-color: #f6f6f6;
            text-align: center;
            border-radius: 5px;
        }


        #popoutputlist.draglist .placeHolder div {
            background-color: white !important;
            border: dashed 1px gray !important;
            padding: 10px;
            height: 26px;
        }

.iants-cpinfo-tabheader {
}

    .iants-cpinfo-tabheader a {
        color: #222222;
        font-weight: bold;
        font-size: 14px;
        border-bottom: 2px solid #ffffff;
    }

        .iants-cpinfo-tabheader a.select {
            color: #ff4000;
            border-bottom: 2px solid #ff4000;
        }

.new-editor-right-item {
    width: 83px;
    height: 83px;
    display: inline-block;
    margin: 12px 12px 0 0;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    cursor: move;
    border-radius: 2px;
    border: 1px solid #efefef;
    background-color: #ffffff;
}

    .new-editor-right-item.text pre {
        padding: 5px;
        font-size: 12px;
        color: #A9A5A0;
        height: 83px;
        line-height: 1.2;
    }

    .new-editor-right-item .item-sort {
        position: absolute;
        display: inline-block;
        width: 30px;
        height: 30px;
        left: 0;
        top: 0;
        border: 2px 0px 3px 0px;
        font-size: 20px;
        line-height: 30px;
        color: #fff;
        background-color: #07f;
        text-align: center;
        zoom: .5;
    }

    .new-editor-right-item .item-tools {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        height: 24px;
        background-color: rgba(0, 0, 0, .6);
        color: #fff;
        transition: all .3s;
        cursor: pointer;
        transform: translateY(100%);
    }

    .new-editor-right-item:hover .item-tools {
        transform: translateY(0%);
    }

    .new-editor-right-item .item-delete {
        width: 18px;
        height: 18px;
        display: inline-block;
        background-color: rgba(0, 0, 0, .4);
        background-position: 4px 2px;
        background-size: 12px;
        background-repeat: no-repeat;
        position: absolute;
        right: 0;
        top: 0;
        border-radius: 0 0 0 12px;
        cursor: pointer;
        color: #ffffff;
        font-size: 10px;
        text-align: center
    }

#descUl .tab-active {
    color: #ff4000;
    font-weight: bold;
}

.iants-segmented-control {
    font-size: 14px;
    position: relative;
    display: table;
    overflow: hidden;
    width: 100%;
    table-layout: fixed;
    border-radius: 3px;
    background-color: transparent;
    border-collapse: collapse;
    border-spacing: 0;
}

    .iants-segmented-control .iants-control-item {
        line-height: 34px;
        display: table-cell;
        overflow: hidden;
        width: 1%;
        -webkit-transition: background-color .1s linear;
        transition: background-color .1s linear;
        text-align: center;
        white-space: nowrap;
        text-overflow: ellipsis;
        color: #007aff;
        border: 1px solid #333;
    }

        .iants-segmented-control .iants-control-item:last-child {
            border-top-right-radius: 3px;
            border-bottom-right-radius: 3px;
        }


        .iants-segmented-control .iants-control-item.iants-active {
            color: #fff;
            background-color: #333;
        }
