@-webkit-keyframes xm-upbit {
    from {
        -webkit-transform: translate3d(0, 30px, 0);
        opacity: 0.3;
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}

@keyframes xm-upbit {
    from {
        transform: translate3d(0, 30px, 0);
        opacity: 0.3;
    }

    to {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}

@-webkit-keyframes loader {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes loader {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

xm-select {
    background-color: #FFF;
    position: relative;
    border: 1px solid #E6E6E6;
    border-radius: 4px;
    display: block;
    width: 100%;
    cursor: pointer;
    outline: none;
}

xm-select * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-size: 18px;
    font-weight: 400;
    text-overflow: ellipsis;
    user-select: none;
    -ms-user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
}

xm-select:hover {
    border-color: #fa7d00;
}

xm-select > .xm-tips {
    color: #999999;
    padding: 0 15px;
    position: absolute;
    display: flex;
    height: 100%;
    align-items: center;
}

xm-select > .xm-icon {
    display: inline-block;
    overflow: hidden;
    position: absolute;
    width: 0;
    height: 0;
    right: 10px;
    top: 50%;
    margin-top: -3px;
    cursor: pointer;
    border: 6px dashed transparent;
    border-top-color: #C2C2C2;
    border-top-style: solid;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
}

xm-select > .xm-icon-expand {
    margin-top: -9px;
    transform: rotate(180deg);
}

xm-select > .xm-label.single-row {
    position: absolute;
    top: 0;
    bottom: 0px;
    left: 0px;
    right: 30px;
    overflow: auto hidden;
}

xm-select > .xm-label.single-row .scroll {
    overflow-y: hidden;
}

xm-select > .xm-label.single-row .label-content {
    flex-wrap: nowrap;
    white-space: nowrap;
}

xm-select > .xm-label.auto-row .label-content {
    flex-wrap: wrap;
    padding-right: 30px !important;
}

xm-select > .xm-label.auto-row .xm-label-block > span {
    white-space: unset;
    height: 100%;
}

xm-select > .xm-label .scroll .label-content {
    *
    display: flex;
    padding: 3px 15px;
}

xm-select > .xm-label .xm-label-block {
    display: inline-block;
    position: relative;
    padding: 0px 5px;
    margin: 8px 5px 5px 0;
    border-radius: 3px;
    align-items: baseline;
    color: #FFF;
}

xm-select > .xm-label .xm-label-block > span {
    display: inline-block;
    color: #FFF;
    white-space: nowrap;
}

xm-select > .xm-label .xm-label-block > i {
    color: #FFF;
    margin-left: 8px;
    font-size: 12px;
    cursor: pointer;
    display: none;
}

xm-select > .xm-label .xm-label-block.disabled {
    background-color: #C2C2C2 !important;
    cursor: no-drop !important;
}

xm-select > .xm-label .xm-label-block.disabled > i {
    cursor: no-drop !important;
}

xm-select > .xm-body {
    position: absolute;
    left: 0;
    top: 42px;
    padding: 5px 0;
    z-index: 999;
    width: 100%;
    min-width: fit-content;
    border: 1px solid #E6E6E6;
    background-color: #fff;
    border-radius: 2px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.12);
    animation-name: xm-upbit;
    animation-duration: 0.3s;
    animation-fill-mode: both;
}

xm-select > .xm-body .scroll-body {
    overflow-x: hidden;
    overflow-y: auto;
}

xm-select > .xm-body .scroll-body::-webkit-scrollbar {
    width: 8px;
}

xm-select > .xm-body .scroll-body::-webkit-scrollbar-track {
    -webkit-border-radius: 2em;
    -moz-border-radius: 2em;
    -ms-border-radius: 2em;
    border-radius: 2em;
    background-color: #FFF;
}

xm-select > .xm-body .scroll-body::-webkit-scrollbar-thumb {
    -webkit-border-radius: 2em;
    -moz-border-radius: 2em;
    -ms-border-radius: 2em;
    border-radius: 2em;
    background-color: #C2C2C2;
}

xm-select > .xm-body.up {
    top: auto;
    bottom: 42px;
}

xm-select > .xm-body.relative {
    position: relative;
    display: block !important;
    top: 0;
    box-shadow: none;
    border: none;
    animation-name: none;
    animation-duration: 0;
    min-width: 100%;
}

xm-select > .xm-body .xm-group {
    cursor: default;
}

xm-select > .xm-body .xm-group-item {
    display: inline-block;
    cursor: pointer;
    padding: 0 10px;
    color: #999;
    font-size: 12px;
}

xm-select > .xm-body .xm-option {
    display: flex;
    align-items: center;
    position: relative;
    padding: 0 10px;
    cursor: pointer;
}

xm-select > .xm-body .xm-option-icon {
    color: transparent;
    display: flex;
    border: 1px solid #E6E6E6;
    border-radius: 3px;
    justify-content: center;
    align-items: center;
}

xm-select > .xm-body .xm-option-icon.xm-custom-icon {
    color: unset;
    border: unset;
}

xm-select > .xm-body .xm-option-icon-hidden {
    margin-right: -10px;
}

xm-select > .xm-body .xm-option-icon.xm-icon-danx {
    border-radius: 100%;
}

xm-select > .xm-body .xm-option-content {
    display: flex;
    position: relative;
    padding-left: 15px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    color: #666;
    width: calc(100% - 20px);
}

xm-select > .xm-body .xm-option.hide-icon .xm-option-content {
    padding-left: 0;
}

xm-select > .xm-body .xm-option.selected.hide-icon .xm-option-content {
    color: #FFF !important;
}

xm-select > .xm-body .xm-option .loader {
    width: 0.8em;
    height: 0.8em;
    margin-right: 6px;
    color: #C2C2C2;
}

xm-select > .xm-body .xm-select-empty {
    text-align: center;
    color: #999;
}

xm-select > .xm-body .disabled {
    cursor: no-drop;
}

xm-select > .xm-body .disabled:hover {
    background-color: #FFF;
}

xm-select > .xm-body .disabled .xm-option-icon {
    border-color: #C2C2C2 !important;
}

xm-select > .xm-body .disabled .xm-option-content {
    color: #C2C2C2 !important;
}

xm-select > .xm-body .disabled.selected > .xm-option-icon {
    color: #C2C2C2 !important;
}

xm-select > .xm-body .xm-search {
    background-color: #FFF !important;
    position: relative;
    padding: 0 10px;
    margin-bottom: 5px;
    cursor: pointer;
    display: none;
}

xm-select > .xm-body .xm-search > i {
    position: absolute;
    color: #666;
}

xm-select > .xm-body .xm-search-input {
    border: none;
    border-bottom: 1px solid #E6E6E6;
    padding-left: 27px;
    cursor: text;
}

xm-select > .xm-body .xm-paging {
    padding: 0 10px;
    display: flex;
    margin-top: 5px;
}

xm-select > .xm-body .xm-paging > span:first-child {
    border-radius: 2px 0 0 2px;
}

xm-select > .xm-body .xm-paging > span:last-child {
    border-radius: 0 2px 2px 0;
}

xm-select > .xm-body .xm-paging > span {
    display: flex;
    flex: auto;
    justify-content: center;
    vertical-align: middle;
    margin: 0 -1px 0 0;
    background-color: #fff;
    color: #333;
    font-size: 12px;
    border: 1px solid #e2e2e2;
    flex-wrap: nowrap;
    width: 100%;
    overflow: hidden;
    min-width: 50px;
}

xm-select > .xm-body .xm-toolbar {
    padding: 0 10px;
    display: flex;
    margin: -3px 0;
    cursor: default;
}

xm-select > .xm-body .xm-toolbar .toolbar-tag {
    cursor: pointer;
    display: flex;
    margin-right: 20px;
    color: #666;
    align-items: baseline;
}

xm-select > .xm-body .xm-toolbar .toolbar-tag:hover {
    opacity: 0.8;
}

xm-select > .xm-body .xm-toolbar .toolbar-tag:active {
    opacity: 1;
}

xm-select > .xm-body .xm-toolbar .toolbar-tag > i {
    margin-right: 2px;
    font-size: 14px;
}

xm-select > .xm-body .xm-toolbar .toolbar-tag:last-child {
    margin-right: 0;
}

xm-select > .xm-body .xm-body-custom {
    line-height: initial;
    cursor: default;
}

xm-select > .xm-body .xm-body-custom * {
    box-sizing: initial;
}

xm-select > .xm-body .xm-tree {
    position: relative;
}

xm-select > .xm-body .xm-tree-icon {
    display: inline-block;
    margin-right: 3px;
    cursor: pointer;
    border: 6px dashed transparent;
    border-left-color: #C2C2C2;
    border-left-style: solid;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    z-index: 2;
    visibility: hidden;
}

xm-select > .xm-body .xm-tree-icon.expand {
    margin-top: 3px;
    margin-right: 5px;
    margin-left: -2px;
    transform: rotate(90deg);
}

xm-select > .xm-body .xm-tree-icon.xm-visible {
    visibility: visible;
}

xm-select > .xm-body .xm-tree .left-line {
    position: absolute;
    left: 13px;
    width: 0;
    z-index: 1;
    border-left: 1px dotted #c0c4cc !important;
}

xm-select > .xm-body .xm-tree .top-line {
    position: absolute;
    left: 13px;
    height: 0;
    z-index: 1;
    border-top: 1px dotted #c0c4cc !important;
}

xm-select > .xm-body .xm-tree .xm-tree-icon + .top-line {
    margin-left: 1px;
}

xm-select > .xm-body .scroll-body > .xm-tree > .xm-option > .top-line, xm-select > .xm-body .scroll-body > .xm-option > .top-line {
    width: 0 !important;
}

xm-select > .xm-body .xm-cascader-box {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    padding: 5px 0;
    border: 1px solid #E6E6E6;
    background-color: #fff;
    border-radius: 2px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.12);
    margin: -1px;
}

xm-select > .xm-body .xm-cascader-box::before {
    content: ' ';
    position: absolute;
    width: 0;
    height: 0;
    border: 6px solid transparent;
    border-right-color: #E6E6E6;
    top: 10px;
    left: -12px;
}

xm-select > .xm-body .xm-cascader-box::after {
    content: ' ';
    position: absolute;
    width: 0;
    height: 0;
    border: 6px solid transparent;
    border-right-color: #fff;
    top: 10px;
    left: -11px;
}

xm-select > .xm-body .xm-cascader-scroll {
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
}

xm-select > .xm-body.cascader {
    width: unset;
    min-width: unset;
}

xm-select > .xm-body.cascader .xm-option-content {
    padding-left: 8px;
}

xm-select > .xm-body.cascader .disabled .xm-right-arrow {
    color: #C2C2C2 !important;
}

xm-select .xm-input {
    cursor: pointer;
    border-radius: 2px;
    border-width: 1px;
    border-style: solid;
    border-color: #E6E6E6;
    display: block;
    width: 100%;
    box-sizing: border-box;
    background-color: #FFF;
    line-height: 1.3;
    padding-left: 10px;
    outline: 0;
    user-select: text;
    -ms-user-select: text;
    -moz-user-select: text;
    -webkit-user-select: text;
}

xm-select .dis {
    display: none;
}

xm-select .loading {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
}

xm-select .loader {
    border: 0.2em dotted currentcolor;
    border-radius: 50%;
    -webkit-animation: 1s loader linear infinite;
    animation: 1s loader linear infinite;
    display: inline-block;
    width: 1em;
    height: 1em;
    color: inherit;
    vertical-align: middle;
    pointer-events: none;
}

xm-select .xm-select-default {
    position: absolute;
    width: 100%;
    height: 100%;
    border: none;
    visibility: hidden;
}

xm-select .xm-select-disabled {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    cursor: no-drop;
    z-index: 2;
    opacity: 0.3;
    background-color: #FFF;
}

xm-select .item--divided {
    border-top: 1px solid #ebeef5;
    width: calc(100% - 20px);
    cursor: initial;
}

xm-select .xm-right-arrow {
    position: absolute;
    color: #666;
    right: 5px;
    top: -1px;
    font-weight: 700;
    transform: scale(0.6, 1);
}

xm-select .xm-right-arrow::after {
    content: '>';
}

xm-select[size='large'] {
    min-height: 40px;
    line-height: 40px;
}

xm-select[size='large'] .xm-input {
    height: 40px;
}

xm-select[size='large'] .xm-label .scroll .label-content {
    line-height: 34px;
}

xm-select[size='large'] .xm-label .xm-label-block {
    height: 30px;
    line-height: 30px;
}

xm-select[size='large'] .xm-body .xm-option .xm-option-icon {
    height: 20px;
    width: 20px;
    font-size: 20px;
}

xm-select[size='large'] .xm-paging > span {
    height: 34px;
    line-height: 34px;
}

xm-select[size='large'] .xm-tree .left-line {
    height: 100%;
    bottom: 20px;
}

xm-select[size='large'] .xm-tree .left-line-group {
    height: calc(100% - 40px);
}

xm-select[size='large'] .xm-tree .xm-tree-icon.xm-hidden + .top-line {
    top: 19px;
}

xm-select[size='large'] .item--divided {
    margin: 10px;
}

xm-select {
    min-height: 52px;
    line-height:52px;
}

xm-select .xm-input {
    height: 52px;
}

xm-select .xm-label .scroll .label-content {
    line-height: 30px;
    height: 52px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}

xm-select .xm-label .xm-label-block {
    height: 30px;
    line-height: 30px;
}

xm-select .xm-body .xm-option .xm-option-icon {
    height: 18px;
    width: 18px;
    font-size: 18px;
}

xm-select .xm-paging > span {
    height: 30px;
    line-height: 30px;
}

xm-select .xm-tree .left-line {
    height: 100%;
    bottom: 18px;
}

xm-select .xm-tree .left-line-group {
    height: calc(100% - 36px);
}

xm-select .xm-tree .xm-tree-icon.xm-hidden + .top-line {
    top: 17px;
}

xm-select .item--divided {
    margin: 9px;
}

xm-select[size='small'] {
    min-height: 32px;
    line-height: 32px;
}

xm-select[size='small'] .xm-input {
    height: 32px;
}

xm-select[size='small'] .xm-label .scroll .label-content {
    line-height: 26px;
}

xm-select[size='small'] .xm-label .xm-label-block {
    height: 22px;
    line-height: 22px;
}

xm-select[size='small'] .xm-body .xm-option .xm-option-icon {
    height: 16px;
    width: 16px;
    font-size: 16px;
}

xm-select[size='small'] .xm-paging > span {
    height: 26px;
    line-height: 26px;
}

xm-select[size='small'] .xm-tree .left-line {
    height: 100%;
    bottom: 16px;
}

xm-select[size='small'] .xm-tree .left-line-group {
    height: calc(100% - 32px);
}

xm-select[size='small'] .xm-tree .xm-tree-icon.xm-hidden + .top-line {
    top: 15px;
}

xm-select[size='small'] .item--divided {
    margin: 8px;
}

xm-select[size='mini'] {
    min-height: 28px;
    line-height: 28px;
}

xm-select[size='mini'] .xm-input {
    height: 28px;
}

xm-select[size='mini'] .xm-label .scroll .label-content {
    line-height: 22px;
}

xm-select[size='mini'] .xm-label .xm-label-block {
    height: 18px;
    line-height: 18px;
}

xm-select[size='mini'] .xm-body .xm-option .xm-option-icon {
    height: 14px;
    width: 14px;
    font-size: 14px;
}

xm-select[size='mini'] .xm-paging > span {
    height: 22px;
    line-height: 22px;
}

xm-select[size='mini'] .xm-tree .left-line {
    height: 100%;
    bottom: 14px;
}

xm-select[size='mini'] .xm-tree .left-line-group {
    height: calc(100% - 28px);
}

xm-select[size='mini'] .xm-tree .xm-tree-icon.xm-hidden + .top-line {
    top: 13px;
}

xm-select[size='mini'] .item--divided {
    margin: 7px;
}

.layui-form-pane xm-select {
    margin: -1px -1px -1px 0;
}

@font-face {
    font-family: "xm-iconfont";
    src: url('//at.alicdn.com/t/font_792691_ptvyboo0bno.eot?t=1574048839056');
    /* IE9*/
    src: url('//at.alicdn.com/t/font_792691_ptvyboo0bno.eot?t=1574048839056#iefix') format('embedded-opentype'), /* IE6-IE8*/ url('data:application/x-font-woff2;charset=utf-8;base64,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') format('woff2'), url('//at.alicdn.com/t/font_792691_ptvyboo0bno.woff?t=1574048839056') format('woff'), url('//at.alicdn.com/t/font_792691_ptvyboo0bno.ttf?t=1574048839056') format('truetype'), /* chrome, firefox, opera, Safari, Android, iOS 4.2+*/url('//at.alicdn.com/t/font_792691_ptvyboo0bno.svg?t=1574048839056#iconfont') format('svg');
    /* iOS 4.1-*/
}

.xm-iconfont {
    font-family: "xm-iconfont" !important;
    font-size: 16px;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.xm-icon-quanxuan:before {
    content: "\e62c";
}

.xm-icon-caidan:before {
    content: "\e610";
}

.xm-icon-fanxuan:before {
    content: "\e837";
}

.xm-icon-pifu:before {
    content: "\e668";
}

.xm-icon-qingkong:before {
    content: "\e63e";
}

.xm-icon-sousuo:before {
    content: "\e600";
}

.xm-icon-danx:before {
    content: "\e62b";
}

.xm-icon-duox:before {
    content: "\e613";
}

.xm-icon-close:before {
    content: "\e601";
}

.xm-icon-expand:before {
    content: "\e641";
}

.xm-icon-banxuan:before {
    content: "\e60d";
}

html.ai-assist-html {
    width: calc(100% - 480px)!important;
    position: relative!important;
    min-height: 100vh!important
}

.ai-assist-highlight {
    background: yellow;
}
