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

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

@keyframes yuiButtonRotation {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.yui-icon.icon-loading {
    animation: yuiButtonRotation 2s linear infinite;
}

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


/* ------------------------- Alert ------------------------- */

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

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

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

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

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

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

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

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

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

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

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

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

.yui-alert.center .yui-alert-content {
    justify-content: center;
}

.yui-alert.has-desc .yui-alert-icon {
    font-size: 28px;
}

.yui-alert.has-desc .yui-alert-content {
    line-height: 18px;
    font-weight: 600;
}

.yui-alert.has-desc .yui-alert-content .desc {
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5rem;
    white-space: normal;
}

/* ------------------------- Alert ------------------------- */


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

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

.yui-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;
}

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

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

.yui-anchor > a.checked {
    color: #2b5fff;
}

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

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


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

.yui-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: #2b5fff;
    display: none;
}

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

.yui-back-top-icon {
    border-style: solid;
    border-width: 0 8px 8px;
    border-color: transparent transparent #2b5fff;
}

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


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

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

.yui-badge-content {
    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%);
}

.yui-badge.primary .yui-badge-content {
    background-color: #2b5fff;
}

.yui-badge.success .yui-badge-content {
    background-color: #67C23A;
}

.yui-badge.warning .yui-badge-content {
    background-color: #E6A23C;
}

.yui-badge.info .yui-badge-content {
    background-color: #909399;
}

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

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


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

.yui-button {
    border-color: #e3e4e5;
    border-width: 1px;
    border-style: solid;
    display: inline-flex;
    padding: 10px 24px;
    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: 18px;
    background-color: #fff;
    text-decoration: none;
}

.yui-button:not(.disabled):hover {
    border-color: #2b5fff;
    background-color: #2b5fff;
    color: #fff;
}

.yui-button.primary {
    border-color: #2b5fff;
    background-color: #2b5fff;
    color: #fff;
}

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

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

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

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

.yui-button.plain:not(.disabled):hover {
    background-color: #fff;
    color: #2b5fff;
}

.yui-button.primary.plain {
    background-color: #fff;
    color: #2b5fff;
}

.yui-button.primary.plain:not(.disabled):hover {
    background-color: #2b5fff;
    color: #fff;
}

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

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

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

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

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

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

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

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

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

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

.yui-button.disabled {
    opacity: .5;
    cursor: not-allowed;
}

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

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

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

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

.yui-button .icon-loading {
    margin-right: 4px;
}

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


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

.yui-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);
}

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

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

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

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

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


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

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

.yui-checkbox:before {
    content: '';
    border-color: #e3e4e5;
    border-width: 1px;
    border-style: solid;
    border-radius: 2px;
    width: 14px;
    height: 14px;
    background-color: #fff;
    transition: border-color .3s cubic-bezier(.71, -.46, .29, 1.46),
    background-color .3s cubic-bezier(.71, -.46, .29, 1.46);
    margin-right: 10px;
    color: #606266;
    position: relative;
}

.yui-checkbox:hover {
    color: #2b5fff;
}

.yui-checkbox:hover:before {
    border-color: #2b5fff;
}

.yui-checkbox.checked {
    color: #2b5fff;
}

.yui-checkbox.checked:before {
    border-color: #2b5fff;
    background-color: #2b5fff;
}

.yui-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;
}

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

.yui-checkbox.plain.checked:after {
    border-color: #2b5fff;
}

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

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

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

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

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

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

.yui-checkbox.checked.indeterminate.plain:after {
    background-color: #2b5fff;
}

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


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

.yui-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;
}

.yui-dialog {
    width: 600px;
    background: #fff;
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    top: -30px;
    position: relative;
    opacity: 0;
    transition: .3s;
}

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

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

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

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

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


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

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

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

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

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

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

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

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


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

.yui-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;
}

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

.yui-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;
}

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

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

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

.yui-drawer-footer .yui-button:not(:last-child) {
    margin-right: 16px;
}

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


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

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

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

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


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

.yui-form {

}

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

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

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

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

.yui-form-item-body {
    flex-grow: 1;
}

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

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

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


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

.yui-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;
    min-width: 160px;
}

.yui-input:not(.disabled):hover, .yui-input.focus {
    border-color: #2b5fff;
}

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

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

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

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

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

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

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

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

.yui-input-hide-password-icon {
    display: none;
}

textarea.yui-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;
}

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


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

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

.yui-link:not(.disabled):hover {
    color: #2b5fff;
}

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

.yui-link.primary {
    color: #2b5fff;
}

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

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

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

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

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

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

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

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

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


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

.yui-loading {
    position: relative;
}

.yui-loading-wrap,
.yui-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;
}

.yui-loading-content {
    color: #2b5fff;
    text-align: center;
}

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

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

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


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

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

.yui-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;
}

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

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

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

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

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

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


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

.yui-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;
}

.yui-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);
}

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

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

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

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

.yui-message-box-footer .yui-button {
    padding: 6px 13px;
    margin-left: 6px;
}

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


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

.yui-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;
}

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

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

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

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

.yui-popover.menu .yui-popover-body > a.checked,
.yui-popover.menu .yui-popover-body > a.checked:hover {
    background: #ecf5ff;
    color: #2b5fff;
}

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

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

.yui-popover-arrow-icon:before {
    content: '';
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


/* ------------------------- Radio ------------------------- */

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

.yui-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;
}

.yui-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%;
}

.yui-radio-group > a:not(.disabled):hover:before {
    border-color: #2b5fff;
}

.yui-radio-group > a.checked {
    color: #2b5fff;
}

.yui-radio-group > a.checked:before {
    border-color: #2b5fff;
    background: #2b5fff;
}

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

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

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

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

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

.yui-radio-group.plain > a.checked:after {
    background: #2b5fff;
}

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

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

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

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

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

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

.yui-radio-group.button > a:not(.disabled):hover {
    color: #2b5fff;
}

.yui-radio-group.button > a:not(.disabled).checked {
    background: #2b5fff;
    color: #fff;
    border-color: #2b5fff;
}

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

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

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

.yui-radio-group.box > a.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;
}

.yui-radio-group.box.plain > a.checked:not(.disabled):after {
    border-color: #2b5fff;
}

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

/* ------------------------- Radio ------------------------- */


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

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

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

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

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

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


/* ------------------------- SelectBox ------------------------- */

.yui-select-box {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.yui-select-box > a {
    display: block;
    border-color: #e3e4e5;
    border-style: solid;
    border-width: 1px;
    margin-right: 16px;
    padding: 10px 16px;
    border-radius: 4px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: .3s;
}

.yui-select-box > a.checked {
    border-color: #2b5fff;
    color: #2b5fff;
}

.yui-select-box > a.checked:before {
    content: '';
    position: absolute;
    bottom: -14px;
    right: -14px;
    width: 40px;
    height: 20px;
    background: #2b5fff;
    transform: rotate(-45deg);
}

.yui-select-box > a.checked:after {
    content: '';
    position: absolute;
    width: 7px;
    height: 3px;
    border-color: #fff;
    border-style: solid;
    transform: rotate(-45deg);
    border-width: 0 0 1px 1px;
    bottom: 4px;
    right: 1px;
}

.yui-select-box > a.disabled {
    cursor: not-allowed;
    color: #C0C4CC;
}

.yui-select-box > a.checked.disabled {
    border-color: #d3d4d6;
}

.yui-select-box > a.checked.disabled:before {
    background: #d3d4d6;
}

/* ------------------------- SelectBox ------------------------- */


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

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

.yui-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;
}

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

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

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

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

.yui-switch .label:first-child {
    color: #2b5fff;
}

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

.yui-switch.checked .label:last-child {
    color: #2b5fff;
}

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

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


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

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

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

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

.yui-table td,
.yui-table th {
    padding: 16px 0;
}

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

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

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

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

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

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

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

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


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

.yui-tabs {

}

.yui-tabs-menu {
    display: flex;
    align-items: center;
    border-bottom: 2px solid #e3e4e5;
    position: relative;
}

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

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

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

.yui-tabs-menu > a:hover {
    color: #2b5fff;
}

.yui-tabs-menu > a.checked {
    color: #2b5fff;
}

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

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

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

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


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

.yui-tag {
    background-color: #ecf5ff;
    border-color: #d9ecff;
    color: #2b5fff;
    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;
}

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

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

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

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

.yui-tag.dark {
    background-color: #2b5fff;
    border-color: #2b5fff;
    color: #fff;
}

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

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

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

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

.yui-tag.plain {
    background-color: #fff;
    border-color: #2b5fff;
}

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

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

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

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

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