/* ------------------------- 公共样式 ------------------------- */

* {
    text-decoration: none;
    box-sizing: border-box;
    outline: 0;
    font-family: Helvetica Neue, Helvetica, PingFang SC, Hiragino Sans GB, Microsoft YaHei, SimSun, sans-serif;
}

.y-icon {
    position: relative;
    display: inline-block;
    font-size: 14px;
    vertical-align: middle;
}

@keyframes y-loading-rotation {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.y-icon-loading {
    animation: y-loading-rotation 2s linear infinite;
}

/* ------------------------- 公共样式 ------------------------- */


/* ------------------------- alert ------------------------- */

.y-alert {
    display: flex;
    align-items: center;
    padding: 8px 16px;
    background-color: #f0f9eb;
    color: #67c23a;
    line-height: 18px;
    border-radius: 4px;
    font-size: 14px;
}

.y-alert-icon {
    flex-shrink: 0;
    margin-right: 8px;
}

.y-alert-body {
    flex-grow: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: flex;
    align-items: center;
}

.y-alert-close {
    flex-shrink: 0;
    margin-left: 8px;
    color: #c0c4cc;
    font-size: 12px;
    cursor: pointer;
    align-self: flex-start;
}

.y-alert-warning {
    background-color: #fdf6ec;
    color: #E6A23C;
}

.y-alert-error {
    background-color: #fef0f0;
    color: #F56C6C;
}

.y-alert-info {
    background-color: #f4f4f5;
    color: #909399;
}

.y-alert-dark {
    background-color: #67c23a;
    color: #fff;
}

.y-alert-dark.y-alert-warning {
    background-color: #E6A23C;
    color: #fff;
}

.y-alert-dark.y-alert-error {
    background-color: #F56C6C;
    color: #fff;
}

.y-alert-dark.y-alert-info {
    background-color: #909399;
    color: #fff;
}

.y-alert-dark .y-icon-close {
    color: #fff;
}

/* ------------------------- alert ------------------------- */


/* ------------------------- Anchor ------------------------- */

.y-anchor-wrap {
    height: 60px;
    width: 100%;
    z-index: 2020;
}

.y-anchor {
    height: 60px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    box-shadow: 0 2px 12px 0 rgba(0, 0, 0, .1);
    z-index: 2020;
    transition: .3s;
}

.y-anchor.y-anchor-fixed {
    position: fixed;
    top: 0;
    left: 0;
}

.y-anchor > a {
    display: flex;
    height: 100%;
    justify-content: center;
    align-items: center;
    padding: 0 24px;
    margin-right: 40px;
    cursor: pointer;
    position: relative;
}

.y-anchor > a.y-anchor-checked {
    color: #409eff;
}

.y-anchor > a.y-anchor-checked:before {
    content: '';
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
    height: 2px;
    background: #409eff;
}

/* ------------------------- Anchor ------------------------- */


/* ------------------------- BackTop ------------------------- */

.y-back-top {
    width: 40px;
    height: 40px;
    position: fixed;
    right: 40px;
    bottom: 40px;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    box-shadow: 0 2px 12px 0 rgba(0, 0, 0, .1);
    border-radius: 50%;
    cursor: pointer;
    color: #409eff;
    display: none;
}

.y-back-top:hover {
    background-color: #ecf5ff;
}

.y-back-top-icon {
    border-style: solid;
    border-width: 0 8px 8px;
    border-color: transparent transparent #409eff;
}

/* ------------------------- BackTop ------------------------- */


/* ------------------------- Badge ------------------------- */

.y-badge {
    position: relative;
    display: inline-block;
}

.y-badge > sup {
    position: absolute;
    background-color: #f56c6c;
    border-radius: 10px;
    color: #fff;
    font-size: 12px;
    height: 18px;
    line-height: 18px;
    padding: 0 6px;
    text-align: center;
    white-space: nowrap;
    right: 0;
    top: 0;
    transform: translateX(50%) translateY(-50%);
}

.y-badge-primary > sup {
    background-color: #409eff;
}

.y-badge-success > sup {
    background-color: #67C23A;
}

.y-badge-warning > sup {
    background-color: #E6A23C;
}

.y-badge-info > sup {
    background-color: #909399;
}

.y-badge-dot > sup {
    width: 8px;
    height: 8px;
    padding: 0;
    top: 1px;
    right: 1px;
    color: #f56c6c;
    overflow: hidden;
}

/* ------------------------- Badge ------------------------- */


/* ------------------------- Button ------------------------- */

.y-button {
    border-color: #e3e4e5;
    border-width: 1px;
    border-style: solid;
    display: inline-flex;
    padding: 12px 20px;
    border-radius: 4px;
    font-size: 14px;
    color: #606266;
    justify-content: center;
    align-items: center;
    transition: .1s;
    cursor: pointer;
    white-space: nowrap;
    user-select: none;
    line-height: 1;
    background-color: #fff;
    text-decoration: none;
}

.y-button + .y-button {
    margin-left: 10px;
}

.y-button:not(.y-button-disabled):hover {
    border-color: #409eff;
    background-color: #409eff;
    color: #fff;
}

.y-button-primary {
    border-color: #409eff;
    background-color: #409eff;
    color: #fff;
}

.y-button-success,
.y-button-success:not(.y-button-disabled):hover {
    border-color: #67C23A;
    background-color: #67C23A;
    color: #fff;
}

.y-button-warning,
.y-button-warning:not(.y-button-disabled):hover {
    border-color: #E6A23C;
    background-color: #E6A23C;
    color: #fff;
}

.y-button-error,
.y-button-error:not(.y-button-disabled):hover {
    border-color: #F56C6C;
    background-color: #F56C6C;
    color: #fff;
}

.y-button-info,
.y-button-info:not(.y-button-disabled):hover {
    border-color: #909399;
    background-color: #909399;
    color: #fff;
}

.y-button-plain:not(.y-button-disabled):hover {
    background-color: #fff;
    color: #409eff;
}

.y-button-primary.y-button-plain {
    background-color: #fff;
    color: #409eff;
}

.y-button-primary.y-button-plain:not(.y-button-disabled):hover {
    background-color: #409eff;
    color: #fff;
}

.y-button-success.y-button-plain {
    background-color: #fff;
    color: #67C23A;
}

.y-button-success.y-button-plain:not(.y-button-disabled):hover {
    background-color: #67C23A;
    color: #fff;
}

.y-button-warning.y-button-plain {
    background-color: #fff;
    color: #E6A23C;
}

.y-button-warning.y-button-plain:not(.y-button-disabled):hover {
    background-color: #E6A23C;
    color: #fff;
}

.y-button-error.y-button-plain {
    background-color: #fff;
    color: #F56C6C;
}

.y-button-error.y-button-plain:not(.y-button-disabled):hover {
    background-color: #F56C6C;
    color: #fff;
}

.y-button-info.y-button-plain {
    background-color: #fff;
    color: #909399;
}

.y-button-info.y-button-plain:not(.y-button-disabled):hover {
    background-color: #909399;
    color: #fff;
}

.y-button-round {
    border-radius: 20px;
}

.y-button-circle {
    padding: 10px;
    border-radius: 50%;
    line-height: 1;
}

.y-button-disabled {
    opacity: .6;
    cursor: not-allowed;
}

.y-button-group {
    display: inline-flex;
}

.y-button-group .y-button {
    border-radius: 0;
    margin-left: 1px;
}

.y-button-group .y-button:first-child {
    border-radius: 4px 0 0 4px;
    margin-left: 0;
}

.y-button-group .y-button:last-child {
    border-radius: 0 4px 4px 0;
}

.y-button-medium {
    padding: 10px 18px;
}

.y-button-small {
    padding: 8px 16px;
}

.y-button-mini {
    padding: 6px 12px;
}

/* ------------------------- Button ------------------------- */


/* ------------------------- Card ------------------------- */

.y-card {
    border-radius: 4px;
    border: 1px solid #ebeef5;
    background-color: #fff;
    overflow: hidden;
    color: #303133;
    transition: .3s;
    box-shadow: 0 2px 12px 0 rgba(0, 0, 0, .05);
}

.y-card-header {
    display: flex;
    justify-content: space-between;
    padding: 16px 24px;
    font-size: 16px;
    border-bottom: 1px solid #e3e4e5;
}

.y-card-body {
    padding: 16px 24px;
}

.y-card-no-shadow,
.y-card-hover-shadow {
    box-shadow: 0 2px 12px 0 transparent;
}

.y-card-hover-shadow:hover {
    box-shadow: 0 2px 12px 0 rgba(0, 0, 0, .05);
}

/* ------------------------- Card ------------------------- */


/* ------------------------- Checkbox ------------------------- */

.y-checkbox {
    display: inline-flex;
    align-items: center;
    position: relative;
    cursor: pointer;
    line-height: 18px;
    font-size: 14px;
    transition: .3s;
    user-select: none;
}

.y-checkbox:before {
    content: '';
    border-color: #e3e4e5;
    border-width: 1px;
    border-style: solid;
    border-radius: 2px;
    width: 14px;
    height: 14px;
    background-color: #fff;
    transition: .3s;
    margin-right: 10px;
    color: #606266;
    position: relative;
}

.y-checkbox:not(.y-checkbox-disabled):hover:before {
    border-color: #409eff;
}

.y-checkbox-checked {
    color: #409eff;
}

.y-checkbox-checked:before {
    border-color: #409eff;
    background-color: #409eff;
}

.y-checkbox-checked:after {
    content: '';
    position: absolute;
    width: 7px;
    height: 3px;
    border-color: #fff;
    border-width: 0 0 1px 1px;
    border-style: solid;
    top: 6px;
    left: 4px;
    transform: rotate(-45deg);
    box-sizing: content-box;
}

.y-checkbox-plain.y-checkbox-checked:before {
    background-color: #fff;
}

.y-checkbox-plain.y-checkbox-checked:after {
    border-color: #409eff;
}

.y-checkbox-disabled {
    color: #c0c4cc;
    cursor: not-allowed;
}

.y-checkbox-disabled:before {
    background-color: #edf2fc;
    border-color: #dcdfe6;
}

.y-checkbox-checked.y-checkbox-disabled:after {
    border-color: #c0c4cc;
}

.y-checkbox-group {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.y-checkbox-group .y-checkbox:not(:last-child) {
    margin-right: 24px;
}

.y-checkbox-checked.y-checkbox-indeterminate:after {
    transform: rotate(0deg);
    height: 2px;
    border: 0;
    background-color: #fff;
    top: 8px;
}

.y-checkbox-checked.y-checkbox-indeterminate.y-checkbox-plain:after {
    background-color: #409eff;
}

/* ------------------------- Checkbox ------------------------- */


/* ------------------------- Dialog ------------------------- */

.y-dialog-wrap {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, .5);
    z-index: 2020;
    display: none;
    align-items: flex-start;
    justify-content: center;
    overflow: auto;
}

.y-dialog {
    width: 600px;
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: .3s;
    transform: translateY(-24px);
}

.y-dialog-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #e3e4e5;
    padding: 16px 24px;
    font-size: 18px;
    color: #303133;
}

.y-dialog-close {
    color: #909399;
    font-size: 16px;
    cursor: pointer;
}

.y-dialog-body {
    padding: 32px 24px;
    color: #606266;
    font-size: 14px;
    word-break: break-all;
}

.y-dialog-footer {
    padding: 16px 24px;
    text-align: right;
}

/* ------------------------- Dialog ------------------------- */


/* ------------------------- Divider ------------------------- */

.y-divider {
    background-color: #e3e4e5;
    position: relative;
    display: block;
    height: 1px;
    width: 100%;
    margin: 24px 0;
}

.y-divider-content {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    background-color: #fff;
    padding: 0 16px;
    font-size: 14px;
    color: #303133;
}

.y-divider-content-left {
    left: 24px;
    transform: translateY(-50%) translateX(0%);
}

.y-divider-content-right {
    right: 24px;
    left: auto;
    transform: translateY(-50%) translateX(0%);
}

.y-divider-vertical {
    display: inline-block;
    width: 1px;
    height: 1em;
    margin: 0 8px;
    vertical-align: middle;
}

.y-divider-vertical .y-divider-content {
    display: none;
}

/* ------------------------- Divider ------------------------- */


/* ------------------------- Drawer ------------------------- */

.y-drawer-wrap {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, .5);
    z-index: 2020;
    overflow: auto;
    display: none;
    overflow-x: hidden;
}

.y-drawer {
    width: 450px;
    height: 100%;
    background-color: #fff;
    margin-left: auto;
    opacity: 0;
    position: relative;
    transform: translateX(100%);
    transition: .3s;
}

.y-drawer-header {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    color: #72767b;
    font-size: 16px;
    line-height: 1;
    border-bottom: 1px solid #e3e4e5;
}

.y-drawer-close {
    font-size: 20px;
    cursor: pointer;
}

.y-drawer-body {
    height: calc(100% - 132px);
    overflow: auto;
    padding: 16px 24px;
}

.y-drawer-footer {
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0 24px;
    box-shadow: 0 2px 12px 0 rgba(0, 0, 0, .05)
}

/* ------------------------- Drawer ------------------------- */


/* ------------------------- Dropdown ------------------------- */

.y-dropdown {
    display: inline-block;
}

.y-dropdown .y-icon-arrow-down {
    margin-left: 4px;
    font-size: 12px;
}

.y-dropdown-panel.y-popover-menu .y-popover-body > a:not(.y-popover-menu-disabled):hover {
    color: #409eff;
}

/* ------------------------- Dropdown ------------------------- */


/* ------------------------- Form ------------------------- */

.y-form {

}

.y-form-item {
    display: flex;
    align-items: center;
    padding: 12px 0 24px;
}

.y-form-item:first-child {
    padding-top: 0;
}

.y-form-item:last-child {
    padding-bottom: 0;
}

.y-form-item-label {
    flex-shrink: 0;
    font-size: 14px;
    color: #606266;
    margin-right: 16px;
    line-height: 1;
    position: relative;
}

.y-form-item-body {
    flex-grow: 1;
    min-width: 220px;
    position: relative;
}

.y-form-inline {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.y-form-inline .y-form-item {
    padding: 12px 0;
    margin-right: 16px;
}

.y-form-inline .y-form-item .y-form-item-label {
    margin-right: 8px;
}

.y-form-item-body > .y-slider-wrap {
    margin: 0 0 0 9px;
    padding: 0;
}

.y-form-item-validate .y-form-item-label:before {
    content: '*';
    color: #f56c6c;
    position: relative;
    top: 2px;
    left: -4px;
}

.y-form-item-validate-message {
    color: #f56c6c;
    position: absolute;
    top: 100%;
    font-size: 12px;
    transform: translateY(2px);
    display: none;
}

/* ------------------------- Form ------------------------- */


/* ------------------------- Input ------------------------- */

.y-input {
    display: inline-flex;
    border-color: #e3e4e5;
    border-width: 1px;
    border-style: solid;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    transition: .3s;
    align-items: center;
    background: #fff;
    width: 100%;
    vertical-align: middle;
}

.y-input:not(.y-input-disabled):hover, .y-input.y-input-focus {
    border-color: #409eff;
}

.y-input-inner {
    padding: 0 10px;
    border: 0;
    cursor: pointer;
    height: 40px;
    line-height: 40px;
    width: 0;
    flex-grow: 1;
    font-size: 14px;
    color: #606266;
}

.y-input-prefix,
.y-input-suffix {
    color: #c0c4cc;
    font-size: 16px;
    flex-shrink: 0;
    cursor: default;
}

.y-input-prefix {
    padding-left: 10px;
}

.y-input-suffix {
    padding-right: 10px;
}

.y-input-clear {
    padding-right: 10px;
    color: #c0c4cc;
    cursor: pointer;
    flex-shrink: 0;
    opacity: 0;
    transition: .3s;
}

.y-input-focus .y-input-clear,
.y-input:not(.y-input-disabled):hover .y-input-clear {
    opacity: 1;
}

.y-input.y-input-disabled,
.y-input.y-input-disabled .y-input-inner {
    background-color: #f5f7fa;
    border-color: #e4e7ed;
    color: #c0c4cc;
    cursor: not-allowed;
}

.y-input-show-password,
.y-input-hide-password {
    padding-right: 10px;
    flex-shrink: 0;
    color: #c0c4cc;
    font-size: 20px;
}

.y-input-hide-password {
    display: none;
}

textarea.y-input-inner {
    min-height: 40px;
    resize: vertical;
    padding: 8px 10px;
    line-height: 24px;
    background-color: #fff;
    background-image: none;
}

::placeholder {
    color: #C0C4CC;
    font-family: inherit;
    font-size: 14px;
}

.y-input-medium input.y-input-inner {
    height: 36px;
    line-height: 36px;
}

.y-input-small input.y-input-inner {
    height: 32px;
    line-height: 32px;
}

.y-input-mini input.y-input-inner {
    height: 28px;
    line-height: 28px;
}

/* ------------------------- Input ------------------------- */


/* ------------------------- Link ------------------------- */

.y-link {
    color: #606266;
    font-size: 14px;
    cursor: pointer;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 0;
}

.y-link:not(.y-link-disabled):hover {
    color: #409eff;
}

.y-link-underline:not(.y-link-disabled):hover:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: #409eff;
}

.y-link-primary {
    color: #409eff;
}

.y-link-success,
.y-link-success:not(.y-link-disabled):hover {
    color: #67C23A;
}

.y-link-success:not(.y-link-disabled):hover:before {
    background-color: #67C23A;
}

.y-link-warning,
.y-link-warning:not(.y-link-disabled):hover {
    color: #E6A23C;
}

.y-link-warning:not(.y-link-disabled):hover:before {
    background-color: #E6A23C;
}

.y-link-error,
.y-link-error:not(.y-link-disabled):hover {
    color: #F56C6C;
}

.y-link-error:not(.y-link-disabled):hover:before {
    background-color: #F56C6C;
}

.y-link-error:not(.y-link-disabled):hover:before {
    background-color: #F56C6C;
}

.y-link-disabled {
    opacity: .5;
    cursor: not-allowed;
}

/* ------------------------- Link ------------------------- */


/* ------------------------- Loading ------------------------- */

.y-loading {
    position: relative;
}

.y-loading-wrap,
.y-loading-fullscreen {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, .8);
    align-items: center;
    justify-content: center;
    top: 0;
    left: 0;
    transition: .3s;
    opacity: 0;
    display: none;
}

.y-loading-content {
    color: #409eff;
    text-align: center;
}

.y-loading-content .y-icon-loading {
    margin: 6px;
}

.y-loading-fullscreen {
    position: fixed;
    z-index: 2020;
}

/* ------------------------- Loading ------------------------- */


/* ------------------------- Message ------------------------- */

.y-message-container {
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2020;
    top: 0;
}

.y-message {
    width: 380px;
    box-sizing: border-box;
    border-radius: 4px;
    border: 1px solid #ebeef5;
    background-color: #edf2fc;
    transition: .3s;
    padding: 14px;
    font-size: 14px;
    line-height: 1;
    position: relative;
    margin: 20px 0;
    color: #909399;
    display: flex;
    align-items: center;
    transform: translateY(-100%);
    opacity: 0;
}

.y-message .y-icon {
    font-size: 18px;
    margin-right: 10px;
}

.y-message-success {
    background-color: #f0f9eb;
    border-color: #e1f3d8;
    color: #67c23a;
}

.y-message-warning {
    background-color: #fdf6ec;
    border-color: #faecd8;
    color: #e6a23c;
}

.y-message-error {
    background-color: #fef0f0;
    border-color: #fde2e2;
    color: #f56c6c;
}

.y-message-in-page-center {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-300%);
    margin: 0;
}

/* ------------------------- Message ------------------------- */


/* ------------------------- MessageBox ------------------------- */

.y-message-box-wrap {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, .5);
    z-index: 2020;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: auto;
}

.y-message-box {
    width: 420px;
    background-color: #fff;
    border-radius: 4px;
    border: 1px solid #e3e4e5;
    box-shadow: 0 2px 12px 0 rgba(0, 0, 0, .1);
    position: relative;
    transition: .3s;
    padding: 16px 24px;
    opacity: 0;
    transform: translateY(-24px);
}

.y-message-box-title {
    font-size: 18px;
    color: #303133;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.y-message-box-title .y-icon {
    font-size: 16px;
    cursor: pointer;
}

.y-message-box-body {
    color: #606266;
    font-size: 14px;
    line-height: 24px;
    padding: 10px 0 16px 0;
}

.y-message-box-footer {
    text-align: right;
}

/* ------------------------- MessageBox ------------------------- */


/* ------------------------- MultiSelect ------------------------- */

.y-multi-select {
    position: relative;
}

.y-multi-select-box {
    border-color: #e3e4e5;
    border-width: 1px;
    border-style: solid;
    padding: 4px;
    border-radius: 4px;
    cursor: pointer;
    background: #fff;
    align-items: center;
    position: relative;
    display: flex;
    justify-content: space-between;
}

.y-multi-select-box:hover {
    border-color: #409eff;
}

.y-multi-select-placeholder {
    color: #C0C4CC;
    line-height: 26px;
    padding-left: 8px;
}

.y-multi-select-clear {
    margin: 4px 4px 4px 0;
    flex-shrink: 0;
    width: 16px;
    align-self: flex-start;
}

.y-multi-select-clear .y-icon-error-plain {
    transition: .3s;
    color: #d3d4d6;
    cursor: pointer;
}

.y-multi-select-clear .y-icon-error-plain {
    opacity: 0;
}

.y-multi-select:hover .y-multi-select-clear .y-icon-error-plain {
    opacity: 1;
}

.y-multi-select-tags {
    flex-wrap: wrap;
}

.y-multi-select-tags .y-tag {
    margin: 2px;
    display: inline-flex;
    align-items: center;
}

.y-multi-select-tags .y-tag .y-icon-close {
    margin-left: 4px;
    cursor: pointer;
    font-size: 12px;
    transform: scale(.9);
}

.y-multi-select-panel {
    background: #fff;
    position: absolute;
    bottom: -8px;
    transform: translateY(100%);
    left: 0;
    min-width: 100%;
    border: 1px solid #e3e4e5;
    z-index: 1;
    border-radius: 4px;
}

.y-multi-select-panel:after,
.y-multi-select-panel:before {
    content: '';
    position: absolute;
    border: 6px solid transparent;
    top: -6px;
    left: 8px;
    border-top: 0;
    border-bottom-color: #e3e4e5;
}

.y-multi-select-panel:after {
    top: -4px;
    border-bottom-color: #fff;
}

.y-multi-select-panel-menu {
    position: relative;
    max-height: 250px;
    overflow: auto;
    padding: 6px 0;
}

.y-multi-select-panel-menu > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    line-height: 1;
    padding: 12px 24px;
    cursor: pointer;
}

.y-multi-select-panel-menu > a .y-icon-check {
    margin-left: 16px;
}

.y-multi-select-panel-menu > a:hover {
    background-color: #F5F7FA;
}

.y-multi-select-panel-menu-checked {
    color: #409eff;
}

/* ------------------------- MultiSelect ------------------------- */


/* ------------------------- Page ------------------------- */

.y-page {
    display: inline-flex;
    user-select: none;
    align-items: center;
}

.y-page-total {
    color: #606266;
}

.y-page-total-number {
    margin: 0 2px;
}

.y-page .y-select {
    width: 120px;
    margin: 0 8px;
}

.y-page .y-select .y-input-inner {
    text-align: center;
}

.y-page a {
    padding: 0 4px;
    vertical-align: top;
    display: inline-block;
    font-size: 12px;
    height: 28px;
    line-height: 28px;
    cursor: pointer;
    text-align: center;
    margin: 0 5px;
    background-color: #f4f4f5;
    color: #606266;
    min-width: 30px;
    border-radius: 2px;
    font-weight: 600;
}

.y-page a:not(.y-page-disabled):hover {
    color: #409eff;
}

.y-page .y-page-disabled {
    color: #c0c4cc;
    background-color: #f4f4f5;
    cursor: not-allowed;
}

.y-page .y-page-checked,
.y-page a.y-page-checked:hover {
    background-color: #409eff;
    color: #fff;
}

.y-page-jump .y-icon {
    display: none;
    font-weight: 400;
}

.y-page-jump:hover .y-icon {
    display: inline-block;
}

.y-page-jump:hover span {
    display: none;
}

.y-page-fast-jump {
    display: flex;
    align-items: center;
    color: #606266;
    margin-left: 16px;
}

.y-page-fast-jump .y-input {
    width: 60px;
    margin: 0 6px;
}

.y-page-fast-jump .y-input-inner {
    text-align: center;
}

/* ------------------------- Page ------------------------- */


/* ------------------------- Popover ------------------------- */

.y-popover {
    padding: 10px 16px;
    position: absolute;
    border: 1px solid #e3e4e5;
    background: #fff;
    border-radius: 4px;
    z-index: 2020;
    box-shadow: 0 2px 12px 0 rgba(0, 0, 0, .1);
    display: none;
}

.y-popover-menu {
    padding: 0;
}

.y-popover-menu .y-popover-body {
    padding: 10px 0;
    max-height: 350px;
    overflow: auto;
}

.y-popover-menu .y-popover-body > a {
    display: block;
    padding: 8px 24px;
    cursor: pointer;
    white-space: nowrap;
}

.y-popover-menu .y-popover-body > a:not(.y-popover-menu-disabled):hover {
    background: #f5f7fa;
}

.y-popover-menu .y-popover-body > a.y-popover-menu-disabled {
    color: #c0c4cc;
    cursor: not-allowed;
}

.y-popover-arrow,
.y-popover-arrow:before {
    position: absolute;
    border-style: solid;
    border-width: 6px;
    border-color: transparent;
}

.y-popover-arrow:before {
    content: '';
}

.y-popover.bottom .y-popover-arrow {
    border-bottom-color: #e3e4e5;
    border-top-width: 0;
    top: -7px;
}

.y-popover.bottom .y-popover-arrow:before {
    border-bottom-color: #fff;
    border-top-width: 0;
    top: 2px;
    transform: translateX(-6px);
}

.y-popover.top .y-popover-arrow {
    border-top-color: #e3e4e5;
    border-bottom-width: 0;
    bottom: -7px;
}

.y-popover.top .y-popover-arrow:before {
    border-top-color: #fff;
    border-bottom-width: 0;
    bottom: 2px;
    transform: translateX(-6px);
}

.y-popover.left .y-popover-arrow {
    border-left-color: #e3e4e5;
    border-right-width: 0;
    right: -7px;
}

.y-popover.left .y-popover-arrow:before {
    border-left-color: #fff;
    border-right-width: 0;
    right: 2px;
    transform: translateY(-6px);
}

.y-popover.right .y-popover-arrow {
    border-right-color: #e3e4e5;
    border-left-width: 0;
    left: -7px;
}

.y-popover.right .y-popover-arrow:before {
    border-right-color: #fff;
    border-left-width: 0;
    left: 2px;
    transform: translateY(-6px);
}

.y-popover.bottom.start .y-popover-arrow,
.y-popover.top.start .y-popover-arrow {
    left: 6px;
}

.y-popover.bottom.center .y-popover-arrow,
.y-popover.top.center .y-popover-arrow {
    left: 50%;
    transform: translateX(-6px);
}

.y-popover.bottom.end .y-popover-arrow,
.y-popover.top.end .y-popover-arrow {
    right: 6px;
}

.y-popover.left.start .y-popover-arrow,
.y-popover.right.start .y-popover-arrow {
    top: 6px;
}

.y-popover.left.center .y-popover-arrow,
.y-popover.right.center .y-popover-arrow {
    top: 50%;
    transform: translateY(-6px);
}

.y-popover.left.end .y-popover-arrow,
.y-popover.right.end .y-popover-arrow {
    bottom: 6px;
}

/* ------------------------- Popover ------------------------- */


/* ------------------------- RadioGroup ------------------------- */

.y-radio-group {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
}

.y-radio-group > a {
    display: block;
    line-height: 1;
    color: #606266;
    font-size: 14px;
    margin-right: 24px;
    position: relative;
    cursor: pointer;
    padding-left: 24px;
    user-select: none;
}

.y-radio-group > a:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 12px;
    height: 12px;
    border: 1px solid #e3e4e5;
    transform: translateY(-50%);
    border-radius: 50%;
    transition: .3s;
}

.y-radio-group > a:not(.y-radio-disabled):hover:before {
    border-color: #409eff;
}

.y-radio-group > .y-radio-checked {
    color: #409eff;
}

.y-radio-group > .y-radio-checked:before {
    border-color: #409eff;
    background: #409eff;
}

.y-radio-group > .y-radio-checked:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 5px;
    width: 4px;
    height: 4px;
    transform: translateY(-50%);
    border-radius: 50%;
    background: #fff;
}

.y-radio-group > .y-radio-disabled {
    color: #c0c4cc;
    cursor: not-allowed;
}

.y-radio-group > .y-radio-disabled.y-radio-checked:before {
    background-color: #c0c4cc;
    border-color: #c0c4cc;
}

.y-radio-group > .y-radio-disabled.y-radio-checked:after {
    background-color: #f5f7fa;
}

.y-radio-group-plain > .y-radio-checked:before {
    background: #fff;
}

.y-radio-group-plain > .y-radio-checked:after {
    background: #409eff;
}

.y-radio-group-plain > .y-radio-checked.y-radio-disabled:before {
    background: #fff;
}

.y-radio-group-plain > .y-radio-checked.y-radio-disabled:after {
    background: #c0c4cc;
}

.y-radio-group-button > a {
    border-color: #e3e4e5;
    border-style: solid;
    border-width: 1px 0 1px 1px;
    margin-right: 0;
    padding: 12px 20px;
}

.y-radio-group-button > a:first-child {
    border-radius: 4px 0 0 4px;
}

.y-radio-group-button > a:last-child {
    border-radius: 0 4px 4px 0;
    border-width: 1px;
}

.y-radio-group.y-radio-group-button > a:before,
.y-radio-group.y-radio-group-button > a:after {
    content: none;
}

.y-radio-group-button > a:not(.y-radio-disabled):hover {
    color: #409eff;
}

.y-radio-group-button > a:not(.y-radio-disabled).y-radio-checked {
    background: #409eff;
    color: #fff;
    border-color: #409eff;
}

.y-radio-group-button > .y-radio-checked + a {
    border-left-color: transparent;
}

.y-radio-group-button > .y-radio-disabled.y-radio-checked {
    color: #c0c4cc;
    background: #f2f6fc;
}

.y-radio-group-box > a:before {
    border-radius: 2px;
}

.y-radio-group.y-radio-group-box > .y-radio-checked:after {
    width: 7px;
    height: 3px;
    border-color: #fff;
    border-width: 0 0 1px 1px;
    border-style: solid;
    top: 4px;
    left: 3px;
    transform: rotate(-45deg);
    box-sizing: content-box;
    background: transparent;
    border-radius: 0;
}

.y-radio-group-box.y-radio-group-plain > .y-radio-checked:not(.y-radio-disabled):after {
    border-color: #409eff;
}

.y-radio-group-box.y-radio-group-plain > .y-radio-checked.y-radio-disabled:after {
    background: transparent;
    border-color: #c0c4cc;
}

.y-radio-group-button-medium > a {
    padding: 10px 18px;
}

.y-radio-group-button-small > a {
    padding: 8px 16px;
}

.y-radio-group-button-mini > a {
    padding: 6px 12px;
}

/* ------------------------- RadioGroup ------------------------- */


/* ------------------------- Select ------------------------- */

.y-select-arrow {
    padding: 0 10px;
    color: #c0c4cc;
    transition: .3s;
}

.y-select-clear {
    color: #c0c4cc;
    opacity: 0;
    transition: .3s;
}

.y-select-disabled .y-input,
.y-select-disabled:hover .y-input,
.y-select-disabled .y-input-inner {
    background-color: #f5f7fa;
    border-color: #e4e7ed;
    color: #c0c4cc;
    cursor: not-allowed;
}

.y-select-clearable .y-input:hover .y-select-clear {
    opacity: 1;
}

.y-popover-menu.y-select-panel .y-popover-body > a:not(.y-popover-menu-disabled):hover {
    color: #409eff;
    background: transparent;
}

.y-popover-menu.y-select-panel .y-popover-body > a.y-popover-menu-checked,
.y-popover-menu.y-select-panel .y-popover-body > a.y-popover-menu-checked:not(.y-popover-menu-disabled):hover {
    background: #ecf5ff;
    color: #409eff;
}

/* ------------------------- Select ------------------------- */


/* ------------------------- Slider ------------------------- */

.y-slider-wrap {
    display: flex;
    align-items: center;
    padding: 16px;
    margin: 0 8px;
}

.y-slider {
    position: relative;
    flex-grow: 1;
    height: 6px;
    background-color: #e4e7ed;
    border-radius: 3px;
    width: 100%;
    cursor: pointer;
}

.y-slider-bar {
    height: 6px;
    position: absolute;
    border-radius: 3px;
    background: #409eff;
    left: 0;
    top: 0;
    z-index: 0;
}

.y-slider-button {
    width: 18px;
    height: 18px;
    border-color: #409eff;
    border-width: 2px;
    border-style: solid;
    background-color: #fff;
    border-radius: 50%;
    transition: transform .2s;
    user-select: none;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate3d(-50%, -50%, 0);
    z-index: 1;
}

.y-slider-wrap:not(.y-slider-disabled) .y-slider-button.y-slider-button-hover {
    transform: scale(1.2) translate3d(-50%, -50%, 0);
}

.y-slider-tooltip {
    position: absolute;
    background: #303133;
    padding: 10px;
    color: #fff;
    border-radius: 4px;
    white-space: nowrap;
    bottom: 100%;
    left: 0;
    min-width: 36px;
    transform: translate3d(-50%, -24px, 0);
    text-align: center;
    display: none;
}

.y-slider-tooltip:before {
    content: '';
    position: absolute;
    border-width: 6px 6px 0;
    border-color: #303133 transparent transparent;
    border-style: solid;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
}

.y-slider-stops {
    position: absolute;
    height: 6px;
    width: 100%;
    top: 0;
    left: 0;
}

.y-slider-stops > div {
    height: 6px;
    width: 6px;
    border-radius: 50%;
    background: #fff;
    position: absolute;
    top: 0;
    transform: translateX(-50%);
}

.y-slider-stops > div.y-slider-first-stop,
.y-slider-stops > div.y-slider-last-stop {
    background: #d3d4d6;
}

.y-slider-stops .y-slider-mark {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    color: #909399;
    white-space: nowrap;
}

.y-slider-wrap .y-input {
    width: 120px;
    margin-left: 16px;
}

.y-slider-input-unit {
    color: #909399;
    margin-left: 6px;
    white-space: nowrap;
}

.y-slider-wrap.y-slider-disabled .y-slider {
    cursor: default;
}

.y-slider-wrap.y-slider-disabled .y-slider-bar {
    background: #c0c4cc;
}

.y-slider-wrap.y-slider-disabled .y-slider-button {
    border-color: #c0c4cc;
    cursor: not-allowed;
}

/* ------------------------- Slider ------------------------- */


/* ------------------------- Switch ------------------------- */

.y-switch {
    display: inline-flex;
    cursor: pointer;
    align-items: center;
    vertical-align: middle;
}

.y-switch-body {
    flex-shrink: 0;
    margin: 0;
    display: block;
    position: relative;
    width: 40px;
    height: 20px;
    border-radius: 10px;
    background: #F56C6C;
    transition: border-color .3s, background-color .3s;
}

.y-switch-body:before {
    content: '';
    width: 16px;
    height: 16px;
    left: 2px;
    top: 2px;
    background: #fff;
    position: absolute;
    border-radius: 50%;
    transition: .3s;
}

.y-switch-checked .y-switch-body {
    background: #67C23A;
}

.y-switch-checked .y-switch-body:before {
    left: 22px;
}

.y-switch .y-switch-label {
    margin: 0 10px;
    transition: .3s;
}

.y-switch .y-switch-label:first-child {
    color: #409eff;
}

.y-switch-checked .y-switch-label:first-child {
    color: #303133;
}

.y-switch-checked .y-switch-label:last-child {
    color: #409eff;
}

.y-switch.y-switch-disabled {
    cursor: not-allowed;
    opacity: .6;
}

/* ------------------------- Switch ------------------------- */


/* ------------------------- Table ------------------------- */

.y-table {
    min-width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    table-layout: fixed;
    background: #fff;
    text-align: left;
}

.y-table tbody tr {
    border-top: 1px solid #e3e4e5;
}

.y-table:not(.y-table-border) tbody tr:last-child {
    border-bottom: 1px solid #e3e4e5;
}

.y-table td,
.y-table th {
    padding: 16px 24px;
}

.y-table th {
    color: #909399;
    font-weight: 600;
}

.y-table td {
    color: #606266;
}

.y-table-stripe tbody tr:nth-child(2n) {
    background: #fafafa;
}

.y-table-border {
    border: 1px solid #e3e4e5;
}

.y-table-border th:not(:first-child),
.y-table-border td:not(:first-child) {
    border-left: 1px solid #e3e4e5;
}

.y-table tbody tr:hover {
    background: #f5f7fa;
}

.y-table-center {
    text-align: center;
}

/* ------------------------- Table ------------------------- */


/* ------------------------- Tabs ------------------------- */

.y-tabs {

}

.y-tabs-menu {
    display: flex;
    align-items: center;
    position: relative;
}

.y-tabs-menu-checked-line {
    height: 2px;
    position: absolute;
    bottom: -2px;
    left: 0;
    background: #409eff;
    transition: .3s;
    width: 0;
}

.y-tabs-menu-checked-line.y-tabs-menu-disabled {
    background: #C0C4CC;
}

.y-tabs-menu > a {
    display: block;
    padding: 10px 16px;
    cursor: pointer;
    position: relative;
}

.y-tabs-menu > a:hover {
    color: #409eff;
}

.y-tabs-menu > a.y-tabs-menu-checked {
    color: #409eff;
}

.y-tabs-menu > a.y-tabs-menu-disabled {
    cursor: not-allowed;
    color: #C0C4CC;
}

.y-tabs-body {
    padding: 10px 0;
}

.y-tabs-body > div[data-y-tabs-panel] {
    display: none;
}

/* ------------------------- Tabs ------------------------- */


/* ------------------------- Tag ------------------------- */

.y-tag {
    background-color: #ecf5ff;
    border-color: #d9ecff;
    color: #409eff;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 0 10px;
    line-height: 1;
    font-size: 12px;
    height: 32px;
    border-style: solid;
    border-width: 1px;
    border-radius: 4px;
    white-space: nowrap;
    cursor: text;
}

.y-tag-success {
    background-color: #f0f9eb;
    border-color: #e1f3d8;
    color: #67C23A;
}

.y-tag-warning {
    background-color: #fdf6ec;
    border-color: #faecd8;
    color: #e6a23c;
}

.y-tag-error {
    background-color: #fef0f0;
    border-color: #fde2e2;
    color: #f56c6c;
}

.y-tag-info {
    background-color: #f4f4f5;
    border-color: #e9e9eb;
    color: #909399;
}

.y-tag-dark {
    background-color: #409eff;
    border-color: #409eff;
    color: #fff;
}

.y-tag-dark.y-tag-success {
    background-color: #67C23A;
    border-color: #67C23A;
    color: #fff;
}

.y-tag-dark.y-tag-warning {
    background-color: #e6a23c;
    border-color: #e6a23c;
    color: #fff;
}

.y-tag-dark.y-tag-error {
    background-color: #f56c6c;
    border-color: #f56c6c;
    color: #fff;
}

.y-tag-dark.y-tag-info {
    background-color: #909399;
    border-color: #909399;
    color: #fff;
}

.y-tag-plain {
    background-color: #fff;
    border-color: #409eff;
}

.y-tag-plain.y-tag-success {
    background-color: #fff;
    border-color: #67C23A;
}

.y-tag-plain.y-tag-warning {
    background-color: #fff;
    border-color: #e6a23c;
}

.y-tag-plain.y-tag-error {
    background-color: #fff;
    border-color: #f56c6c;
}

.y-tag-plain.y-tag-info {
    background-color: #fff;
    border-color: #909399;
}

.y-tag-medium {
    height: 28px;
    line-height: 28px;
}

.y-tag-small {
    height: 24px;
    line-height: 24px;
    padding: 0 8px;
}

.y-tag-mini {
    height: 20px;
    line-height: 20px;
    padding: 0 5px;
}

/* ------------------------- Tag ------------------------- */