﻿
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
	list-style: none;
	font-family: -apple-system, BlinkMacSystemFont,
         'Segoe UI', 'PingFang SC', 'Hiragino Sans GB',
        'Microsoft YaHei', 'Helvetica Neue', Helvetica, Arial, sans-serif, 'Apple Color Emoji',
        'Segoe UI Emoji', 'Segoe UI Symbol';
}
html,head,body,div,h1,h2,h3,h4,h5,h6,p,img,ul,li,ol,dl,dt,table,thead,tbody,th,tr,td {
    margin: 0;
    padding: 0;
}

ul,li,ol,dl,dt {
    list-style: none;
}

html, body {
    width: 100%;
    height: 100%;
}

body {
    color: #262626;
    font-size: 14px;
    font-family: -apple-system,BlinkMacSystemFont,'Segoe UI','PingFang SC','Hiragino Sans GB','Microsoft YaHei','Helvetica Neue',Helvetica,Arial,sans-serif,'Apple Color Emoji','Segoe UI Emoji','Segoe UI Symbol';
    line-height: 1.5;
    background-color: #fff;
    -webkit-font-feature-settings: 'tnum';
    font-feature-settings: 'tnum';

}

a {
    color: #222;
    text-decoration: none;
    background-color: transparent;
    outline: none;
    cursor: pointer;
    -webkit-text-decoration-skip: objects;
}

    a:focus {
        text-decoration: underline;
        -webkit-text-decoration-skip: ink;
    }

    a:hover {
        color: #40a9ff;
        cursor:pointer;
    }

    a:active {
        color: #096dd9;
    }

    a:active, a:hover, a:visited {
        text-decoration: none;
        outline: 0;
    }

    a[disabled] {
        color: rgba(0,0,0,0.25);
        cursor: not-allowed;
        pointer-events: none;
    }

img {
    vertical-align: middle;
    border-style: none;
}


table {
    border-collapse: collapse;
}

th {
    text-align: inherit;
}

input, button, select, optgroup, textarea {
    margin: 0;
    color: inherit;
    font-size: inherit;
    font-family: inherit;
    line-height: inherit;
}

button, input {
    overflow: visible;
}

button, select {
    text-transform: none;
}


textarea {
    overflow: auto;
    resize: vertical;
}



.btn {
    position: relative;
    display: inline-block;
    font-weight: 400;
    white-space: nowrap;
    text-align: center;
    background-image: none;
    border: 1px solid transparent;
    -webkit-box-shadow: 0 2px 0 rgba(0,0,0,0.015);
    box-shadow: 0 2px 0 rgba(0,0,0,0.015);
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    height: 32px;
    padding: 0 15px;
    font-size: 14px;
    border-radius: 4px;
    color: rgba(0,0,0,0.65);
    background-color: #fff;
    border-color: #d9d9d9;
}

    .btn > .anticon {
        line-height: 1;
    }

    .btn, .btn:active, .btn:focus {
        outline: 0;
    }

        .btn:not([disabled]):hover {
            text-decoration: none;
        }

        .btn:not([disabled]):active {
            outline: 0;
            -webkit-box-shadow: none;
            box-shadow: none;
        }

        .btn.disabled, .btn[disabled] {
            cursor: not-allowed;
        }

            .btn.disabled > *, .btn[disabled] > * {
                pointer-events: none;
            }

.btn-lg {
    height:40px;
    line-height:40px;
    padding: 0 16px;
    font-size: 16px;
    border-radius: 4px;
}

.btn-sm {
    height:32px;
    line-height: 24px;
    padding: 0 8px;
    font-size: 14px;
    border-radius: 4px;
}

.btn > a:only-child {
    color: currentColor;
}

    .btn > a:only-child::after {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background: transparent;
        content: '';
    }

.btn:hover, .btn:focus {
    color: #40a9ff;
    background-color: #fff;
    border-color: #40a9ff;
}
.default_active {
    color: #40a9ff;
    background-color: #fff;
    border-color: #40a9ff;
}
    .btn:hover > a:only-child, .btn:focus > a:only-child {
        color: currentColor;
    }

        .btn:hover > a:only-child::after, .btn:focus > a:only-child::after {
            position: absolute;
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;
            background: transparent;
            content: '';
        }

.btn:active, .btn.active {
    color: #096dd9;
    background-color: #fff;
    border-color: #096dd9;
}

    .btn:active > a:only-child, .btn.active > a:only-child {
        color: currentColor;
    }

        .btn:active > a:only-child::after, .btn.active > a:only-child::after {
            position: absolute;
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;
            background: transparent;
            content: '';
        }

.btn-disabled, .btn.disabled, .btn[disabled], .btn-disabled:hover, .btn.disabled:hover, .btn[disabled]:hover, .btn-disabled:focus, .btn.disabled:focus, .btn[disabled]:focus, .btn-disabled:active, .btn.disabled:active, .btn[disabled]:active, .btn-disabled.active, .btn.disabled.active, .btn[disabled].active {
    color: rgba(0,0,0,0.25);
    background-color: #f5f5f5;
    border-color: #d9d9d9;
    text-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

    .btn-disabled > a:only-child, .btn.disabled > a:only-child, .btn[disabled] > a:only-child, .btn-disabled:hover > a:only-child, .btn.disabled:hover > a:only-child, .btn[disabled]:hover > a:only-child, .btn-disabled:focus > a:only-child, .btn.disabled:focus > a:only-child, .btn[disabled]:focus > a:only-child, .btn-disabled:active > a:only-child, .btn.disabled:active > a:only-child, .btn[disabled]:active > a:only-child, .btn-disabled.active > a:only-child, .btn.disabled.active > a:only-child, .btn[disabled].active > a:only-child {
        color: currentColor;
    }

        .btn-disabled > a:only-child::after, .btn.disabled > a:only-child::after, .btn[disabled] > a:only-child::after, .btn-disabled:hover > a:only-child::after, .btn.disabled:hover > a:only-child::after, .btn[disabled]:hover > a:only-child::after, .btn-disabled:focus > a:only-child::after, .btn.disabled:focus > a:only-child::after, .btn[disabled]:focus > a:only-child::after, .btn-disabled:active > a:only-child::after, .btn.disabled:active > a:only-child::after, .btn[disabled]:active > a:only-child::after, .btn-disabled.active > a:only-child::after, .btn.disabled.active > a:only-child::after, .btn[disabled].active > a:only-child::after {
            position: absolute;
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;
            background: transparent;
            content: '';
        }

.btn:hover, .btn:focus, .btn:active, .btn.active {
    text-decoration: none;
    background: #fff;
}

.btn > i, .btn > span {
    display: inline-block;
    pointer-events: none;
}

.btn-primary {
    color: #fff;
    background-color: #1890ff;
    border-color: #1890ff;
    text-shadow: 0 -1px 0 rgba(0,0,0,0.12);
    -webkit-box-shadow: 0 2px 0 rgba(0,0,0,0.045);
    box-shadow: 0 2px 0 rgba(0,0,0,0.045);
}

    .btn-primary > a:only-child {
        color: currentColor;
    }

        .btn-primary > a:only-child::after {
            position: absolute;
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;
            background: transparent;
            content: '';
        }

    .btn-primary:hover, .btn-primary:focus {
        color: #fff;
        background-color: #40a9ff;
        border-color: #40a9ff;
    }

        .btn-primary:hover > a:only-child, .btn-primary:focus > a:only-child {
            color: currentColor;
        }

            .btn-primary:hover > a:only-child::after, .btn-primary:focus > a:only-child::after {
                position: absolute;
                top: 0;
                right: 0;
                bottom: 0;
                left: 0;
                background: transparent;
                content: '';
            }

    .btn-primary:active, .btn-primary.active {
        color: #fff;
        background-color: #096dd9;
        border-color: #096dd9;
    }

        .btn-primary:active > a:only-child, .btn-primary.active > a:only-child {
            color: currentColor;
        }

            .btn-primary:active > a:only-child::after, .btn-primary.active > a:only-child::after {
                position: absolute;
                top: 0;
                right: 0;
                bottom: 0;
                left: 0;
                background: transparent;
                content: '';
            }

    .btn-primary-disabled, .btn-primary.disabled, .btn-primary[disabled], .btn-primary-disabled:hover, .btn-primary.disabled:hover, .btn-primary[disabled]:hover, .btn-primary-disabled:focus, .btn-primary.disabled:focus, .btn-primary[disabled]:focus, .btn-primary-disabled:active, .btn-primary.disabled:active, .btn-primary[disabled]:active, .btn-primary-disabled.active, .btn-primary.disabled.active, .btn-primary[disabled].active {
        color: rgba(0,0,0,0.25);
        background-color: #f5f5f5;
        border-color: #d9d9d9;
        text-shadow: none;
        -webkit-box-shadow: none;
        box-shadow: none;
    }

        .btn-primary-disabled > a:only-child, .btn-primary.disabled > a:only-child, .btn-primary[disabled] > a:only-child, .btn-primary-disabled:hover > a:only-child, .btn-primary.disabled:hover > a:only-child, .btn-primary[disabled]:hover > a:only-child, .btn-primary-disabled:focus > a:only-child, .btn-primary.disabled:focus > a:only-child, .btn-primary[disabled]:focus > a:only-child, .btn-primary-disabled:active > a:only-child, .btn-primary.disabled:active > a:only-child, .btn-primary[disabled]:active > a:only-child, .btn-primary-disabled.active > a:only-child, .btn-primary.disabled.active > a:only-child, .btn-primary[disabled].active > a:only-child {
            color: currentColor;
        }

            .btn-primary-disabled > a:only-child::after, .btn-primary.disabled > a:only-child::after, .btn-primary[disabled] > a:only-child::after, .btn-primary-disabled:hover > a:only-child::after, .btn-primary.disabled:hover > a:only-child::after, .btn-primary[disabled]:hover > a:only-child::after, .btn-primary-disabled:focus > a:only-child::after, .btn-primary.disabled:focus > a:only-child::after, .btn-primary[disabled]:focus > a:only-child::after, .btn-primary-disabled:active > a:only-child::after, .btn-primary.disabled:active > a:only-child::after, .btn-primary[disabled]:active > a:only-child::after, .btn-primary-disabled.active > a:only-child::after, .btn-primary.disabled.active > a:only-child::after, .btn-primary[disabled].active > a:only-child::after {
                position: absolute;
                top: 0;
                right: 0;
                bottom: 0;
                left: 0;
                background: transparent;
                content: '';
            }

.btn-group .btn-primary:not(:first-child):not(:last-child) {
    border-right-color: #40a9ff;
    border-left-color: #40a9ff;
}

    .btn-group .btn-primary:not(:first-child):not(:last-child):disabled {
        border-color: #d9d9d9;
    }

.btn-group .btn-primary:first-child:not(:last-child) {
    border-right-color: #40a9ff;
}

    .btn-group .btn-primary:first-child:not(:last-child)[disabled] {
        border-right-color: #d9d9d9;
    }

.btn-group .btn-primary:last-child:not(:first-child), .btn-group .btn-primary + .btn-primary {
    border-left-color: #40a9ff;
}

    .btn-group .btn-primary:last-child:not(:first-child)[disabled], .btn-group .btn-primary + .btn-primary[disabled] {
        border-left-color: #d9d9d9;
    }

.btn-ghost {
    color: rgba(0,0,0,0.65);
    background-color: transparent;
    border-color: #d9d9d9;
}

    .btn-ghost > a:only-child {
        color: currentColor;
    }

        .btn-ghost > a:only-child::after {
            position: absolute;
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;
            background: transparent;
            content: '';
        }

    .btn-ghost:hover, .btn-ghost:focus {
        color: #40a9ff;
        background-color: transparent;
        border-color: #40a9ff;
    }

        .btn-ghost:hover > a:only-child, .btn-ghost:focus > a:only-child {
            color: currentColor;
        }

            .btn-ghost:hover > a:only-child::after, .btn-ghost:focus > a:only-child::after {
                position: absolute;
                top: 0;
                right: 0;
                bottom: 0;
                left: 0;
                background: transparent;
                content: '';
            }

    .btn-ghost:active, .btn-ghost.active {
        color: #096dd9;
        background-color: transparent;
        border-color: #096dd9;
    }

        .btn-ghost:active > a:only-child, .btn-ghost.active > a:only-child {
            color: currentColor;
        }

            .btn-ghost:active > a:only-child::after, .btn-ghost.active > a:only-child::after {
                position: absolute;
                top: 0;
                right: 0;
                bottom: 0;
                left: 0;
                background: transparent;
                content: '';
            }

    .btn-ghost-disabled, .btn-ghost.disabled, .btn-ghost[disabled], .btn-ghost-disabled:hover, .btn-ghost.disabled:hover, .btn-ghost[disabled]:hover, .btn-ghost-disabled:focus, .btn-ghost.disabled:focus, .btn-ghost[disabled]:focus, .btn-ghost-disabled:active, .btn-ghost.disabled:active, .btn-ghost[disabled]:active, .btn-ghost-disabled.active, .btn-ghost.disabled.active, .btn-ghost[disabled].active {
        color: rgba(0,0,0,0.25);
        background-color: #f5f5f5;
        border-color: #d9d9d9;
        text-shadow: none;
        -webkit-box-shadow: none;
        box-shadow: none;
    }

        .btn-ghost-disabled > a:only-child, .btn-ghost.disabled > a:only-child, .btn-ghost[disabled] > a:only-child, .btn-ghost-disabled:hover > a:only-child, .btn-ghost.disabled:hover > a:only-child, .btn-ghost[disabled]:hover > a:only-child, .btn-ghost-disabled:focus > a:only-child, .btn-ghost.disabled:focus > a:only-child, .btn-ghost[disabled]:focus > a:only-child, .btn-ghost-disabled:active > a:only-child, .btn-ghost.disabled:active > a:only-child, .btn-ghost[disabled]:active > a:only-child, .btn-ghost-disabled.active > a:only-child, .btn-ghost.disabled.active > a:only-child, .btn-ghost[disabled].active > a:only-child {
            color: currentColor;
        }

            .btn-ghost-disabled > a:only-child::after, .btn-ghost.disabled > a:only-child::after, .btn-ghost[disabled] > a:only-child::after, .btn-ghost-disabled:hover > a:only-child::after, .btn-ghost.disabled:hover > a:only-child::after, .btn-ghost[disabled]:hover > a:only-child::after, .btn-ghost-disabled:focus > a:only-child::after, .btn-ghost.disabled:focus > a:only-child::after, .btn-ghost[disabled]:focus > a:only-child::after, .btn-ghost-disabled:active > a:only-child::after, .btn-ghost.disabled:active > a:only-child::after, .btn-ghost[disabled]:active > a:only-child::after, .btn-ghost-disabled.active > a:only-child::after, .btn-ghost.disabled.active > a:only-child::after, .btn-ghost[disabled].active > a:only-child::after {
                position: absolute;
                top: 0;
                right: 0;
                bottom: 0;
                left: 0;
                background: transparent;
                content: '';
            }

.btn-dashed {
    color: rgba(0,0,0,0.65);
    background-color: #fff;
    border-color: #d9d9d9;
    border-style: dashed;
}

    .btn-dashed > a:only-child {
        color: currentColor;
    }

        .btn-dashed > a:only-child::after {
            position: absolute;
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;
            background: transparent;
            content: '';
        }

    .btn-dashed:hover, .btn-dashed:focus {
        color: #40a9ff;
        background-color: #fff;
        border-color: #40a9ff;
    }

        .btn-dashed:hover > a:only-child, .btn-dashed:focus > a:only-child {
            color: currentColor;
        }

            .btn-dashed:hover > a:only-child::after, .btn-dashed:focus > a:only-child::after {
                position: absolute;
                top: 0;
                right: 0;
                bottom: 0;
                left: 0;
                background: transparent;
                content: '';
            }

    .btn-dashed:active, .btn-dashed.active {
        color: #096dd9;
        background-color: #fff;
        border-color: #096dd9;
    }

        .btn-dashed:active > a:only-child, .btn-dashed.active > a:only-child {
            color: currentColor;
        }

            .btn-dashed:active > a:only-child::after, .btn-dashed.active > a:only-child::after {
                position: absolute;
                top: 0;
                right: 0;
                bottom: 0;
                left: 0;
                background: transparent;
                content: '';
            }

    .btn-dashed-disabled, .btn-dashed.disabled, .btn-dashed[disabled], .btn-dashed-disabled:hover, .btn-dashed.disabled:hover, .btn-dashed[disabled]:hover, .btn-dashed-disabled:focus, .btn-dashed.disabled:focus, .btn-dashed[disabled]:focus, .btn-dashed-disabled:active, .btn-dashed.disabled:active, .btn-dashed[disabled]:active, .btn-dashed-disabled.active, .btn-dashed.disabled.active, .btn-dashed[disabled].active {
        color: rgba(0,0,0,0.25);
        background-color: #f5f5f5;
        border-color: #d9d9d9;
        text-shadow: none;
        -webkit-box-shadow: none;
        box-shadow: none;
    }

        .btn-dashed-disabled > a:only-child, .btn-dashed.disabled > a:only-child, .btn-dashed[disabled] > a:only-child, .btn-dashed-disabled:hover > a:only-child, .btn-dashed.disabled:hover > a:only-child, .btn-dashed[disabled]:hover > a:only-child, .btn-dashed-disabled:focus > a:only-child, .btn-dashed.disabled:focus > a:only-child, .btn-dashed[disabled]:focus > a:only-child, .btn-dashed-disabled:active > a:only-child, .btn-dashed.disabled:active > a:only-child, .btn-dashed[disabled]:active > a:only-child, .btn-dashed-disabled.active > a:only-child, .btn-dashed.disabled.active > a:only-child, .btn-dashed[disabled].active > a:only-child {
            color: currentColor;
        }

            .btn-dashed-disabled > a:only-child::after, .btn-dashed.disabled > a:only-child::after, .btn-dashed[disabled] > a:only-child::after, .btn-dashed-disabled:hover > a:only-child::after, .btn-dashed.disabled:hover > a:only-child::after, .btn-dashed[disabled]:hover > a:only-child::after, .btn-dashed-disabled:focus > a:only-child::after, .btn-dashed.disabled:focus > a:only-child::after, .btn-dashed[disabled]:focus > a:only-child::after, .btn-dashed-disabled:active > a:only-child::after, .btn-dashed.disabled:active > a:only-child::after, .btn-dashed[disabled]:active > a:only-child::after, .btn-dashed-disabled.active > a:only-child::after, .btn-dashed.disabled.active > a:only-child::after, .btn-dashed[disabled].active > a:only-child::after {
                position: absolute;
                top: 0;
                right: 0;
                bottom: 0;
                left: 0;
                background: transparent;
                content: '';
            }

.btn-danger {
    color: #f5222d;
    background-color: #f5f5f5;
    border-color: #d9d9d9;
}

    .btn-danger > a:only-child {
        color: currentColor;
    }

        .btn-danger > a:only-child::after {
            position: absolute;
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;
            background: transparent;
            content: '';
        }

    .btn-danger:hover {
        color: #fff;
        background-color: #ff4d4f;
        border-color: #ff4d4f;
    }

        .btn-danger:hover > a:only-child {
            color: currentColor;
        }

            .btn-danger:hover > a:only-child::after {
                position: absolute;
                top: 0;
                right: 0;
                bottom: 0;
                left: 0;
                background: transparent;
                content: '';
            }

    .btn-danger:focus {
        color: #ff4d4f;
        background-color: #fff;
        border-color: #ff4d4f;
    }

        .btn-danger:focus > a:only-child {
            color: currentColor;
        }

            .btn-danger:focus > a:only-child::after {
                position: absolute;
                top: 0;
                right: 0;
                bottom: 0;
                left: 0;
                background: transparent;
                content: '';
            }

    .btn-danger:active, .btn-danger.active {
        color: #fff;
        background-color: #cf1322;
        border-color: #cf1322;
    }

        .btn-danger:active > a:only-child, .btn-danger.active > a:only-child {
            color: currentColor;
        }

            .btn-danger:active > a:only-child::after, .btn-danger.active > a:only-child::after {
                position: absolute;
                top: 0;
                right: 0;
                bottom: 0;
                left: 0;
                background: transparent;
                content: '';
            }

    .btn-danger-disabled, .btn-danger.disabled, .btn-danger[disabled], .btn-danger-disabled:hover, .btn-danger.disabled:hover, .btn-danger[disabled]:hover, .btn-danger-disabled:focus, .btn-danger.disabled:focus, .btn-danger[disabled]:focus, .btn-danger-disabled:active, .btn-danger.disabled:active, .btn-danger[disabled]:active, .btn-danger-disabled.active, .btn-danger.disabled.active, .btn-danger[disabled].active {
        color: rgba(0,0,0,0.25);
        background-color: #f5f5f5;
        border-color: #d9d9d9;
        text-shadow: none;
        -webkit-box-shadow: none;
        box-shadow: none;
    }

        .btn-danger-disabled > a:only-child, .btn-danger.disabled > a:only-child, .btn-danger[disabled] > a:only-child, .btn-danger-disabled:hover > a:only-child, .btn-danger.disabled:hover > a:only-child, .btn-danger[disabled]:hover > a:only-child, .btn-danger-disabled:focus > a:only-child, .btn-danger.disabled:focus > a:only-child, .btn-danger[disabled]:focus > a:only-child, .btn-danger-disabled:active > a:only-child, .btn-danger.disabled:active > a:only-child, .btn-danger[disabled]:active > a:only-child, .btn-danger-disabled.active > a:only-child, .btn-danger.disabled.active > a:only-child, .btn-danger[disabled].active > a:only-child {
            color: currentColor;
        }

            .btn-danger-disabled > a:only-child::after, .btn-danger.disabled > a:only-child::after, .btn-danger[disabled] > a:only-child::after, .btn-danger-disabled:hover > a:only-child::after, .btn-danger.disabled:hover > a:only-child::after, .btn-danger[disabled]:hover > a:only-child::after, .btn-danger-disabled:focus > a:only-child::after, .btn-danger.disabled:focus > a:only-child::after, .btn-danger[disabled]:focus > a:only-child::after, .btn-danger-disabled:active > a:only-child::after, .btn-danger.disabled:active > a:only-child::after, .btn-danger[disabled]:active > a:only-child::after, .btn-danger-disabled.active > a:only-child::after, .btn-danger.disabled.active > a:only-child::after, .btn-danger[disabled].active > a:only-child::after {
                position: absolute;
                top: 0;
                right: 0;
                bottom: 0;
                left: 0;
                background: transparent;
                content: '';
            }

.btn-round {
    height: 32px;
    padding: 0 16px;
    font-size: 16px;
    border-radius: 32px;
}

    .btn-round.btn-lg {
        height: 40px;
        padding: 0 20px;
        font-size: 18px;
        border-radius: 40px;
    }

    .btn-round.btn-sm {
        height: 24px;
        padding: 0 12px;
        font-size: 14px;
        border-radius: 24px;
    }

.btn-circle, .btn-circle-outline {
    width: 32px;
    height: 32px;
    padding: 0;
    font-size: 16px;
    border-radius: 50%;
}

    .btn-circle.btn-lg, .btn-circle-outline.btn-lg {
        width: 40px;
        height: 40px;
        padding: 0;
        font-size: 18px;
        border-radius: 50%;
    }

    .btn-circle.btn-sm, .btn-circle-outline.btn-sm {
        width: 24px;
        height: 24px;
        padding: 0;
        font-size: 14px;
        border-radius: 50%;
    }

.btn::before {
    position: absolute;
    top: -1px;
    right: -1px;
    bottom: -1px;
    left: -1px;
    z-index: 1;
    display: none;
    background: #fff;
    border-radius: inherit;
    opacity: .35;
    pointer-events: none;
    content: '';
}


.btn.btn-loading::before {
    display: block;
}

.btn.btn-loading:not(.btn-circle):not(.btn-circle-outline):not(.btn-icon-only) {
    position: relative;
    padding-left: 29px;
    pointer-events: none;
}

    .btn.btn-loading:not(.btn-circle):not(.btn-circle-outline):not(.btn-icon-only) .anticon:not(:last-child) {
        margin-left: -14px;
    }

.btn-sm.btn-loading:not(.btn-circle):not(.btn-circle-outline):not(.btn-icon-only) {
    padding-left: 24px;
}

    .btn-sm.btn-loading:not(.btn-circle):not(.btn-circle-outline):not(.btn-icon-only) .anticon {
        margin-left: -17px;
    }

.btn-group {
    position: relative;
    display: inline-block;
}

    .btn-group > .btn, .btn-group > span > .btn {
        position: relative;
    }

        .btn-group > .btn:hover, .btn-group > span > .btn:hover, .btn-group > .btn:focus, .btn-group > span > .btn:focus, .btn-group > .btn:active, .btn-group > span > .btn:active, .btn-group > .btn.active, .btn-group > span > .btn.active {
            z-index: 2;
        }

        .btn-group > .btn:disabled, .btn-group > span > .btn:disabled {
            z-index: 0;
        }

.btn-group-lg > .btn, .btn-group-lg > span > .btn {
    height: 40px;
    padding: 0 15px;
    font-size: 16px;
    border-radius: 0;
    line-height: 38px;
}

.btn-group-sm > .btn, .btn-group-sm > span > .btn {
    height: 24px;
    padding: 0 7px;
    font-size: 14px;
    border-radius: 0;
    line-height: 22px;
}

    .btn-group-sm > .btn > .anticon, .btn-group-sm > span > .btn > .anticon {
        font-size: 14px;
    }

.btn-group .btn + .btn, .btn + .btn-group, .btn-group span + .btn, .btn-group .btn + span, .btn-group > span + span, .btn-group + .btn, .btn-group + .btn-group {
    margin-left: -1px;
}

.btn-group .btn-primary + .btn:not(.btn-primary):not([disabled]) {
    border-left-color: transparent;
}

.btn-group .btn {
    border-radius: 0;
}

.btn-group > .btn:first-child, .btn-group > span:first-child > .btn {
    margin-left: 0;
}

.btn-group > .btn:only-child {
    border-radius: 4px;
}

.btn-group > span:only-child > .btn {
    border-radius: 4px;
}

.btn-group > .btn:first-child:not(:last-child), .btn-group > span:first-child:not(:last-child) > .btn {
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}

.btn-group > .btn:last-child:not(:first-child), .btn-group > span:last-child:not(:first-child) > .btn {
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}

.btn-group-sm > .btn:only-child {
    border-radius: 4px;
}

.btn-group-sm > span:only-child > .btn {
    border-radius: 4px;
}

.btn-group-sm > .btn:first-child:not(:last-child), .btn-group-sm > span:first-child:not(:last-child) > .btn {
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}

.btn-group-sm > .btn:last-child:not(:first-child), .btn-group-sm > span:last-child:not(:first-child) > .btn {
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}

.btn-group > .btn-group {
    float: left;
}

    .btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
        border-radius: 0;
    }

    .btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child {
        padding-right: 8px;
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
    }

    .btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {
        padding-left: 8px;
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
    }

.btn:not(.btn-circle):not(.btn-circle-outline).btn-icon-only {
    padding-right: 8px;
    padding-left: 8px;
}

.btn:focus > span, .btn:active > span {
    position: relative;
}

.btn > .anticon + span, .btn > span + .anticon {
    margin-left: 8px;
}

.btn-background-ghost {
    color: #fff;
    background: transparent !important;
    border-color: #fff;
}

    .btn-background-ghost.btn-primary {
        color: #1890ff;
        background-color: transparent;
        border-color: #1890ff;
        text-shadow: none;
    }

        .btn-background-ghost.btn-primary > a:only-child {
            color: currentColor;
        }

            .btn-background-ghost.btn-primary > a:only-child::after {
                position: absolute;
                top: 0;
                right: 0;
                bottom: 0;
                left: 0;
                background: transparent;
                content: '';
            }

        .btn-background-ghost.btn-primary:hover, .btn-background-ghost.btn-primary:focus {
            color: #40a9ff;
            background-color: transparent;
            border-color: #40a9ff;
        }

            .btn-background-ghost.btn-primary:hover > a:only-child, .btn-background-ghost.btn-primary:focus > a:only-child {
                color: currentColor;
            }

                .btn-background-ghost.btn-primary:hover > a:only-child::after, .btn-background-ghost.btn-primary:focus > a:only-child::after {
                    position: absolute;
                    top: 0;
                    right: 0;
                    bottom: 0;
                    left: 0;
                    background: transparent;
                    content: '';
                }

        .btn-background-ghost.btn-primary:active, .btn-background-ghost.btn-primary.active {
            color: #096dd9;
            background-color: transparent;
            border-color: #096dd9;
        }

            .btn-background-ghost.btn-primary:active > a:only-child, .btn-background-ghost.btn-primary.active > a:only-child {
                color: currentColor;
            }

                .btn-background-ghost.btn-primary:active > a:only-child::after, .btn-background-ghost.btn-primary.active > a:only-child::after {
                    position: absolute;
                    top: 0;
                    right: 0;
                    bottom: 0;
                    left: 0;
                    background: transparent;
                    content: '';
                }

        .btn-background-ghost.btn-primary-disabled, .btn-background-ghost.btn-primary.disabled, .btn-background-ghost.btn-primary[disabled], .btn-background-ghost.btn-primary-disabled:hover, .btn-background-ghost.btn-primary.disabled:hover, .btn-background-ghost.btn-primary[disabled]:hover, .btn-background-ghost.btn-primary-disabled:focus, .btn-background-ghost.btn-primary.disabled:focus, .btn-background-ghost.btn-primary[disabled]:focus, .btn-background-ghost.btn-primary-disabled:active, .btn-background-ghost.btn-primary.disabled:active, .btn-background-ghost.btn-primary[disabled]:active, .btn-background-ghost.btn-primary-disabled.active, .btn-background-ghost.btn-primary.disabled.active, .btn-background-ghost.btn-primary[disabled].active {
            color: rgba(0,0,0,0.25);
            background-color: #f5f5f5;
            border-color: #d9d9d9;
            text-shadow: none;
            -webkit-box-shadow: none;
            box-shadow: none;
        }

            .btn-background-ghost.btn-primary-disabled > a:only-child, .btn-background-ghost.btn-primary.disabled > a:only-child, .btn-background-ghost.btn-primary[disabled] > a:only-child, .btn-background-ghost.btn-primary-disabled:hover > a:only-child, .btn-background-ghost.btn-primary.disabled:hover > a:only-child, .btn-background-ghost.btn-primary[disabled]:hover > a:only-child, .btn-background-ghost.btn-primary-disabled:focus > a:only-child, .btn-background-ghost.btn-primary.disabled:focus > a:only-child, .btn-background-ghost.btn-primary[disabled]:focus > a:only-child, .btn-background-ghost.btn-primary-disabled:active > a:only-child, .btn-background-ghost.btn-primary.disabled:active > a:only-child, .btn-background-ghost.btn-primary[disabled]:active > a:only-child, .btn-background-ghost.btn-primary-disabled.active > a:only-child, .btn-background-ghost.btn-primary.disabled.active > a:only-child, .btn-background-ghost.btn-primary[disabled].active > a:only-child {
                color: currentColor;
            }

                .btn-background-ghost.btn-primary-disabled > a:only-child::after, .btn-background-ghost.btn-primary.disabled > a:only-child::after, .btn-background-ghost.btn-primary[disabled] > a:only-child::after, .btn-background-ghost.btn-primary-disabled:hover > a:only-child::after, .btn-background-ghost.btn-primary.disabled:hover > a:only-child::after, .btn-background-ghost.btn-primary[disabled]:hover > a:only-child::after, .btn-background-ghost.btn-primary-disabled:focus > a:only-child::after, .btn-background-ghost.btn-primary.disabled:focus > a:only-child::after, .btn-background-ghost.btn-primary[disabled]:focus > a:only-child::after, .btn-background-ghost.btn-primary-disabled:active > a:only-child::after, .btn-background-ghost.btn-primary.disabled:active > a:only-child::after, .btn-background-ghost.btn-primary[disabled]:active > a:only-child::after, .btn-background-ghost.btn-primary-disabled.active > a:only-child::after, .btn-background-ghost.btn-primary.disabled.active > a:only-child::after, .btn-background-ghost.btn-primary[disabled].active > a:only-child::after {
                    position: absolute;
                    top: 0;
                    right: 0;
                    bottom: 0;
                    left: 0;
                    background: transparent;
                    content: '';
                }

    .btn-background-ghost.btn-danger {
        color: #f5222d;
        background-color: transparent;
        border-color: #f5222d;
        text-shadow: none;
    }

        .btn-background-ghost.btn-danger > a:only-child {
            color: currentColor;
        }

            .btn-background-ghost.btn-danger > a:only-child::after {
                position: absolute;
                top: 0;
                right: 0;
                bottom: 0;
                left: 0;
                background: transparent;
                content: '';
            }

        .btn-background-ghost.btn-danger:hover, .btn-background-ghost.btn-danger:focus {
            color: #ff4d4f;
            background-color: transparent;
            border-color: #ff4d4f;
        }

            .btn-background-ghost.btn-danger:hover > a:only-child, .btn-background-ghost.btn-danger:focus > a:only-child {
                color: currentColor;
            }

                .btn-background-ghost.btn-danger:hover > a:only-child::after, .btn-background-ghost.btn-danger:focus > a:only-child::after {
                    position: absolute;
                    top: 0;
                    right: 0;
                    bottom: 0;
                    left: 0;
                    background: transparent;
                    content: '';
                }

        .btn-background-ghost.btn-danger:active, .btn-background-ghost.btn-danger.active {
            color: #cf1322;
            background-color: transparent;
            border-color: #cf1322;
        }

            .btn-background-ghost.btn-danger:active > a:only-child, .btn-background-ghost.btn-danger.active > a:only-child {
                color: currentColor;
            }

                .btn-background-ghost.btn-danger:active > a:only-child::after, .btn-background-ghost.btn-danger.active > a:only-child::after {
                    position: absolute;
                    top: 0;
                    right: 0;
                    bottom: 0;
                    left: 0;
                    background: transparent;
                    content: '';
                }

        .btn-background-ghost.btn-danger-disabled, .btn-background-ghost.btn-danger.disabled, .btn-background-ghost.btn-danger[disabled], .btn-background-ghost.btn-danger-disabled:hover, .btn-background-ghost.btn-danger.disabled:hover, .btn-background-ghost.btn-danger[disabled]:hover, .btn-background-ghost.btn-danger-disabled:focus, .btn-background-ghost.btn-danger.disabled:focus, .btn-background-ghost.btn-danger[disabled]:focus, .btn-background-ghost.btn-danger-disabled:active, .btn-background-ghost.btn-danger.disabled:active, .btn-background-ghost.btn-danger[disabled]:active, .btn-background-ghost.btn-danger-disabled.active, .btn-background-ghost.btn-danger.disabled.active, .btn-background-ghost.btn-danger[disabled].active {
            color: rgba(0,0,0,0.25);
            background-color: #f5f5f5;
            border-color: #d9d9d9;
            text-shadow: none;
            -webkit-box-shadow: none;
            box-shadow: none;
        }

            .btn-background-ghost.btn-danger-disabled > a:only-child, .btn-background-ghost.btn-danger.disabled > a:only-child, .btn-background-ghost.btn-danger[disabled] > a:only-child, .btn-background-ghost.btn-danger-disabled:hover > a:only-child, .btn-background-ghost.btn-danger.disabled:hover > a:only-child, .btn-background-ghost.btn-danger[disabled]:hover > a:only-child, .btn-background-ghost.btn-danger-disabled:focus > a:only-child, .btn-background-ghost.btn-danger.disabled:focus > a:only-child, .btn-background-ghost.btn-danger[disabled]:focus > a:only-child, .btn-background-ghost.btn-danger-disabled:active > a:only-child, .btn-background-ghost.btn-danger.disabled:active > a:only-child, .btn-background-ghost.btn-danger[disabled]:active > a:only-child, .btn-background-ghost.btn-danger-disabled.active > a:only-child, .btn-background-ghost.btn-danger.disabled.active > a:only-child, .btn-background-ghost.btn-danger[disabled].active > a:only-child {
                color: currentColor;
            }

                .btn-background-ghost.btn-danger-disabled > a:only-child::after, .btn-background-ghost.btn-danger.disabled > a:only-child::after, .btn-background-ghost.btn-danger[disabled] > a:only-child::after, .btn-background-ghost.btn-danger-disabled:hover > a:only-child::after, .btn-background-ghost.btn-danger.disabled:hover > a:only-child::after, .btn-background-ghost.btn-danger[disabled]:hover > a:only-child::after, .btn-background-ghost.btn-danger-disabled:focus > a:only-child::after, .btn-background-ghost.btn-danger.disabled:focus > a:only-child::after, .btn-background-ghost.btn-danger[disabled]:focus > a:only-child::after, .btn-background-ghost.btn-danger-disabled:active > a:only-child::after, .btn-background-ghost.btn-danger.disabled:active > a:only-child::after, .btn-background-ghost.btn-danger[disabled]:active > a:only-child::after, .btn-background-ghost.btn-danger-disabled.active > a:only-child::after, .btn-background-ghost.btn-danger.disabled.active > a:only-child::after, .btn-background-ghost.btn-danger[disabled].active > a:only-child::after {
                    position: absolute;
                    top: 0;
                    right: 0;
                    bottom: 0;
                    left: 0;
                    background: transparent;
                    content: '';
                }

.btn-two-chinese-chars::first-letter {
    letter-spacing: .34em;
}

.btn-two-chinese-chars > *:not(.anticon) {
    margin-right: -0.34em;
    letter-spacing: .34em;
}

.btn-block {
    width: 100%;
}

.btn:empty {
    vertical-align: top;
}

a.btn {
    line-height: 30px;
}

a.btn-lg {
    line-height: 38px;
}

a.btn-sm {
    line-height: 22px;
}
.input {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    list-style: none;
    -webkit-font-feature-settings: 'tnum';
    font-feature-settings: 'tnum';
    position: relative;
    display: inline-block;
    width: 100%;
    height: 32px;
    padding: 4px 11px;
    color: rgba(0,0,0,0.65);
    font-size: 14px;
    line-height: 1.5;
    background-color: #fff;
    background-image: none;
    border: 1px solid #d9d9d9;
    border-radius: 4px;
}

    .input::-moz-placeholder {
        color: #bfbfbf;
        opacity: 1;
    }

    .input:-ms-input-placeholder {
        color: #bfbfbf;
    }

    .input::-webkit-input-placeholder {
        color: #bfbfbf;
    }

    .input:hover {
        border-color: #40a9ff;
        border-right-width: 1px !important;
    }

    .input:focus {
        border-color: #40a9ff;
        border-right-width: 1px !important;
        outline: 0;
        -webkit-box-shadow: 0 0 0 2px rgba(24,144,255,0.2);
        box-shadow: 0 0 0 2px rgba(24,144,255,0.2);
    }

.input-disabled {
    color: rgba(0,0,0,0.25);
    background-color: #f5f5f5;
    cursor: not-allowed;
    opacity: 1;
}

    .input-disabled:hover {
        border-color: #e6d8d8;
        border-right-width: 1px !important;
    }

.input[disabled] {
    color: rgba(0,0,0,0.25);
    background-color: #f5f5f5;
    cursor: not-allowed;
    opacity: 1;
}

    .input[disabled]:hover {
        border-color: #e6d8d8;
        border-right-width: 1px !important;
    }

textarea.input {
    max-width: 100%;
    height: auto;
    min-height: 32px;
    vertical-align: bottom;
}

.input-lg {
    height: 40px;
    padding: 6px 11px;
    font-size: 16px;
}

.input-sm {
    height: 24px !important;
    padding: 1px 7px;
}

.searchgroup button{
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    margin-left:-4px;
}
.searchgroup input {
    margin-top:5px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-right:none;

}
.table-wrapper {
    zoom: 1;
}

    .table-wrapper::before, .table-wrapper::after {
        content: '';
        display: table;
    }

    .table-wrapper::after {
        clear: both;
    }

.table {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    color: rgba(0,0,0,0.65);
    font-size: 14px;
    font-variant: tabular-nums;
    line-height: 1.5;
    list-style: none;
    -webkit-font-feature-settings: 'tnum';
    font-feature-settings: 'tnum';
    position: relative;
    clear: both;
    border:1px solid #e8e8e8;
}


.table-empty .table-body {
    overflow: auto !important;
}

.table table {
    width: 100%;
    text-align: left;
    border-radius: 4px 4px 0 0;
    border-collapse: collapse;
}

.table-thead > tr > th {
    color: rgba(0,0,0,0.85);
    font-weight: bold;
    text-align: left;
    background: #fafafa;
    border-bottom: 1px solid #e8e8e8;
}

    .table-thead > tr > th[colspan] {
        text-align: center;
    }

    .table-thead > tr > th .anticon-filter, .table-thead > tr > th .table-filter-icon {
        position: absolute;
        top: 0;
        right: 0;
        width: 28px;
        height: 100%;
        color: #bfbfbf;
        font-size: 12px;
        text-align: center;
        cursor: pointer;
    }

        .table-thead > tr > th .anticon-filter > svg, .table-thead > tr > th .table-filter-icon > svg {
            position: absolute;
            top: 50%;
            left: 50%;
            margin-top: -5px;
            margin-left: -6px;
        }

    .table-thead > tr > th .table-filter-selected.anticon-filter {
        color: #1890ff;
    }

    .table-thead > tr > th .table-column-sorter {
        position: absolute;
        top: 50%;
        right: 6px;
        width: 14px;
        height: 17px;
        margin-top: -8.5px;
        color: #bfbfbf;
        text-align: center;

    }

    .table-thead > tr > th .table-column-sorter-up, .table-thead > tr > th .table-column-sorter-down {
        display: inline-block;
        font-size: 12px;
        font-size: 11px \9;
        -webkit-transform: scale(.91666667) rotate(0deg);
        -ms-transform: scale(.91666667) rotate(0deg);
        transform: scale(.91666667) rotate(0deg);
        display: block;
        height: 4px;
        line-height: 4px;
    }

:root .table-thead > tr > th .table-column-sorter-up, :root .table-thead > tr > th .table-column-sorter-down {
    font-size: 12px;
}

.table-thead > tr > th .table-column-sorter-up.on, .table-thead > tr > th .table-column-sorter-down.on {
    color: #1890ff;
}

.table-thead > tr > th .table-column-sorter-down {
    margin-top: 4px;
}

.table-thead > tr > th.table-column-has-actions {
    position: relative;
    background-clip: padding-box;
    -webkit-background-clip: border-box;
}

    .table-thead > tr > th.table-column-has-actions.table-column-has-filters .anticon-filter.table-filter-open, .table-thead > tr > th.table-column-has-actions.table-column-has-filters .table-filter-icon.table-filter-open {
        color: rgba(0,0,0,0.45);
        background: #e5e5e5;
    }

    .table-thead > tr > th.table-column-has-actions.table-column-has-filters:hover .anticon-filter:hover, .table-thead > tr > th.table-column-has-actions.table-column-has-filters:hover .table-filter-icon:hover {
        color: rgba(0,0,0,0.45);
        background: #e5e5e5;
    }

    .table-thead > tr > th.table-column-has-actions.table-column-has-filters:hover .anticon-filter:active, .table-thead > tr > th.table-column-has-actions.table-column-has-filters:hover .table-filter-icon:active {
        color: rgba(0,0,0,0.65);
    }

    .table-thead > tr > th.table-column-has-actions.table-column-has-sorters {
        cursor: pointer;
    }

        .table-thead > tr > th.table-column-has-actions.table-column-has-sorters:hover {
            background: #f2f2f2;
        }

            .table-thead > tr > th.table-column-has-actions.table-column-has-sorters:hover .anticon-filter, .table-thead > tr > th.table-column-has-actions.table-column-has-sorters:hover .table-filter-icon {
                background: #f2f2f2;
            }

        .table-thead > tr > th.table-column-has-actions.table-column-has-sorters:active .table-column-sorter-up:not(.on), .table-thead > tr > th.table-column-has-actions.table-column-has-sorters:active .table-column-sorter-down:not(.on) {
            color: rgba(0,0,0,0.45);
        }

    .table-thead > tr > th.table-column-has-actions.table-column-has-sorters, .table-thead > tr > th.table-column-has-actions.table-column-has-filters {
        padding-right: 30px !important;
    }

        .table-thead > tr > th.table-column-has-actions.table-column-has-sorters.table-column-has-filters {
            padding-right: 54px !important;
        }

.table-thead > tr > th .table-column-sorters > *:not(.table-column-sorter) {
    position: relative;
}

.table-thead > tr > th .table-column-sorters::before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: transparent;
    content: '';
}

.table-thead > tr > th .table-column-sorters:hover::before {
    background: rgba(0,0,0,0.04);
}

.table-thead > tr > th.table-column-has-filters .table-column-sorter {
    right: 34px;
}

.table-thead > tr > th.table-column-has-sorters {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.table-thead > tr:first-child > th:first-child {
    border-top-left-radius: 4px;
}

.table-thead > tr:first-child > th:last-child {
    border-top-right-radius: 4px;
}

.table-thead > tr:not(:last-child) > th[colspan] {
    border-bottom: 0;
}

.table-tbody > tr > td {
    /*border-bottom: 1px solid #e8e8e8;*/
}


    .table-thead > tr.table-row-hover:not(.table-expanded-row) > td, .table-tbody > tr.table-row-hover:not(.table-expanded-row) > td, .table-thead > tr:hover:not(.table-expanded-row) > td, .table-tbody > tr:hover:not(.table-expanded-row) > td {
        background: #e6f7ff;
    }

    .table-thead > tr:hover {
        background: none;
    }

.table-footer {
    position: relative;
    padding: 16px 16px;
    background: #fafafa;
    border-top: 1px solid #e8e8e8;
    border-radius: 0 0 4px 4px;
}

    .table-footer::before {
        position: absolute;
        top: -1px;
        left: 0;
        width: 100%;
        height: 1px;
        background: #fafafa;
        content: '';
    }

.table.table-bordered .table-footer {
    border: 1px solid #e8e8e8;
}

.table-title {
    position: relative;
    top: 1px;
    padding: 16px 0;
    border-radius: 4px 4px 0 0;
}

.table.table-bordered .table-title {
    padding-right: 16px;
    padding-left: 16px;
    border: 1px solid #e8e8e8;
}

.table-title + .table-content {
    position: relative;
    overflow: hidden;
    border-radius: 4px 4px 0 0;
}

.table-bordered .table-title + .table-content, .table-bordered .table-title + .table-content table, .table-bordered .table-title + .table-content .table-thead > tr:first-child > th {
    border-radius: 0;
}

.table-without-column-header .table-title + .table-content, .table-without-column-header table {
    border-radius: 0;
}

.table-without-column-header.table-bordered.table-empty .table-placeholder {
    border-top: 1px solid #e8e8e8;
    border-radius: 4px;
}

.table-tbody > tr.table-row-selected td {
    background: #fafafa;
}

.table-thead > tr > th.table-column-sort {
    background: #f5f5f5;
}

.table-tbody > tr > td.table-column-sort {
    background: rgba(0,0,0,0.01);
}

.table-thead > tr > th, .table-tbody > tr > td {
    padding: 8px;
}

    .table-thead > tr > th.table-selection-column-custom .table-selection {
        margin-right: -15px;
    }

    .table-thead > tr > th.table-selection-column, .table-tbody > tr > td.table-selection-column {
        text-align: center;
    }

        .table-thead > tr > th.table-selection-column .radio-wrapper, .table-tbody > tr > td.table-selection-column .radio-wrapper {
            margin-right: 0;
        }

.table-expand-icon-th, .table-row-expand-icon-cell {
    width: 50px;
    min-width: 50px;
    text-align: center;
}

.table-header {
    overflow: hidden;
    background: #fafafa;
}

    .table-header table {
        border-radius: 4px 4px 0 0;
    }

.table-loading {
    position: relative;
}

    .table-loading .table-body {
        background: #fff;
        opacity: .5;
    }

    .table-loading .table-spin-holder {
        position: absolute;
        top: 50%;
        left: 50%;
        height: 20px;
        margin-left: -30px;
        line-height: 20px;
    }

    .table-loading .table-with-pagination {
        margin-top: -20px;
    }

    .table-loading .table-without-pagination {
        margin-top: 10px;
    }

.table-bordered .table-header > table, .table-bordered .table-body > table, .table-bordered .table-fixed-left table, .table-bordered .table-fixed-right table {
    border: 1px solid #e8e8e8;
    border-right: 0;
    border-bottom: 0;
}

.table-bordered.table-empty .table-placeholder {
    border-right: 1px solid #e8e8e8;
    border-left: 1px solid #e8e8e8;
}

.table-bordered.table-fixed-header .table-header > table {
    border-bottom: 0;
}

.table-bordered.table-fixed-header .table-body > table {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.table-bordered.table-fixed-header .table-header + .table-body > table, .table-bordered.table-fixed-header .table-body-inner > table {
    border-top: 0;
}

.table-bordered .table-thead > tr:not(:last-child) > th {
    border-bottom: 1px solid #e8e8e8;
}

.table-bordered .table-thead > tr > th, .table-bordered .table-tbody > tr > td {
    border-right: 1px solid #e8e8e8;
    border-left:1px solid #e8e8e8;
    border-top:1px solid #e8e8e8;
}

.table-placeholder {
    position: relative;
    z-index: 1;
    padding: 16px 16px;
    color: rgba(0,0,0,0.45);
    font-size: 14px;
    text-align: center;
    background: #fff;
    border-bottom: 1px solid #e8e8e8;
    border-radius: 0 0 4px 4px;
}

    .table-placeholder .anticon {
        margin-right: 4px;
    }

.table-pagination.pagination {
    float: right;
    margin: 16px 0;
}

.table-filter-dropdown {
    position: relative;
    min-width: 96px;
    margin-left: -8px;
    background: #fff;
    border-radius: 4px;
    -webkit-box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

    .table-filter-dropdown .dropdown-menu {
        border: 0;
        border-radius: 4px 4px 0 0;
        -webkit-box-shadow: none;
        box-shadow: none;
    }

    .table-filter-dropdown .dropdown-menu-without-submenu {
        max-height: 400px;
        overflow-x: hidden;
    }

    .table-filter-dropdown .dropdown-menu-item > label + span {
        padding-right: 0;
    }

    .table-filter-dropdown .dropdown-menu-sub {
        border-radius: 4px;
        -webkit-box-shadow: 0 2px 8px rgba(0,0,0,0.15);
        box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    }

    .table-filter-dropdown .dropdown-menu .dropdown-submenu-contain-selected .dropdown-menu-submenu-title::after {
        color: #1890ff;
        font-weight: bold;
        text-shadow: 0 0 2px #bae7ff;
    }

    .table-filter-dropdown .dropdown-menu-item {
        overflow: hidden;
    }

    .table-filter-dropdown > .dropdown-menu > .dropdown-menu-item:last-child, .table-filter-dropdown > .dropdown-menu > .dropdown-menu-submenu:last-child .dropdown-menu-submenu-title {
        border-radius: 0;
    }

.table-filter-dropdown-btns {
    padding: 7px 8px;
    overflow: hidden;
    border-top: 1px solid #e8e8e8;
}

.table-filter-dropdown-link {
    color: #1890ff;
}

    .table-filter-dropdown-link:hover {
        color: #40a9ff;
    }

    .table-filter-dropdown-link:active {
        color: #096dd9;
    }

    .table-filter-dropdown-link.confirm {
        float: left;
    }

    .table-filter-dropdown-link.clear {
        float: right;
    }

.table-selection {
    white-space: nowrap;
}

.table-selection-select-all-custom {
    margin-right: 4px !important;
}

.table-selection .anticon-down {
    color: #bfbfbf;

}

.table-selection-menu {
    min-width: 96px;
    margin-top: 5px;
    margin-left: -30px;
    background: #fff;
    border-radius: 4px;
    -webkit-box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

    .table-selection-menu .action-down {
        color: #bfbfbf;
    }

.table-selection-down {
    display: inline-block;
    padding: 0;
    line-height: 1;
    cursor: pointer;
}

    .table-selection-down:hover .anticon-down {
        color: rgba(0,0,0,0.6);
    }

.table-row-expand-icon {
    display: inline-block;
    width: 17px;
    height: 17px;
    line-height: 14px;
    text-align: center;
    background: #fff;
    border: 1px solid #e8e8e8;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.table-row-expanded::after {
    content: '-';
}

.table-row-collapsed::after {
    content: '+';
}

.table-row-spaced {
    visibility: hidden;
}

    .table-row-spaced::after {
        content: '.';
    }

.table-row[class*='table-row-level-0'] .table-selection-column > span {
    display: inline-block;
}

tr.table-expanded-row, tr.table-expanded-row:hover {
    background: #fbfbfb;
}

    tr.table-expanded-row td > .table-wrapper {
        margin: -16px -16px -17px;
    }

.table .table-row-indent + .table-row-expand-icon {
    margin-right: 8px;
}

.table-scroll {
    overflow: auto;
    overflow-x: hidden;
}

    .table-scroll table {
        width: auto;
        min-width: 100%;
    }

        .table-scroll table .table-fixed-columns-in-body {
            visibility: hidden;
        }

.table-body-inner {
    height: 100%;
}

.table-fixed-header > .table-content > .table-scroll > .table-body {
    position: relative;
    background: #fff;
}

.table-fixed-header .table-body-inner {
    overflow: scroll;
}

.table-fixed-header .table-scroll .table-header {
    margin-bottom: -20px;
    padding-bottom: 20px;
    overflow: scroll;
    opacity: .9999;
}

.table-fixed-left, .table-fixed-right {
    position: absolute;
    top: 0;
    z-index: 20;
    overflow: hidden;
    border-radius: 0;
}

    .table-fixed-left table, .table-fixed-right table {
        width: auto;
        background: #fff;
    }

.table-fixed-header .table-fixed-left .table-body-outer .table-fixed, .table-fixed-header .table-fixed-right .table-body-outer .table-fixed {
    border-radius: 0;
}

.table-fixed-left {
    left: 0;
    -webkit-box-shadow: 6px 0 6px -4px rgba(0,0,0,0.15);
    box-shadow: 6px 0 6px -4px rgba(0,0,0,0.15);
}

    .table-fixed-left .table-header {
        overflow-y: hidden;
    }

    .table-fixed-left .table-body-inner {
        margin-right: -20px;
        padding-right: 20px;
    }

.table-fixed-header .table-fixed-left .table-body-inner {
    padding-right: 0;
}

.table-fixed-left, .table-fixed-left table {
    border-radius: 4px 0 0 0;
}

    .table-fixed-left .table-thead > tr > th:last-child {
        border-top-right-radius: 0;
    }

.table-fixed-right {
    right: 0;
    -webkit-box-shadow: -6px 0 6px -4px rgba(0,0,0,0.15);
    box-shadow: -6px 0 6px -4px rgba(0,0,0,0.15);
}

    .table-fixed-right, .table-fixed-right table {
        border-radius: 0 4px 0 0;
    }

        .table-fixed-right .table-expanded-row {
            color: transparent;
            pointer-events: none;
        }

        .table-fixed-right .table-thead > tr > th:first-child {
            border-top-left-radius: 0;
        }

.table.table-scroll-position-left .table-fixed-left {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.table.table-scroll-position-right .table-fixed-right {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.table-middle > .table-title, .table-middle > .table-footer {
    padding: 12px 8px;
}

.table-middle > .table-content > .table-header > table > .table-thead > tr > th, .table-middle > .table-content > .table-body > table > .table-thead > tr > th, .table-middle > .table-content > .table-scroll > .table-header > table > .table-thead > tr > th, .table-middle > .table-content > .table-scroll > .table-body > table > .table-thead > tr > th, .table-middle > .table-content > .table-fixed-left > .table-header > table > .table-thead > tr > th, .table-middle > .table-content > .table-fixed-right > .table-header > table > .table-thead > tr > th, .table-middle > .table-content > .table-fixed-left > .table-body-outer > .table-body-inner > table > .table-thead > tr > th, .table-middle > .table-content > .table-fixed-right > .table-body-outer > .table-body-inner > table > .table-thead > tr > th, .table-middle > .table-content > .table-header > table > .table-tbody > tr > td, .table-middle > .table-content > .table-body > table > .table-tbody > tr > td, .table-middle > .table-content > .table-scroll > .table-header > table > .table-tbody > tr > td, .table-middle > .table-content > .table-scroll > .table-body > table > .table-tbody > tr > td, .table-middle > .table-content > .table-fixed-left > .table-header > table > .table-tbody > tr > td, .table-middle > .table-content > .table-fixed-right > .table-header > table > .table-tbody > tr > td, .table-middle > .table-content > .table-fixed-left > .table-body-outer > .table-body-inner > table > .table-tbody > tr > td, .table-middle > .table-content > .table-fixed-right > .table-body-outer > .table-body-inner > table > .table-tbody > tr > td {
    padding: 12px 8px;
}

.table-middle tr.table-expanded-row td > .table-wrapper {
    margin: -12px -16px -13px;
}

.table-small {
    border: 1px solid #e8e8e8;
    border-radius: 4px;
}

    .table-small > .table-title, .table-small > .table-footer {
        padding: 8px 8px;
    }

    .table-small > .table-title {
        top: 0;
        border-bottom: 1px solid #e8e8e8;
    }

    .table-small > .table-content > .table-body {
        margin: 0 8px;
    }

        .table-small > .table-content > .table-header > table, .table-small > .table-content > .table-body > table, .table-small > .table-content > .table-scroll > .table-header > table, .table-small > .table-content > .table-scroll > .table-body > table, .table-small > .table-content > .table-fixed-left > .table-header > table, .table-small > .table-content > .table-fixed-right > .table-header > table, .table-small > .table-content > .table-fixed-left > .table-body-outer > .table-body-inner > table, .table-small > .table-content > .table-fixed-right > .table-body-outer > .table-body-inner > table {
            border: 0;
        }

            .table-small > .table-content > .table-header > table > .table-thead > tr > th, .table-small > .table-content > .table-body > table > .table-thead > tr > th, .table-small > .table-content > .table-scroll > .table-header > table > .table-thead > tr > th, .table-small > .table-content > .table-scroll > .table-body > table > .table-thead > tr > th, .table-small > .table-content > .table-fixed-left > .table-header > table > .table-thead > tr > th, .table-small > .table-content > .table-fixed-right > .table-header > table > .table-thead > tr > th, .table-small > .table-content > .table-fixed-left > .table-body-outer > .table-body-inner > table > .table-thead > tr > th, .table-small > .table-content > .table-fixed-right > .table-body-outer > .table-body-inner > table > .table-thead > tr > th, .table-small > .table-content > .table-header > table > .table-tbody > tr > td, .table-small > .table-content > .table-body > table > .table-tbody > tr > td, .table-small > .table-content > .table-scroll > .table-header > table > .table-tbody > tr > td, .table-small > .table-content > .table-scroll > .table-body > table > .table-tbody > tr > td, .table-small > .table-content > .table-fixed-left > .table-header > table > .table-tbody > tr > td, .table-small > .table-content > .table-fixed-right > .table-header > table > .table-tbody > tr > td, .table-small > .table-content > .table-fixed-left > .table-body-outer > .table-body-inner > table > .table-tbody > tr > td, .table-small > .table-content > .table-fixed-right > .table-body-outer > .table-body-inner > table > .table-tbody > tr > td {
                padding: 8px 8px;
            }

            .table-small > .table-content > .table-header > table > .table-thead > tr > th, .table-small > .table-content > .table-body > table > .table-thead > tr > th, .table-small > .table-content > .table-scroll > .table-header > table > .table-thead > tr > th, .table-small > .table-content > .table-scroll > .table-body > table > .table-thead > tr > th, .table-small > .table-content > .table-fixed-left > .table-header > table > .table-thead > tr > th, .table-small > .table-content > .table-fixed-right > .table-header > table > .table-thead > tr > th, .table-small > .table-content > .table-fixed-left > .table-body-outer > .table-body-inner > table > .table-thead > tr > th, .table-small > .table-content > .table-fixed-right > .table-body-outer > .table-body-inner > table > .table-thead > tr > th {
                background-color: transparent;
                border-bottom: 1px solid #e8e8e8;
            }

                .table-small > .table-content > .table-header > table > .table-thead > tr > th.table-column-sort, .table-small > .table-content > .table-body > table > .table-thead > tr > th.table-column-sort, .table-small > .table-content > .table-scroll > .table-header > table > .table-thead > tr > th.table-column-sort, .table-small > .table-content > .table-scroll > .table-body > table > .table-thead > tr > th.table-column-sort, .table-small > .table-content > .table-fixed-left > .table-header > table > .table-thead > tr > th.table-column-sort, .table-small > .table-content > .table-fixed-right > .table-header > table > .table-thead > tr > th.table-column-sort, .table-small > .table-content > .table-fixed-left > .table-body-outer > .table-body-inner > table > .table-thead > tr > th.table-column-sort, .table-small > .table-content > .table-fixed-right > .table-body-outer > .table-body-inner > table > .table-thead > tr > th.table-column-sort {
                    background-color: rgba(0,0,0,0.01);
                }

    .table-small > .table-content > .table-scroll > .table-header > table, .table-small > .table-content > .table-scroll > .table-body > table, .table-small > .table-content > .table-fixed-left > .table-header > table, .table-small > .table-content > .table-fixed-right > .table-header > table, .table-small > .table-content > .table-fixed-left > .table-body-outer > .table-body-inner > table, .table-small > .table-content > .table-fixed-right > .table-body-outer > .table-body-inner > table {
        padding: 0;
    }

    .table-small > .table-content .table-header {
        background-color: #fff;
    }

    .table-small > .table-content .table-placeholder, .table-small > .table-content .table-row:last-child td {
        border-bottom: 0;
    }

    /*.table-small.table-bordered {
        border-right: 0;
    }*/

        .table-small.table-bordered .table-title {
            border: 0;
            border-right: 1px solid #e8e8e8;
            border-bottom: 1px solid #e8e8e8;
        }

        .table-small.table-bordered .table-content {
            border-right: 1px solid #e8e8e8;
        }

        .table-small.table-bordered .table-footer {
            border: 0;
            border-top: 1px solid #e8e8e8;
            border-right: 1px solid #e8e8e8;
        }

            .table-small.table-bordered .table-footer::before {
                display: none;
            }

        .table-small.table-bordered .table-placeholder {
            border-right: 0;
            border-bottom: 0;
            border-left: 0;
        }

        .table-small.table-bordered .table-thead > tr > th:last-child, .table-small.table-bordered .table-tbody > tr > td:last-child {
            border-right: none;
        }

        .table-small.table-bordered .table-fixed-left .table-thead > tr > th:last-child, .table-small.table-bordered .table-fixed-left .table-tbody > tr > td:last-child {
            border-right: 1px solid #e8e8e8;
        }

        .table-small.table-bordered .table-fixed-right {
            border-right: 1px solid #e8e8e8;
            border-left: 1px solid #e8e8e8;
        }

    .table-small tr.table-expanded-row td > .table-wrapper {
        margin: -8px -16px -9px;
    }
    .table-small .table-thead > tr > th, .table-tbody > tr > td {
        /*padding: 8px 8px;*/
    }
    .table-small .table-thead > tr > th {
        color: rgba(0,0,0,0.85);
        font-weight: bold;
        text-align: center;
        background: #fafafa;
        border-bottom: 1px solid #e8e8e8;
    }
.pagination {
    display: inline-block;
    padding-left: 0;
    margin: 20px 0;
    border-radius: 4px;
}
.pagination > li {
    display: inline;
}
.pagination > li:first-child > a, .pagination > li:first-child > span {
    margin-left: 0;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}
.pagination > .disabled > span, .pagination > .disabled > span:hover, .pagination > .disabled > span:focus, .pagination > .disabled > a, .pagination > .disabled > a:hover, .pagination > .disabled > a:focus {
    color: #777;
    cursor: not-allowed;
    background-color: #fff;
    border-color: #ddd;
}
.pagination > li > a, .pagination > li > span {
    position: relative;
    float: left;
    padding: 1px 8px;
    margin-left: 2px;
    line-height: 1.42857143;
    color: #595959;
    text-decoration: none;
    background-color: #fff;
        border: 1px solid #ddd;
    border-radius:4px;
}
.pagination > .active > a, .pagination > .active > span, .pagination > .active > a:hover, .pagination > .active > span:hover, .pagination > .active > a:focus, .pagination > .active > span:focus {
    z-index: 2;
    color: #fff;
    cursor: default;
    background-color: #1890ff;
    border-color: #1890ff;
}
.tip_alert-info {
    background-color: #e6f7ff;
    border: 1px solid #91d5ff;
}
.tip_alert {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    color: rgba(0,0,0,0.65);
    font-size: 14px;
    line-height: 1.5;
    list-style: none;
    -webkit-font-feature-settings: 'tnum';
    font-feature-settings: 'tnum';
    position: relative;
    padding: 8px 15px 8px 37px;
    border-radius: 4px;
}
.zcy_container {
    width:100%;
    background-color:#fff;
}
.title {
    font-size:20px;
    color:#262626;
    font-weight:bold;
}
.text-center {
    text-align: center !important;
}
#pagertool .input{
    width:90px;
    position:absolute;
    margin:20px 0;
    margin-left:5px;
}
.bread_div {
    background-color:#fff
}
.bread_div .bread_first {
    margin-left:24px;
}
    .bread_div a {
        line-height:40px;   
    }

.remind_title {
    font-size: 16px;
    font-family: MicrosoftYaHei;
    font-weight: 400;
    color: rgba(0,0,0,1);
    line-height: 22px;
    opacity: 0.85;
}
.remind_info {

    background:rgba(230,247,255,1);
   border:1px solid rgba(145, 213, 255, 1);
    border-radius: 4px;
    padding:16px;
}
    .remind_info i {
        width: 24px;
        height: 24px;
        float:left;
        background-image:url(../Images/icons/info_k_24.png);
        margin-right:8px;
        
    }
.remind_content {
    font-size:14px;
    line-height:22px;
}
.remind_warning {

    background:rgba(255,251,230,1);
    border:1px solid rgba(255, 229, 143, 1);
    border-radius: 4px;
    padding:16px;
}
    .remind_warning i {
        width: 24px;
        height: 24px;
        float:left;
        background-image:url(../Images/icons/exclamation_k_24.png);
        margin-right:8px;
        
    }
.remind_error {
     background:rgba(255,241,240,1);
  border:1px solid rgba(255, 163, 158, 1);
    border-radius: 4px;
    padding:16px;
}
    .remind_error i {
        float:left;
        font-size:24px;
        color:#f5222d;
        /*background-image:url(../Images/icons/close_k_24.png);*/
        margin-right:8px;
    }
.text-right {
    text-align:right;
}
.text-center {
    text-align:center;
}
.text-left {
    text-align:left;
}
.width100 {
    width:100px;
}
.tbpadding tr td{
    padding:8px;
}


.table thead>tr>th{
    border-bottom: 1px solid #e8e8e8;
}

.btn-loading{
    background:#69c0ff;
    color:#fff;
    border:1px solid #69c0ff;
    padding-left:16px!important;
}

.btn-disabled:hover,.btn-disabled:active{
    background:#f5f5f5;
}
/*导航按钮*/
.ui_nav_btn{
    height:56px;
    border-bottom: 1px solid #e8e8e8;
}
.ui_nav_btn span{
    cursor: pointer;
    display: inline-block;
    line-height: 32px;
    padding: 0 12px;
    margin: 12px 8px 12px 0;
    border-radius: 4px;
}
.ui_nav_btn span:hover{
    color:#1890ff;
    background: #e6f7ff;
}
.ui_nav_btn .active {
    color: #fff;
    background: #1890ff;
}
.ui_nav_btn .active:hover {
    color:#fff;
    background: #096dd9;
}
.ui_nav_btn span:active{
    color:#fff;
    background: #096dd9;
}
/*导航按钮end*/
/*文件上传盒子*/
.uploadBox {
        width: 100%;
        /*height: 96px;*/
        margin-bottom: 24px;
        padding: 24px;
        cursor: pointer;
        border: 1px dashed #d9d9d9;
        border-radius: 4px;
        background: #fafafa;
    }
    .uploadBox i{
        background-image: url('../Images/icon/file_add_48.png');
        display:inline-block;
        width:48px;
        height:48px;
        float:left;
        margin-right:8px;
    }
    .uploadBox:hover {
        border: 1px dashed #1890ff;
    }
/*文件上传盒子-end*/
/*添加人员样式*/
.add_table {
    width: 100%;
    height: 40px;
    text-align: center;
    line-height: 40px;
    border: 1px dashed #e8e8e8;
}
.add_table:hover {
    border-color:#1890ff;
    cursor:pointer;
    color:#1890ff;
}
.add_table:hover a{
    color:#1890ff;
}
/*添加人员样式end*/
.disLineBlock{ /*既有block的宽度高度特性，又有inline的同行特性*/
     display:inline-block;
 }
.white{
     color:#fff;
 }
.fontWeight{
    font-weight:bold;
}
.fontsize16{
     font-size:16px;
     line-height:24px;
 }
.fontsize18{
     font-size:18px;
     line-height:26px;
 }
.fontsize20{
     font-size:20px;
     line-height:28px;
 }
.fontsize24{
     font-size:24px;
     line-height:32px;
 }
.left{
    float:left;
}
.right{
    float:right;
}

.titleProject{ /*标题字*/
    color:#222;
    margin: 0;
    font-size:16px;
    padding: 16px 24px 6px 24px;
    font-weight:bold;
}
.a189{
    color:#1890ff;
}
hr{
    margin-bottom:0!important;
}
.stand{
    margin:0 4px;color:#808080;
}
/*任务状态效果*/
	:after, :before {box-sizing: border-box;}
	.ui_status {
		position: relative;
		top: -1px;
		display: inline-block;
		width: 7px;
		height: 7px;
        margin-left: 4px;
		vertical-align: middle;
		border-radius: 50%;
	}
	
	.ui_status_default {background-color: #d9d9d9;}/*默认灰色，未开始*/
	
	.ui_status_error {background-color: #f5222d;}/*错误*/
	.ui_status_error::after {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		border: 2px solid #f5222d;
		border-radius: 50%;
		animation: StatusError 0.6s ease-in-out infinite;
		content: "";
	}
	@keyframes StatusError{
		0%{transform:scale(.6);opacity:.65}
		to{transform:scale(2.8);opacity:0}
	}
	.ui_status_warning {background-color: #faad14;}/*警告*/
	.ui_status_warning::after {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		border: 2px solid #faad14;
		border-radius: 50%;
		animation: StatusWarning 0.6s ease-in-out infinite;
		content: "";
	}
	@keyframes StatusWarning{
		0%{transform:scale(.8);opacity:.65}
		to{transform:scale(2.8);opacity:0}
	}
	
	.ui_status_ok {background-color: #52c41a;}/*已完成*/
	
	.ui_status_ing {background-color: #1890ff;}/*进行中*/
	.ui_status_ing::after {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		border: 2px solid #1890ff;
		border-radius: 50%;
		animation: StatusProcessing 1.2s ease-in-out infinite;
		content: "";
	}
	@keyframes StatusProcessing{
		0%{transform:scale(.8);opacity:.65}
		to{transform:scale(2.8);opacity:0}
	}
	/*任务状态效果end*/

    /*审核部分*/
        .step{
            margin: 0;
            padding: 0;
            color: rgba(0,0,0,0.65);
            -webkit-box-sizing: border-box;
            box-sizing: border-box;
            font-size: 14px;
            line-height: 1.5;
            list-style: none;
            width: 100%;
            font-size: 0;
        }
        .step-item{
            position: relative;
            display: inline-block;
            overflow: hidden;
            vertical-align: top;
            margin-right: 12px;
            white-space: nowrap;
            width:200px;
        }
         .step-item:last-child{
             margin-right: 0;
         }
         .step-item-content{
             display: inline-block;
             vertical-align: top;
         }
         .step-item-title::after {
            position: absolute;
            top: 17px;
            left: 100%;
            display: block;
            max-width: 126px;
            min-width:126px;
            width:126px;
            height: 2px;
            background: #e8e8e8;
            content: '';
        }
         .step-item-description{
            /*max-width: 146px;*/
            font-size:14px;
            white-space: normal;
            color: rgba(0,0,0,0.45);
         }
    .status_default:after {/*待审核*/
        background: #d9d9d9;
        background:linear-gradient(to right,#d9d9d9,#d9d9d9);
    }
    .status_error:after {/*不通过*/
        background: #f5222d;
        background:linear-gradient(to right,#52c41a,#f5222d);
    }
    .status_ok:after {/*审核通过*/
        background: #52c41a;
        background:linear-gradient(to right,#52c41a,#52c41a);
    }
     .status_ing:after {/*审核中*/
        background: #1890ff;
        background:linear-gradient(to right,#52c41a,#1890ff);
    }
    .backgroundNone:after{
        background:none!important;
    }
    /*审核部分 end*/

.z-step {
    margin-left: -56px;
    opacity: .65;
}
.step-item-title {
    position: relative;
    display: inline-block;
    padding-right: 12px;
    font-weight: bold;
    color: rgba(0,0,0,0.65);
    font-size: 16px;
    line-height: 38px;
}
.pass_step {
    display: inline-block;
    width: 192px;
    height: 192px;
    margin-top: -20px;
    background-size: contain;
    -webkit-transform: scale(.7) rotate(330deg);
    transform: scale(.7) rotate(330deg);
    /*animation: z_step .8s ease-in;*/
}

.pass_stepAnimation {
    animation: z_step .5s ease-in;
}
@keyframes z_step {
    0% {
        -webkit-transform: scale(1) rotate(325deg);
        transform: scale(1) rotate(325deg);
    }

    100% {
        -webkit-transform: scale(.7) rotate(325deg);
        transform: scale(.7) rotate(330deg);
    }
}
.signature{
    margin-top:-26px;
}
.searchComboboxItem{
    background-color:#fff
}
.searchComboboxItemList{
    overflow-y:auto;
}