html,
body {
    width: 100%;
    height: 100%;
    margin: 0;
    background-color: var(--bg);
    font-family: initial;
}

:root {
    --animate-duration: 1s;
    --animate-delay: 1s;
    --animate-repeat: 1;
}

.animate__animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-duration: var(--animate-duration);
    animation-duration: var(--animate-duration);
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.animate__animated.animate__faster {
    -webkit-animation-duration: calc(1s / 2.5);
    animation-duration: calc(1s / 2.5);
    -webkit-animation-duration: calc(var(--animate-duration) / 2.5);
    animation-duration: calc(var(--animate-duration) / 2.5);
}

.animate__animated.animate__fast {
    -webkit-animation-duration: calc(1s * 0.8);
    animation-duration: calc(1s * 0.8);
    -webkit-animation-duration: calc(var(--animate-duration) * 0.8);
    animation-duration: calc(var(--animate-duration) * 0.8);
}

@-webkit-keyframes fadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 10%, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 10%, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.animate__fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}

@-webkit-keyframes fadeOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

.animate__fadeOut {
    -webkit-animation-name: fadeOut;
    animation-name: fadeOut;
}

@media screen and (max-width: 1440px) {
    .dataTable tbody td {
        font-size: 12px !important;
    }

    .rightPart {
        padding: 24px 10px 0px !important;
    }

    .data_compare .part2 {
        padding: 16px 6px !important;
    }

    .no_order_data_box {
        width: calc(100% - 20px) !important;
        left: 10px !important;
    }

}


a {
    text-decoration: none;
    color: inherit;
}


.content {
    height: calc(100vh - 64px);
    display: flex;
}

.leftPart {
    width: 300px;
    box-sizing: border-box;
    padding: 10px 18px;
    background-color: var(--leftPart_bg);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    height: initial;
}

.leftPart .search_box {
    width: 265px;
    height: 40px;
    display: flex;
    align-items: center;
    background: var(--search_icon_url) no-repeat left 12px center, var(--search_input_bg);
    background-size: 18px 18px;
    border-radius: 4px;
    box-sizing: border-box;
    padding-left: 38px;
}

.leftPart .search_box .clear_search {
    width: 30px;
    height: 100%;
    background: url(../img/clear_icon.png) no-repeat center;
    background-size: 16px auto;
    display: none;
    cursor: pointer;
}

.leftPart .search_box input {
    background: var(--search_input_bg);
    border: none;
    outline: none;
    height: 100%;
    flex: 1;
    color: var(--search_input_color);
}

.leftPart .search_box input::-webkit-input-placeholder {
    color: #AAAAAA;
}

.leftPart .title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 12px 0;
}

.leftPart .title span {
    font-weight: bold;
    font-size: 16px;
    color: var(--left_text);
}

.leftPart .title i {
    display: inline-block;
    width: 30px;
    height: 30px;
    background: var(--theme_icon_url) no-repeat center;
    background-size: cover;
    cursor: pointer;
}

.leftPart .changeData {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 36px;
    box-sizing: border-box;
    padding: 4px;
    background-color: #2872C9;
    border-radius: 4px;
    position: relative;
}

.leftPart .changeData>span {
    flex: 1;
    height: 100%;
    text-align: center;
    line-height: 28px;
    font-size: 14px;
    color: #FFFFFF;
    cursor: pointer;
}

.leftPart .changeData>span.active {
    background-color: #FFFFFF;
    color: #2872C9;
    font-weight: bold;
    border-radius: 4px;
}

.ProductBox {
    margin-top: 10px;
    flex: 1;
    overflow: auto;
    overflow-x: hidden;
    position: relative;
}

.ProductBox::-webkit-scrollbar {
    width: 4px;
}

.ProductBox::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 2px;
}







.ItemSeries ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.ItemSeries>.ItemTitle {
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.ItemSeries>.ItemTitle.active span {
    color: #2872C9;
}

.ItemSeries>.childNav {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.3s ease;
}

.ItemSeries>.childNav>ul {
    overflow: hidden;
}

.my_collect>span:nth-child(1) {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 44px;
    cursor: pointer;
}
.my_collect>span:nth-child(1) i{
    width: 30px;
    height: 30px;
    display: inline-flex;
    background: url(../img/arrow_right.png) no-repeat center;
    background-size: 18px auto;
    transition: all 0.3s;
}
.my_collect>div{
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.3s ease;
}
.my_collect.show>div{
    grid-template-rows: 1fr;
}
.my_collect>div>div{
    overflow: hidden;
}
.my_collect.show>span:nth-child(1) i{
    transform: rotate(90deg);
}




.my_collect>span:nth-child(1),
.ItemSeries>.ItemTitle>span {
    font-weight: bold;
    font-size: 16px;
    color: var(--left_text);
}

.ItemSeries>.ItemTitle>i {
    display: inline-block;
    width: 30px;
    height: 30px;
    transition: all 0.3s;
    background: url(../img/arrow_right.png) no-repeat center;
    background-size: 18px auto;
    transition: all 0.3s;
}

.ItemSeries>.ItemTitle>i.active {
    transform: rotate(90deg);
}

.item_collect.delete{
    animation: delete_animate 0.5s forwards;
}
@keyframes delete_animate {
    100% {
        opacity: 0;
        transform: translateX(-100px);
    }
}
.item_collect {
    box-sizing: border-box;
    padding-right: 7px;
}
.item_collect>div:nth-of-type(1) span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.item_collect:hover {
    background-color: #EEF6FF;
}

.item_collect:hover .edit_collect {
    display: inline-flex;
}

.item_collect,
.ItemModule>.ItemTitle {
    height: 32px;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    cursor: pointer;
}

.ItemModule>.ItemTitle>i {
    display: inline-block;
    width: 16px;
    height: 16px;
    background: var(--module_title_url) no-repeat center;
    background-size: 16px 16px;
    margin-right: 8px;
    margin-top: 2px;
}

.ItemModule>.ItemTitle>i.active {
    background: var(--module_title_active_url) no-repeat center;
    background-size: cover;
}

.ItemModule>.ItemTitle>span {
    font-size: 14px;
    color: var(--left_text);
}

.ItemModule>div {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.3s ease;
}

.ItemSeries>.childNav.active,
.ItemModule>div.active {
    grid-template-rows: 1fr;
}

.ItemModule ul {
    box-sizing: border-box;
    padding-left: 22px;
    overflow: hidden;
}

.search_container {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    display: none;
}

.item_search {
    display: flex;
    align-items: center;
    height: 32px;
}

.item_collect>i:nth-child(1),
.item_search .checkIcon,
.ItemModule ul .checkIcon {
    display: inline-block;
    width: 16px;
    height: 16px;
    background: url(../img/select.png) no-repeat center;
    background-size: cover;
    margin-right: 8px;
    margin-top: 2px;
}

.myData .checkIcon.disabled {
    cursor: none;
    pointer-events: auto;
}


.item_collect>i:nth-child(1).active,
.item_search .checkIcon.active,
.ItemModule ul .checkIcon.active {
    background: url(../img/selected.png) no-repeat center;
    background-size: cover;
}

.ItemModule ul li {
    height: 32px;
    display: flex;
    align-items: center;
    position: relative;
}

.loading_em {
    position: fixed;
    left: -100px;
    top: 0;
    display: inline-block;
    width: 20px;
    height: 20px;
    background: url(../img/loading.gif) no-repeat center;
    background-size: cover;
    z-index: 10;
    pointer-events: none;
    /* display: none; */
}

.edit_collect {
    display: none;
    width: 18px;
    height: 18px;
    background: url(../img/edit_icon.png) no-repeat center;
    background-size: cover;
    margin-right: 6px;

}

.delete_collect {
    display: inline-flex;
    width: 18px;
    height: 18px;
    background: url(../img/delete_icon.png) no-repeat center;
    background-size: cover;
}

.item_collect>div:nth-of-type(1) {
    flex: 1;
    height: 100%;
    display: inline-flex;
    align-items: center;
    user-select: none;
}

.item_collect>div:nth-of-type(1) input.hidden,
.item_collect>div:nth-of-type(1) span.hidden {
    display: none;
}

.item_collect>div:nth-of-type(1) input {
    border: 1px solid #b8b8b8;
    outline: none;
    border-radius: 4px;
    height: 100%;
    box-sizing: border-box;
    color: #7e7e7e;
    box-sizing: border-box;
    padding-left: 10px;
    transition: all 0.3s;
}

.item_collect>div:nth-of-type(1) input:focus {
    border-color: #2872C9;
    box-shadow: 0px 0px 0px 2px rgba(40, 114, 201, 0.2);
}

.item_collect>div:nth-of-type(1),
.item_search span,
.ItemModule ul li span {
    font-size: 14px;
    color: var(--left_text);
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ip_address {
    font-size: 14px;
    color: var(--ip_text);
    padding: 10px 0;
}

.rightPart {
    flex: 1;
    box-sizing: border-box;
    padding: 0 24px;
    overflow-x: hidden;
}

.data_compare {
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.05);
    min-height: calc(100% - 2px);
    display: flex;
    flex-direction: column;
}

.order_data {
    background-color: var(--middlePart);
    border-radius: 6px;
    box-sizing: border-box;
    padding: 14px 18px;
    height: 100%;
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.order_data .title {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.order_data .title>span:nth-child(1) {
    font-weight: bold;
    font-size: 18px;
    color: var(--left_text);
}

.order_data .title>span:nth-child(2) {
    font-size: 14px;
    color: var(--middle_table_head_text);
}

.table_list {
    margin-top: 12px;
    height: calc(100% - 36px);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.table_list>div {
    border: 1px solid var(--middle-table-border-color);
    border-radius: 4px;
    overflow: hidden;
}

.select_container {
    max-height: calc(100% - 38px);
    overflow: auto;
}

.select_container::-webkit-scrollbar {
    width: 2px;
}

.select_container::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 2px;
}

.table_list table {
    width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
    margin: 0;
    padding: 0;
}

.table_list table thead tr {
    height: 38px;
    background-color: var(--middle_table_head_bg);
    border-bottom: none;
    border-radius: 10px;
}

.table_list table thead tr th {
    font-size: 14px;
    color: var(--middle_table_head_text);
}

.table_list>div table tbody tr td:nth-child(1),
.table_list table thead tr th:nth-child(1) {
    width: 240px;
}

.table_list table tbody tr td {
    text-align: center;
    font-size: 14px;
    color: var(--middle_table_tbody_text);
}

.table_list table tbody tr td:nth-child(1) {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.table_list table tbody tr {
    height: 38px;
    border-bottom: 1px solid var(--middle-table-border-color);
}

.table_list table tbody tr:last-child {
    border-bottom: none;
}

.calc_box {
    width: 80px;
    height: 24px;
    border-radius: 4px;
    border: 1px solid var(--icon_bg);
    display: inline-flex;
    align-items: center;
    box-sizing: border-box;
    overflow: hidden;
    vertical-align: middle;
}

.calc_box i {
    width: 23px;
    height: 100%;
    cursor: pointer;
}

.calc_box i:nth-of-type(2) {
    background: var(--add_icon_url) no-repeat center, var(--icon_bg);
    background-size: 12px 12px;
    border-right: 1px solid var(--icon_bg);
}

.calc_box i:nth-of-type(1) {
    background: var(--minus_icon_url) no-repeat center, var(--icon_bg);
    background-size: 12px 12px;
    border-left: 1px solid var(--icon_bg);
}

.calc_box span {
    flex: 1;
    height: 100%;
    background-color: var(--calc_text_bg);
    text-align: center;
    line-height: 24px;
}

.startOrderTime {
    font-size: 14px;
    color: #2872C9;
}

.apiSelect {
    display: inline-block;
    width: 14px;
    height: 14px;
    background: url(../img/select.png) no-repeat center;
    background-size: cover;
}

.apiSelect.active {
    background: url(../img/selected.png) no-repeat center;
    background-size: cover;
}

.deleteProcuct {
    color: #2872C9;
    cursor: pointer;
}

.createOrder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 104px;
    height: 36px;
    background-color: #2872C9;
    border-radius: 4px;
    font-size: 14px;
    color: #FFFFFF;
    margin: 14px auto 0;
    transition: all 0.3s;
    flex-shrink: 0;
}

.createOrder:hover {
    opacity: 0.7;
}


.data_compare .part1 {
    background-color: var(--middlePart);
    height: 142px;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    /* overflow: hidden; */
}

.data_compare .part1 .title {
    display: flex;
    align-items: center;
    box-sizing: border-box;
    padding: 14px 19px;
    border-bottom: 1px solid #F2F2F2;
}

.data_compare .part1 .title span:nth-child(1) {
    font-weight: 800;
    font-size: 18px;
    color: var(--left_text);
}

.data_compare .part1 .title span i {
    font-style: normal;
}

.data_compare .part1 .title span:nth-child(2) {
    font-size: 14px;
    color: #2872C9;
    text-decoration: underline;
    margin-left: 10px;
    display: none;
    cursor: pointer;
}

.collect_btn {
    margin-left: auto;
    margin-right: 10px;
    outline: none;
    min-width: 72px;
    height: 32px;
    background-color: #FFFFFF;
    border-radius: 4px;
    border: 1px solid #2872C9;
    box-sizing: border-box;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #2872C9;
    cursor: pointer;
}
.collect_btn:disabled{
    padding-left: 33px;
    color: #FFF;
    cursor: not-allowed;
    background-color: #40a0ffcc;
    position: relative;
    border: none;
    padding-right: 12px;
}
.collect_btn:disabled::before{
    content: '';
    display: inline-flex;
    width: 18px;
    height: 18px;
    background: url(../img/loading.png) no-repeat left center;
    background-size: 100%;
    position: absolute;
    left: 10px;
    animation: xuanzhan 2s linear infinite;
}
@keyframes xuanzhan {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.collect_btn.show{
    display: inline-flex;
}

.data_compare .part1 .title>a {
    width: 58px;
    height: 32px;
    line-height: 32px;
    background: url(../img/chart_icon.png) no-repeat left 8px center, #2872C9;
    background-size: 18px auto;
    border-radius: 4px;
    font-size: 14px;
    text-align: center;
    color: #FFFFFF;
    display: none;
    padding-left: 20px;
    padding-right: 3px;
    align-self: flex-end;
}

.data_compare .part1 .select_module {
    width: 100%;
    overflow: auto;
    display: flex;
    align-items: center;
    flex: 1;
    box-sizing: border-box;
    padding: 0 19px;
}

.data_compare .part1 .select_module::-webkit-scrollbar {
    height: 4px;
}

.data_compare .part1 .select_module::-webkit-scrollbar-thumb {
    background: #e0e0e0;
    border-radius: 2px;
}

.data_compare .part1 .select_module .ItemModule {
    cursor: pointer;
    max-width: 230px;
    position: relative;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 62px;
    background-color: var(--tag_bg);
    border-radius: 4px;
    box-sizing: border-box;
    padding: 0 10px;
    margin-right: 20px;
}

.data_compare .part1 .select_module .ItemModule:last-child {
    margin-right: 0;
}

.data_compare .part1 .select_module .ItemModule>span:nth-child(1) {
    font-size: 14px;
    color: var(--tag_text1);
    width: 100%;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.data_compare .part1 .select_module .ItemModule>span:nth-child(2) {
    font-size: 12px;
    color: var(--tag_text2);
    margin-top: 4px;
}

.data_compare .part1 .select_module .ItemModule .close {
    width: 14px;
    height: 14px;
    background: url(../img/close.png) no-repeat center/cover;
    position: absolute;
    right: -4px;
    top: -4px;
    cursor: pointer;
}

.ItemModule.active {
    background-color: var(--tag_active_bg) !important;
}

.ItemModule.active span {
    color: var(--tag_active_text1) !important;
}

.ItemModule .no_chart {
    color: #AAAAAA !important;
}

.data_compare .part2 {
    background-color: var(--middlePart);
    border-radius: 6px;
    box-sizing: border-box;
    padding: 16px 19px;
    margin-top: 10px;
    height: calc(100% - 142px);
}

.data_compare .part2>div {
    background-color: var(--middlePart);
}

.data_compare .part2 .title {
    padding: 0;
    margin: 0;
    font-size: 14px;
    color: var(--left_text);
    font-weight: bold;
}

.select_time_range {
    display: inline-flex;
    align-items: center;
    padding-right: 16px;
    height: 32px;
    background: var(--time_icon_url) no-repeat left 6px center, var(--time_select_bg);
    background-size: 16px 16px;
    border-radius: 4px;
    font-size: 12px;
    color: var(--time_text);
    box-sizing: border-box;
    padding-left: 28px;
}

.data_compare .part2 .search_box {
    margin: 10px 0;
    display: flex;
    align-items: center;
}

.select_time_range i {
    font-style: normal;
    margin: 0 8px;
}

.MultipleBox {
    position: relative;
    display: inline-flex;
    min-width: 102px;
    max-width: 300px;
    margin-left: 10px;
}

.MultipleBox .Title {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 32px;
    background-color: #F8F8F8;
    font-size: 12px;
    color: #666666;
    box-sizing: border-box;
    padding: 0 10px;
}

.MultipleBox .Title>i {
    width: 16px;
    height: 16px;
    background: url(../img/arrowdown_icon.png) no-repeat center;
    background-size: cover;
}

.MultipleBox .Title .empty::after {
    content: "请选择";
    color: #666;
}

.SelectListContainer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.3s ease;
    position: absolute;
    left: 0;
    top: calc(100% + 10px);
    background-color: #FFFFFF;
    border-radius: 4px;
    box-shadow: 0px 0px 12px rgba(0, 0, 0, .12);
}

.SelectListContainer.show {
    grid-template-rows: 1fr;
}

.MultipleBox .SelectList {
    overflow: hidden;
    min-width: 100px;
}

.MultipleBox .SelectList::after {
    content: "";
    display: none;
    width: 10px;
    height: 10px;
    background-color: #FFFFFF;
    position: absolute;
    left: 20px;
    top: -6px;
    border: 1px solid #e4e7ed;
    border-bottom: none;
    border-left: none;
    transform: rotate(-45deg);
}

.SelectListContainer.show .SelectList::after {
    display: inline-block;
}

.MultipleBox .SelectList>div {
    height: 34px;
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #606266;
    box-sizing: border-box;
    padding: 0 10px;
    cursor: pointer;
}

.MultipleBox .SelectList>div:first-child {
    margin-top: 5px;
}

.MultipleBox .SelectList>div:last-child {
    margin-bottom: 5px;
}

.MultipleBox .SelectList>div:hover {
    background-color: #f5f7fa;
}

.MultipleBox .SelectList>div i {
    display: inline-flex;
    width: 14px;
    height: 14px;
    background: url(../img/select.png) no-repeat center;
    background-size: cover;
    margin-right: 8px;
    flex-shrink: 0;
}

.MultipleBox .SelectList>div span {
    flex-shrink: 0;
}

.MultipleBox .SelectList>div.active i {
    background: url(../img/selected.png) no-repeat center;
    background-size: cover;
}

.selected-item {
    background-color: rgb(235.9, 245.3, 255);
    color: #2872C9;
    font-size: 12px;
    border-radius: 4px;
    border: 1px solid rgb(216.8, 235.6, 255);
    padding: 0 4px 0 9px;
    display: inline-flex;
    align-items: center;
    height: 24px;
    margin-right: 10px;
}

.selected-item i {
    width: 12px;
    height: 12px;
    background: url(../img/close_blue.png) no-repeat center;
    background-size: cover;
    margin-left: 4px;
    cursor: pointer;
}


.sysWrap {
    margin-left: auto;
    position: relative;
}

.sysWrap>span {
    display: inline-flex;
    width: 32px;
    height: 32px;
    cursor: pointer;
    border-radius: 4px;
}

.sysWrap>span:nth-child(1) {
    background: var(--func_btn_bg) no-repeat 0 0;
    background-size: 64px auto;
}

.sysWrap>span:nth-child(2) {
    background: var(--func_btn_bg) no-repeat -32px 0;
    background-size: 64px auto;
}

.sysWrap>span:nth-child(3) {
    background: var(--func_btn_bg) no-repeat 0 -32px;
    background-size: 64px auto;
}

.sysWrap>span:nth-child(4) {
    background: var(--func_btn_bg) no-repeat -32px -32px;
    background-size: 64px auto;
}

.sysWrap>span:nth-child(4).fullScreenIcon {
    background: var(--func_btn_bg) no-repeat 0 -64px;
    background-size: 64px auto;
}


.Select_InfoHeader {
    position: absolute;
    left: calc(-100% + 10px);
    top: 100%;
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.3s;
    background-color: var(--select_column_bg);
    border-radius: 4px;
    box-shadow: 0px 0px 12px rgba(0, 0, 0, .12);
}

.Select_InfoHeader.show {
    grid-template-rows: 1fr;
}

.Select_InfoHeader>div {
    overflow: hidden;
}

.Select_InfoHeader .ItemSelect {
    height: 34px;
    display: flex;
    align-items: center;
    font-size: 14px;
    color: var(--select_column_text);
    box-sizing: border-box;
    padding: 0 10px;
    cursor: pointer;
}

.Select_InfoHeader .ItemSelect:hover {
    background-color: #dbdbdb;
}

.ItemSelect i {
    display: inline-flex;
    width: 14px;
    height: 14px;
    background: url(../img/select.png) no-repeat center;
    background-size: cover;
    margin-right: 6px;
}

.Select_InfoHeader .ItemSelect.active i {
    background: url(../img/selected.png) no-repeat center;
    background-size: cover;
}

.table_list_container {
    border: 1px solid var(--middle-table-border-color);
    border-radius: 4px;
    overflow: hidden;
}

.dataTable {
    width: 100%;
    table-layout: fixed;
    text-align: center;
    border-collapse: collapse;
}

.dataTable thead th {
    font-size: 14px;
    color: var(--middle_table_head_text);
    font-weight: normal;
    height: 32px;
    background: var(--middle_table_head_bg);
}

.dataTable tbody td {
    font-size: 14px;
    color: var(--middle_table_tbody_text);
    height: 32px;
}

.dataTable tbody tr:not(:last-child) {
    border-bottom: 1px solid var(--middle-table-border-color);
}


.pageBox {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
}

.layui-laypage a,
.layui-laypage span {
    background-color: var(--page_item_bg) !important;
    color: var(--page_item_text) !important;
}

.layui-laypage a,
.layui-laypage button,
.layui-laypage input,
.layui-laypage select,
.layui-laypage span {
    border: 1px solid var(--page_border_color) !important;
}

.layui-laypage-curr .layui-laypage-em {
    background-color: var(--page_curr_bg) !important;
}


.layui-laydate,
.layui-laydate-hint {
    background-color: var(--date_picker_bg) !important;
    color: var(--date_picker_header_text) !important;
}

.layui-laydate-footer span {
    background-color: var(--date_picker_footer_bg) !important;
    color: var(--date_picker_header_text) !important;
}

.layui-laydate-content td:not([class="laydate-day-next"]):not([class="laydate-day-prev"]):not([class="layui-this"]) {
    color: var(--date_picker_td_text) !important;
}

.laydate-day-next,
.laydate-day-prev {
    /* color: var()!important; */
    color: #979797 !important;
}

.layui-laydate-content th {
    color: var(--date_picker_header_text) !important;
}

.no_order_data_box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--middlePart);
    box-sizing: border-box;
    position: absolute;
    width: calc(100% - 48px);
    height: calc(100% - 84px);
    top: 84px;
    left: 24px;
    /* display: none; */
}

.no_order_data_box>img {
    width: 200px;
}

.no_order_data_box>span:nth-of-type(1) {
    font-weight: bold;
    font-size: 18px;
    color: var(--empty_text1);
    margin-top: 20px;
}

.no_order_data_box>span:nth-of-type(2) {
    font-size: 14px;
    color: var(--empty_text2);
    margin-top: 10px;
}

.no_table_data {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex: 1;
    margin-top: 100px;
    /* position: absolute;
    inset: 0 0 0 0;
    top: 142px; */
}

.no_table_data img {
    width: 200px;
}

.no_table_data span {
    color: #9b9b9b;
}

.no_search_data {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px 0;
    box-sizing: border-box;
}

.no_search_data p {
    font-size: 14px;
}


.footer_container {
    background-color: #323232;
    padding: 30px 0;
    margin-top: 30px;
    min-width: 1200px;
}

footer {
    width: 1200px;
    margin: 0 auto;
    position: relative;

}

footer>div:nth-child(1) {
    display: flex;
    justify-content: space-between;
    margin: 30px 0 20px;
}

footer>div:nth-child(1) a {
    font-size: 14px;
    color: #FFFFFF;
    /*padding-right: 28px;*/
}

footer>div:nth-child(1) a:after {
    content: "|";
    margin-left: 22px;
}

footer>div:nth-child(1) a:last-child:after {
    content: none;
}

footer>p {
    margin-bottom: 0px;
    font-size: 12px;
    color: #AAAAAA;
}

footer .footImg {
    position: absolute;
    bottom: 0;
    right: 0;
}

footer .footImg a {
    display: inline-flex;

}

footer .footImg a:nth-child(1) {
    width: auto;
    height: 40px;
}

footer .footImg a:nth-child(2) {
    width: 110px;
    height: 40px
}

footer .version_container {
    display: flex;
    align-items: center;
    margin: 10px 0;
}

footer .version_container a {
    color: #AAAAAA;
    font-size: 12px;
    display: inline-flex;
    align-items: center;
}

footer .version_container a:hover {
    text-decoration: underline;
}

* {
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}



.ElLoading,
.common_layer {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    display: none;
}

.ElLoading.show,
.common_layer.show {
    display: flex;
    animation: show 0.3s linear forwards;
}

.common_layer.show .layer_container {
    animation: show2 0.2s forwards;
}

@keyframes show2 {
    0% {
        transform: translateY(-30px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes show {
    0% {
        background-color: rgba(0, 0, 0, 0);
    }

    100% {
        background-color: rgba(0, 0, 0, 0.5);
    }
}

.ElLoading.hidden,
.common_layer.hidden {
    display: flex;
    animation: hidden 0.3s linear 0.3s both;
}

.common_layer.hidden .layer_container {
    animation: hidden2 0.3s linear forwards;
}

@keyframes hidden {
    0% {
        background-color: rgba(0, 0, 0, 0.5);
    }

    100% {
        background-color: rgba(0, 0, 0, 0);
        display: none;
    }
}

@keyframes hidden2 {
    0% {
        transform: translateY(0);
        opacity: 1;
    }

    100% {
        transform: translateY(-30px);
        opacity: 0;
    }
}


.layer_container {
    width: 500px;
    height: 300px;
    background-color: #FFFFFF;
    box-shadow: 0px 9px 28px 0px rgba(0, 0, 0, 0.05), 0px 6px 16px 0px rgba(0, 0, 0, 0.08), 0px 3px 6px 0px rgba(0, 0, 0, 0.12);
    border-radius: 3px;
    display: flex;
    flex-direction: column;

}

.layer_container .layer_header {
    height: 50px;
    border-bottom: 1px solid #F0F0F0;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    padding: 0 24px;
}

.layer_container .layer_footer {
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    border-top: 1px solid #F0F0F0;
    box-sizing: border-box;
    padding: 0 10px;
}

.layer_container .layer_footer span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 80px;
    height: 34px;
    border-radius: 3px;
    font-size: 14px;
    cursor: pointer;
    transition: opacity 0.3s;
    user-select: none;
}

.layer_container .layer_footer span:hover {
    opacity: 0.7;
}

.layer_container .layer_footer .cancel_btn {
    background-color: #F3F3F3;
    color: #333333;
}

.layer_container .layer_footer .submit_btn {
    background-color: #217BE5;
    color: #FFFFFF;
    margin-left: 14px;
}

.layer_container .layer_header>span {
    font-weight: bold;
    font-size: 16px;
    color: #333333;
}

.layer_content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    font-size: 16px;
    color: #333333;
}


.loading_container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.loading_container img {
    width: 56px;
}

.loading_container span {
    color: #FFF;
}

.loading_container span:nth-of-type(1) {
    font-size: 16px;
    letter-spacing: 2px;
    margin: 14px 0 4px;
}



.ask_layer {
    position: absolute;
    padding: 10px 14px 14px;
    border-radius: 4px;
    box-shadow: 0px 0px 12px rgba(0, 0, 0, .12);
    z-index: 2008;
    min-width: 100px;
    min-height: 50px;
    background-color: #FFF;
    border: 1px solid #e4e7ed;
    display: none;
}

.ask_layer::before {
    content: '';
    position: absolute;
    border-bottom-left-radius: 2px;
    left: -7px;
    top: calc(50% - 5px);
    transform: rotate(45deg);
    width: 10px;
    height: 10px;
    border: 1px solid #e4e7ed;
    background-color: #FFF;
    border-right-color: transparent !important;
    border-top-color: transparent !important;
}

.ask_layer p {
    margin: 0;
    padding: 0;
    font-size: 14px;
    color: #747474;
}

.ask_layer p:nth-child(1) {
    margin-top: 10px;
    background: url(../img/ask_icon.png) no-repeat left center;
    background-size: 20px auto;
    padding-left: 24px;
}

.ask_layer p:nth-child(2) {
    text-align: right;
    margin-top: 10px;
}

.ask_layer p:nth-child(2) a {
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 12px;
}

.ask_layer p:nth-child(2) a:nth-child(2) {
    background-color: #378ee6;
    color: #FFF;
}

.collect_name_layer {
    width: 80%;
    overflow: hidden;
    display: none;
    flex-direction: column;
}

.collect_name_layer input {
    border: none;
    box-shadow: 0 0 0 1px #dcdfe6 inset;
    border-radius: 4px;
    height: 36px;
    padding: 0 16px;
    outline: none;
    transition: all 0.28s;
    margin-top: 10px;
    color: #4b4b4b;
}

.collect_name_layer span {
    font-size: 16px;
    color: #929292;
}

.collect_name_layer input:focus {
    box-shadow: 0 0 0 1px #409eff inset;
}


.light_tips {
    position: fixed;
    left: 50%;
    top: 100px;
    padding: 14px 18px;
    background-color: #f0f9eb;
    transform: translate(-50%, 0);
    min-width: 300px;
    display: flex;
    align-items: center;
    border-radius: 6px;
}

.light_tips svg {
    width: 22px;
    height: 22px;
    margin-right: 10px;
}


.light_tips p{
    padding: 0;
    margin: 0;
    color: #67c23a;
}