@import url("easyui/themes/material-teal/easyui.css");
@import url("easyui/themes/icon.css");
@import url("../iconfont/iconfont.css");

* {
    padding: 0;
    margin: 0;
}

body {
    font: 12px/1.5 tahoma, "microsoft yahei", "\5FAE\8F6F\96C5\9ED1", sans-serif;
    font-style: normal;
    font-variant-ligatures: normal;
    font-variant-caps: normal;
    font-variant-numeric: normal;
    font-variant-east-asian: normal;
    font-weight: normal;
    font-stretch: normal;
    background-color: #ffffff !important;
}

#left_sub_function_list>div {
    height: 100%;
    overflow: auto;
}

#left_sub_function_list>div::-webkit-scrollbar {
    display: none;
}

/*界面加载中效果样式*/
.page-loading {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -300px;
    margin-top: -400px;
    z-index: 10;
    font-size: 20px;
    width: 600px;
}

.page-loading img {
    display: block;
    margin: 0 auto 15px;
}

.page-loading .txt {
    position: absolute;
    top: 320px;
    left: 200px;
    text-align: left;
    letter-spacing: 0.1em;
    font-size: 20px;
    color: #1d3f72;
    font-weight: lighter;
    padding-left: 45px;
}

.page-loading .txt span {
    display: none;
}

.page-loading .txt::after {
    animation: txtloading 3s infinite;
    content: "";
}

@keyframes txtloading {
    0% {
        content: "\9875\9762\52a0\8f7d\4e2d\002e";
    }

    50% {
        content: "\9875\9762\52a0\8f7d\4e2d\002e\002e";
    }

    100% {
        content: "\9875\9762\52a0\8f7d\4e2d\002e\002e\002e";
    }
}

/*新版本loading效果*/
.myjoWelcomeView {
    position: absolute;
    height: 188px;
    width: 168px;
    left: 50%;
    top: 50%;
    margin-top: -168px;
    margin-left: -84px;
    text-align: center;
}

.myjoLoaderWrap {
    height: 128px;
    width: 128px;
    position: relative;
    display: inline-block;
}

.myjoLoader {
    height: 128px;
    width: 128px;
    margin: 0 auto;
    position: relative;
    border: 2px solid transparent;
    border-top: 2px solid #007bff;
    border-radius: 100%;
    display: block;
    opacity: 0;
    animation: loader_rotation .75s .5s infinite linear, loader_fadeIn 1s .5s ease-in-out forwards;
}

.newyear .myjoLoader {
    display: none !important;
}

.myjoWelcomeLogoCircle {
    position: absolute;
    left: 4px;
    top: 4px;
    width: 120px;
    height: 120px;
    padding: 20px;
    background-color: #FFF;
    border-radius: 50%;
    animation: loader_bounceIn .5s ease-in-out;
}

.newyear .myjoWelcomeLogoCircle {
    width: 341px !important;
    height: 278px !important;
    left: -112px !important;
    top: -40px !important;
    background: transparent !important;
}

.myjoWelcomeLogo {
    background-image: url(../images/loading_logo.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 80px;
    height: 80px;
    margin: 0 auto;
}

.newyear .myjoWelcomeLogo {
    background-image: url(../images/festival/rabbit2.png) !important;
    width: 100% !important;
    height: 100% !important;
}

.newyear .myjoWelcomeLogo:before {
    content: "";
    position: absolute;
    width: 500px;
    height: 50px;
    /**光标的宽度，可根据实际调整**/
    background-image: linear-gradient(to bottom, transparent, rgba(255, 255, 255, .7), transparent);
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-animation: searchLights 3s ease-in 1s infinite;
    -o-animation: searchLights 3s ease-in 1s infinite;
    animation: searchLights 3s ease-in 1s infinite;
    /**第一个数字参数控制扫光速度，数字越大越慢**/
}

@keyframes searchLights {
    0% {
        left: -120px;
        top: -51px;
    }

    100% {
        left: -1px;
        top: 240px;
    }
}

.myjoWelcomeText {
    margin-top: 24px;
    letter-spacing: 0.1em;
    font-size: 20px;
    font-family: Sans-serif, serif;
    color: #98A2B3;
    animation: loader_fadeIn 1s ease-in-out;
    animation-fill-mode: forwards;
    opacity: 0;
    animation-delay: 0.4s;
}

.newyear .myjoWelcomeText {
    color: #e80000 !important;
}

@keyframes loader_rotation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(359deg);
    }
}

@keyframes loader_fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes loader_bounceIn {
    0% {
        opacity: 0;
        transform: scale(.1);
    }

    80% {
        opacity: .5;
        transform: scale(1.2);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}


*::-webkit-scrollbar {
    width: 4px;
    height: 8px;
}

/*外层轨道。可以用display:none让其不显示，也可以添加背景图片，颜色改变显示效果*/
*::-webkit-scrollbar-track {
    width: 12px;
    background-color: #F6F8FB;
    -webkit-border-radius: 2em;
    -moz-border-radius: 2em;
    border-radius: 2em;
}

/*滚动条的设置*/
*::-webkit-scrollbar-thumb {
    background-color: #3F66E0;
    background-clip: padding-box;
    min-height: 18px;
    -webkit-border-radius: 2em;
    -moz-border-radius: 2em;
    border-radius: 2em;
}

/*滚动条移上去的背景*/
*::-webkit-scrollbar-thumb:hover {
    background-color: #5278ee;
}

[v-cloak] {
    display: none;
}

/*文本框自动填充样式优化*/
input:-webkit-autofill {
    box-shadow: white 0 0 0 1000px inset;
    -webkit-text-fill-color: rgb(51, 51, 51);
}

/*表单元素样式开始*/
.combobox-item-selected,
.tabs li.tabs-selected a.tabs-inner {
    color: #2774CE !important;
}

.tabs li.tabs-selected a.tabs-inner {
    border-bottom: 2px solid #2774CE !important;
}

.panel-body .panel-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    text-indent: -200px;
    overflow: hidden;
    width: 200px;
    height: 200px;
    margin-left: -200px;
    margin-top: -200px;
    background: url(../images/rosary_loading.svg) no-repeat;
}

/*对相册层标题进行文字大小的优化处理*/
.layui-layer-imgtit a {
    font-size: 18px;
    text-decoration: unset;
}

.login_copyright {
    margin-top: 10px;
    text-align: center;
    color: #bbb;
}

.panel-body-noheader {
    border-width: 0;
    overflow: visible;
}

.combo-panel.panel-body-noheader {
    overflow: auto;
}

.panel-body-noheader.luim-function-content {
    overflow: auto;
}

.icon-analysis-logo {
    background: url(../images/analysis_logo.png) 0 0 no-repeat;
}

#luim-logo {
    display: inline-block;
    color: #ffffff;
    padding: 8px 20px;
    overflow: hidden;
    float: left;
}

/*新版本loading效果*/
body.loading {
    background-color: #F5F7FA !important;
    box-sizing: border-box;
}

body.loading .myjoWelcomeView {
    position: absolute;
    height: 188px;
    width: 168px;
    left: 50%;
    top: 50%;
    margin-top: -168px;
    margin-left: -84px;
    text-align: center;
    display: block;
}

body.loading .myjoLoaderWrap {
    height: 128px;
    width: 128px;
    position: relative;
    display: inline-block;
}

body.loading .myjoLoader {
    height: 128px;
    width: 128px;
    margin: 0 auto;
    position: relative;
    border: 2px solid transparent;
    border-top: 2px solid #007bff;
    border-radius: 100%;
    display: block;
    opacity: 0;
    animation: loader_rotation .75s .5s infinite linear, loader_fadeIn 1s .5s ease-in-out forwards;
}

body.loading .myjoWelcomeLogoCircle {
    position: absolute;
    left: 4px;
    top: 4px;
    width: 120px;
    height: 120px;
    padding: 20px;
    background-color: #FFF;
    border-radius: 50%;
    box-sizing: border-box;
    animation: loader_bounceIn .5s ease-in-out;
}

body.loading .myjoWelcomeLogo {
    background-image: url(../images/login/logo.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 80px;
    height: 80px;
    margin: 0 auto;
}

body.loading .myjoWelcomeText {
    margin-top: 24px;
    letter-spacing: 0.1em;
    font-size: 20px;
    font-family: Sans-serif, serif;
    color: #98A2B3;
    animation: loader_fadeIn 1s ease-in-out;
    animation-fill-mode: forwards;
    opacity: 0;
    animation-delay: 0.4s;
}

@keyframes loader_rotation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(359deg);
    }
}

@keyframes loader_fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes loader_bounceIn {
    0% {
        opacity: 0;
        transform: scale(.1);
    }

    80% {
        opacity: .5;
        transform: scale(1.2);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.myframe.loading {
    background: url(../images/LoadingUV.gif) center center no-repeat;
}

#overallFrameworkLogin {
    height: 100%;
    width: 100%;
    margin: 0 auto;
    position: relative;
}

body.loading #overallFrameworkLogin {
    display: none;
}

#overallFrameworkLogin:before {
    content: '';
    position: absolute;
    height: 290px;
    width: 100%;
    background: #4065E0;
    z-index: -1;
}

#overallFrameworkLogin.zhongqiu:before {
    background: #4065E0 url(../images/2022zqbg.png) no-repeat center center;
    background-size: cover;
}

#overallFrameworkLogin.newyear:before {
    background: #bb3335 url(../images/festival/newyearbg.png) no-repeat center center;
    background-size: cover;
}

#frameCenterLogin {
    width: 500px;
    margin: 0 auto;
    z-index: 2;
}

#frameCenterLogin #frameCenterLoginTop {
    /*background:#4065E0;*/
    padding: 50px 0 35px;
    text-align: center;
}

#frameCenterLogin #frameCenterLoginTop img {
    width: 90px;
}

#overallFrameworkLogin.zhongqiu #frameCenterLogin #frameCenterLoginTop img {
    width: 130px;
}

#overallFrameworkLogin.zhongqiu #frameCenterLoginBottom {
    position: relative;
}

.rabbit {
    display: none;
}

#overallFrameworkLogin.zhongqiu .rabbit {
    display: block;
    position: absolute;
    top: -95px;
    left: 20px;
    background: url(../images/2022zqyb.png) no-repeat center center;
    background-size: cover;
    width: 100px;
    height: 99px;
}

#frameCenterLogin form {
    background: #ffffff;
    box-shadow: -2px 2px 2px 0 #F1F4FF;
    border-radius: 6px;
    padding-bottom: 25px;
    z-index: 10;
    position: relative;
}

#frameCenterLogin form hgroup {
    height: 36px;
    font-size: 27px;
    line-height: 36px;
    text-align: center;
    font-weight: 900;
    padding-top: 50px;
    color: #4065E0;
}

#overallFrameworkLogin.newyear #frameCenterLogin form hgroup {
    color: #bb3335;
}

#frameCenterLogin form div,
#frameCenterLogin form article {
    margin: 0 auto 25px auto;
    width: 380px;
    border-radius: 4px;
    display: block;
    box-sizing: border-box;
}

#frameCenterLogin form article label {
    font-size: 15px;
}

#frameCenterLogin form article input {
    height: 50px;
    width: 320px;
    padding-left: 10px;
    border: none;
    font-size: 16px;
    line-height: 40px;
    padding-right: 10px;
    box-sizing: border-box;
    border-bottom: 1px solid #D8D8D8;
}

#frameCenterLogin form article input:focus {
    outline: none;
    border-bottom: 1px solid #4065E0;
}

#overallFrameworkLogin.newyear #frameCenterLogin form article input:focus {
    border-bottom: 1px solid #c92123;
}

#frameCenterLogin form article input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 1000px white inset;
    box-shadow: 0 0 0 1000px white inset;
}

#frameCenterLogin form article:nth-of-type(1) {
    margin-top: 75px;
}

#first_login_div {
    color: #4065E0;
    margin-bottom: 0;
    cursor: pointer;
    display: none !important;
}

#first_login_div:hover {
    text-decoration: underline;
}

#login_submit,
#login_submit_verify,
#login_verify_cancel {
    width: 100%;
    height: 52px;
    color: #ffffff;
    border: none;
    font-weight: 900;
    background: #4065E0;
    border-radius: 44px;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0 2px 7px 0 #4065e0;
}

#overallFrameworkLogin.newyear #login_submit {
    box-shadow: 0 2px 7px 0 #c92123;
    background: #c92123 url(../images/festival/rabbit1.png) no-repeat 292px 8px;
    background-size: 18%;
}

#frameCenterLoginBottom .step_3 img {
    position: absolute;
    right: 0;
    border: 1px solid #ccc;
    top: 5px;
    height: 35px;
}

#login_send_vcode {
    position: absolute;
    right: 0;
    top: 4px;
    border-radius: 44px;
    border: 1px solid #4065E0;
    padding: 7px 10px;
    text-decoration: none;
    color: #4065E0;
}

#login_send_vcode.disabled {
    border-color: #727272;
    color: #727272;
    cursor: default;
}

.reference {
    color: #777777;
    font-size: 14px;
    text-align: center;
    margin-top: 40px;
}

.version span:nth-of-type(1) {
    padding: 0 5px;
    color: rgb(255, 255, 255);
    margin-right: 5px;
    border-radius: 3px;
}

.reference a {
    color: #777777;
    text-decoration: none;
}

.passwordeyes {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 25px;
    height: 25px;
    cursor: pointer;
}

.passopeneye {
    background-image: url(../images/login/passopen.png);
    background-repeat: no-repeat;
    background-size: 100%;
}

.passopeneye:hover {
    background-image: url(../images/login/opendeep.png);
}

.passcloseeye {
    background-image: url(../images/login/passclose.png);
    background-repeat: no-repeat;
    background-size: 100%;
}

.passcloseeye:hover {
    background-image: url(../images/login/closedeep.png);
}

.luim_nav {
    height: 48px;
}

@media (min-width: 1470px) {
    .zhongqiu.luim_nav:after {
        content: '';
        background: url(../images/2022zqyb.png) no-repeat center;
        background-size: contain;
        width: 46px;
        height: 34px;
        display: block;
        position: absolute;
        bottom: -35px;
        right: 480px;
        animation: rabbitup .6s infinite linear;
        animation-fill-mode: forwards;
        animation-iteration-count: 1;
    }

    .zhongqiu.luim_nav:hover::after {
        bottom: -1px;
        animation: rabbitdown .5s infinite linear;
        animation-fill-mode: forwards;
        animation-iteration-count: 1;
    }

    .zhongqiu.luim_nav:before {
        content: '';
        background: url(../images/2022zqlogo.png) no-repeat center;
        background-size: contain;
        width: 46px;
        height: 30px;
        display: block;
        position: absolute;
        bottom: -10px;
        right: 425px;
        transition: all;
        animation: moonup 20s infinite linear;
        animation-fill-mode: forwards;
        animation-iteration-count: 1;
    }
}

@keyframes moonup {
    20% {
        -webkit-transform: scale(1.6, 1.6);
        transform: scale(1.6, 1.6);
        bottom: 18px;
    }

    70% {
        -webkit-transform: scale(1.6, 1.6);
        transform: scale(1.6, 1.6);
        bottom: 18px;
    }

    100% {
        -webkit-transform: scale(1.1, 1.1);
        transform: scale(1.1, 1.1);
        bottom: 13px;
    }
}

@keyframes rabbitup {
    100% {
        bottom: -1px;
    }
}

@keyframes rabbitdown {
    10% {
        bottom: 2px;
    }

    50% {
        bottom: 2px;
    }

    100% {
        bottom: -35px;
    }
}

.luim_nav a span {
    line-height: 36px;
    color: #fff;
    font-size: 14px;
}

.luim_nav #home_onwork_status_lb span,
.luim_nav #home_offwork_status_lb span,
.luim_nav #home_endwork_status_lb span {
    line-height: 22px;
}

.luim_nav .l-btn-plain {
    padding: 6px 12px;
}

.luim_nav a:hover {
    color: #fff;
    background: #2546B1;
    border: none;
    border-radius: 0;
}

.luim_nav .l-btn-plain-selected,
.luim_nav .m-btn-plain-active,
.luim_nav .l-btn-plain-selected:hover {
    color: #fff;
    background: #2546B1;
    border: none;
    border-radius: 0;
}

.luim_nav .m-btn-downarrow,
.s-btn-downarrow {
    background: url(easyui/themes/black/images/menu_arrows.png) no-repeat 0 center;
}

.luim_navlist b {
    margin-top: 6px;
    margin-bottom: 6px;
    display: block;
    font-size: 14px;
    color: #2774CE;
    background-color: #ffffff;
    position: relative;
}

.r_s {
    display: inline-block;
    position: absolute;
    right: 6px;
    top: 2px;
    font-size: 12px;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    transition: all .7s;
}

.r_animation {
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
}

.Grade1Standard {
    cursor: pointer;
}

.u_height {
    max-height: 0;
    overflow: hidden;
    transition: all .7s;
    -webkit-transition: all .7s;
    -moz-transition: all .7s;
    -o-transition: all .7s;
    -ms-transition: all.7s;
}

.h_show {
    max-height: 5000px;
}

.luim_navlist ul {
    margin: 0;
}

.luim_navlist ul li {
    padding: 0;
    position: relative;
}

.luim_navlist ul li a {
    text-decoration: none;
    color: #333;
    display: block;
    background-color: #FFFFFF;
    padding: 6px 5px;
}

.luim_navlist ul li a:hover {
    color: #000;
    background-color: #CCE6FF;
}

.luim_navlist ul li.sub-menu {
    max-height: 0;
    overflow: hidden;
    transition-duration: .8s;
    transition-property: all;
    transition-timing-function: ease;
}

.luim_navlist ul li.sub-menu.show {
    max-height: 500px;
    transition-duration: 2s;
    transition-property: all;
    transition-timing-function: ease;
}

.luim_navlist ul li.sub-menu-item a {
    padding-left: 20px;
}

.luim_navlist ul li .luim-icon-right {
    position: absolute;
    top: 7px;
    right: 6px;
    font-size: 12px;
    color: #222222;
    transition: transform .5s;
}

.luim_navlist ul li.expand .luim-icon-right {
    transform: rotate(90deg);
}

#userInfo_menu .menu-text {
    padding-left: 36px;
}

.menu-item.l-btn {
    text-align: left;
    background-color: transparent;
}

.menu-item.l-btn .l-btn-text {
    margin: 0;
}

.menu-item.l-btn:hover {
    filter: unset;
    border-color: transparent;
    color: #39c;
    background: #eee;
    border-radius: 0;
}

.menu_item_number {
    border-radius: 10px;
    background-color: crimson;
    color: #ffffff;
    display: inline-block;
    padding: 0 10px;
    font-family: Arial, serif;
    position: absolute;
    top: 6px;
    right: 20px;
}

/*确保表格表头文本居中*/
.datagrid-header .datagrid-cell,
.datagrid-cell-group {
    text-align: center !important;
}

.datagrid-header td,
.datagrid-body td,
.datagrid-footer td {
    /*border-color: #F1F2F5;*/
    border-color: #efefef;
}

.pagination-info {
    padding-right: 10px;
}

.datagrid-header .datagrid-cell,
.datagrid-cell-group {
    color: #8F93A7;
}

.datagrid-header .datagrid-cell span {
    font-size: 14px;
}

.datagrid-row-alt {
    background: #FBFDFF;
}

.datagrid-row-over,
.datagrid-header td.datagrid-header-over {
    background: #F1FAFF;
    color: #24252A;
    cursor: default;
}

.datagrid-header,
.datagrid-toolbar,
.datagrid-pager,
.datagrid-footer-inner {
    border-color: #efefef;
}

/*表格选中后的背景和文字颜色效果优化*/
.datagrid-row-selected {
    background: #E4F1FC;
    color: #24252A;
}

.luim-btn-new {
    font-size: 14px;
    border-radius: 2px;
    margin: 7px 5px;
    border: none;
    transition-property: background-color;
    transition-duration: .5s;
    cursor: pointer;
    height: 32px;
    line-height: 32px;
    padding: 0 16px;
    color: #919191;
}

.luim-btn-new:focus {
    outline: none;
}

.luim-btn-new-search {
    font-size: 16px;
    height: 34px;
    line-height: 34px;
}

.luim-btn-red-new {
    background: rgba(236, 36, 36, .8);
    color: #ffffff;
}

.luim-btn-red-new:hover {
    background-color: rgba(236, 36, 36, 1);
}

.luim-btn-blue-new {
    background: rgba(63, 102, 224, .8);
    color: #ffffff;
}

.luim-btn-blue-new:hover {
    background: rgba(63, 102, 224, 1);
}

.luim-btn-bluesky-new {
    background: rgba(9, 188, 228, .8);
    color: #ffffff;
}

.luim-btn-bluesky-new:hover {
    background: rgba(9, 188, 228, 1);
}

.luim-btn-cyan-new {
    background: rgba(0, 199, 184, .8);
    color: #ffffff;
    padding: 0 8px;
}

.luim-btn-cyan-new:hover {
    background-color: rgba(0, 199, 184, 1)
}

.luim-btn-cyan-hollow-new {
    background: #ffffff;
    border: 1px solid #00C7B8;
    color: #00C7B8;
    padding: 0 8px;
}

.luim-btn-orange-new {
    background: rgba(246, 167, 11, .8);
    color: #ffffff;
}

.luim-btn-orange-new:hover {
    background-color: rgba(246, 167, 11, 1)
}

.luim-btn-green-new {
    background: rgba(0, 199, 184, .8);
    color: #ffffff;
}

.luim-btn-green-new:hover {
    background-color: rgba(0, 199, 184, 1);
}

.luim-btn-skyblue-new {
    background: rgba(9, 188, 228, .8);
    color: #ffffff;
}

.luim-btn-skyblue-new:hover {
    background-color: rgba(9, 188, 228, 1);
}

.luim-btn-red-new {
    background: rgba(236, 36, 36, .8);
    color: #ffffff;
}

.luim-btn-red-new:hover {
    background-color: rgba(236, 36, 36, 1)
}

.luim-btn {
    height: 34px;
    margin: 10px;
    padding: 0 15px;
    transition-property: background-color;
    transition-duration: .5s;
    font-size: 12px;
}

.luim-btn.luim-btn-sm {
    font-size: 12px;
    height: 24px;
    padding: 0 8px;
}

.luim-btn-blue {
    background-color: #257ee6;
    color: #ffffff;
    border: none;
    font-size: 14px;
    cursor: pointer;
    margin: 0;
    border-radius: 4px;
    outline: none;
}

.luim-btn-blue .iconfont {
    vertical-align: middle;
    margin-right: 2px;
}

.luim-btn-blue:hover {
    background-color: #2071ce;
}

.luim-btn-green {
    background-color: #009d00;
    color: #ffffff;
    border: none;
    font-size: 14px;
    cursor: pointer;
    margin: 0;
    border-radius: 4px;
    outline: none;
}

.luim-btn-green .iconfont {
    vertical-align: middle;
    margin-right: 2px;
}

.luim-btn-green:hover {
    background-color: #009100;
}

.luim-btn-orange {
    background-color: #ec6800;
    color: #ffffff;
    border: none;
    font-size: 14px;
    cursor: pointer;
    margin: 0;
    border-radius: 4px;
    outline: none;
    min-width: 86px;
}

.luim-btn-orange .iconfont {
    vertical-align: middle;
    margin-right: 2px;
}

.luim-btn-orange:hover {
    background-color: #ec4e03;
}

.luim-btn-red {
    background-color: #ff2521;
    color: #ffffff;
    border: none;
    font-size: 14px;
    cursor: pointer;
    margin: 0;
    border-radius: 4px;
    outline: none;
}

.luim-btn-red .iconfont {
    vertical-align: middle;
    margin-right: 2px;
}

.luim-btn-red:hover {
    background-color: red;
}

.luim-btn-red-hollow {
    background-color: #fff6f6;
    color: #ff2521;
    border: 1px solid #ff2521;
    font-size: 14px;
    cursor: pointer;
    margin: 0;
    border-radius: 4px;
    outline: none;
    transition-property: background-color;
    transition-duration: 1s;
}

.luim-btn-red-hollow .iconfont {
    vertical-align: middle;
    margin-right: 2px;
}

.luim-btn-red-hollow:hover {
    background-color: #ffe9e9;
}

.luim-btn-hollow {
    background-color: rgba(232, 234, 237, 0.5);
    color: #8F93A7;
    border: 1px solid #E8EAED;
    border-radius: 2px;
    font-size: 14px;
    cursor: pointer;
    margin: 0;
    outline: none;
    transition-property: background-color;
    transition-duration: 1s;
}

.luim-btn-hollow .iconfont {
    vertical-align: middle;
    margin-right: 2px;
}

.luim-btn-hollow:hover {
    background-color: rgba(232, 234, 237, 1);
}

.luim-btn-blackishgreen {
    background-color: #00b133;
    color: #ffffff;
    border: none;
    font-size: 14px;
    cursor: pointer;
    margin: 0;
    border-radius: 4px;
    outline: none;
}

.luim-btn-blackishgreen .iconfont {
    vertical-align: middle;
    margin-right: 2px;
}

.luim-btn-blackishgreen:hover {
    background-color: #009d00;
}

.luim-btn-cancel {
    background-color: #ffffff;
    color: #5e5e5e;
    border: 1px #d2d2d2 solid;
    cursor: pointer;
    margin: 0;
    border-radius: 4px;
    outline: none;
}

.luim-btn-cancel .iconfont {
    vertical-align: middle;
    margin-right: 2px;
}

.luim-btn-cancel:hover {
    background-color: #e5e4eb;
}

.luim-btn.chase-btn {
    display: block;
    /*height: 20px;*/
    /*width: 35px;*/
    border-radius: 3px;
    /*transform: scale(0.9);*/
    text-align: center;
    overflow: hidden;
    padding: 0;
    /*margin: -7px 0 0 0;*/
    color: #2774ce;
    border: 1px solid #2774ce;
    /*line-height: 16px;*/
    text-decoration: none;
}

#exceptionQueryList_abnormalRepairBtn {
    background-color: #ff2521;
    color: #ffffff;
    border-radius: 4px;
    border: 1px solid #ccc;
    height: 31px;
    padding: 0;
}

#exceptionQueryList_abnormalRepairBtn :hover {
    background-color: #ed2421;
}

#exceptionQueryList_abnormalRepairBtn .l-btn-left {
    margin-top: 0;
}

/*带状态的按钮*/
.luim-status-btn {
    line-height: 20px;
    padding: 0 15px;
}

.luim-status-btn span {
    display: none;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    position: absolute;
    left: 10px;
    top: 5px;
}

.luim-status-btn.warning,
.luim-status-btn.success,
.luim-status-btn.error,
.luim-status-btn.info {
    position: relative;
    padding-left: 25px;
}

.luim-status-btn.warning span {
    display: inline-block;
    background-color: orange;
}

.luim-status-btn.success span {
    display: inline-block;
    background-color: green;
}

.luim-status-btn.error span {
    display: inline-block;
    background-color: red;
}

.luim-status-btn.info span {
    display: inline-block;
    background-color: #1d81ff;
}

#samp_login_session_relogin_dlg table tr,
#samp_login_session_edit_dlg table tr {
    height: 46px;
}

#samp_login_session_relogin_dlg input,
#samp_login_session_edit_dlg input {
    height: 30px;
    width: 100%;
}

#samp_login_session_edit_dlg table label {
    font-size: 14px;
}

.common_dlg_title,
.samp_login_session_title {
    margin: 5px 10px 10px 10px;
    font-size: 16px;
    text-align: center;
    font-weight: bold;
}

/*卡片布局标签样式 开始*/
.card-tag {
    display: inline-block;
    height: 22px;
    line-height: 20px;
    padding: 0 15px 0 10px;
    margin-left: 10px;
    border-radius: 3px;
    background-color: #e7f4ff;
    border: 1px #1e7fff solid;
    color: #1e7fff;
}

.card-tag.sm {
    height: unset;
    line-height: 14px;
    padding: 2px 6px;
    margin-left: 0;
    font-size: 12px;
}

.card-tag.pink {
    background-color: #ffeef3;
    border: 1px deeppink solid;
    color: deeppink;
}

.card-tag.red {
    background-color: #dc143c;
    border: 1px #dc143c solid;
    color: #ffffff;
}

.card-tag.orange {
    background-color: #ff8d00;
    border: 1px #ff8d00 solid;
    color: #ffffff;
}

.card-tag.green {
    background-color: #2e722e;
    border: 1px #2e722e solid;
    color: #ffffff;
}

.card-tag.deepblue {
    background-color: #1492dc;
    border: 1px #1464dc solid;
    color: #ffffff;
}

/*卡片布局标签样式 结束*/
/*重定义switch控件样式*/
.switchbutton {
    -moz-border-radius: 15px 15px 15px 15px;
    -webkit-border-radius: 15px 15px 15px 15px;
    border-radius: 15px 15px 15px 15px;
}

.switchbutton-on,
.switchbutton-off,
.switchbutton-handle {
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
}

.switchbutton-on,
.switchbutton-reversed .switchbutton-off {
    -moz-border-radius: 15px 0 0 15px;
    -webkit-border-radius: 15px 0 0 15px;
    border-radius: 15px 0 0 15px;
}

.switchbutton-off,
.switchbutton-reversed .switchbutton-on {
    -moz-border-radius: 0 15px 15px 0;
    -webkit-border-radius: 0 15px 15px 0;
    border-radius: 0 15px 15px 0;
}

.switchbutton-on {
    background: #2774CE;
    color: #ffffff;
}

.switchbutton-off {
    background-color: #efefef;
    color: #000000;
}

#priceStrategyExtendListDataGrid_dlg_toolbar .switchbutton-off {
    background: red;
    color: #ffffff;
}

/*切换面板的样式*/
.switch-panel {
    width: 300px;
    height: 50px;
    display: flex;
    border-radius: 10px;
}

.switch-panel .switch-item {
    flex: 1;
    padding: 5px;
    cursor: pointer;
}

.switch-panel .switch-item:first-child {
    border: 1px solid #2774CE;
    border-radius: 10px 0 0 10px;
    background-color: #ffffff;
}

.switch-panel .switch-item:last-child {
    background-color: #ffffff;
    border-radius: 0 10px 10px 0;
    border: 1px solid #2774CE;
    border-left: none;
}

.switch-panel .switch-item.checked {
    background-color: #2774CE;
    color: #fff;
}

.switch-panel .switch-item .switch-title {
    font-size: 14px;
    text-align: center;
}

.switch-panel .switch-item .switch-desc {
    text-align: center;
}

.switch-panel.disable .switch-item {
    cursor: default;
}

.switch-panel.disable .switch-item:first-child,
.switch-panel.disable .switch-item:last-child {
    border-color: #ccc;
    color: #5b5b5b;
    background-color: #ececec;
}

.switch-panel.disable .switch-item.checked {
    background-color: #aeaeae;
    color: #5b5b5b;
}

/*复选框组样式*/
.checkbox-group {
    display: flex;
    flex-wrap: wrap;
    padding: 10px;
}

.checkbox-item {
    flex-wrap: nowrap;
    margin: 10px;
}


/*底部状态栏样式*/
#statusBar {
    /*width: 400px;*/
    /*height: 36px;*/
    color: #000000;
    position: absolute;
    bottom: 5px;
    z-index: 1000;
    line-height: 30px;
    left: 0;
    cursor: pointer;
    /*display: none;*/
}

#statusBar .wc-status,
.status-flag.wc-status {
    width: 14px;
    height: 14px;
    display: inline-block;
    background-color: transparent;
    /*border: 1px solid #2c343d;*/
    border-radius: 50%;
    box-shadow: none;
    margin-left: 2px;
    margin-right: 2px;
    border: .2em dotted #2c343d;
    animation: 2s status-loading infinite linear;
    text-indent: -10rem;
}

#statusBar .wc-row {
    display: block;
    overflow: hidden;
    /*text-align: left;*/
}

#statusBar .wc-row .wc-status {
    width: 10px;
    height: 10px;
    margin-top: 5px;
    margin-left: 5px;
    line-height: 10px;
}

#statusBar .wc-grid {
    font-size: 9pt;
    overflow: hidden;
    display: inline-block;
    /*width: 70px;*/
    /*max-width: 86px;*/
    height: 20px;
    width: 21px;
}

.status-flag.wc-status {
    margin-top: 5px;
}

#statusBar .login-wc {
    line-height: 18px;
    margin-left: 5px;
    /*display: none;*/
}

#statusBar .wc-status.normal,
.status-flag.wc-status.normal {
    background-color: #68a490;
    border: 1px solid #35715d;
    box-shadow: 0 0 0 1px #35715d;
    animation: status-light-shadow-green 1.5s infinite linear;
}

#statusBar .wc-status.stop,
.status-flag.wc-status.stop {
    background-color: #ff0526;
    border: 1px solid #9f3c21;
    box-shadow: 0 0 0 10px #ff0526;
    animation: status-light-shadow-red 0.2s infinite linear;
}

/*状态小灯*/
.status-light {
    width: 6px;
    height: 6px;
    margin-top: 5px;
    margin-left: 5px;
    line-height: 10px;
    display: inline-block;
    background-color: transparent;
    /*border: 1px solid #2c343d;*/
    border-radius: 50%;
    box-shadow: none;
    margin-right: 2px;
    /*border: .2em dotted transparent;*/
    text-indent: -10rem;
    vertical-align: text-top;
}

.status-light.normal {
    background-color: #68a490;
    box-shadow: 0 0 2px 1px #35715d;
}

.status-light.stop {
    background-color: #ff0526;
    box-shadow: 0 0 2px 1px #ff0526;
}

.isFakeExpress {
    width: 25px;
    height: 25px;
    border-radius: 5px;
    color: #ffffff;
    background: orange;
    position: absolute;
    top: 12px;
    left: 11px;
    line-height: 24px;
    font-size: 14px;
    font-weight: 900;
    animation: status-light-opacity 2s infinite linear;
}

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

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

/*定义绿灯动画 名称为status-light-shadow-green*/
@keyframes status-light-shadow-green {

    /*第一帧样式*/
    0% {
        box-shadow: 0 0 0 1px #35715d;
    }

    /*动画执行到25%时样式*/
    25% {
        box-shadow: 0 0 3px 1px #35715d;
    }

    /*动画执行到50%时样式*/
    50% {
        box-shadow: 0 0 6px 1px #35715d;
    }

    /*动画执行到75%时样式*/
    75% {
        box-shadow: 0 0 3px 1px #35715d;
    }

    /*结束时样式*/
    100% {
        box-shadow: 0 0 0 1px #35715d;
    }
}

/*定义红灯动画 名称为status-light-shadow-red*/
@keyframes status-light-shadow-red {

    /*第一帧样式*/
    0% {
        box-shadow: 0 0 0 1px #ff0526;
    }

    /*动画执行到25%时样式*/
    25% {
        box-shadow: 0 0 4px 1px #ff0526;
    }

    /*动画执行到50%时样式*/
    50% {
        box-shadow: 0 0 8px 1px #ff0526;
    }

    /*动画执行到75%时样式*/
    75% {
        box-shadow: 0 0 4px 1px #ff0526;
    }

    /*结束时样式*/
    100% {
        box-shadow: 0 0 0 1px #ff0526;
    }
}

/*定义淡入淡出动画 名称为status-light-opacity*/
@keyframes status-light-opacity {

    /*第一帧样式*/
    0% {
        opacity: 0;
    }

    /*动画执行到25%时样式*/
    25% {
        opacity: 0.5;
    }

    /*动画执行到50%时样式*/
    50% {
        opacity: 1;
    }

    /*动画执行到75%时样式*/
    75% {
        opacity: 0.5;
    }

    /*结束时样式*/
    100% {
        opacity: 0;
    }
}

.rotation {
    animation: status-loading 1.5s linear infinite;
}

/*提示语开始*/
#marked_words {
    position: absolute;
    z-index: 111;
    right: 15px;
    bottom: -180px;
    padding: 20px 20px 20px 24px;
    width: 340px;
    background: #ffffff;
    border-radius: 3px;
    border: 1px solid rgba(218, 223, 230, .5);
    border-left: 4px #2774ce solid;
    box-shadow: 0 3px 12px 0 rgba(0, 0, 0, .1);
    transition: all 1s;
    /*right: -360px;       right: 15px;*/
    /*bottom: 35px;*/
}

#marked_words.show {
    bottom: 35px;
}
/*半隐藏状态*/
#marked_words.show.hide_part {
    right: -336px;
}

#marked_words .marked_words_trumpet {
    position: absolute;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #2774ce;
    left: -18px;
    top: 17px;
    text-align: center;
    line-height: 32px;
    transition: left .5s;
    cursor: unset;
}
#marked_words.show.hide_part .marked_words_trumpet {
    transition: left 1s ease .7s;
    left: -30px;
    cursor: pointer;
    opacity: 0.75;
}

#marked_words .marked_words_trumpet span {
    color: #ffffff;
    font-size: 18px;
}

#marked_words .marked_words_title_box {
    display: flex;
    justify-content: space-between;
    padding-bottom: 7px;
}

#marked_words .marked_words_title {
    font-size: 16px;
    font-weight: 900;
}

#marked_words .marked_words_title_box .marked_words_close span {
    font-size: 12px;
    color: #cccccc;
    cursor: pointer;
}

#marked_words .marked_words_title_box .marked_words_close span:hover {
    color: #6c757d;
    font-weight: 900;
}

#marked_words .marked_words_content p {
    font-size: 14px;
    line-height: 20px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    white-space: pre-line;
}

#marked_words .marked_words_content .marked_words_buttons {
    margin-top: 10px;
    display: flex;
    align-items: center;
    font-size: 13px;
    line-height: 20px;
}

#marked_words .marked_words_content .marked_words_download {
    margin-right: 10px;
    align-items: center;
    display: inline-flex;
}

#marked_words .marked_words_content .marked_words_link {
    color: #606c80;
    display: none;
    align-items: center;
    cursor: pointer;
    text-decoration: none;
}

#marked_words.clear-model .marked_words_content .marked_words_link {
    display: inline-flex;
}

#marked_words .marked_words_content .marked_words_link.main_btn {
    font-weight: 700;
    color: #06f;
}

/*提示语结束*/
/*顶部加载效果样式*/
#topLoadingBar {
    position: absolute;
    top: -30px;
    left: 50%;
    z-index: 10001;
    width: 200px;
    margin-left: -100px;
    font-size: 16px;
    color: #ffffff;
    text-align: center;
    opacity: 0;
}

#topLoadingBar .loading {
    width: 14px;
    height: 14px;
    display: inline-block;
    background-color: transparent;
    border-radius: 50%;
    box-shadow: none;
    margin-right: 8px;
    border: .2em dotted #ffffff;
    animation: 2.5s status-loading infinite linear;
}

/*标签卡片式风格检索器样式*/
.tag-search-panel {
    display: inline-flex;
}

.tag-search-panel .tag-item {
    flex: 1;
    text-align: center;
    max-width: 86px;
    min-width: 60px;
    padding: 5px 0;
    border: #2774CE 1px solid;
    margin: 2px 6px;
    cursor: pointer;
    color: #2774CE;
    border-radius: 2px;
    transition-property: background-color, color;
    transition-duration: .3s;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    position: relative;
}

.tag-search-panel .tag-item .flag {
    position: absolute;
    bottom: 1px;
    right: 1px;
    z-index: 100;
}

.tag-search-panel .tag-item .flag span {
    width: 7px;
    height: 7px;
    border-width: 1px;
    border-style: solid;
    margin-top: 1px;
    display: block;
}

.tag-search-panel.auto-width .tag-item {
    flex: inherit;
    max-width: none;
    padding: 4px 10px;
    min-width: 75px;
}
.tag-search-panel.auto-width .tag-item.child {
    min-width: unset;
}
.tag-search-panel.auto-width .tag-item.child > span{
    transform: scale(0.9)!important;
    display: block;
}

.tag-search-panel .tag-item.current,
.tag-search-panel .tag-item.current:hover {
    background-color: #2774CE;
    color: #ffffff;
}

.tag-search-panel .tag-item:hover {
    background-color: #e1f5ff;
}

#afterSalesRefundQueriesDataGridSearchRefundStatus .tag-search-panel .tag-item:nth-child(2):hover {
    background-color: #ffeaea;
}

#afterSalesRefundQueriesDataGridSearchRefundStatus .tag-search-panel .tag-item:nth-child(3):hover {
    background-color: #fff6f2;
}

#afterSalesRefundQueriesDataGridSearchRefundStatus .tag-search-panel .tag-item:nth-child(4):hover {
    background-color: #d9fadb;
}

#afterSalesRefundQueriesDataGridSearchRefundStatus .tag-search-panel .tag-item:nth-child(5):hover {
    background-color: #ffe9f8;
}

#afterSalesRefundQueriesDataGridSearchRefundStatus .tag-search-panel .tag-item .statCount {
    font-size: 12px;
    color: #fff;
    border-radius: 0 0 5px 5px;
    line-height: 18px;
    border-top: none;
    width: 70px;
    display: block;
    margin: 0 auto;
    height: 0;
    transition-property: all;
    transition-duration: 1s;
}

#afterSalesRefundQueriesDataGridSearchRefundStatus .tag-search-panel .tag-item:nth-child(1) .statCount {
    background-color: #2774ce;
}

#afterSalesRefundQueriesDataGridSearchRefundStatus .tag-search-panel .tag-item:nth-child(2) .statCount {
    background-color: #dd2727;
}

#afterSalesRefundQueriesDataGridSearchRefundStatus .tag-search-panel .tag-item:nth-child(3) .statCount {
    background-color: #bf6200;
}

#afterSalesRefundQueriesDataGridSearchRefundStatus .tag-search-panel .tag-item:nth-child(4) .statCount {
    background-color: #188543;
}

#afterSalesRefundQueriesDataGridSearchRefundStatus .tag-search-panel .tag-item:nth-child(5) .statCount {
    background-color: #9a0073;
}

#ddAfterSalesRefundQueriesDataGridSearchRefundStatus .tag-search-panel .tag-item {
    background: #ffffff;
}

#ddAfterSalesRefundQueriesDataGridSearchRefundStatus .tag-search-panel .tag-item:nth-child(1):hover {
    background-color: #ffeaea;
}

#ddAfterSalesRefundQueriesDataGridSearchRefundStatus .tag-search-panel .tag-item:nth-child(2):hover {
    background-color: #fff6f2;
}

#ddAfterSalesRefundQueriesDataGridSearchRefundStatus .tag-search-panel .tag-item:nth-child(3):hover {
    background-color: #d9fadb;
}

#ddAfterSalesRefundQueriesDataGridSearchRefundStatus .tag-search-panel .tag-item:nth-child(4):hover {
    background-color: #ffe9f8;
}

#ddAfterSalesRefundQueriesDataGridSearchRefundStatus .tag-search-panel .tag-item .statCount {
    font-size: 12px;
    color: #fff;
    border-radius: 0 0 5px 5px;
    line-height: 18px;
    border-top: none;
    width: 70px;
    display: block;
    margin: 0 auto;
    height: 0;
    transition-property: all;
    transition-duration: 1s;
}

#ddAfterSalesRefundQueriesDataGridSearchRefundStatus .tag-search-panel .tag-item:nth-child(1) .statCount {
    background-color: #dd2727;
}

#ddAfterSalesRefundQueriesDataGridSearchRefundStatus .tag-search-panel .tag-item:nth-child(2) .statCount {
    background-color: #bf6200;
}

#ddAfterSalesRefundQueriesDataGridSearchRefundStatus .tag-search-panel .tag-item:nth-child(3) .statCount {
    background-color: #188543;
}

#ddAfterSalesRefundQueriesDataGridSearchRefundStatus .tag-search-panel .tag-item:nth-child(4) .statCount {
    background-color: #9a0073;
}

#afterSalesRefundQueriesDataGridSearchGoodsStatus .tag-search-panel {
    padding-left: 14px;
}

#afterSalesRefundQueriesDataGridSearchGoodsStatus .tag-search-panel .tag-item {
    margin: 2px 5px;
    padding: 4px 10px;
    font-size: 12px;
}

#ddAfterSalesRefundQueriesDataGridSearchGoodsStatus .tag-search-panel {
    padding-left: 14px;
}

#ddAfterSalesRefundQueriesDataGridSearchGoodsStatus .tag-search-panel .tag-item {
    margin: 2px 10px;
    padding: 4px 15px;
    font-size: 12px;
}

.tag-search-panel .tag-item.collapse {
    width: 36px;
    max-width: none;
    min-width: auto;
    border: none;
    position: relative;
    background: url(/images/collapse.png) no-repeat left;
    background-size: 20px;
    transition-property: background-position;
    transition-duration: 1s;
}

.tag-search-panel .tag-item.collapse:hover {
    background-color: transparent;
}

.tag-search-panel .tag-item .collapse-panel {
    /*display: none;*/
    position: absolute;
    top: -10px;
    left: -15px;
    z-index: 100;
    background-color: #ffffff;
    border: none;
    /*padding: 8px 10px;*/
    cursor: default;
    overflow: hidden;
    width: 0;
    box-sizing: border-box;
    opacity: 0;
    transition-property: width, left, opacity;
    transition-duration: .5s;
    padding-right: 0;
}

.tag-search-panel .tag-item .collapse-panel.active {
    width: 140px;
    opacity: 1;
    left: 0;
    padding-right: 15px;
    border: #d6d6d6 1px solid;
}

.tag-search-panel .tag-item.collapse.active {
    background-position: 100px;
}

.tag-search-panel .tag-item .collapse-panel .tag-item {
    margin: 10px 15px;
    height: 30px;
    line-height: 19px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.tag-search-panel .tag-item .collapse-panel .tag-item.collapse {
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    position: absolute;
    right: 5px;
    top: 7px;
    height: 36px;
    background-position: left;
    margin: 0;
}

.search-form-inline label,
.search-form-inline input {
    margin-right: 5px;
    height: 30px;
    font-size: 12px;
}

.search-form-inline input {
    border: 1px solid #E8EAED;
    padding-left: 4px;
}
.confirmReceiptOfGoodsteSelect{
    margin-right: 5px;
    height: 30px;
    font-size: 12px;
    border: 1px solid #E8EAED;
    padding-left: 4px;
    width: 100%;
}
.search-form-inline.localitSalesReturn_personInfo input {
    height: 35px;
    padding-left: 10px;
    border-radius: 2px;
}

.search-form-inline>input:focus,
.forwardOperation_textarea:focus,
.luimCommonRemarkTextarea textarea:focus {
    outline-color: rgba(63, 102, 224, .5);
}

.search-form-inline>input::-webkit-input-placeholder,
.forwardOperation_textarea::-webkit-input-placeholder,
.luimCommonRemarkTextarea textarea::-webkit-input-placeholder {
    color: #8F93A7;
}

.input-type-2-div .input-type-2 {
    flex: 1;
    width: 90px;
    margin-right: 0;
    border: none;
}

.input-type-2-div .input-type-2:focus {
    outline: none;
}

.input-type-2-div .input-type-2-button {
    display: inline-block;
    height: 30px;
    text-align: center;
    line-height: 30px;
    cursor: pointer;
    position: absolute;
    top: 0;
    right: 0;
    padding: 0 10px;
}

.input-type-2-div {
    position: relative;
    border: 1px solid #dfdfdf;
}

.input-type-2-div:valid {
    border: 2px solid #a6c7ff;
}

.input-field-type-1-label {
    width: 90px;
    text-align: right;
    padding-right: 10px;
    padding-top: 3px;
    font-size: 14px;
}

.input-field-type-1 {
    width: 250px;
    height: 30px;
    border: none;
    border-bottom: 1px #ccc solid;
    padding-left: 5px;
}

.input-field-type-1:focus {
    outline: none;
    border-bottom: 1px solid black;
}

.input-field-type-1 :valid {
    border-bottom: 1px #ccc solid;
}

.input-number-type-1-button {
    width: 30px;
    height: 30px;
    border: 1px solid #6c757d;
    background: #ffffff;
    text-align: center;
    line-height: 27px;
    font-weight: 900;
    font-size: 16px;
    color: #6c757d;
    cursor: pointer;
    outline: none;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.input-number-type-1-button:hover {
    color: #fff;
    background-color: #6c757d;
    border-color: #6c757d;
}

.input-number-type-1-button.input-number-type-1-add {
    border-radius: 0 4px 4px 0;
}

.input-number-type-1-button.input-number-type-1-subtract {
    border-radius: 4px 0 0 4px;
}

.input-number-type-1-input {
    width: 80px;
    height: 30px;
    text-align: center;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    -moz-appearance: textfield;
}

.input-number-type-1-input:focus {
    color: #495057;
    background-color: #fff;
    border-color: #80bdff;
    outline: 0;
    box-shadow: 0 0 0 0.1em rgba(0, 123, 255, .25);
}

.input-number-type-1-input::-webkit-inner-spin-button,
.input-number-type-1-input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/*自动完成插件样式 开始*/
.autocomplete-suggestions {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    border: 1px solid #dfdfdf;
    background: #FFF;
    cursor: default;
    overflow: auto;
    -webkit-box-shadow: 1px 4px 3px rgba(50, 50, 50, 0.64);
    -moz-box-shadow: 1px 4px 3px rgba(50, 50, 50, 0.64);
    box-shadow: 1px 4px 3px rgba(50, 50, 50, 0.64);
}

.autocomplete-suggestion {
    padding: 8px 5px;
    white-space: nowrap;
    overflow: hidden;
    position: relative;
}

.autocomplete-no-suggestion {
    padding: 8px 5px;
}

.autocomplete-selected {
    background: #e9f5ff;
}

.autocomplete-suggestions strong {
    font-weight: bold;
    color: #000;
}

.autocomplete-suggestion:after {
    content: '';
    width: 140px;
    height: 1px;
    background-color: #dfdfdf;
    display: block;
    position: absolute;
    bottom: 0;
    left: 50%;
    margin-left: -70px;
}

.autocomplete-suggestion:last-child:after {
    display: none;
}

/*自动完成插件样式 结束*/
.search-form-inline .textbox {
    border-width: 1px;
    border-color: #dfdfdf;
    border-style: solid;
    height: 30px !important;
    margin-right: 5px;
    margin-left: 5px;
}

.textbox.textbox_high {
    height: 36px !important;
}

.textbox.textbox_high .textbox-addon-right {
    top: 3;
}

.textbox.textbox_high input.textbox-text {
    height: 34px;
    padding-left: 10px;
}

.search-button-group {
    display: inline-block;
    margin-left: 10px;
}

/*高亮代码编辑器样式确定*/
.ace_editor {
    border: 1px solid lightgray;
    margin: auto;
    height: 100%;
    width: 100%;
}

.json-data-editor .ace_editor .ace_error {
    display: none;
}

.json-data-editor .ace_editor .ace_line span {
    font-size: 14px;
}

.tabs-header {
    z-index: 2;
}

/*配置界面风格样式*/
.config-panel {
    margin: 10px 10px 10px 10px;
    box-shadow: 1px 1px 2px 0 #a5a5a5;
    min-height: 200px;
    padding-top: 10px;
    position: relative;
    transition-property: margin-right;
    transition-duration: 1s;
}

.config-panel .config-title {
    border-bottom: 1px #dfdfdf solid;
    height: 45px;
    line-height: 45px;
    font-size: 18px;
    margin: 10px 20px;
    display: block;
}

.config-panel .config-field {
    border: 1px solid #dfdfdf;
    margin: 20px 20px 0 20px;
}

.config-panel .config-field:nth-last-of-type(1) {
    margin-bottom: 20px;
}

.config-panel .config-legend {
    padding: 0 10px;
    margin-left: 30px;
    font-size: 18px;
}

.config-panel .config-content {
    padding: 20px;
    font-size: 14px;
}

.config-panel .config-content .config-item {
    display: flex;
}

.config-panel .config-content .config-item>label {
    width: 150px;
    text-align: right;
    padding-right: 15px;
    height: 50px;
    line-height: 50px;
    font-size: 14px;
}

.config-panel .config-content .config-item .show-tip,
.config-panel .config_hear .show-tip {
    background-color: #ffb400;
    width: 16px;
    height: 16px;
    line-height: 16px;
    display: inline-block;
    overflow: hidden;
    text-align: center;
    font-weight: bold;
    font-family: Arial, serif;
    color: #ffffff;
    border-radius: 3px;
    margin-left: 5px;
    vertical-align: text-bottom;
    padding-right: 2px;
}

.config-panel .config-content .config-item .form-item {
    flex: 1;
    height: 50px;
}

.config-panel .config-content .config-item .form-item .input-panel,
.config-panel .config-content .config-item .form-item .ace-panel,
.config-panel .config-content .config-item .form-item .switch-button-panel,
.config-panel .config-content .config-item .form-item .switch-tab-panel,
.config-panel .config-content .config-item .form-item .warehouse-regulation-panel {
    display: inline-block;
    padding: 10px;
    background-color: #ffffff;
    cursor: pointer;
    transition-property: background-color;
    transition-duration: .5s;
}

.config-panel .config-content .config-item .form-item .switch-tab-panel .switch-panel {
    height: 30px;
    line-height: 30px;
    width: 180px;
    display: inline-flex;
    vertical-align: middle;
}

.config-panel .config-content .config-item .form-item .switch-tab-panel .switch-panel .switch-item {
    padding: 0;
}

.config-panel .config-content .config-item .form-item .input-panel:hover {
    background-color: #f3f3f3;
}

.config-panel .config-content .config-item .form-item .input-panel.disabled:hover {
    background-color: transparent;
    cursor: auto;
}

.config-panel .config-content .config-item .form-item .input-panel.disabled input {
    cursor: text;
}

.config-panel .config-content .config-item .form-item .input-panel input,
.config-panel .config-content .config-item .form-item .input-panel textarea {
    height: 30px;
    cursor: pointer;
    border: none;
    background: transparent;
    outline: none;
    font-size: 14px;
    padding: 0 10px;
}

.config-panel .config-content .config-item .form-item .input-panel textarea {
    padding-top: 4px;
    font-family: arial, sans-serif;
    font-size: 16px;
    line-height: 28px;
    height: 38px;
    width: 340px;
}

.config-panel .config-content .config-item .form-item .input-panel.active:hover {
    background-color: transparent;
}


.config-panel .config-content .config-item .form-item .input-panel.active input,
.config-panel .config-content .config-item .form-item .input-panel.active textarea {
    cursor: auto;
    border: 1px solid #cacaca;
}

.config-panel .config-content .config-item .form-item .input-panel button,
.config-panel .config-content .config-item .form-item .switch-button-panel button,
.config-panel .config-content .config-item .form-item .switch-tab-panel button {
    height: 30px;
    width: 60px;
    margin-left: 6px;
    display: none;
}

.config-panel .config-content .config-item .form-item .input-panel.active {
    cursor: default;
}

.config-panel .config-content .config-item .form-item .input-panel.active button,
.config-panel .config-content .config-item .form-item .switch-button-panel.active button,
.config-panel .config-content .config-item .form-item .switch-tab-panel.active button {
    display: inline-block;
}

.config-panel .config-content .config-item .form-item .ace-panel button {
    height: 30px;
    display: inline-block;
    margin: 0;
}

.config-panel .config-content .config-item .form-item .warehouse-regulation-panel button {
    height: 30px;
    display: inline-block;
    margin: 0;
}

.config-panel .config-content .right-slide {
    width: 380px;
}

.config-panel .config-content .right-slide h1 {
    font-size: 16px;
    font-weight: bolder;
}

.config-panel .config-content .right-slide ul {
    margin-left: 38px;
    list-style: decimal;
}

.sampSyncParamsConfigPanel.config-panel {
    margin: 0 10px 10px 10px;
}

/*数据导出界面配置*/
.config-title.type-1 {
    border: none;
}

.config-title.type-1:before {
    content: '';
    width: 6px;
    height: 30px;
    display: inline-block;
    background-color: #0089FF;
    vertical-align: sub;
    margin-right: 5px;
}

.configButtonBox {
    display: flex;
    list-style: none;
    flex-wrap: wrap;
    padding: 5px;
}

.configButtonBox .button {
    text-align: center;
    line-height: 30px;
    border-radius: 4px;
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2);
    cursor: pointer;
    padding: 0 10px;
    margin: 7px 10px;
    user-select: none;
    background-position: 120% 120%;
    transition-property: background-color, background-position;
    transition-duration: .8s;
}

.configButtonBox .button.active {
    background-color: #0089FF;
    color: #ffffff;
}

#dataExportsListInterface .config-panel {
    width: 790px;
    box-shadow: 0 0 10px 0 #1f6fe6c7;
    border-radius: 20px;
    margin-top: 30px;
    margin-left: 30px;
}

#dataExportsListInterface .daterangepickerDate {
    background: none;
    width: 160px;
    text-align: center;
    line-height: 30px;
    border-radius: 4px;
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2);
    padding: 0;
}

#dataExportsListExportBtn {
    background: #2774ce;
    color: #ffffff;
    padding: 0 30px;
    margin-left: 6px;
}

.tipso-orange {
    background-color: #ffb400;
    width: 16px;
    height: 16px;
    line-height: 16px;
    display: inline-block;
    overflow: hidden;
    text-align: center;
    font-weight: bold;
    font-family: Arial, serif;
    color: #ffffff;
    border-radius: 3px;
    margin-left: 10px;
    vertical-align: text-bottom;
    padding-right: 2px;
}

.tabs-panel {
    margin: 10px 510px 0 10px;
    padding-bottom: 0;
    padding-top: 10px;
}

.tabs-panel ul {
    padding-left: 15px;
    list-style: none;
}

.tabs-panel ul li {
    display: inline-block;
    vertical-align: bottom;
    width: 100px;
    height: 30px;
    line-height: 30px;
    font-size: 14px;
    text-align: center;
    border: 1px solid #ccc;
    border-bottom: none;
    border-radius: 10px 10px 0 0;
    cursor: pointer;
    color: #000000;
    transition-property: background-color, color;
    transition-duration: .4s;
}

.tabs-panel ul li.active {
    background-color: #2774CE;
    height: 40px;
    line-height: 40px;
    font-size: 16px;
    color: #ffffff;
    cursor: default;
}

.week-time-panel div {
    text-align: center;
    margin: 4px 2px;
    color: #027AFF;
    font-size: 12px;
    height: 18px;
    width: 18px;
    line-height: 18px;
    background-color: #F0F5FF;
    display: inline-block;
}

.week-time-panel div.disable {
    background-color: #F4F4F4;
    color: #999999;
}

.remarkWeekTimeWrap {
    display: inline-block;
    vertical-align: top;
    padding-left: 5px;
    margin-bottom: 5px;
    margin-top: 5px;
}

.remarkWeekTimeWrap .week-time-panel div {
    height: 20px;
    width: 20px;
    line-height: 20px;
    position: relative;
}

.remarkWeekTimeWrap .week-time-panel div span {
    font-size: 12px;
    -webkit-transform-origin-x: 0;
    -webkit-transform: scale(0.77);
    transform: scale(0.77);
    display: block;
    position: absolute;
    left: 50%;
    margin-left: -5px;
    top: -1px;
}

.remarkWeekTimeWrap .up-arrow {
    text-align: center;
    padding: 2px;
    font-size: 16px;
}

/*部分对话框界面样式重写的高亮模式*/
.window.highlight {
    background-color: #2774ce;
}

.window.highlight .window-header {
    background: #2774ce;
    padding: 0 0 6px 10px;
}

.window.highlight .window-header .panel-title {
    color: #ffffff;
}

.window.highlight .panel-tool-collapse {
    background: url(easyui/themes/black/images/panel_tools.png) no-repeat -32px 0;
}

.window.highlight .panel-tool-expand {
    background: url(easyui/themes/black/images/panel_tools.png) no-repeat -32px -16px;
}

.window.highlight .panel-tool-max {
    background: url(easyui/themes/black/images/panel_tools.png) no-repeat 0 -16px;
}

.window.highlight .panel-tool-restore {
    background: url(easyui/themes/black/images/panel_tools.png) no-repeat -16px -16px;
}

.window.highlight .panel-tool-close {
    background: url(easyui/themes/black/images/panel_tools.png) no-repeat -16px 0;
}

/*系统首页数据板界面主结构样式*/
.board-panel {
    width: 100%;
    height: 100%;
    background-color: #f1f1f1;
    padding: 4px;
}

.board-item {
    width: calc(50% - 2px);
    height: calc(50% - 2px);
    padding: 2px;
    border-radius: 2px;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    display: inline-block;
}

.mini-board-item {
    width: calc(25% - 3px);
}

.board-topbar {
    width: 100%;
    text-align: center;
    height: 68px;
    line-height: 66px;
    font-size: 32px;
    font-family: '微软雅黑', sans-serif;
    color: #4c4c4c;
    background: linear-gradient(to right, #bb313e25, #bb313e25, #d7222925, #dd4a1625, #e4761525, #f5c50025, #f0e92725, #b1ce2425, #48a93525, #03944525, #157c4f25, #176a5825, #1b556325, #1d386f25, #1d386f25, #20277825, #52266325, #8a244b25);
}

.board-inner {
    height: 100%;
    padding: 12px;
    overflow: auto;
    background-color: #fff;
}

.board-inner.showTime {
    margin-top: 40px;
}

#homeLoadingPage {
    display: flex;
    flex-direction: column;
    height: 100%;
}

#homeLoadingPage .proclamation {
    position: absolute;
    top: 0;
    right: 0;
}

.layerBtn {
    position: absolute;
    right: 0;
    bottom: 0;
}

/* 首页tip滚动轮播效果 开始 */
.slideMarquee {
    position: absolute;
    width: 100%;
    bottom: 50px;
    font-size: 22px;
    line-height: 34px;
    animation-fill-mode: both;
    text-align: center;
}

.marqueeAnimation-0 {
    animation-name: fadeInOut-0;
}

.marqueeAnimation-1 {
    animation-name: fadeInOut-1;
}

@keyframes fadeInOut-0 {
    0% {
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    50% {
        opacity: 1;
    }


    80% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@keyframes fadeInOut-1 {
    0% {
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    50% {
        opacity: 1;
    }


    80% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

/* 首页tip滚动轮播效果 结束 */
/*loading：波浪loading开始*/
.waveLoading-wrap {
    display: flex;
    height: 96px;
    align-items: center;
    justify-content: center;
}

.waveLoading-box {
    position: relative;
    display: inline-block;
}

.waveLoading-box .waveLoading-box-child {
    width: 6px;
    height: 6px;
    background-color: #0084ff;
    border-radius: 50%;
    animation-duration: 0.8s;
    animation-name: waveLoading;
    transform-origin: center;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
    animation-fill-mode: both;
    position: absolute;
    top: 6px;
    /*left从0开始，以18的倍数来递增*/
    /*animation-delay从0s开始，每次递减0.1s*/
}

@keyframes waveLoading {

    0%,
    100% {
        transform: translateY(-100%);
    }

    50% {
        transform: translateY(100%);
    }
}

/*loading：波浪结束*/
#dashboard-search-form {
    margin: 10px 40px 10px 40px;
    display: flex;
    position: relative;
}

#dashboard-search-form img {
    position: absolute;
    top: 8px;
    left: 8px;
    height: 22px;
    z-index: 10;
}

#dashboard-search-form input {
    height: 40px;
    margin-right: 15px;
    flex: 1;
    outline: none;
    font-size: 20px;
    padding-left: 36px;
    min-width: 210px;
}

.luim-big-button {
    width: 120px;
    height: 40px;
    line-height: 40px;
    border-radius: 1px;
    -moz-border-radius: 1px;
    -webkit-border-radius: 1px;
    font-size: 16px;
    cursor: pointer;
    color: #fff;
    border: none;
    background: #2774CE;
    background: -webkit-gradient(linear, left top, left bottom, from(#187ef6), to(#2774CE));
    background: -moz-linear-gradient(top, #187ef6, #2774CE);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#187ef6', endColorstr='#2774CE');
}

.luim-big-button:hover {
    background: #2366b8;
    background: -webkit-gradient(linear, left top, left bottom, from(#1868d0), to(#2366b8));
    background: -moz-linear-gradient(top, #1868d0, #2366b8);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#1868d0', endColorstr='#2366b8');
}

.luim-big-button.red {
    background: #ce342a;
    background: -webkit-gradient(linear, left top, left bottom, from(#f64334), to(#ce342a));
    background: -moz-linear-gradient(top, #f64334, #ce342a);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f64334', endColorstr='#ce342a');
}

.luim-big-button.red:hover {
    background: #b82732;
    background: -webkit-gradient(linear, left top, left bottom, from(#d02d3a), to(#b82732));
    background: -moz-linear-gradient(top, #d02d3a, #b82732);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#d02d3a', endColorstr='#b82732');
}

.luim-big-button.orange {
    background: #ce6021;
    background: -webkit-gradient(linear, left top, left bottom, from(#ce6d2a), to(#ce6021));
    background: -moz-linear-gradient(top, #ce6d2a, #ce6021);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ce6d2a', endColorstr='#ce6021');
}

.luim-big-button.orange:hover {
    background: #bb5e21;
    background: -webkit-gradient(linear, left top, left bottom, from(#bb6c2a), to(#bb5e21));
    background: -moz-linear-gradient(top, #bb6c2a, #bb5e21);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#bb6c2a', endColorstr='#bb5e21');
}

.luim-big-button.disabled {
    background: #727272;
    background: -webkit-gradient(linear, left top, left bottom, from(#9e9e9e), to(#727272));
    background: -moz-linear-gradient(top, #9e9e9e, #727272);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#9e9e9e', endColorstr='#727272');
}

.luim-big-button.disabled:hover {
    background: #727272;
    background: -webkit-gradient(linear, left top, left bottom, from(#9e9e9e), to(#727272));
    background: -moz-linear-gradient(top, #9e9e9e, #727272);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#9e9e9e', endColorstr='#727272');
}

/*快捷按钮样式开始*/
#dashboard-quickly-button-group {
    margin: 25px 40px 10px 40px;
}

#dashboard-quickly-button-group>div {
    width: 100%;
    overflow: auto;
    white-space: nowrap;
    padding-bottom: 20px;
}

#dashboard-quickly-button-group button {
    width: 100px;
    margin-right: 6px;
    height: 80px;
    border: none;
    cursor: pointer;
    outline: none;
    background-color: #ffffff;
    display: inline-block;
    padding: 10px 20px;
    box-sizing: border-box;
    position: relative;
}

#dashboard-quickly-button-group button:before {
    content: '';
    width: 46px;
    height: 46px;
    display: block;
    background-repeat: no-repeat;
    background-size: 60%;
    border-radius: 50%;
    background-position: center;
    margin: 0 auto 6px;
}

#dashboard-quickly-button-group button span {
    position: absolute;
    width: 100%;
    text-align: center;
    left: 0;
    font-size: 14px;
}

#dashboard-quickly-button-group button.sales {
    color: #2774ce;
}

#dashboard-quickly-button-group button.sales:before {
    background-image: url(../images/icon/sales.png);
    background-color: #2774ce;
}

#dashboard-quickly-button-group button.products {
    color: #ce7d27;
}

#dashboard-quickly-button-group button.products:before {
    background-image: url(../images/icon/products.png);
    background-color: #ce7d27;
}

#dashboard-quickly-button-group button.price {
    color: #27b5ce;
}

#dashboard-quickly-button-group button.price:before {
    background-image: url(../images/icon/price.png);
    background-color: #27b5ce;
}

#dashboard-quickly-button-group button.stock {
    color: #890072;
}

#dashboard-quickly-button-group button.stock:before {
    background-image: url(../images/icon/stock.png);
    background-color: #890072;
}

#dashboard-quickly-button-group button.trace {
    color: #006f1d;
}

#dashboard-quickly-button-group button.trace:before {
    background-image: url(../images/icon/trace.png);
    background-color: #006f1d;
}

#dashboard-quickly-button-group button.order_logging {
    color: #6f6400;
}

#dashboard-quickly-button-group button.order_logging:before {
    background-image: url(../images/icon/order_logging.png);
    background-color: #6f6400;
}

#dashboard-quickly-button-group button.goods {
    color: #6f1100;
}

#dashboard-quickly-button-group button.goods:before {
    background-image: url(../images/icon/goods.png);
    background-color: #6f1100;
}

#dashboard-quickly-button-group button.preassigned {
    color: #3b006f;
}

#dashboard-quickly-button-group button.preassigned:before {
    background-image: url(../images/icon/preassigned.png);
    background-color: #3b006f;
}

#dashboard-quickly-button-group button.refund {
    color: #00366f;
}

#dashboard-quickly-button-group button.refund:before {
    background-image: url(../images/icon/refund.png);
    background-color: #00366f;
}

#dashboard-quickly-button-group button.pddRefund {
    color: #e9392f;
}

#dashboard-quickly-button-group button.pddRefund:before {
    background-image: url(../images/icon/refund.png);
    background-color: #e9392f;
}

#dashboard-quickly-button-group button.ddRefund {
    color: #612fe9;
}

#dashboard-quickly-button-group button.ddRefund:before {
    background-image: url(../images/icon/refund.png);
    background-color: #612fe9;
}

#dashboard-quickly-button-group button.pretreatment {
    color: #005e6f;
}

#dashboard-quickly-button-group button.pretreatment:before {
    background-image: url(../images/icon/pretreatment.png);
    background-color: #005e6f;
}

#dashboard-quickly-button-group button.picking_manage {
    color: #5f27ce;
}

#dashboard-quickly-button-group button.picking_manage:before {
    background-image: url(../images/icon/picking_manage.png);
    background-color: #5f27ce;
}

#dashboard-quickly-button-group button.ddpretreatment:before {
    background-image: url(../images/icon/pretreatment.png);
    background-color: #00366f;
}

#dashboard-quickly-button-group button.ddpretreatment {
    color: #00366f;
}

#dashboard-quickly-button-group button.logistics_information {
    color: #1b8c03;
}

#dashboard-quickly-button-group button.logistics_information:before {
    background-image: url(../images/icon/logistics_information.png);
    background-color: #1b8c03;
}

#dashboard-quickly-button-group button.stock_goods {
    color: #ff4d00;
}

#dashboard-quickly-button-group button.stock_goods:before {
    background-image: url(../images/icon/stock_goods.png);
    background-color: #ff4d00;
}

#dashboard-quickly-button-group button.forwardOrder {
    color: #ff7600;
}

#dashboard-quickly-button-group button.forwardOrder:before {
    background-image: url(../images/icon/forward_order.png);
    background-color: #ff7600;
}

#dashboard-quickly-button-group button.pddforwardOrder {
    color: #e9392f;
}

#dashboard-quickly-button-group button.pddforwardOrder:before {
    background-image: url(../images/icon/forward_order.png);
    background-color: #e9392f;
}

#dashboard-quickly-button-group button.ddforwardOrder {
    color: #00366f;
}

#dashboard-quickly-button-group button.ddforwardOrder:before {
    background-image: url(../images/icon/forward_order.png);
    background-color: #00366f;
}

#dashboard-quickly-button-group button.allocation_complaint_order {
    color: #4a9e15;
}

#dashboard-quickly-button-group button.allocation_complaint_order:before {
    background-image: url(../images/icon/allocation_complaint_order.png);
    background-color: #4a9e15;
}

/*快捷按钮样式结束*/
.dashboard-data {
    margin: 10px 40px;
}

.board-data-group {
    border-bottom: 1px solid transparent;
    transition-property: border-bottom-color;
    transition-duration: 1s;
}

.board-data-group:hover {
    border-bottom: 1px solid #d2d2d2;
}

.board-data-group .data-item {
    display: inline-block;
    font-size: 16px;
    margin: 15px 30px 15px 15px;
    width: 130px;
}

.board-data-group .data-item span {
    font-size: 18px;
    font-weight: bold;
    margin-left: 10px;
    margin-right: 10px;
}

.board-data-group .data-item.importent span {
    color: #ff0000;
}

.board-data-group .data-item.link {
    cursor: pointer;
}

.notice-list,
.medal-list {
    list-style: none;
}

.notice-list li {
    padding: 10px;
    border: 1px #ebebeb dashed;
    margin-top: 10px;
    cursor: pointer;
    transition-property: background-color;
    transition-duration: .5s;
}

#panelNoticeListJob li, #panelNoticeListBBS li {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.notice-list li:hover {
    background-color: #f2f2f2;
}

.notice-list li .type-tag {
    font-size: 12px;
    background-color: #ffede2;
    color: #ff6200;
    display: inline-block;
    padding: 2px 6px;
    text-align: center;
    font-style: normal;
    border-radius: 4px;
    margin-right: 4px;
}

.notice-list li .type-tag.green {
    background-color: #d2ffe9;
    color: #00a854;
}
.notice-list li .type-tag.violet {
    background-color: rgba(123, 104, 238, 0.1);
    color: rgb(123, 104, 238);
}

.notice-list li .tit {
    display: block;
    font-size: 14px;
    text-decoration: none;
    color: #000;
    flex: 1;
    text-overflow: ellipsis;
    overflow: hidden;
    word-break: break-all;
    white-space: nowrap;
    margin-right: 4px;
}

.notice-list li .desc {
    display: flex;
    margin-top: 10px;
    width: 120px;
}

.notice-list li .desc .tags {
    flex: 1;
    display: inline-flex;
}

.notice-list li .desc .tags .tag {
    background: #187ef6;
    color: #fff;
    padding: 2px 6px;
    margin-right: 5px;
    text-align: center;
}

.notice-list li .desc .times {
    font-family: sans-serif;
    font-size: 14px;
}

.medal-header {
    height: 55px;
    line-height: 55px;
    position: fixed;
    width: calc(30% - 80px);
    background-color: #ffffff;
    z-index: 1;
    border-bottom: 1px solid #ebebeb;
}

.medal-info {
    display: inline-block;
    float: right;
    margin-right: 5px;
    cursor: pointer;
    font-size: 14px;
    color: #919191;
}

.medal-info span {
    color: #2a2a2a;
}

.medal-title {
    font-size: 16px;
    font-weight: bolder;
    margin: 15px 5px;
}

.medal-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 70px 5px 15px;
}

.medal-list:after {
    content: "";
    flex: 1;
}

.medal-list li {
    width: 10.6%;
    padding: 15px 20px;
    text-align: center;
    font-size: 12px;
    cursor: pointer;
    min-width: 52px;
    box-sizing: content-box;
    background-color: #ffffff;
    border-radius: 5px;
    transition: background-color 0.5s;
    position: relative;
}

.medal-list li:hover {
    background-color: #f3f3f3;
}

.medal-list li img {
    width: 100%;
}

.medal-list li span {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    display: block;
}

.medal-list .progress-bar {
    position: absolute;
    bottom: 6px;
    left: 50%;
    background-color: #cce4ff;
    height: 5px;
    width: 60px;
    margin-left: -30px;
    border-radius: 4px;
    overflow: hidden;
}

.medal-list .progress-bar .progress {
    height: 100%;
    width: 50%;
    background-color: #0080ff;
    border-radius: 4px;
}

.medal-slider-panel {
    position: fixed;
    right: 0;
    width: calc(30% - 48px);
    height: calc(100% - 48px);
    top: 48px;
    background-color: #ffffff;
    z-index: 2;
    overflow-x: auto;
    display: none;
    border-left: #e6e6e6 1px solid;
    transition: right 0.5s;
}

.medal-slider-panel .medal-header {
    width: calc(30% - 48px);
    padding: 0 12px;
}

.medal-slider-panel .medal-title {
    margin: 15px;
}

.medal-slider-panel .medal-title:nth-child(2) {
    margin-top: 70px;
}

.medal-slider-panel .medal-list {
    margin: 15px;
}

.medal-panel {
    width: 80%;
    margin: 0 auto;
    position: relative;
}

.medal-wrap {
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    overflow: hidden;
}

.medal-container {
    display: flex;
    align-items: center;
    transition: all 1.5s;
}

.medal-container .medal-item {
    margin: 0 10px;
}

.medal-container .medal-item:first-child {
    margin-left: 0;
}

.medal-item-left,
.medal-item-right {
    position: absolute;
    top: 50%;
    font-size: 15px;
    font-weight: bold;
    border-radius: 50%;
    height: 24px;
    width: 24px;
    background-color: transparent;
    text-align: center;
    font-family: monospace;
    line-height: 24px;
    color: #ababab;
    cursor: pointer;
    margin-top: -12px;
    user-select: none;
    transition: all 1s;
    display: none;
}

.medal-item-left:hover,
.medal-item-right:hover {
    background-color: rgba(0, 91, 211, 0.61);
    color: #ffffff;
}

.medal-item-left {
    left: -35px;
}

.medal-item-right {
    right: -35px;
}

.medal-receive-btn {
    display: block;
    margin: 0 auto;
    text-align: center;
    padding-top: 10px;
    padding-bottom: 20px;
}

.medal-receive-btn button {
    padding: 0 30px;
    height: 40px;
}

.date-range-box {
    display: inline-block;
    text-align: left;
    width: 220px;
    height: 36px;
    padding: 5px 10px 5px 33px !important;
    font-size: 14px;
    line-height: 1.5;
    color: #495057;
    background: #fff url('../images/datebox_arrow.png') no-repeat -83px -86px;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    overflow: visible;
    vertical-align: middle;
    cursor: pointer;
    outline: none;
}

#sales_statistics_chart_searcher .tag-search-panel {
    display: inline-flex;
    vertical-align: middle;
    flex: 1;
    justify-content: flex-end;
    height: 36px;
    overflow: hidden;
}

#sales_statistics_chart_searcher #echarts_tabs {
    color: #3F66E0;
    width: 160px;
    margin-left: 30px;
    text-align: center;
}

#sales_statistics_chart_searcher #echarts_tabs span {
    cursor: pointer;
    padding: 0 6px;
    border: 1px solid #3F66E0;
    display: inline-block;
    margin-bottom: 5px;
}

#sales_statistics_chart_searcher #echarts_tabs .active_tab {
    background: #3F66E0;
    color: #fff;
}

#sales_statistics_chart_searcher .tag-search-panel .tag-item {
    border-color: #DCE0E0;
    background-color: transparent;
    color: #484848;
    line-height: 36px;
    padding: 0 16px;
    border-radius: 0;
    font-size: 14px;
    max-width: fit-content;
    margin: 0 4px;
}

#sales_statistics_chart_searcher .tag-search-panel .tag-item.current {
    color: #ffffff;
    background-color: #2774CE;
    border: 1px solid #2774CE;
    padding: 0 16px 0 10px;
}

#sales_statistics_chart_searcher .tag-search-panel .tag-item.current:before {
    content: '\2714';
    margin-right: 8px;
}

#sales_statistics_chart_searcher .tag-search-panel .tag-item:hover {
    color: #484848;
    background-color: #F2F2F2;
    border: 1px solid #F2F2F2;
}

#sales_statistics_chart_searcher .tag-search-panel .tag-item.current:hover {
    border: 1px solid #2b80e3;
    background-color: #2b80e3;
    color: #ffffff;
}

#sales_statistics_chart_searcher .sales_statistics_data {
    padding: 8px 0 0;
    text-align: center;
    display: flex;
    height: 74px;
    flex: 1;
    overflow-x: auto;
    /* margin-left: 30px; */
    overflow-y: hidden;
}

#sales_statistics_chart_searcher .sales_statistics_data ul {
    list-style:none;
    white-space: nowrap;
    overflow-y: hidden;
    margin: 0 auto;
}

#sales_statistics_chart_searcher .sales_statistics_data ul li {
    display: inline-block;
    background: #ebf9ff;
    padding: 8px 10px 6px;
    margin-left: 5px;
    border: 2px solid #0096ff;
    border-radius: 5px;
    font-size: 12px;
    color: #6b6b6b;
    cursor: default;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

#sales_statistics_chart_searcher .sales_statistics_data ul li:nth-of-type(1) {
    margin-left: 0;
}

#sales_statistics_chart_searcher .sales_statistics_data ul li span {
    font-size: 16px;
    color: black;
    display: flex;
    line-height: 16px;
    justify-content: center;
}

#sales_statistics_chart_searcher .sales_statistics_data ul li .content {
    font-size: 12px;
    display: block;
    /* height: 20px;
    line-height: 24px; */
    /* overflow: hidden; */
}

.salesChannelSelector {
    margin-right: 10px;
    line-height: 34px;
    border: 1px solid #ced4da;
    padding-right: 30px;
    padding-left: 10px;
    position: relative;
    cursor: pointer;
    height: 36px;
    max-width: 260px;
    min-width: 200px;
}

.salesChannelSelector>span {
    width: 100%;
    height: 34px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    display: block;
}

.salesChannelSelector em {
    font-family: "iconfont", sans-serif !important;
    font-size: 16px;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: absolute;
    right: 6px;
    top: 2px;
}

.salesChannelSelector em:after {
    content: "\e843";
}

.salesChannelSelector.dialog-tip.active .tip-content {
    top: 48px;
    left: 0;
    width: 240px;
    box-shadow: unset;
    padding: 0;
}

.salesChannelSelector.dialog-tip.active .tip-content .salesChannelUl {
    list-style: none;
}

.salesChannelSelector.dialog-tip.active .tip-content .salesChannelUl .salesChannelItem {
    line-height: 32px;
    padding: 0 15px 0 30px;
    border-bottom: 1px solid #dfdfdf;
    position: relative;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.salesChannelSelector.dialog-tip.active .tip-content .salesChannelUl .salesChannelItem:hover {
    background-color: #e6f1ff;
}

.salesChannelSelector.dialog-tip.active .tip-content .salesChannelUl .salesChannelItem:last-child {
    border-bottom: none;
}

.salesChannelSelector.dialog-tip.active .tip-content .salesChannelUl .salesChannelItem:before {
    content: '';
    background-color: #ffffff;
    width: 16px;
    height: 16px;
    position: absolute;
    left: 8px;
    top: 8px;
    z-index: 11;
    font-size: 12px;
    color: #ffffff;
    line-height: 16px;
    text-align: center;
    border-radius: 5px;
    border: 2px solid #2774ce;
    transform: scale(0.8);
    transform-origin: 0 0;
}

.salesChannelSelector.dialog-tip.active .tip-content .salesChannelUl .salesChannelItem.salesChannelSum:before {
    border-color: #ff9112;
}

.salesChannelSelector.dialog-tip.active .tip-content .salesChannelUl .salesChannelItem.salesChannelSum.checked:before {
    content: '✔';
    background-color: #ff9112;
}

.salesChannelSelector.dialog-tip.active .tip-content .salesChannelUl .salesChannelItem.checked:before {
    content: '✔';
    background-color: #2774ce;
}

.afterSalesRefundQueriesSearch_assignee.salesChannelSelector {
    background-color: #ffffff;
    height: 30px;
    line-height: 29px;
    box-sizing: border-box;
    vertical-align: middle;
    min-width: 140px;
    max-width: 220px;
}

.afterSalesRefundQueriesSearch_assignee.salesChannelSelector em {
    font-size: 14px;
    top: 0;
}

.afterSalesRefundQueriesSearch_assignee.salesChannelSelector.dialog-tip.active .tip-content {
    top: 38px;
    width: 160px;
}

.afterSalesRefundQueriesSearch_assignee.salesChannelSelector.dialog-tip.active .tip-content .salesChannelUl {
    height: 300px;
    overflow: auto;
}

.afterSalesRefundQueriesSearch_assignee.salesChannelSelector.dialog-tip.active .tip-content .salesChannelUl .salesChannelItem {
    padding: 0 5px 0 30px;
    overflow: hidden;
}

.afterSalesRefundQueriesSearch_assignee.salesChannelSelector.dialog-tip.active .tip-content .salesChannelUl .salesChannelItem .assigneeLineState {
    padding-left: 10px;
}

.afterSalesRefundQueriesSearch_assignee.salesChannelSelector.dialog-tip.active .tip-content .salesChannelUl .salesChannelItem .assigneeLineState:before {
    right: 0;
    left: unset;
    top: 8px;
}

.afterSalesRefundQueriesSearch_assignee.salesChannelSelector.dialog-tip.active .tip-content .salesChannelUl .salesChannelItem .avatar {
    position: absolute;
    bottom: -6px;
    right: 30px;
    height: 30px;
    opacity: 0.3;
    animation: float-out 1s 1;
    transition-property: opacity;
    transition-duration: 1s;
}

.afterSalesRefundQueriesSearch_assignee.salesChannelSelector.dialog-tip.active .tip-content .salesChannelUl .salesChannelItem:hover .avatar {
    opacity: 0.5;
    animation: bounce-min 1s 1;
}

.salesOrderListSearch_saleChannelId.salesChannelSelector {
    background-color: #ffffff;
    height: 30px;
    line-height: 29px;
    box-sizing: border-box;
    vertical-align: middle;
    min-width: 140px;
    max-width: 220px;
}

.salesOrderListSearch_saleChannelId.salesChannelSelector em {
    font-size: 14px;
    top: 0;
}

.salesOrderListSearch_saleChannelId.salesChannelSelector.dialog-tip.active .tip-content {
    top: 38px;
    width: 160px;
}

.salesOrderListSearch_saleChannelId.salesChannelSelector.dialog-tip.active .tip-content .salesChannelUl {
    height: 300px;
    overflow: auto;
}

.salesOrderListSearch_saleChannelId.salesChannelSelector.dialog-tip.active .tip-content .salesChannelUl .salesChannelItem {
    padding: 0 5px 0 30px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.salesOrderListSearch_saleChannelId.salesChannelSelector.dialog-tip.active .tip-content .salesChannelUl .salesChannelItem .assigneeLineState {
    padding-left: 10px;
}

.salesOrderListSearch_saleChannelId.salesChannelSelector.dialog-tip.active .tip-content .salesChannelUl .salesChannelItem .assigneeLineState:before {
    right: 0;
    left: unset;
    top: 8px;
}

.salesOrderListSearch_saleChannelId.salesChannelSelector.dialog-tip.active .tip-content .salesChannelUl .salesChannelItem .avatar {
    position: absolute;
    bottom: -6px;
    right: 30px;
    height: 30px;
    opacity: 0.3;
    animation: float-out 1s 1;
    transition-property: opacity;
    transition-duration: 1s;
}

.salesOrderListSearch_saleChannelId.salesChannelSelector.dialog-tip.active .tip-content .salesChannelUl .salesChannelItem:hover .avatar {
    opacity: 0.5;
    animation: bounce-min 1s 1;
}

.salesChannelSelector.dialog-tip.active .tip-content .checkAllItem {
    line-height: 32px;
    padding: 0 15px 0 40px;
    position: relative;
    display: inline-block;
    float: left;
}

.salesChannelSelector.dialog-tip.active .tip-content .checkAllItem:before {
    content: '';
    background-color: #ffffff;
    width: 16px;
    height: 16px;
    position: absolute;
    left: 8px;
    top: 8px;
    z-index: 11;
    font-size: 12px;
    color: #ffffff;
    line-height: 16px;
    text-align: center;
    border-radius: 5px;
    border: 2px solid #ec6800;
    transform: scale(0.8);
    transform-origin: 0 0;
}

.salesChannelSelector.dialog-tip.active .tip-content .checkAllItem.checked:before {
    content: '✔';
    background-color: #ec6800;
}

.salesChannelWrap .salesChannelBtn {
    color: #2774ce;
    padding: 0 2px;
    border: 1px #ffffff solid;
    margin: 3px 5px;
    height: 26px;
}

.salesChannelWrap .salesChannelBtn:hover {
    border: 1px #d2d2d2 solid;
    background: #ffffff;
}

.salesChannelWrap .salesChannelBtn .iconfont {
    font-size: 18px;
}

@keyframes float-out {
    from {
        bottom: -25px;
        opacity: 0;
    }

    to {
        bottom: -6px;
        opacity: 0.3;
    }
}

@keyframes bounce-min {

    from,
    20%,
    53%,
    80%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    40%,
    43% {
        -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        -webkit-transform: translate3d(0, -5px, 0);
        transform: translate3d(0, -5px, 0);
    }

    70% {
        -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        -webkit-transform: translate3d(0, -3px, 0);
        transform: translate3d(0, -3px, 0);
    }

    90% {
        -webkit-transform: translate3d(0, -1px, 0);
        transform: translate3d(0, -1px, 0);
    }
}

.priceCalculateParam_content {
    height: 33px !important;
}

.priceCalculateParam_content.special_one {
    width: 1050px !important;
}

.priceCalculateParam_content .tabs-header .tabs .tabs-title {
    font-size: 14px;
    padding: 0 20px;
}

.priceCalculateParam_content .tabs-panels .panel-body-noborder {
    padding: 0 !important;
}

.priceCalculateParam_content .tabs-panels {
    height: 0 !important;
    width: 0 !important;
}

#echartsPanel .mloading.mloading-mask {
    background: rgba(74, 144, 226, 0);
}

#widgetPanel .environment {
    position: absolute;
    right: 5px;
    bottom: 5px;
    background-color: #ffffff;
    padding: 0 8px;
    border-radius: 6px;
    z-index: 111;
    color: #FFFFFF;
    cursor: default;
}

/*打印配置页面样式*/
#print-config-panel {
    position: relative;
}

#print-config-panel #print-config-list-tools {
    display: flex;
    margin-top: 20px;
    margin-left: 40px;
    width: 600px;
}

#print-config-panel #print-config-list-tools div:first-child {
    flex: 1;
}

#print-config-panel #print-config-list-tools div:last-child {
    width: 100px;
    text-align: right;
}

#print-config-panel #print-config-list-tools div:first-child select {
    height: 30px;
    width: 240px;
    padding-left: 10px;
    border-radius: 4px;
    outline: none;
}

#print-config-panel #print-config-list-tools div:last-child .luim-big-button {
    margin: 0;
    height: 30px;
    line-height: 30px;
    font-size: 14px;
    width: 100px;
    border-radius: 4px;
}

#print-config-panel #systemPrintConfigDataGridPanel {
    width: 600px;
    border: 1px solid #dfdfdf;
    min-height: 400px;
    overflow: hidden;
    position: absolute;
    left: 40px;
    top: 40px;
    z-index: 20;
    background-color: #fff;
}

#print-config-panel #systemPrintConfigAddPanel {
    border: 1px solid #dfdfdf;
    position: absolute;
    left: 140px;
    top: 40px;
    width: 500px;
    height: 400px;
    z-index: 10;
    background-color: #fff;
    transition-property: left;
    transition-duration: 1s;
}

#print-config-panel .datagrid-empty {
    background-color: #fff;
    line-height: 50px;
}

#print-config-panel #systemPrintConfigAddPanelTools {
    text-align: center;
    padding-top: 10px;
    padding-bottom: 10px;
    border-bottom: 1px #dfdfdf solid;
}

#print-config-panel #systemPrintConfigAddPanelTools input {
    width: 90px;
    height: 26px;
    text-align: center;
    outline: none;
}

#print-config-panel #systemPrintConfigAddPanelTools button {
    margin: 0;
    height: 26px;
    line-height: 26px;
    font-size: 12px;
    width: 50px;
    border-radius: 4px;
    outline: none;
}

#print-config-panel #systemPrintConfigAddPanelTools #stopScanIpBtn {
    background: #ce2425;
    background: -webkit-gradient(linear, left top, left bottom, from(#f62a2f), to(#ce2425));
    background: -moz-linear-gradient(top, #f62a2f, #ce2425);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f62a2f', endColorstr='#ce2425');
}

#print-config-panel #systemPrintConfigAddPanelTools button.loading {
    padding-left: 15px;
    width: 60px;
    background: #3f97ff url(../images/spinner.svg) no-repeat;
    background-size: 25px;
    cursor: default;
}

#print-config-panel #systemPrintConfigAddPanelTools #stopScanIpBtn.loading {
    background: #f45a4b url(../images/spinner.svg) no-repeat;
    background-size: 25px;
}

#print-config-panel #systemPrintConfigAddPanelTools button:last-child {
    background: #555d;
}

#print-config-panel #systemPrintConfigAddPanelList {
    height: 320px;
    overflow: auto;
    padding: 10px;
    position: relative;
}

#print-config-panel #systemPrintConfigAddPanelList #systemPrintConfigAddPanelLoading {
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.6);
    display: none;
}

#print-config-panel #systemPrintConfigAddPanelList #systemPrintConfigAddPanelLoading img {
    top: 50%;
    position: absolute;
    left: 50%;
    margin-top: -60px;
    margin-left: -60px;
}

#print-config-panel #systemPrintConfigAddPanelList ul {
    list-style: none;
}

#print-config-panel #systemPrintConfigAddPanelList li {
    position: relative;
    padding-left: 10px;
    margin-top: 10px;
}

#print-config-panel #systemPrintConfigAddPanelList li .accordion-collapse,
#print-config-panel #systemPrintConfigAddPanelList li .accordion-expand {
    position: absolute;
    width: 16px;
    height: 16px;
    display: block;
    right: 10px;
    top: 50%;
    margin-top: -8px;
    cursor: pointer;
}

#print-config-panel #systemPrintConfigAddPanelList li .scanning {
    position: absolute;
    height: 16px;
    right: 10px;
    top: 50%;
    margin-top: -8px;
    padding-left: 28px;
    line-height: 16px;
    background: url("easyui/themes/material-teal/images/loading.gif") no-repeat scroll 5px center;
}

#print-config-panel #systemPrintConfigAddPanelList li .error {
    background: url("easyui/themes/material-teal/images/validatebox_warning.png") no-repeat scroll 5px center;
    color: #d50000;
}

#print-config-panel #systemPrintConfigAddPanelList .print-result-list .print-result-item {
    display: flex;
    border: 1px #dfdfdf solid;
    border-bottom: none;
}

#print-config-panel #systemPrintConfigAddPanelList .print-result-list .print-result-item:last-child {
    border-bottom: 1px #dfdfdf solid;
}

#print-config-panel #systemPrintConfigAddPanelList .print-result-list .print-result-item div {
    flex: 1;
    line-height: 24px;
    padding: 5px 10px;
    border-right: 1px #dfdfdf solid;
}

#print-config-panel #systemPrintConfigAddPanelList .print-result-list .print-result-item div:first-child {
    width: 160px;
    flex: initial;
    text-align: center;
}

#print-config-panel #systemPrintConfigAddPanelList .print-result-list .print-result-item div:last-child {
    width: 100px;
    text-align: right;
    flex: inherit;
    border: none;
}

#print-config-panel #systemPrintConfigAddPanelList .print-result-list .print-result-item div:last-child button.luim-big-button {
    width: 50px;
    height: 24px;
    font-size: 12px;
    line-height: 24px;
}

#systemPrintConfigAddPanelStatusBar {
    line-height: 31px;
    padding: 0 10px;
    color: #058e05;
    background-color: #f5f5f5;
}

#systemPrintConfigAddPanelStatusBar.running {
    color: #4c84ff;
}

#systemPrintConfigAddPanelStatusBar.error {
    color: #f62a2f;
}

#systemPrintConfigAddPanelStatusBar.over {
    color: #e9743b;
}

/*版本标签效果样式*/
.version-tag {
    width: 44px;
    height: 13px;
    background-color: red;
    border-radius: 5px 5px 5px 0;
    position: absolute;
}

.version-tag svg {
    height: 10px;
    position: absolute;
    top: 50%;
    left: 50%;
    cursor: default;
    margin-top: -5px;
    margin-left: -22px;
}

/*构建状态显示工具面板样式*/
.buildToolPanel {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 99999999;
    width: 100%;
    box-shadow: #b1b1b1 0 0 4px 0;
    background-color: #ffffff;
}

.buildToolPanelTab {
    height: 30px;
    line-height: 30px;
    display: flex;
    border-bottom: 1px #dfdfdf solid;
}

.buildToolPanelTab .buildToolPanelTabItem {
    min-width: 80px;
    text-align: center;
    font-size: 14px;
}

.buildToolPanelTab div:last-child {
    flex: 1;
}

.buildToolPanelContent {
    min-height: 200px;
    padding: 20px;
}

.buildToolPanelContent .refreshSateSwitch {
    margin-left: 40px;
}

.buildToolPanelContent .refreshSateSwitch img {
    cursor: pointer;
}

.buildToolPanelContent .flex-panel {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: center;
}

.buildToolPanelContent .flex-panel .flex-item {
    /*width: 20%;*/
    margin-left: 40px;
    margin-top: 10px;
    text-align: center;
}

.buildToolPanelClose {
    width: 15px;
    height: 15px;
    position: absolute;
    top: 6px;
    right: 10px;
    cursor: pointer;
}

/*悬浮球样式*/
.widgetFloatBall {
    position: absolute;
    top: 40px;
    right: 40px;
    z-index: 100000;
    overflow: hidden;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    padding: 4px;
    border: 1px #dfdfdf solid;
    box-shadow: #dfdfdf 0 0 10px 0;
    cursor: pointer;
    background-color: #ffffff;
    transition-property: transform;
    transition-duration: .5s;
}

.widgetFloatBall img {
    width: 100%;
    border-radius: 50%;
}

.col-high-light {
    background-color: #ffff00;
}

/*组件图标区域app列表样式*/
#widgetList {
    display: block;
    width: 100%;
}

#widgetList ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
}

#widgetList ul li {
    width: 70px;
    padding: 10px;
    text-align: center;
    cursor: pointer;
    position: relative;
}

#widgetList ul li:hover img {
    filter: brightness(1.04);
    opacity: 0.9;
}

#widgetList ul li:active img {
    width: 90%;
}

#widgetList ul li img {
    width: 100%;
    border-radius: 10px;
    transition-property: width,filter;
    transition-duration: .2s;
}

#widgetList ul li span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%;
    display: block;
}

#widgetList ul li i.badge {
    position: absolute;
    top: 0;
    right: -10px;
    background-color: red;
    color: #ffffff;
    padding: 0 5px;
    font-style: normal;
    border-radius: 6px;
    line-height: 18px;
    text-align: center;
}

.layui-layer.widget-dialog {
    background: transparent;
    box-shadow: none;
    transition-property: top;
    transition-duration: .6s;
}

.widget-dialog .layui-layer-setwin {
    right: unset;
    left: 50%;
    top: -20px;
    margin-left: -15px;
}

.widget-dialog .layui-layer-setwin .show-float-ball {
    position: absolute;
    right: 0;
    font-family: "iconfont", sans-serif !important;
    text-decoration: none;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.6) none;
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
    width: 48px;
    height: 48px;
    font-size: 18px;
    top: -50px;
}

.widget-dialog .layui-layer-setwin .show-float-ball:hover {
    background: rgba(253, 18, 6, 0.6) none;
}

.widget-dialog .layui-layer-setwin .show-float-ball:before {
    content: "\e616";
}

.panel-table {
    width: 100%;
    /*border-bottom: 1px solid #dfdfdf;*/
    margin: 0;
    border-collapse: collapse;
    border-spacing: 0;
}

.panel-table tr:first-child td,
.panel-table tr:first-child th {
    border-top: none;
}

.panel-table td,
.panel-table tr {
    border-right: 1px solid #dfdfdf;
    border-top: 1px solid #dfdfdf;
    padding: 10px;
}

.panel-table tr td:last-child,
.panel-table tr tr:last-child {
    border-right: none;
}

.window-log .panel-header-noborder {
    border-width: 0 0 0 0;
}

/*通用展示型属性表格样式*/
.luim-table {
    width: 100%;
    background-color: #dfdfdf;
    -webkit-border-horizontal-spacing: 1px;
    -webkit-border-vertical-spacing: 1px;
}

.luim-table tr.luim-hover {
    background: #ffffff;
}

.luim-table tr.luim-hover:hover {
    background: #f9f9f9;
}

.luim-table tr.luim-hover td {
    background-color: rgba(0, 0, 0, 0);
}

.luim-table td {
    padding: 10px;
    background-color: #ffffff;
}

.luim-table.mini td {
    padding: 2px;
}

.luim-table.searcher td {
    padding: 8px;
}

.luim-table th {
    font-size: 14px;
    background-color: #f3f3f3;
}

.luim-table input,
.luim-table textarea {
    border-radius: 2px;
    border: 1px solid #E8EAED;
    height: 30px;
    padding-left: 5px;
}

.luim-table input::-webkit-input-placeholder {
    color: #8F93A7;
}

.layui-layer-content textarea::-webkit-input-placeholder {
    color: #8F93A7;
}

.localitSalesReturn_personInfo input:focus {
    outline-color: rgba(63, 102, 224, .5);
}

.luim-table input:focus {
    outline-color: rgba(63, 102, 224, .5);
}

.layui-layer-content textarea:focus {
    outline-color: rgba(63, 102, 224, .5);
}

.luim-table-btns .luim-btn {
    padding: 0;
    margin: 2px;
    height: 24px;
    border: 1px solid #59a4ff;
    width: 46px;
    display: inline-block;
    line-height: 22px;
    text-align: center;
    text-decoration: none;
    background-color: #d4edff;
    color: #00469c;
}

input.luim-number-input::-webkit-outer-spin-button,
input.luim-number-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

/*select2选择框outline样式去除*/
.select2-container--default.select2-container--open {
    z-index: 100000000;
}

.select2-container--default.select2-container--open.hiddenIndex {
    z-index: 1;
}

.select2-container--default .select2-selection--single {
    outline: none;
}

.select2.select2-container .select2-selection--single {
    border: 1px solid #dfdfdf;
    border-radius: unset;
    height: 30px;
}

.select2.select2-container .select2-selection--single.new-ui-select2 {
    height: 40px;
    border-color: #E8EAED;
    border-radius: 2px;
}

.select2-container--default .select2-selection--single.new-ui-select2 .select2-selection__arrow {
    height: 36px;
}

.select2-container--default .select2-selection--single.new-ui-select2 .select2-selection__rendered {
    line-height: 38px;
    font-size: 14px;
    color: #8F93A7;
}

.new-ui-select2-dropdown .select2-results__option {
    padding: 11px;
    color: #8F93A7;
}

.select2-container.select2-container--default .new-ui-select2-dropdown .select2-results__option--highlighted[aria-selected] {
    color: #333;
    background-color: #F1FAFF;
}

.select2-container.select2-container--default .new-ui-select2-dropdown .select2-results__option[aria-selected=true] {
    color: #4065e0;
    background-color: #E4F1FC;
}

.select2-container--default .select2-results>.select2-results__options {
    max-height: 210px !important;
}

#systemUserManageAdd_layer .select2.select2-container .select2-selection--single {
    border: none;
    border-bottom: 1px solid #dfdfdf;
}

/*searchbox样式优化*/
.searchbox.textbox .textbox-text {
    padding-left: 10px;
}

/*datagrid表头问号样式*/
.datagrid-header-row .datagrid-cell .show-tip,
.luim-tip-label {
    background-color: #ffb400;
    width: 16px;
    line-height: 16px;
    display: inline-block;
    overflow: hidden;
    text-align: center;
    font-weight: bold;
    font-family: Arial, serif;
    color: #ffffff;
    border-radius: 3px;
    margin-left: 5px;
    vertical-align: text-bottom;
}

.datagrid-header-row .datagrid-cell .show-tip.green {
    background-color: #2aa818;
}

.datagrid-header-row .datagrid-cell .show-tip.blue {
    background-color: #2774CE;
}

.datagrid-header-row .datagrid-cell .show-tip.grey {
    background-color: grey;
}

.luim-tip-label {
    width: 14px;
    line-height: 14px;
    /*background-color: #ff0526;*/
}

div[id $='_dlg_toolbar'] .show-tip,
div[id $='-dlg-toolbar'] .show-tip {
    background-color: #ffb400;
    width: 16px;
    line-height: 16px;
    display: inline-block;
    overflow: hidden;
    text-align: center;
    font-weight: bold;
    font-family: Arial, serif;
    color: #ffffff;
    border-radius: 3px;
    margin-left: 5px;
    vertical-align: text-bottom;
}

/*detailPage详情单页统一样式*/
.detailPageWarp {
    padding: 0 20px 15px;
}

.detailPagePanel {
    display: block;
    margin-top: 15px;
    box-shadow: 1px 1px 2px 0 rgba(81, 81, 81, 0.1);
}

.detailPagePanel .panel-title {
    position: relative;
    height: 40px;
    line-height: 20px;
    background-color: #F3F3F3;
    border: 1px solid #dddddd;
    padding: 10px 15px;
    font-size: 14px;
}

.detailPagePanel .panel-body {
    border: 1px solid #dddddd;
    border-top: none;
    min-height: 50px;
    padding: 10px 15px;
}

.detailPagePanel .panel-title .panel-title-right {
    position: absolute;
    right: 10px;
    top: 0;
    height: 40px;
    line-height: 40px;
}

.detailPagePanel .panel-title .panel-title-right .luim-icon-flag {
    /*旗帜默认颜色为灰色   其他旗帜颜色另外定义*/
    color: #999999;
    cursor: pointer;
}

.detailPagePanel .panel-body .luim-table {
    background-color: transparent;
}

.detailPagePanel .panel-body .luim-table td {
    padding: 10px 0;
}

.detailPagePanel .panel-body .textbox-disabled {
    border: none;
    opacity: 1;
}

.detailPagePanel .panel-body .textbox {
    border-color: #dfdfdf;
}

.detailPagePanel .panel-body .textbox input {
    padding: 0 10px;
    outline: #cfebff solid;
}

.detailPagePanel .panel-body .textbox-disabled input,
.detailPageTotalPanel .textbox-disabled input {
    background: transparent;
    color: #000000;
    outline: none;
}

.detailPagePanel .panel-body .textbox-disabled.combo .textbox-addon-right {
    display: none;
}

.detailPagePanel .panel-body .textbox.combo input {
    outline: none;
}

.detailPageWarp .luim-table.list-table th {
    font-size: 14px;
    text-align: center;
}

.detailPageWarp .luim-table.list-table td {
    padding: 7px 10px;
}

.detailPageWarp .product-tr {
    cursor: default;
}

.detailPageWarp .product-tr.active {
    background-color: #CCE6FF;
}

.detailPageWarp .product-tr.active td {
    background-color: transparent;
}

.flagNumber0 {
    color: #BCBCBC;
    transform: scale(0.9);
}

.flagNumber3 {
    color: #00bc00;
    transform: scale(0.9);
}

.flagNumber5 {
    color: #d600d6;
    transform: scale(0.9);
}

.luim-icon-flag.flag0 {
    color: #BCBCBC !important;
}

.luim-icon-flag.flag1 {
    color: red !important;
}

.luim-icon-flag.flag2 {
    color: #ffa32f !important;
}

.luim-icon-flag.flag3 {
    color: #00bc00 !important;
}

.luim-icon-flag.flag4 {
    color: #00bdff !important;
}

.luim-icon-flag.flag5 {
    color: #d600d6 !important;
}

.dialog-tip.superGreenFlag {
    background: url(../images/super_green_flag.png) 0 -1px no-repeat;
    background-size: 100% 100% !important;
}

/*添加备注的标记选择组样式*/
.flag-checkbox-group {
    display: flex;
    padding: 10px;
}

.flag-checkbox-group .item {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    cursor: pointer;
    background-color: #ffffff;
    margin-right: 15px;
    border-radius: 50%;
    border: 1px solid #e6e6e6;
    transition-property: background-color, border;
    transition-duration: .3s;
    box-shadow: 1px 1px 3px 0 #ebebeb;
}

.flag-checkbox-group .item:nth-child(1):hover {
    border: 1px solid #d5d5d5;
    background-color: #ececec;
}

.flag-checkbox-group .item:nth-child(2):hover {
    border: 1px solid red;
    background-color: #ffedef;
}

.flag-checkbox-group .item:nth-child(3):hover {
    border: 1px solid #ffa32f;
    background-color: #fff9ea;
}

.flag-checkbox-group .item:nth-child(4):hover {
    border: 1px solid #00bc00;
    background-color: #e3ffdf;
}

.flag-checkbox-group .item:nth-child(5):hover {
    border: 1px solid #00bdff;
    background-color: #e7f3ff;
}

.flag-checkbox-group .item:nth-child(6):hover {
    border: 1px solid #d600d6;
    background-color: #fff1fa;
}

.flag-checkbox-group .item:nth-child(1).active {
    border: 1px solid #d5d5d5;
    background-color: #ececec;
}

.flag-checkbox-group .item:nth-child(2).active {
    border: 1px solid red;
    background-color: #ffedef;
}

.flag-checkbox-group .item:nth-child(3).active {
    border: 1px solid #ffa32f;
    background-color: #fff9ea;
}

.flag-checkbox-group .item:nth-child(4).active {
    border: 1px solid #00bc00;
    background-color: #e3ffdf;
}

.flag-checkbox-group .item:nth-child(5).active {
    border: 1px solid #00bdff;
    background-color: #e7f3ff;
}

.flag-checkbox-group .item:nth-child(6).active {
    border: 1px solid #d600d6;
    background-color: #fff1fa;
}

.flag-checkbox-group .item.grey:hover {
    border: 1px solid #BCBCBC !important;
    background-color: #f5f5f5 !important;
}

.flag-checkbox-group .item.grey.active {
    border: 1px solid #BCBCBC !important;
    background-color: #f5f5f5 !important;
}

/*tip圆形图标样式*/
.tip-icon {
    color: #fff;
    font-size: 12px;
    display: inline-block;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    line-height: 22px;
    background-color: red;
    text-align: center;
    position: relative;
    margin-left: 7px;
}

.tip-icon i.iconfont {
    position: absolute;
    color: red;
    bottom: 0;
    right: -4px;
    border-radius: 50%;
    width: 12px;
    height: 12px;
    line-height: 12px;
    text-align: center;
    font-size: 12px;
    padding: 1px;
    background-color: #fff;
    overflow: hidden;
}

/*图片可放大的鼠标样式*/
.open-img-preview {
    cursor: zoom-in;
}

/*全局自建checkbox独立复选样式*/
.luim-tickCheckbox {
    display: flex;
    background-color: #d2d2d2;
    color: #fff;
    width: 68px;
    height: 25px;
    line-height: 25px;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid #d2d2d2;
    cursor: pointer;
    margin: 4px;
}

.luim-tickCheckbox label {
    flex: 1;
    text-align: center;
    cursor: pointer;
}

.luim-tickCheckbox.checked {
    background-color: #0089ff;
    border: 1px solid #0089ff;
}

.luim-tickCheckbox .inner {
    width: 23px;
    height: 23px;
    line-height: 23px;
    background-color: #fff;
    color: #ffffff;
    font-size: 14px;
    overflow: hidden;
    text-align: center;
}

.luim-tickCheckbox.checked .inner,
.luim-tickCheckbox.checked:hover .inner {
    color: #0089ff;
}

.luim-tickCheckbox:hover .inner {
    color: #d2d2d2;
}

.luim-checkbox {
    display: inline-block;
    padding: 0 9px;
    height: 25px;
    background: #F4F4F4;
    color: #999999;
    line-height: 25px;
    margin: 0 3px 7px;
    text-align: center;
    border-radius: 4px;
}

.luim-checkbox.checked {
    color: #3F66E0;
    background: #F0F5FF;
}

.luim-checkfont {
    color: gray;
}

.luim-checkfont.checked {
    color: #0089ff;
}

.luim-checkbox label {
    flex: 1;
    text-align: center;
    cursor: pointer;
}

.contip {
    /*border: 1px solid #fee5b3;*/
    line-height: 24px;
}

/*店铺的checkbox样式开始*/
.tecStoreCheckBoxType[type="checkbox"] {
    width: 11px;
    height: 11px;
    display: inline-block;
    text-align: center;
    vertical-align: inherit;
    line-height: 11px;
    position: relative;
    font-family: SourceHanSansCN-Regular, SourceHanSansCN, sans-serif;
}

.tecStoreCheckBoxType[type="checkbox"]::before {
    content: "";
    position: absolute;
    top: -1px;
    left: -1px;
    background: #fff;
    width: 100%;
    height: 100%;
    border: 2px solid #CFD7E3;
    border-radius: 3px;
}

.tecStoreCheckBoxType[type="checkbox"]:checked::before {
    content: "";
    background: #4065E0 url(../images/store_checked.png) 1px 2px no-repeat;
    background-size: 90%;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    border: 2px solid #4065E0;
    color: #FFFFFF;
    font-size: 14px;
    font-weight: bold;
}

/*店铺的checkbox样式结束*/
/*复制区域样式以及区域鼠标指针样式*/
.copy-area {
    cursor: url('../images/copy_cursor.png'), auto !important;
}

.copy-cursor {
    cursor: url('../images/copy_cursor.png'), auto !important;
}

/* 根据快递单号查询备注明细 */
.global-get-express-remark {
    margin-left: 5px;
    cursor: pointer;
    vertical-align: middle;
}

/*阿里旺旺IM快捷按钮样式*/
.ww-light {
    overflow: hidden;
}

.ww-block {
    display: block;
    margin-top: 3px;
}

.ww-inline {
    display: inline-block;
    vertical-align: text-bottom;
}

.ww-light a {
    background-image: url("//img.alicdn.com/tps/i1/T15AD7FFFaXXbJnvQ_-130-60.gif");
    /*background-image: -webkit-image-set(url("//img.alicdn.com/tps/i1/T15AD7FFFaXXbJnvQ_-130-60.gif") 1x,url("//img.alicdn.com/tps/i4/T1Rsz7FPJaXXbZhKn7-520-240.gif") 4x);*/
    /*background-image: -moz-image-set(url("//img.alicdn.com/tps/i1/T15AD7FFFaXXbJnvQ_-130-60.gif") 1x,url("//img.alicdn.com/tps/i4/T1Rsz7FPJaXXbZhKn7-520-240.gif") 4x);*/
    /*background-image: -o-image-set(url("//img.alicdn.com/tps/i1/T15AD7FFFaXXbJnvQ_-130-60.gif") 1x,url("//img.alicdn.com/tps/i4/T1Rsz7FPJaXXbZhKn7-520-240.gif") 4x);*/
    /*background-image: -ms-image-set(url("//img.alicdn.com/tps/i1/T15AD7FFFaXXbJnvQ_-130-60.gif") 1x,url("//img.alicdn.com/tps/i4/T1Rsz7FPJaXXbZhKn7-520-240.gif") 4x);*/
    text-decoration: none !important;
    width: 20px;
    height: 20px;
    zoom: 1;
}

.ww-large a {
    width: 67px;
}

a.ww-offline {
    background-position: 0 -20px;
}

a.ww-mobile {
    background-position: 0 -40px;
}

.ww-small .ww-online {
    background-position: -80px 0;
}

.ww-small .ww-offline {
    background-position: -80px -20px;
}

.ww-small .ww-mobile {
    background-position: -80px -40px;
}

.ww-static .ww-online {
    background-position: -110px 0;
}

.ww-static .ww-offline {
    background-position: -110px -20px;
}

.ww-static .ww-mobile {
    background-position: -110px -40px;
}

.ww-light a span {
    display: none;
}

/*跳动的message图标*/
.beet-message {
    animation: beet .2s infinite alternate;
    -webkit-animation: beet .2s infinite alternate;
    top: -1px;
}

@keyframes beet {
    from {
        top: -1px;
    }

    to {
        top: -2px;
    }
}

@-webkit-keyframes beet {
    from {
        top: -1px;
    }

    to {
        top: -2px;
    }
}

.mortred {
    display: none;
}

.datagrid-body .card-table table {
    border: 0;
    margin: 0;
    border-collapse: collapse;
    border-spacing: 0;
}

.datagrid-body .card-table table td {
    border: none;
    border-bottom: rgb(223, 223, 223) 1px solid;
    line-height: 22px;
    vertical-align: top;
    padding: 5px;
}

.datagrid-body .card-table table tr:last-child td {
    border-bottom: none;
}

.datagrid-body .card-table table td img {
    margin: 0;
    width: 55px;
    display: block;
}

.datagrid-body .card-bottom {
    display: flex;
    height: 42px;
}

.layui-layer .layui-layer-btn .layui-layer-disabled {
    background-color: #e8e8e8 !important;
    border-color: #e2e2e2 !important;
    color: #aeaeae !important;
}

@keyframes change-color {
    0% {
        color: #ff000d;
    }

    25% {
        color: #fae000;
    }

    50% {
        color: #16ff00;
    }

    75% {
        color: #1d81ff;
    }

    100% {
        color: #ff4174;
    }
}

.samp-info-panel {
    border: 1px solid #dfdfdf;
    border-bottom: none;
    overflow: hidden;
    background-color: mintcream;
    height: 80px;
    transition-property: height;
    transition-duration: .6s;
}

.samp-info-panel.closed {
    display: none;
}

.samp-info-panel-wrap {
    padding: 10px;
    position: relative;
}

.samp-info-panel .refreshBtn {
    position: absolute;
    left: 50%;
    top: 10px;
    color: #fff;
    background-color: red;
    border-radius: 5px;
    width: 54px;
    text-align: center;
    height: 24px;
    line-height: 24px;
    margin-left: -100px;
}

.samp-info-panel .refreshBtn i {
    font-size: 14px;
}

.refundQueriesShowSampBtn {
    cursor: pointer;
    user-select: none;
    position: absolute;
    bottom: -1px;
    right: 0;
    padding: 4px 12px;
    color: #ffffff;
    background-color: #2774ce;
}

.refundQueriesShowSampBtn.closed {
    background-color: transparent;
    border-left: #dfdfdf 1px solid;
    border-top: #dfdfdf 1px solid;
    color: #2774ce;
}

.refundQueriesShowSampBtn .slidedown {
    position: absolute;
    left: 50%;
    bottom: -13px;
    width: 20px;
    height: 20px;
    margin-left: -10px;
    background-image: url(../images/slidedown_active.png);
    background-repeat: no-repeat;
    background-size: 20px;
    background-position: center;
}

.refundQueriesShowSampBtn.closed .slidedown {
    background-image: url(../images/slidedown.png);
}

.samp-info-panel h2 {
    line-height: 24px;
    font-size: 16px;
    margin-top: 10px;
}

.samp-info-panel h2:first-child {
    margin-top: 0;
}

.samp-info-panel table {
    background-color: #dfdfdf;
    -webkit-border-horizontal-spacing: 1px;
    -webkit-border-vertical-spacing: 1px;
}

.samp-info-panel table td {
    padding: 4px;
    background-color: #ffffff;
    border: none;
}

.samp-info-panel table th {
    padding: 4px;
    background-color: #F2F2F2;
    text-align: center;
    border: none;
}

.mutiple img {
    width: 300px;
    transition-duration: .3s;
    transition-property: width;
}

.mutiple.done img {
    width: 80px;
}

.lackGoodsButton,
.informBuyerStatusBtn {
    text-align: center;
    line-height: 24px;
    display: none;
    width: 46px;
    background-color: #787878;
    margin-left: 30px;
    color: #ffffff;
    border-radius: 4px;
    cursor: pointer;
}

.lackGoodsButton.lack_done {
    background-color: #ff6161;
    cursor: default;
}

.informBuyerStatusBtn.info_done {
    background-color: #ec4e03;
}

.send-tb-message-panel {
    padding: 10px 10px 50px;
    position: relative;
}

.send-tb-message-panel textarea {
    width: 100%;
    height: 174px;
    resize: none;
    line-height: 24px;
    font-size: 14px;
    border: none;
    outline: none;
    margin-top: 0;
    margin-bottom: 0;
}

.send-tb-message-panel textarea[readonly] {
    background-color: #eeeeee !important;
}

.send-tb-message-panel .message-switch-panel {
    position: absolute;
    bottom: 10px;
    left: 10px;
}

.send-tb-message-panel .message-switch-panel .message-switch-item {
    border: 1px #dfdfdf solid;
    display: inline-block;
    padding: 5px 12px;
    border-radius: 4px;
    cursor: pointer;
}

.send-tb-message-panel .message-switch-panel .message-switch-item.active {
    border: 1px #257ee6 solid;
    background-color: #257ee6;
    background-image: url(../images/selected.png);
    background-repeat: no-repeat;
    background-size: 20px;
    background-position: right bottom;
    color: #ffffff;
    padding-right: 16px;
}

/*通用备注侧边栏样式 开始*/
.luimCommonRemarkPanel {
    position: absolute;
    height: 100%;
    width: 400px;
    right: -405px;
    top: 0;
    z-index: 60000;
    transition-property: right;
    transition-duration: .6s;
    transition-timing-function: ease;
    padding-top: 49px;
    box-sizing: border-box;
}

.luimCommonRemarkPanel .remarkWrap {
    background-color: #ffffff;
    border-left: 1px #dfdfdf solid;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: -2px 0 5px 1px rgba(51, 51, 51, 0.6);
}

.luimCommonRemarkPanel .panel-title {
    font-size: 16px;
    font-weight: bold;
    line-height: 22px;
    padding: 10px;
    height: 40px;
    display: none;
}

.luimCommonRemarkPanel .toolbar {
    height: 80px;
    display: flex;
    padding: 10px;
    box-sizing: content-box;
    position: relative;
}

.luimCommonRemarkPanel .toolbar .luimCommonRemarkTextarea {
    flex: 1;
}

.luimCommonRemarkPanel .toolbar .luimCommonRemarkTextarea textarea {
    width: 100%;
    resize: none;
    height: 100%;
    outline: none;
    padding: 10px;
}

.luimCommonRemarkPanel .toolbar .luimCommonRemarkBtn {
    width: 80px;
    height: 80px;
    background-color: #008bee;
    color: #ffffff;
    line-height: 60px;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition-property: all;
    transition-duration: 1s;
}

.luimCommonRemarkPanel .toolbar .luimCommonRemarkBtn.publishing {
    line-height: 30px;
    background-color: #2f7097;
}

.luimCommonRemarkPanel .toolbar .luimCommonRemarkBtn img {
    margin: 10px auto 0;
    height: 0;
    display: block;
    transition-property: all;
    transition-duration: 1s;
}

.luimCommonRemarkPanel .toolbar .luimCommonRemarkBtn.publishing img {
    display: block;
    height: 40px;
}

.luimCommonRemarkPanel .toolbar .luimCommonRemarkBtn:hover {
    background-color: #0079dc;
}

.luimCommonRemarkPanel .toolbar .luimCommonRemarkBtn.publishing:hover {
    background-color: #2f7097;
}

.luimCommonRemarkPanel .toolbar .remarkErrorInfo {
    width: 300px;
    position: absolute;
    height: 80px;
    line-height: 80px;
    text-align: center;
}

.luimCommonRemarkPanel .lists-wrap {
    margin: 10px;
    overflow: auto;
    flex: 1;
    border: 1px #dfdfdf solid;
    border-top: 2px red solid;
    border-radius: 4px;
}

.luimCommonRemarkPanel .lists-wrap .empty {
    margin-top: 20px;
    text-align: center;
    color: #5f5f5f;
}

.luimCommonRemarkPanel .lists-wrap .loading {
    top: 0;
}

/*滚动条的宽度*/
.luimCommonRemarkPanel .lists-wrap::-webkit-scrollbar {
    width: 4px;
    height: 4px;
}

/*外层轨道。可以用display:none让其不显示，也可以添加背景图片，颜色改变显示效果*/
.luimCommonRemarkPanel .lists-wrap::-webkit-scrollbar-track {
    width: 6px;
    background-color: #abdeff;
    -webkit-border-radius: 2em;
    -moz-border-radius: 2em;
    border-radius: 2em;
}

/*滚动条的设置*/
.luimCommonRemarkPanel .lists-wrap::-webkit-scrollbar-thumb {
    background-color: #0096ff;
    background-clip: padding-box;
    min-height: 28px;
    -webkit-border-radius: 2em;
    -moz-border-radius: 2em;
    border-radius: 2em;
}

/*滚动条移上去的背景*/
.luimCommonRemarkPanel .lists-wrap::-webkit-scrollbar-thumb:hover {
    background-color: #006acd;
}

.luimCommonRemarkPanel .lists {
    padding: 5px 10px 0;
}

.luimCommonRemarkPanel .lists .item {
    /*border-bottom: 1px solid #dfdfdf;*/
    /*padding-bottom: 15px;*/
    margin-top: 5px;
}

.luimCommonRemarkPanel .lists .item:last-child {
    border-bottom: none;
}

.luimCommonRemarkPanel .lists .item .avatar {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    z-index: 10;
    padding-bottom: 2px;
    background-color: #fff;
}

.luimCommonRemarkPanel .lists .item .avatar img {
    /*border-radius: 50%;*/
    height: 40px;
    width: 40px;
    /*box-shadow: 0 0 4px 0 #5f5f5f;*/
}

.luimCommonRemarkPanel .lists .item .info {
    display: inline-block;
    vertical-align: top;
    margin-left: 6px;
    width: 300px;
}

.luimCommonRemarkPanel .lists .item .info .nickname {
    font-size: 14px;
    color: #008bee;
    font-weight: bold;
}

.luimCommonRemarkPanel .lists .item .body {
    display: block;
    /* margin-top: 5px; */
    line-height: 20px;
    /* border-top: 1px solid #f0f0f0; */
    /* padding-top: 8px; */
    /* padding-left: 40px; */
    padding-bottom: 15px;
    position: relative;
}

.luimCommonRemarkPanel .lists .item .body .operation {
    color: #848484;
    font-size: 12px;
}

.luimCommonRemarkPanel .lists .item .body .operation span {
    margin-left: 8px;
}

.luimCommonRemarkPanel .lists .item .body:after {
    content: '';
    position: absolute;
    top: 0;
    left: -30px;
    border-left: 1px #dfdfdf dashed;
    height: 100%;
}

.luimCommonRemarkPanel .lists .item:last-child .body:after {
    display: none;
}

.luimCommonRemarkPanel .lists .item .body.notify ul {
    margin-left: 0;
    margin-top: 2px;
    list-style-type: none;
}

.luimCommonRemarkPanel .lists .item .body.notify ul li {
    line-height: 22px;
}

.luimCommonRemarkPanel .lists .item .body.comment ul {
    display: none;
}

.luimCommonRemarkPanel .bottom {
    height: 40px;
    line-height: 40px;
    padding-left: 10px;
}

.luimCommonRemarkPanel .bottom button {
    padding: 0 5px;
}

.luimCommonRemarkPanel.opened {
    right: 0;
}

.luimCommonRemarkPanel .loading {
    position: absolute;
    top: 36px;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    background-image: url(../images/loading.svg);
    background-size: 100px;
    background-repeat: no-repeat;
    background-position: center;
}

.luimCommonRemarkPanel .errorInfoWrap {
    position: absolute;
    top: 36px;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
}

.luimCommonRemarkPanel .errorInfoWrap .errorInfo {
    position: absolute;
    top: 50%;
    width: 100%;
    height: 280px;
    margin-top: -300px;
    background-image: url(../images/error.png);
    background-size: 280px;
    background-repeat: no-repeat;
    background-position: top;
    padding-top: 250px;
    font-size: 16px;
    color: #ff634e;
    text-align: center;
}

/*通用备注侧边栏样式 结束*/
/*售后对话框通用样式 开始*/
.afterSalesRefundSampRefundDialogPanel {
    display: flex;
    flex-flow: column;
    height: 100%;
}

.afterSalesRefundSampRefundDialogList {
    flex: 1;
    width: 100%;
    overflow: auto;
    padding: 10px;
    border-bottom: #dfdfdf 1px solid;
    position: relative;
}

.afterSalesRefundSampRefundDialogList .refundMessageItem {
    display: flex;
    margin-bottom: 15px;
}

.afterSalesRefundSampRefundDialogList .refundMessageItem.right {
    display: flex;
    flex-direction: row-reverse;
}

.afterSalesRefundSampRefundDialogList .refundMessageItem .refundMessageItemUserTitle {
    padding-top: 5px;
    line-height: 20px;
    margin-right: 10px;
}

.afterSalesRefundSampRefundDialogList .refundMessageItem.right .refundMessageItemUserTitle {
    text-align: right;
    margin-left: 10px;
}

.afterSalesRefundSampRefundDialogList .refundMessageItem .refundMessageItemUserTitle .refundMessageItemUserTitleName {
    font-size: 14px;
}

.afterSalesRefundSampRefundDialogList .refundMessageItem .refundMessageItemContent {
    background-color: #FFFFFF;
    margin-left: 10px;
    border-radius: 10px;
    padding: 10px 15px 6px 15px;
    position: relative;
    border: 1px solid #dfdfdf;
    box-shadow: 1px 1px 4px 0 rgba(171, 171, 171, 0.2);
    max-width: 340px;
}

.afterSalesRefundSampRefundDialogList .refundMessageItem.right .refundMessageItemContent {
    margin-right: 10px;
    background-color: #eaf6ff;
}

.afterSalesRefundSampRefundDialogList .refundMessageItem .refundMessageItemContent:before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background-image: url(../images/speech_arrow.png);
    background-repeat: no-repeat;
    background-size: 20px;
    left: -13px;
    top: 8px;
}

.afterSalesRefundSampRefundDialogList .refundMessageItem.right .refundMessageItemContent:before {
    background-image: url(../images/speech_arrow_right.png);
    right: -13px;
    left: auto;
}

.afterSalesRefundSampRefundDialogList .refundMessageItem .refundMessageItemContent .refundMessageItemContentText {
    line-height: 22px;
    white-space: pre-wrap;
}

.afterSalesRefundSampRefundDialogList .refundMessageItem .refundMessageItemContent .refundMessageItemContentImg {
    margin-top: 2px;
    display: flex;
    flex-flow: wrap;
}

.afterSalesRefundSampRefundDialogList .refundMessageItem .refundMessageItemContent .refundMessageItemContentImg .refundMessageItemContentImgItem {
    height: 55px;
    width: 55px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    margin: 3px 6px 3px 0;
    cursor: pointer;
}

.afterSalesRefundSampRefundDialogList .refundMessageNotice {
    border-top: 1px #dfdfdf solid;
    height: 40px;
    line-height: 44px;
    text-align: center;
    color: red;
    width: 90%;
    margin: 20px auto 0;
}

.afterSalesRefundSampRefundDialogList .refundMessageLoading {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    background-image: url(../images/loading.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100px;
}

.afterSalesRefundSampRefundDialogFileUploader {
    height: 50px;
    padding: 10px;
    overflow: hidden;
}

.afterSalesRefundSampRefundDialogFileUploader .webuploader-pick {
    background: #008bee;
    padding: 0 15px;
    border-radius: 6px;
    height: 30px;
    line-height: 30px;
    transition-property: background;
    transition-duration: 1s;
}

.afterSalesRefundSampRefundDialogFileUploader .webuploader-pick-hover {
    background: #32a3ff;
}

.afterSalesRefundSampRefundDialogSolveFlagLink {
    position: absolute;
    right: 20px;
    bottom: 195px;
    display: none;
}

.afterSalesRefundSampRefundDialogSendPanel {
    height: 180px;
    padding: 0 10px 10px 10px;
}

.afterSalesRefundSampRefundDialogSendPanel fieldset {
    height: 100%;
    padding: 5px 10px;
}

.afterSalesRefundSampRefundDialogSendPanel fieldset legend {
    margin-left: 10px;
    padding-left: 5px;
    padding-right: 5px;
}

.afterSalesRefundSampRefundDialogSendPanel textarea {
    width: 100%;
    height: 66px;
    padding: 5px 8px;
    line-height: 18px;
    font-size: 12px;
    resize: none;
}

.imagesUploaderDiv {
    flex: 1;
}

.imagesUploaderDiv .imagesUploaderBtn {
    width: auto;
    border: none;
    background: #fff;
    cursor: auto;
}

.imagesUploaderDiv .imagesUploaderBtn .webuploader-pick {
    background-color: rgba(232, 234, 237, 0.5);
    color: #8F93A7;
    border: 1px solid #E8EAED;
    border-radius: 2px;
    font-size: 14px;
    cursor: pointer;
    margin: 0;
    padding: 0 15px;
    line-height: 32px;
}

.imagesUploaderDiv .imageItem {
    width: 60px;
    height: 60px;
    display: inline-block;
    border: 1px #dfdfdf solid;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border-radius: 4px;
    margin-right: 4px;
    position: relative;
    vertical-align: middle;
}

.imageRefundQueriesPickerPanel .imagesUploaderDiv .imageItem {
    margin-right: 10px;
}

.imagesUploaderDiv .imageItem .close {
    position: absolute;
    top: -9px;
    right: -9px;
    z-index: 1;
    width: 16px;
    height: 16px;
    line-height: 15px;
    text-align: center;
    font-size: 14px;
    border: 1px solid #999999;
    border-radius: 50%;
    background-color: #fff;
    color: #000000;
    cursor: pointer;
    display: none;
}

.imagesUploaderDiv .imageItem:hover .close {
    display: block;
}

.imagesUploaderDiv .imageItem.imageUploader {
    overflow: hidden;
    border-color: #008bee;
    background-color: #ffffff;
}

.imagesUploaderDiv .imageItem.imageUploader:hover {
    border-color: #32a3ff;
    background-color: #eff4ff;
}

.imagesUploaderDiv .imageItem.imageUploader .webuploader-pick {
    background-image: url(../images/upload_image_add.png);
    background-size: 20px;
    background-color: #ffffff;
    background-position: 19px 8px;
    background-repeat: no-repeat;
    color: #4e4e4e;
    border-color: #008bee;
    text-align: center;
    line-height: 88px;
    width: 58px;
    height: 60px;
    padding: 0;
    border-radius: unset;
    transition-property: background-color;
    transition-duration: 1s;
}

.imagesUploaderDiv .imageItem.imageUploader .webuploader-pick-hover {
    border-color: #32a3ff;
    background-color: #eff4ff;
}

.afterSalesRefundSampRefundDialogSendPanel .afterSalesRefundSampRefundDialogSendController {
    display: flex;
    margin-top: 6px;
}

.afterSalesRefundSampRefundDialogSendPanel .afterSalesRefundSampRefundDialogSendController .buttons {
    width: 210px;
    margin-top: 14px;
    text-align: right;
}

.afterSalesRefundSampRefundDialogSendPanel .afterSalesRefundSampRefundDialogSendController .buttons .luim-btn {
    margin: 4px;
    display: inline-block;
    height: 28px;
}

.progressbar-value,
.progressbar-value .progressbar-text {
    background-color: #2774ce !important;
    color: #fff !important;
}

/*售后对话框通用样式 结束*/
/*销售单倒计时样式*/
#resupplyUuidTimeOutRunPanel {
    height: 80px;
    color: dodgerblue;
    line-height: 100px;
    cursor: default;
    text-align: center;
    position: absolute;
    margin-left: -165px;
    font-family: fantasy;
    font-size: 30px;
    opacity: 0.25;
    width: 100px;
    top: 0;
    right: 0;
}

#resupplyUuidTimeOutRunPanel.dodgerblue {
    color: dodgerblue;
}

#resupplyUuidTimeOutRunPanel.orange {
    color: orange;
}

#resupplyUuidTimeOutRunPanel.orangered {
    color: orangered;
}

#resupplyUuidTimeOutRunPanel.red {
    color: red;
}

#resupplyUuidTimeOutRunPanel.end {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: unset;
    margin-left: 0;
    line-height: 600px;
    font-size: 140px;
    opacity: 0.25;
}

/*售后详情样式*/
.refundQueriesDetailTopBar {
    height: 40px;
    width: 100%;
    display: block;
    border-bottom: 1px solid #dfdfdf;
    border-left: 1px solid #dfdfdf;
    line-height: 40px;
    padding-left: 20px;
    position: fixed;
    z-index: 10;
    background-color: #fff;
}

.refundQueriesDetailBottomBar {
    height: 40px;
    width: 100%;
    display: block;
    border-left: 1px solid #dfdfdf;
    border-top: 1px solid #dfdfdf;
    line-height: 40px;
    padding-left: 20px;
    position: fixed;
    bottom: 0;
    z-index: 10;
    background-color: #fff;
}

.refundQueriesDetailWrap {
    background-color: #ffffff;
    display: flex;
    padding-bottom: 40px;
}

.refundQueriesDetailInfoWrap {
    flex: 1;
    padding: 10px 10px 0;
    margin-right: 754px;
    margin-top: 40px;
    background-color: #dfdfdf;
}

.refundQueriesDetailInfoRemarkPanel {
    width: 756px;
    background-color: #fff;
    padding: 10px;
    position: fixed;
    right: 0;
    height: calc(100% - 140px);
    top: 120px;
    box-sizing: content-box;
    z-index: 1000;
}

.refundQueriesDetailInfoRemarkPanel.luimCommonRemarkPanel .remarkTabBar {
    border-bottom: 1px solid #dfdfdf;
    position: absolute;
    top: 8px;
    left: 0;
    z-index: 11;
    height: 30px;
    width: 100%;
    display: flex;
    padding: 0 10px;
    background: #fff;
}

.refundQueriesDetailInfoRemarkPanel.luimCommonRemarkPanel .remarkTabBar div {
    text-align: center;
    margin: 2px 15px -2px 15px;
    width: 80px;
    color: #6392ca;
    cursor: pointer;
}

.refundQueriesDetailInfoRemarkPanel.luimCommonRemarkPanel .remarkTabBar div.active {
    color: #2774ce;
    border-bottom: 3px solid #2774ce;
    font-weight: bold;
    font-size: 14px;
    margin: 0 15px -2px 15px;
}

.refundQueriesDetailInfoRemarkPanel.luimCommonRemarkPanel .remarkWrap {
    box-shadow: unset;
    border: none;
    padding-top: 30px;
    position: relative;
}

.refundQueriesDetailInfoRemarkPanel.luimCommonRemarkPanel .lists {
    padding: 15px;
}

.refundQueriesDetailInfoRemarkPanel.luimCommonRemarkPanel .lists .item .info {
    width: calc(100% - 50px);
}

.refundQueriesDetailInfoRemarkPanel.luimCommonRemarkPanel .toolbar {
    display: block;
    height: 20px;
    position: absolute;
    right: 20px;
    z-index: 11;
}

.refundQueriesDetailInfoRemarkPanel.luimCommonRemarkPanel .toolbar .publishBtn {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 5px;
    background-color: #1491ff;
    color: #fff;
    cursor: pointer;
}

.refundQueriesDetailInfoRemarkPanel.luimCommonRemarkPanel .toolbar .refreshBtn {
    cursor: pointer;
    background-color: #ff5110;
    color: #fff;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: block;
    text-align: center;
    line-height: 30px;
}

.refundQueriesDetailInfoRemarkPanel.luimCommonRemarkPanel .toolbar .refreshBtn em {
    font-size: 22px;
    line-height: 31px;
}

.refundQueriesDetailRemarkPanel .luimCommonRemarkTextarea {
    width: 100%;
    border: 1px solid #dfdfdf;
    padding: 10px;
    position: relative;
}

.refundQueriesDetailRemarkPanel .luimCommonRemarkTextarea.switchOn {
    height: 120px;
    width: 346px;
}

.refundQueriesDetailRemarkPanel .luimCommonRemarkTextarea textarea {
    width: 100%;
    padding: 0;
    height: 70px;
    resize: none;
    border: none;
    outline: none;
    line-height: 15px;
}

.refundQueriesDetailRemarkPanel .luimCommonRemarkTextarea textarea::-webkit-scrollbar {
    width: 4px;
    height: 4px;
}

.refundQueriesDetailInfoItem.sampInfo .detailInfoProblemContent {
    border-radius: 4px;
    border: 2px solid #6d90fd;
    color: #3F66E0;
    font-size: 14px;
    display: inline-block;
    padding: 1px 5px;
    margin: 3px;
}

.refundQueriesDetailInfoItem.sampInfo .detailInfoProblemContent:nth-of-type(1) {
    margin-left: 0;
}

.refundQueriesDetailInfoItem.sampInfo .detailInfoProblemContent span {
    font-size: 15px;
}

.informationOfFreightSourceList_problemDom {
    background: #F8F8F8;
    border-radius: 5px;
    display: inline-block;
    padding: 5px;
    margin: 10px 0;
    max-width: 93%;
}

.informationOfFreightSourceList_problemDom .problemItem {
    border-radius: 4px;
    border: 2px solid #6d90fd;
    color: #3F66E0;
    font-size: 14px;
    display: inline-block;
    padding: 1px 5px;
    margin: 3px;
    background: #EAEFFF;
    cursor: pointer;
}

.informationOfFreightSourceList_problemDom .problemItem span {
    color: #A6ACC2;
}

.informationOfFreightSourceList_problemDom .problemItem .informationOfFreightSourceList_imgDom.tip-content {
    width: auto;
    top: 0;
    left: 0;
    display: flex;
    visibility: hidden;
    cursor: auto;
}

.informationOfFreightSourceList_problemDom .problemItem .informationOfFreightSourceList_imgDom.tip-content:after {
    width: auto;
    height: auto;
    position: unset;
    top: unset;
    left: unset;
    bottom: unset;
}

.informationOfFreightSourceList_problemDom .problemItem .informationOfFreightSourceList_imgDom.tip-content.isShow {
    visibility: unset;
}

.informationOfFreightSourceList_problemDom .problemItem .informationOfFreightSourceList_imgWrap {
    margin-left: 10px;
}

.informationOfFreightSourceList_problemDom .problemItem .informationOfFreightSourceList_imgWrap.noPic {
    margin: auto;
}

.informationOfFreightSourceList_problemDom .problemItem .informationOfFreightSourceList_imgWrap:nth-of-type(1) {
    margin-left: 0;
}

.informationOfFreightSourceList_problemDom .problemItem .informationOfFreightSourceList_imgWrap:nth-last-of-type(1) {
    margin-right: 0;
}

.informationOfFreightSourceList_problemDom .problemItem .informationOfFreightSourceList_imgItem {
    width: 80px;
    height: 80px;
    position: relative;
}

.informationOfFreightSourceList_problemDom .problemItem .informationOfFreightSourceList_imgItem .shadeDom {
    position: absolute;
    left: 0;
    top: 0;
    width: 80px;
    height: 80px;
    background: rgba(0, 0, 0, .2);
}

.informationOfFreightSourceList_problemDom .problemItem .informationOfFreightSourceList_imgItem .shadeDom .iconfontWrap {
    height: 50%;
    position: absolute;
    bottom: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 10px 4px;
    align-items: end;
}

.informationOfFreightSourceList_problemDom .problemItem .informationOfFreightSourceList_imgItem .shadeDom .iconfont {
    color: #FFFFFF;
    font-size: 16px;
    cursor: pointer;
}

.informationOfFreightSourceList_problemDiv {
    display: flex;
    justify-content: space-between;
    padding-bottom: 15px;
    padding-right: 10px;
    position: relative;
}

.informationOfFreightSourceList_problemDiv .informationOfFreightSourceList_operation {
    width: 400px;
    margin-right: 40px;
}

.informationOfFreightSourceList_imgList {
    height: 100px;
    margin-top: 10px;
    visibility: hidden;
}

.informationOfFreightSourceList_imgList.isShow {
    visibility: unset;
}

.informationOfFreightSourceList_btnDom {
    display: flex;
    justify-content: end;
}

.informationOfFreightSourceList_btnDom button {
    width: 60px;
    height: 30px;
    color: #ffffff;
    background-color: #3F66E0;
    margin: 5px 5px 0;
    padding: 0 13px;
    border: 1px solid #3F66E0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.informationOfFreightSourceList_btnDom button:hover {
    opacity: .9;
    text-decoration: none;
}

.informationOfFreightSourceList_btnDom button.clearBtn {
    border: 1px solid #EDF0F4;
    color: #8F93A7;
    background: #FFFFFF;
}

.informationOfFreightSourceList_problemDiv .informationOfFreightSourceList_operation input[name='informationOfFreightSourceList_remark'] {
    width: 100%;
    margin-top: 10px;
    height: 30px;
    border: 1px solid #E8EAED;
    padding-left: 5px;
}

.informationOfFreightSourceList_problemDiv .informationOfFreightSourceList_operation input[name='informationOfFreightSourceList_remark']:focus {
    outline-color: rgba(63, 102, 224, .5);
}

.informationOfFreightSourceList_problemDiv .informationOfFreightSourceList_operationLog {
    position: absolute;
    right: 0;
    top: -30px;
}

.informationOfFreightSourceList_problemDiv .informationOfFreightSourceList_operationLog .labelLogLoadingDom {
    width: 690px;
    height: 215px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.informationOfFreightSourceList_problemDiv .informationOfFreightSourceList_operationLog .informationOfFreightSourceList_presentOrders {
    cursor: pointer;
}

.informationOfFreightSourceList_problemDiv .informationOfFreightSourceList_operationLog .informationOfFreightSourceList_presentOrders[disabled] {
    cursor: no-drop;
}

.informationOfFreightSourceList_problemDiv .informationOfFreightSourceList_operationLog .logTable {
    position: relative;
    -webkit-border-horizontal-spacing: 0;
    -webkit-border-vertical-spacing: 0;
    width: 690px;
}

.informationOfFreightSourceList_problemDiv .informationOfFreightSourceList_operationLog .thead {
    position: absolute;
    top: 0;
    left: 0;
}

.informationOfFreightSourceList_problemDiv .informationOfFreightSourceList_operationLog .thead tr th {
    text-align: center;
    background: #F8F8F8;
    color: #8F93A7;
    padding: 10px 0;
    border-left: 1px solid #F1F2F5;
    border-top: 1px solid #F1F2F5;
    border-bottom: 1px solid #F1F2F5;
}

.informationOfFreightSourceList_problemDiv .informationOfFreightSourceList_operationLog .tbody {
    position: absolute;
    top: 42px;
    height: 188px;
    overflow: auto;
}

.informationOfFreightSourceList_problemDiv .informationOfFreightSourceList_operationLog .tbody td {
    border-left: 1px solid #F1F2F5;
    border-bottom: 1px solid #F1F2F5;
    text-align: center;
    padding: 5px;
}

/*外层轨道。可以用display:none让其不显示，也可以添加背景图片，颜色改变显示效果*/
.refundQueriesDetailRemarkPanel .luimCommonRemarkTextarea textarea::-webkit-scrollbar-track {
    width: 6px;
    background-color: #abdeff;
    -webkit-border-radius: 2em;
    -moz-border-radius: 2em;
    border-radius: 2em;
}

/*滚动条的设置*/
.refundQueriesDetailRemarkPanel .luimCommonRemarkTextarea textarea::-webkit-scrollbar-thumb {
    background-color: #0096ff;
    background-clip: padding-box;
    min-height: 18px;
    -webkit-border-radius: 2em;
    -moz-border-radius: 2em;
    border-radius: 2em;
}

/*滚动条移上去的背景*/
.refundQueriesDetailRemarkPanel .luimCommonRemarkTextarea textarea::-webkit-scrollbar-thumb:hover {
    background-color: #006acd;
}

.refundQueriesDetailRemarkPanel .luimCommonRemarkTextarea>.quickMessage {
    position: absolute;
    bottom: 0;
    left: 10px;
}

.refundQueriesDetailRemarkPanel .select2.select2-container .select2-selection--single {
    border: none;
}

.refundQueriesDetailRemarkPanel .select2-is-in .select2.select2-container .select2-selection--single {
    border: 1px solid #dfdfdf;
}

.refundQueriesDetailRemarkPanel .select2.select2-container {
    width: 120px;
}

.refundQueriesDetailRemarkPanel .select2-container--default.select2-container--open.select2-container--below .select2-selection--single {
    box-shadow: inset 0 0 0 1px #aaa;
}

.refundQueriesDetailRemarkPanel .select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: #2d2d2d;
}

.select2-container--open .select2-dropdown--below.quickMessage {
    min-width: 300px;
    margin-top: -1px;
    border-top: 1px #aaa solid;
}

.select2-container--open .select2-dropdown--below.quickMessage .select2-results__option {
    height: 28px;
    overflow: hidden;
}

.refundQueriesDetailRemarkPanel .luimCommonRemarkImages {
    margin-top: 8px;
    display: flex;
    flex-wrap: wrap;
}

.refundQueriesDetailRemarkPanel .luimCommonRemarkImages .luimCommonRemarkImagesItem {
    width: 66px;
    height: 66px;
    border: 1px solid #dfdfdf;
    background-position: center;
    background-size: cover;
    display: inline-block;
    position: relative;
    margin: 3px 5px;
}

.refundQueriesDetailRemarkPanel .luimCommonRemarkImages .luimCommonRemarkImagesItem .close {
    position: absolute;
    right: -10px;
    top: -10px;
    width: 18px;
    height: 18px;
    text-align: center;
    background-color: #000;
    color: #fff;
    border-radius: 50%;
    line-height: 20px;
    cursor: pointer;
    display: none;
    z-index: 100;
}

.refundQueriesDetailRemarkPanel .luimCommonRemarkImages .luimCommonRemarkImagesItem:hover .close {
    display: block;
}

.refundQueriesDetailRemarkPanel .luimCommonRemarkImagesUploader {
    text-align: center;
    width: 66px;
    height: 66px;
    border: 1px solid #dfdfdf;
    padding-top: 2px;
    cursor: pointer;
    margin: 3px 5px;
}

.refundQueriesDetailRemarkPanel .luimCommonRemarkImagesUploader .iconfont {
    font-size: 28px;
}

.refundQueriesDetailRemarkPanel .luimCommonRemarkImagesUploader .luimCommonRemarkImagesUploaderTxt {
    display: block;
    margin-top: -5px;
}

.refundQueriesDetailInfoRemarkPanel.luimCommonRemarkPanel .photosPanel {
    display: flex;
    flex-wrap: wrap;
}

.refundQueriesDetailInfoRemarkPanel.luimCommonRemarkPanel .photosPanel img {
    width: 80px;
    height: 80px;
    margin-right: 10px;
    margin-top: 10px;
    cursor: pointer;
}

.refundQueriesDetailInfoRemarkPanel.luimCommonRemarkPanel .loading {
    top: 0;
    background-image: url(../images/rosary_loading.svg);
}

.refundQueriesDetailInfoRemarkPanel.luimCommonRemarkPanel .errorInfoWrap {
    top: 0;
}

.refundQueriesDetailInfoRemarkPanel.luimCommonRemarkPanel .bottom {
    display: none;
}

.refundQueriesDetailInfoItem {
    display: block;
    background-color: #ffffff;
    padding: 50px 25px 25px;
    position: relative;
    margin-bottom: 10px;
    min-height: 180px;
}

.refundQueriesDetailInfoItem.errorPanel {
    min-height: unset;
    padding-bottom: 20px;
}

.refundQueriesDetailInfoItem .empty {
    text-align: center;
    font-size: 16px;
}

.refundQueriesDetailInfoItem .loading {
    position: absolute;
    top: 40px;
    left: 0;
    width: 100%;
    height: calc(100% - 40px);
    background-color: #ffffff;
    background-image: url(../images/LoadingUV.gif);
    background-size: 100px;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 20;
}

.refundQueriesDetailInfoItem.expressInfo .loading {
    top: 0;
    height: 100%;
}

.refundQueriesDetailInfoItem>.title,
.refundQueriesDetailInfoItem .toolbar {
    position: absolute;
    top: 15px;
}

.refundQueriesDetailInfoItem>.title {
    left: 25px;
    border-left: 7px solid #101010;
    height: 20px;
    line-height: 20px;
    padding-left: 15px;
}

.refundQueriesDetailInfoItem .toolbar {
    right: 20px;
}

.refundQueriesDetailInfoItem .toolbar span {
    cursor: pointer;
}

.refundQueriesDetailInfoItem .productInfoPanel {
    display: flex;
    height: 70px;
    margin-top: -10px;
    margin-bottom: 10px;
}

.refundQueriesDetailInfoItem .productInfoPanel .productInfoImage {
    width: 70px;
}

.refundQueriesDetailInfoItem .productInfoPanel .productInfoTitle {
    flex: 1;
    display: flex;
    flex-direction: column;
    margin-left: 20px;
}

.refundQueriesDetailInfoItem .productInfoPanel .productInfoTitle .productInfoTypeSize {
    height: 32px;
    line-height: 40px;
    color: #2774ce;
}

.refundQueriesDetailInfoItem .productInfoPanel .productInfoTitle .productInfoName {
    flex: 1;
    line-height: 28px;
    font-size: 12px;
}

.refundQueriesDetailInfoItem .fieldItem {
    display: inline-block;
    width: 240px;
    height: 26px;
    line-height: 26px;
    color: #717171;
}

.refundQueriesDetailInfoItem .fieldItem span {
    color: #000;
    margin-left: 10px;
}

.refundQueriesDetailInfoItem.orderInfo .fieldItem {
    width: 220px;
    min-width: 220px;
}

.refundQueriesDetailInfoItem .refreshBtn {
    padding: 5px;
}

.refundQueriesDetailInfoItem .refreshBtn em {
    margin-right: 4px;
}

.refundQueriesDetailInfoItem.sampInfo {
    padding: 50px 10px 10px;
}

.refundQueriesDetailInfoItem .sampItem {
    border: 1px solid #86c2f7;
    padding: 10px 15px;
    position: relative;
    margin-bottom: 5px;
    overflow: hidden;
    background-color: #f5fcff;
}

.refundQueriesDetailInfoItem .sampItem.closed {
    height: 40px;
    padding: 5px 15px;
}

.colorRed {
    color: red;
}

.refundQueriesDetailInfoItem .sampItem.closed .toolbar {
    bottom: 10px;
}

.refundQueriesDetailInfoItem .sampItem.tmAfterSales {
    border-color: #86c2f7;
    background-color: #f8fbff;
}

.refundQueriesDetailInfoItem .sampItem.tmAfterSales .sampItemLine .title {
    color: #2774ce;
}

.refundQueriesDetailInfoItem .sampItem.ikooriAfterSales {
    border-color: #ffd7a0;
    background-color: #fffbf5;
}

.refundQueriesDetailInfoItem .sampItem.ikooriAfterSales .sampItemLine .title {
    color: #ce7600;
}

.refundQueriesDetailInfoItem .sampItem.wsAfterSales {
    border-color: #C6b66e;
    background-color: #f6ffe6;
}

.refundQueriesDetailInfoItem .sampItem.fxAfterSales {
    border-color: #16c985;
    background-color: #e7f6f0;
}

.refundQueriesDetailInfoItem .sampItem.qlAfterSales {
    border-color: #f68125;
    background-color: #fff4e5;
}

.refundQueriesDetailInfoItem .sampItem.dsAfterSales {
    border-color: #4065E0;
    background-color: #D1DBFF;
}

.refundQueriesDetailInfoItem .sampItem.dsAfterSales .sampItemLine .title {
    color: #4065E0;
}

.refundQueriesDetailInfoItem .sampItem.zsAfterSales {
    border-color: #4065E0;
    background-color: #D1DBFF;
}

.refundQueriesDetailInfoItem .sampItem.zsAfterSales .sampItemLine .title {
    color: #4065E0;
}

.refundQueriesDetailInfoItem .sampItem.lsAfterSales {
    border-color: #16c985;
    background-color: #e7f6f0;
}

.refundQueriesDetailInfoItem .sampItem.ywAfterSales {
    border-color: #ee634a;
    background-color: #fff3f1;
}

.refundQueriesDetailInfoItem .sampItem.ywAfterSales .sampItemLine .title {
    color: #ee634a;
}

.refundQueriesDetailInfoItem .sampItem.sgAfterSales {
    border-color: #56427d;
    background-color: #f6f1ff;
}

.refundQueriesDetailInfoItem .sampItem.sgAfterSales .sampItemLine .title {
    color: #56427d;
}

.refundQueriesDetailInfoItem .sampItem.jznAfterSales {
    border-color: #897fd2;
    background-color: #f2f0fe;
}

.refundQueriesDetailInfoItem .sampItem.jznAfterSales .sampItemLine .title {
    color: #897fd2;
}

.refundQueriesDetailInfoItem .sampItem.cmsAfterSales {
    border-color: #897fd2;
    background-color: #f2f0fe;
}

.refundQueriesDetailInfoItem .sampItem.cmsAfterSales .sampItemLine .title {
    color: #897fd2;
}

.refundQueriesDetailInfoItem .sampItem.llAfterSales .sampItemLine .title{
    color: #BE1179;
}

.refundQueriesDetailInfoItem .sampItem.beAfterSales .sampItemLine .title {
    color: #1c8c91;
}

.refundQueriesDetailInfoItem .sampItem.fyAfterSales {
    border-color: #BE1179;
    background-color: #f5d7f3;
}

.refundQueriesDetailInfoItem .sampItem.fyAfterSales .sampItemLine .title{
    color: #BE1179;
}

.refundQueriesDetailInfoItem .sampItem.jmytAfterSales {
    border-color: #04833c;
    background-color: #dbefe5;
}

.refundQueriesDetailInfoItem .sampItem.jmytAfterSales .sampItemLine .title {
    color: #04833c;
}

.refundQueriesDetailInfoItem .sampItem.msAfterSales {
    border-color: #8557f3;
    background-color: #f5efff;
}

.refundQueriesDetailInfoItem .sampItem.wsAfterSales .sampItemLine .title {
    color: #c86900;
}

.refundQueriesDetailInfoItem .sampItem.xjAfterSales {
    border-color: #795548;
    background-color: #fefbfa;
}

.refundQueriesDetailInfoItem .sampItem.xjAfterSales .sampItemLine .title {
    color: #795548;
}

.refundQueriesDetailInfoItem .sampItem.jlAfterSales {
    border-color: #8d25ff;
    background-color: #fdfbff;
}

.refundQueriesDetailInfoItem .sampItem.jlAfterSales .sampItemLine .title {
    color: #8d25ff;
}

.refundQueriesDetailInfoItem .sampItem.jstAfterSales {
    border-color: #897fd2;
    background-color: #f2f0fe;
}

.refundQueriesDetailInfoItem .sampItem.jstAfterSales .sampItemLine .title {
    color: #897fd2;
}
.refundQueriesDetailInfoItem .sampItem.sdAfterSales {
    border-color: #4065E0;
    background-color: #D1DBFF;
}

.refundQueriesDetailInfoItem .sampItem.sdAfterSales .sampItemLine .title {
    color: #4065E0;
}
.refundQueriesDetailInfoItem .sampItem.jzxAfterSales {
    border-color: #a1a26d;
    background-color: #fefcf0;
}

.refundQueriesDetailInfoItem .sampItem.jzxAfterSales .sampItemLine .title {
    color: #a1a26d;
}

.refundQueriesDetailInfoItem .sampItem.bwAfterSales {
    border-color: #1ebfa1;
    background-color: #fbfffd;
}

.refundQueriesDetailInfoItem .sampItem.bwAfterSales .sampItemLine .title {
    color: #1ebfa1;
}

.refundQueriesDetailInfoItem .sampItem.byAfterSales {
    border-color: #1c8c91;
    background-color: #e5f5f6;
}

.refundQueriesDetailInfoItem .sampItem.byAfterSales .sampItemLine .title {
    color: #1c8c91;
}

.refundQueriesDetailInfoItem .sampItem.lhspAfterSales {
    border-color: #AABDB7;
    background-color: #E2F0EC;
}

.refundQueriesDetailInfoItem .sampItem.lhspAfterSales .sampItemLine .title {
    color: #8CAAA0;
}

.refundQueriesDetailInfoItem .sampItem.gxAfterSales {
    border-color: #B63D12;
    background-color: #FFE6DD;
}

.refundQueriesDetailInfoItem .sampItem.gxAfterSales .sampItemLine .title {
    color: #9A3612;
}

.refundQueriesDetailInfoItem .sampItem.wzAfterSales {
    border-color: #ee634a;
    background-color: #fff3f1;
}

.refundQueriesDetailInfoItem .sampItem.wzAfterSales .sampItemLine .title {
    color: #ee634a;
}

.refundQueriesDetailInfoItem .sampItem.amAfterSales {
    border-color: #594536;
    background-color: #fdf8f4;
}

.refundQueriesDetailInfoItem .sampItem.amAfterSales .sampItemLine .title {
    color: #594536;
}

.refundQueriesDetailInfoItem .sampItem.dtAfterSales {
    border-color: #348368;
    background-color: #f0fffa;
}

.refundQueriesDetailInfoItem .sampItem.dtAfterSales .sampItemLine .title {
    color: #348368;
}
.refundQueriesDetailInfoItem .sampItem.yyAfterSales {
    border-color: #348368;
    background-color: #f0fffa;
}

.refundQueriesDetailInfoItem .sampItem.yyAfterSales .sampItemLine .title {
    color: #348368;
}
.refundQueriesDetailInfoItem .sampItem.bhAfterSales {
    border-color: #348368;
    background-color: #f0fffa;
}

.refundQueriesDetailInfoItem .sampItem.bhAfterSales .sampItemLine .title {
    color: #348368;
}
.refundQueriesDetailInfoItem .sampItem.tyAfterSales {
    border-color: #ec6800;
    background-color: #fff7f1;
}

.refundQueriesDetailInfoItem .sampItem.tyAfterSales .sampItemLine .title {
    color: #ec6800;
}
.refundQueriesDetailInfoItem .sampItem.cpAfterSales {
    border-color: #63833f;
    background-color: #f8fdf1;
}

.refundQueriesDetailInfoItem .sampItem.cpAfterSales .sampItemLine .title {
    color: #63833f;
}
.refundQueriesDetailInfoItem .sampItem.ytAfterSales {
    border-color: #41854a;
    background-color: #f3fff5;
}

.refundQueriesDetailInfoItem .sampItem.ytAfterSales .sampItemLine .title {
    color: #41854a;
}
.refundQueriesDetailInfoItem .sampItem.mxkAfterSales {
    border-color: #a1a26d;
    background-color: #fefcf0;
}

.refundQueriesDetailInfoItem .sampItem.mxkAfterSales .sampItemLine .title {
    color: #a1a26d;
}
.refundQueriesDetailInfoItem .sampItem.qtAfterSales {
    border-color: #ec6800;
    background-color: #f7f6f4;
}

.refundQueriesDetailInfoItem .sampItem.qtAfterSales .sampItemLine .title {
    color: #ec6800;
}

.refundQueriesDetailInfoItem .sampItem .sampItemLine .fieldItem {
    width: auto;
    padding-right: 10px;
    flex: 1;
    height: auto;
}

.refundQueriesDetailInfoItem .sampItem.closed .sampItemLine:first-child .fieldItem:last-child {
    margin-right: 40px;
}

.refundQueriesDetailInfoItem .sampItem .sampItemLine .fieldItem span {
    margin-left: 4px;
}

.refundQueriesDetailInfoItem .sampItem .sampBar {
    margin-top: 5px;
}

.refundQueriesDetailInfoItem .sampItem .sampBar button {
    font-size: 12px;
    height: 25px;
    padding: 0 10px;
    line-height: 26px;
}

.refundQueriesDetailInfoItem .sampItem .toolbar {
    top: unset;
    bottom: 5px;
}

.refundQueriesDetailInfoItem .sampItem .toolbar .slideUpBtn em,
.refundQueriesDetailInfoItem .sampItem .toolbar .slideDownBtn em {
    margin-left: 2px;
    font-size: 12px;
}

.refundQueriesDetailInfoItem .sampItem .sampItemLine {
    display: flex;
    flex-flow: wrap;
    overflow: hidden;
}

.refundQueriesDetailInfoItem .sampItem .sampItemLine .title {
    width: 100px;
    color: #000;
    font-size: 14px;
    line-height: 26px;
}

.refundQueriesDetailInfoItem.expressInfo .tabBar {
    border-bottom: 1px solid #dfdfdf;
    position: absolute;
    top: 0;
    left: 0;
    height: 40px;
    width: 100%;
    display: flex;
}

.refundQueriesDetailInfoItem.expressInfo .tabBar div {
    text-align: center;
    margin: 10px 10px -2px 10px;
    width: 80px;
    color: #97D298;
    cursor: pointer;
}

.refundQueriesDetailInfoItem.expressInfo .tabBar div.active {
    color: #1BB91C;
    border-bottom: 3px solid #1BB91C;
}

.refundQueriesDetailInfoItem.expressInfo .expressWrap {
    display: flex;
    flex-wrap: wrap;
}

.refundQueriesDetailInfoItem.expressInfo .expressWrap .expressFields {
    width: 500px;
    padding-top: 10px;
    padding-bottom: 20px;
}

.refundQueriesDetailInfoItem.expressInfo .expressWrap .expressFields .fieldItem {
    height: auto;
    width: 100%;
    margin-top: 20px;
}

.refundQueriesDetailInfoItem.expressInfo .expressWrap .expressFields .fieldItem span {
    display: inline-block;
}

.refundQueriesDetailInfoItem.expressInfo .expressWrap .expressFields .fieldItem span:first-child {
    width: 80px;
    color: #717171;
}

.refundQueriesDetailInfoItem.expressInfo .expressWrap .expressTimeLine {
    flex: 1;
    max-height: 210px;
    overflow: auto;
    padding-top: 10px;
    padding-right: 10px;
}

.refundQueriesDetailInfoItem.expressInfo .expressWrap .expressTimeLine .expressTimeLineItem {
    padding-left: 25px;
    margin-top: 4px;
    position: relative;
}

.refundQueriesDetailInfoItem.expressInfo .expressWrap .expressTimeLine .expressTimeLineItem>span {
    display: block;
    word-wrap: break-word;
    word-break: break-all;
    margin-bottom: 5px;
}

.refundQueriesDetailInfoItem.expressInfo .expressWrap .expressTimeLine .expressTimeLineItem:first-child {
    color: #2774ce;
}

.refundQueriesDetailInfoItem.expressInfo .expressWrap .expressTimeLine .expressTimeLineItem:before {
    content: '';
    border: 1px solid #1BB91C;
    position: absolute;
    left: 0;
    top: 5px;
    border-radius: 50%;
    width: 9px;
    height: 9px;
    background-color: #fff;
    z-index: 11;
}

.refundQueriesDetailInfoItem.expressInfo .expressWrap .expressTimeLine .expressTimeLineItem.cainiaoDot:before {
    border: none;
    width: 20px;
    height: 20px;
    background-image: url(../images/widget/express_searcher/logo.png);
    background-repeat: no-repeat;
    background-size: 20px;
    margin-top: -4px;
    z-index: 1;
}

.refundQueriesDetailInfoItem.expressInfo .expressWrap .expressTimeLine .expressTimeLineItem.expressItem:before {
    left: 4px;
    z-index: 1;
}

.refundQueriesDetailInfoItem.expressInfo .expressWrap .expressTimeLine .expressTimeLineItem.expressItem:after {
    left: 9px;
}
.refundQueriesDetailInfoItem.expressInfo .expressWrap .expressTimeLine .expressTimeLineItem.cainiaoDot:after {
    left: 9px;
}

.refundQueriesDetailInfoItem.expressInfo .expressWrap .expressTimeLine .expressTimeLineItem:after {
    content: '';
    position: absolute;
    left: 5px;
    top: 12px;
    border-left: 1px solid #dfdfdf;
    height: 100%;
    z-index: 10;
}

.refundQueriesDetailInfoItem.expressInfo .expressWrap .expressTimeLine .expressTimeLineItem:last-child:after {
    display: none;
}

.refundQueriesDetailInfoItem.expressInfo .expressWrap .expressTimeLine .expressTimeLineItem.notLastItem:after {
    display: block;
    z-index: 0;
}

.refundQueriesDetailInfoItem.expressInfo .expressWrap .expressTimeLine::-webkit-scrollbar {
    width: 4px;
    height: 4px;
}

/*验货开始*/
.refundQueriesDetailInfoItem.expressInfo .expressWrap .expressTimeLine .expressTimeLineItem.examineCargoInfornation {
    margin-bottom: 10px;
}

.refundQueriesDetailInfoItem.expressInfo .expressWrap .expressTimeLine .expressTimeLineItem.examineCargoInfornation:first-child {
    color: #404040;
}

.refundQueriesDetailInfoItem.expressInfo .expressWrap .expressTimeLine .expressTimeLineItem.examineCargoInfornation:last-child {
    color: #2774ce;
}

.refundQueriesDetailInfoItem.expressInfo .expressWrap .expressTimeLine .expressTimeLineItem.examineCargoInfornation:before {
    content: '验';
    border: none;
    width: 20px;
    height: 20px;
    background-color: #dd2727;
    text-align: center;
    line-height: 19px;
    color: #fff;
    margin-top: -4px;
    z-index: 1;
}

.refundQueriesDetailInfoItem.expressInfo .expressWrap .expressTimeLine .expressTimeLineItem.examineCargoInfornation:after {
    left: 9px;
    top: 20px;
    z-index: 0;
}

/*验货结束*/
/*入库开始*/
.refundQueriesDetailInfoItem.expressInfo .expressWrap .expressTimeLine .expressTimeLineItem.arehousingInfornation {
    margin-bottom: 10px;
}

.refundQueriesDetailInfoItem.expressInfo .expressWrap .expressTimeLine .expressTimeLineItem.arehousingInfornation:first-child {
    color: #404040;
}

.refundQueriesDetailInfoItem.expressInfo .expressWrap .expressTimeLine .expressTimeLineItem.arehousingInfornation:last-child {
    color: #2774ce;
}

.refundQueriesDetailInfoItem.expressInfo .expressWrap .expressTimeLine .expressTimeLineItem.arehousingInfornation:before {
    content: '库';
    border: none;
    width: 20px;
    height: 20px;
    background-color: purple;
    text-align: center;
    line-height: 19px;
    color: #fff;
    margin-top: -4px;
    z-index: 1;
}

.refundQueriesDetailInfoItem.expressInfo .expressWrap .expressTimeLine .expressTimeLineItem.arehousingInfornation:after {
    left: 9px;
    top: 20px;
    z-index: 0;
}

/*入库结束*/
/*等待仓库收件开始*/
.refundQueriesDetailInfoItem.expressInfo .expressWrap .expressTimeLine .expressTimeLineItem.waitingForWarehouse {
    margin-bottom: 10px;
}

.refundQueriesDetailInfoItem.expressInfo .expressWrap .expressTimeLine .expressTimeLineItem.waitingForWarehouse:first-child {
    color: #404040;
}

.refundQueriesDetailInfoItem.expressInfo .expressWrap .expressTimeLine .expressTimeLineItem.waitingForWarehouse:before {
    content: '待';
    border: none;
    width: 20px;
    height: 20px;
    background-color: #2774ce;
    text-align: center;
    line-height: 19px;
    color: #fff;
    margin-top: -4px;
    z-index: 1;
}

.refundQueriesDetailInfoItem.expressInfo .expressWrap .expressTimeLine .expressTimeLineItem.waitingForWarehouse:after {
    left: 9px;
    top: 20px;
    z-index: 0;
}

/*等待仓库收件结束*/
/*转寄开始*/
.refundQueriesDetailInfoItem.expressInfo .expressWrap .expressTimeLine .expressTimeLineItem.forwardOrder {
    margin-bottom: 10px;
}

.refundQueriesDetailInfoItem.expressInfo .expressWrap .expressTimeLine .expressTimeLineItem.forwardOrder:first-child {
    color: #404040;
}

.refundQueriesDetailInfoItem.expressInfo .expressWrap .expressTimeLine .expressTimeLineItem.forwardOrder:before {
    content: '转';
    border: none;
    width: 20px;
    height: 20px;
    background-color: #19891e;
    text-align: center;
    line-height: 19px;
    color: #fff;
    margin-top: -4px;
    z-index: 1;
}

.refundQueriesDetailInfoItem.expressInfo .expressWrap .expressTimeLine .expressTimeLineItem.forwardOrder:after {
    left: 9px;
    top: 20px;
    z-index: 0;
}

/*转寄结束*/
/*外层轨道。可以用display:none让其不显示，也可以添加背景图片，颜色改变显示效果*/
.refundQueriesDetailInfoItem.expressInfo .expressWrap .expressTimeLine::-webkit-scrollbar-track {
    width: 6px;
    background-color: #abdeff;
    -webkit-border-radius: 2em;
    -moz-border-radius: 2em;
    border-radius: 2em;
}

/*滚动条的设置*/
.refundQueriesDetailInfoItem.expressInfo .expressWrap .expressTimeLine::-webkit-scrollbar-thumb {
    background-color: #0096ff;
    background-clip: padding-box;
    min-height: 18px;
    -webkit-border-radius: 2em;
    -moz-border-radius: 2em;
    border-radius: 2em;
}

/*滚动条移上去的背景*/
.refundQueriesDetailInfoItem.expressInfo .expressWrap .expressTimeLine::-webkit-scrollbar-thumb:hover {
    background-color: #006acd;
}

/*仿供销界面表格样式  开始*/
.tmInfoTable {
    background-color: #b6b6b6;
    border-spacing: 1px;
    width: 100%;
}

.tmInfoTable td,
.tmInfoTable th {
    padding: 8px;
}

.tmInfoTable td {
    background-color: #FFFFFF;
}

.tmInfoTable td:nth-child(odd) {
    background-color: #d5e8ff;
    width: 100px;
    text-align: right;
}

.tmInfoTable.list td:nth-child(odd) {
    background-color: #FFFFFF;
    text-align: center;
}

.tmInfoTable.list td:nth-child(3) {
    text-align: left;
    word-break: keep-all;
}

.tmInfoTable th {
    background-color: #d0d0d0;
}

.tmInfoTable.sampCommonInfoTable td:nth-child(odd) {
    width: 80px;
}

.tmInfoTable tr.isHide {
    display: none;
}

.sampCommonInfoTable textarea {
    resize: none;
    width: 100%;
    padding: 10px;
    height: 100px;
    font-size: 14px;
    line-height: 18px;
}

.sampCommonInfoTable label {
    margin-right: 10px;
}

.sampCommonInfoTable label input[type='radio'] {
    vertical-align: middle;
    margin-right: 2px;
}

/*仿供销界面表格样式  结束*/

/*对话框tip通用样式  开始*/
.dialog-tip {
    display: inline-block;
    position: relative;
    background-size: 50px !important;
}

/*.dialog-tip:before {*/
/*    cursor: pointer;*/
/*}*/
.dialog-tip.active .tip-content {
    display: block;
}

.dialog-tip .tip-content {
    display: none;
    text-align: left;
    background-color: #ffffff;
    border: 1px solid #dfdfdf;
    padding: 10px;
    width: 337px;
    position: absolute;
    border-radius: 3px;
    box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
    left: -15px;
    top: 30px;
    color: #1a1a1a;
    font-size: 13px;
    line-height: 1.4;
    z-index: 100;
    transform-origin: 100% 0%;
    -webkit-animation: fadeIn 0.3s ease-in-out;
    animation: fadeIn 0.3s ease-in-out;
}

.dialog-tip .tip-content.loading,
.newDialogTip .arrow_box.loading {
    background-image: url(../images/LoadingUV.gif);
    background-size: 100px;
    background-repeat: no-repeat;
    background-position: center;
}

.dialog-tip.up .tip-content {
    top: -329px;
    box-shadow: unset;
}

.dialog-tip.left .tip-content {
    top: -10px;
    right: unset;
    left: 30px;
    min-height: 100px;
}

.dialog-tip.right .tip-content {
    top: -5px;
    right: unset;
    left: -350px;
    min-height: 100px;
}

.dialog-tip.left.up .tip-content {
    top: -306px;
    box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
}

.dialog-tip.right.up .tip-content {
    top: -290px;
    box-shadow: unset;
}

.dialog-tip .tip-content:before {
    position: absolute;
    content: '';
    width: 16px;
    height: 16px;
    /*border:6px solid transparent;*/
    /*border-bottom-color: #dfdfdf;*/
    background-image: url(../images/polygon.svg);
    background-repeat: no-repeat;
    background-size: 14px 10px;
    left: 14px;
    top: -9px;
}

.dialog-tip.up .tip-content:before {
    transform: rotate(180deg);
    top: unset;
    bottom: -9px;
}

.dialog-tip.left .tip-content:before {
    transform: rotate(-90deg);
    top: 10px;
    right: unset;
    left: -9px;
}

.dialog-tip.left.up .tip-content:before {
    transform: rotate(-90deg);
    top: 306px;
    right: unset;
    left: -9px;
}

.dialog-tip.right .tip-content:before {
    transform: rotate(90deg);
    top: 10px;
    left: unset;
    right: -9px;
}

.dialog-tip.right.up .tip-content:before {
    transform: rotate(90deg);
    top: 296px;
    left: unset;
    right: -9px;
}

.dialog-tip .tip-content:after {
    width: 100%;
    height: 40px;
    content: '';
    position: absolute;
    top: -40px;
    left: 0;
}

.dialog-tip.up .tip-content:after {
    width: 100%;
    height: 50px;
    content: '';
    position: absolute;
    bottom: -50px;
    top: unset;
    left: 0;
}

.showExpressAndCopy.dialog-tip.up .tip-content:after {
    bottom: -11px;
}

.dialog-tip.limitWidth .tip-content:after {
    width: 110px;
}

.dialog-tip.up.limitWidth .tip-content:after {
    width: 110px;
}

.dialog-tip.left .tip-content:after {
    width: 40px;
    height: 50px;
    content: '';
    position: absolute;
    top: 0;
    left: -40px;
}

.dialog-tip.left.up .tip-content:after {
    width: 40px;
    height: 50px;
    content: '';
    position: absolute;
    top: 286px;
    bottom: unset;
    left: -40px;
}

.dialog-tip.right .tip-content:after {
    width: 40px;
    height: 150px;
    content: '';
    position: absolute;
    top: 0;
    left: 330px;
}

.dialog-tip.right.up .tip-content:after {
    width: 40px;
    height: 150px;
    content: '';
    position: absolute;
    top: 170px;
    bottom: unset;
    right: -40px;
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
        transform: scale(0.6);
    }

    100% {
        opacity: 100%;
        transform: scale(1);
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 100%;
    }
}

/*对话框tip通用样式  结束*/
/*对话框tip 订单备注样式 开始*/
.dialog-tip .tip-content textarea,
.newDialogTip textarea {
    width: 100%;
    height: 60px;
    resize: vertical;
    outline: none;
    padding: 5px;
}

.dialog-tip .tip-content .historyList,
.newDialogTip .historyList {
    padding: 10px;
    height: 160px;
    overflow: auto;
    position: relative;
}

.dialog-tip .tip-content .historyList .historyItem,
.newDialogTip .historyList .historyItem {
    box-shadow: 0 0 4px 0 #dfdfdf;
    border-radius: 5px;
    padding: 10px;
    margin-bottom: 10px;
    cursor: pointer;
}

.dialog-tip .tip-content .historyList .historyItem em,
.newDialogTip .historyList .historyItem em {
    margin-left: 5px;
}

.dialog-tip .tip-content .historyList .historyItem span.con,
.newDialogTip .historyList .historyItem span.con {
    font-size: 12px;
    margin-left: 5px;
    white-space: pre-wrap;
}

.dialog-tip .tip-content .historyList .historyItem .time_div,
.newDialogTip .historyList .historyItem .time_div {
    text-align: right;
    font-size: 12px;
    color: #909090;
    margin-top: 5px;
}

.dialog-tip .tip-content .flag-checkbox-group,
.newDialogTip .flag-checkbox-group {
    display: block;
    position: relative;
    padding-left: 80px;
}

.dialog-tip .tip-content .flag-checkbox-group .item,
.newDialogTip .flag-checkbox-group .item {
    display: inline-block;
    margin-right: 10px;
    width: 30px;
    height: 30px;
    line-height: 30px;
}

.dialog-tip .tip-content .flag-checkbox-group .item .luim-icon-flag,
.newDialogTip .flag-checkbox-group .item .luim-icon-flag {
    font-size: 14px;
}

.dialog-tip .tip-content .flag-checkbox-group.disabled .item:hover,
.newDialogTip .flag-checkbox-group.disabled .item:hover {
    border: 1px solid #80989c;
    background-color: #dfdfdf;
}

.dialog-tip .tip-content .btn-group,
.newDialogTip .btn-group {
    text-align: right;
    margin-top: 10px;
}

.dialog-tip .tip-content .btn-group.disabled button,
.newDialogTip .btn-group.disabled button {
    cursor: not-allowed;
    opacity: 0.6;
}

.dialog-tip .tip-content .historyList .loading,
.newDialogTip .historyList .loading {
    position: absolute;
    height: 100%;
    background-color: #fff;
    width: 100%;
    display: block;
    top: 0;
    left: 0;
    background-image: url(../images/LoadingUV.gif);
    background-size: 100px;
    background-repeat: no-repeat;
    background-position: center;
}

.dialog-tip .tip-content .historyList.done .loading,
.newDialogTip .historyList.done .loading {
    display: none;
}

/*对话框tip 订单备注样式 结束*/
/*快递查询对话框tip 样式 开始*/
.expressSearchTip .expressWrap .expressTimeLine {
    flex: 1;
    max-height: unset;
    height: 300px;
    overflow: auto;
    padding-top: 10px;
    padding-right: 10px;
}

.tip-content[data-expressno] .expressWrap .expressTimeLine {
    flex: 1;
    max-height: unset;
    height: 300px;
    overflow: auto;
    padding-top: 10px;
    padding-right: 10px;
}

.expressSearchTip .expressWrap .expressTimeLine .expressTimeLineItem {
    padding-left: 25px;
    margin-top: 4px;
    position: relative;
}

.expressSearchTip .expressWrap .expressTimeLine .expressTimeLineItem span {
    display: block;
    word-wrap: break-word;
    word-break: break-all;
    margin-bottom: 5px;
}

.expressSearchTip .expressWrap .expressTimeLine .expressTimeLineItem:first-child {
    color: #2774ce;
}

.expressSearchTip .expressWrap .expressTimeLine .expressTimeLineItem:before {
    content: '';
    border: 1px solid #1BB91C;
    position: absolute;
    left: 0;
    top: 5px;
    border-radius: 50%;
    width: 9px;
    height: 9px;
    background-color: #fff;
    z-index: 11;
}

.expressSearchTip .expressWrap .expressTimeLine .expressTimeLineItem:after {
    content: '';
    position: absolute;
    left: 5px;
    top: 12px;
    border-left: 1px solid #dfdfdf;
    height: 100%;
    z-index: 10;
}

.expressSearchTip .expressWrap .expressTimeLine .expressTimeLineItem:last-child:after {
    display: none;
}

.expressSearchTip .expressWrap .expressTimeLine::-webkit-scrollbar {
    width: 4px;
    height: 4px;
}

/*外层轨道。可以用display:none让其不显示，也可以添加背景图片，颜色改变显示效果*/
.expressSearchTip .expressWrap .expressTimeLine::-webkit-scrollbar-track {
    width: 6px;
    background-color: #abdeff;
    -webkit-border-radius: 2em;
    -moz-border-radius: 2em;
    border-radius: 2em;
}

/*滚动条的设置*/
.expressSearchTip .expressWrap .expressTimeLine::-webkit-scrollbar-thumb {
    background-color: #0096ff;
    background-clip: padding-box;
    min-height: 18px;
    -webkit-border-radius: 2em;
    -moz-border-radius: 2em;
    border-radius: 2em;
}

/*滚动条移上去的背景*/
.expressSearchTip .expressWrap .expressTimeLine::-webkit-scrollbar-thumb:hover {
    background-color: #006acd;
}

#panelNoticeListJob::-webkit-scrollbar, #panelNoticeListBBS::-webkit-scrollbar {
    width: 4px;
    height: 4px;
}

#panelNoticeListJob ::-webkit-scrollbar-track, #panelNoticeListBBS ::-webkit-scrollbar-track {
    width: 6px;
    background-color: #abdeff !important;
    -webkit-border-radius: 2em;
    -moz-border-radius: 2em;
    border-radius: 2em;
}

#panelNoticeListJob::-webkit-scrollbar-thumb:hover, #panelNoticeListBBS::-webkit-scrollbar-thumb:hover {
    background-color: #006acd !important;
}

#panelNoticeListJob::-webkit-scrollbar-thumb, #panelNoticeListBBS::-webkit-scrollbar-thumb {
    background-color: #0096ff !important;
    background-clip: padding-box;
    min-height: 18px;
    -webkit-border-radius: 2em;
    -moz-border-radius: 2em;
    border-radius: 2em;
}


.expressSearchTip.pretreatmentExpressSearchTip.dialog-tip.up .tip-content {
    top: -356px;
}

/*快递查询对话框tip 样式 结束*/
/*新全局对话框tip设计样式 开始*/
.newDialogTip {
    position: absolute;
    z-index: 100000;
}

.arrow_box {
    position: relative;
    background: #ffffff;
    border: 1px solid #dfdfdf;
    padding: 10px;
    min-width: 502px;
    max-width: 620px;
    border-radius: 8px;
}

.arrow_box:after,
.arrow_box:before {
    right: 100%;
    top: 50%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
}

.arrow_box:after {
    border-color: rgba(255, 255, 255, 0);
    border-right-color: #ffffff;
    border-width: 10px;
    margin-top: -10px;
}

.arrow_box:before {
    border-color: rgba(223, 223, 223, 0);
    border-right-color: #dfdfdf;
    border-width: 11px;
    margin-top: -11px;
}

.newDialogTip.up .arrow_box:after {
    margin-top: -220px;
}

.newDialogTip.up .arrow_box:before {
    margin-top: -221px;
}

.newDialogTip.down .arrow_box:after {
    margin-top: 186px;
}

.newDialogTip.down .arrow_box:before {
    margin-top: 185px;
}

.newDialogTip.up.onlyRead .arrow_box:after {
    margin-top: -150px;
}

.newDialogTip.up.onlyRead .arrow_box:before {
    margin-top: -151px;
}

.newDialogTip.down.onlyRead .arrow_box:after {
    margin-top: 136px;
}

.newDialogTip.down.onlyRead .arrow_box:before {
    margin-top: 135px;
}

.newDialogTip.right .arrow_box:after {
    transform: rotate(180deg);
    left: 100%;
}

.newDialogTip.right .arrow_box:before {
    transform: rotate(180deg);
    left: 100%;
}

/*新全局对话框tip设计样式 结束*/
/*售后单详情linePanel选择面板样式开始*/
.lineSelectPanel {
    display: inline-block;
    margin-right: 10px;
}

.lineSelectPanel .lineItem {
    display: inline-block;
    margin: 0 2px;
    padding: 0 4px;
    font-size: 14px;
    cursor: pointer;
}

.lineSelectPanel .lineItem.current {
    font-weight: bold;
    cursor: default;
}

.lineSelectPanel .lineItem:hover {
    box-shadow: 0 0 0 1px #00000024;
    background-color: #f5faff;
}

.lineSelectPanel .lineItem.current:hover {
    box-shadow: unset;
    background-color: transparent;
}

/*售后单详情linePanel选择面板样式结束*/
/*处理人优先级选择框样式开始*/
.assigneeSelectPanel {
    display: inline-block;
    vertical-align: top;
}

.assigneeSelectPanel .select2.select2-container .select2-selection--single {
    border: none;
    height: 22px;
}

.assigneeSelectPanel.refundNewMessage .select2.select2-container .select2-selection--single {
    background: #ffffff;
}

.assigneeSelectPanel .select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 22px;
}

.assigneeSelectPanel .select2-container--default .select2-selection--single:hover .select2-selection__rendered {
    color: #2774ce;
}

.assigneeSelectPanel .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 20px;
}

.assigneeSelectPanel.refundNewMessage .select2-container--default .select2-selection--single .select2-selection__arrow {
    display: none;
}

.assigneeSelectPanel .select2-container--default .select2-selection--single:hover .select2-selection__arrow b {
    border-color: #1a4188 transparent transparent transparent;
}

.prioritySelectPanel {
    display: inline-block;
    vertical-align: top;
}

.prioritySelectPanel .select2.select2-container {
    vertical-align: baseline;
}

.prioritySelectPanel.roDetail .select2.select2-container {
    vertical-align: sub;
}

.prioritySelectPanel .select2.select2-container .select2-selection--single {
    border: none;
    height: 20px;
}

.prioritySelectPanel .select2-container--default .select2-selection--single .select2-selection__rendered {
    display: block;
    height: 22px;
    line-height: 22px;
    padding: 0 0 0 5px;
}

.prioritySelectPanel.roDetail .select2-container--default .select2-selection--single .select2-selection__rendered {
    height: 20px;
    line-height: 20px;
    display: unset;
    padding: 0 6px;
}

.prioritySelectPanel .select2-container--default .select2-selection--single .select2-selection__rendered[title=非常紧急] {
    color: #fff;
    background-color: #E30000;
}

.prioritySelectPanel .select2-container--default .select2-selection--single .select2-selection__rendered[title=紧急] {
    color: #444;
    background-color: #FFC8EA;
}

.prioritySelectPanel .select2-container--default .select2-selection--single .select2-selection__rendered[title=重要] {
    color: #B45F06;
    background-color: #FFEE9C;
}

.prioritySelectPanel .select2-container--default .select2-selection--single .select2-selection__rendered[title=普通] {
    color: #4DA400;
    background-color: #E6F6CF;
}

.prioritySelectPanel .select2-container--default .select2-selection--single .select2-selection__rendered[title=低] {
    color: #888888;
    background-color: #E6E6E6;
}

.prioritySelectPanel .select2-container--default .select2-selection--single .select2-selection__arrow {
    display: none;
}

.select2-container--open .select2-dropdown--below.assigneeSelectDropDown {
    border-top: 1px solid #aaa;
    margin-top: 8px;
}

.select2-container--open .select2-dropdown--below.prioritySelectDropDown {
    width: 120px !important;
    margin-top: 2px;
}

.select2-container--open .select2-dropdown--below.prioritySelectDropDownDetail {
    width: 120px !important;
    margin-top: 16px;
    border-top: 1px solid #aaa;
}

.prioritySelectDropDown .select2-results__option span[title],
.prioritySelectDropDownDetail .select2-results__option span[title] {
    width: 18px;
    height: 18px;
    line-height: 18px;
    text-align: center;
}

.prioritySelectDropDown .select2-results__option span[title=非常紧急],
.prioritySelectDropDownDetail .select2-results__option span[title=非常紧急] {
    color: #fff;
    background-color: #E30000;
}

.prioritySelectDropDown .select2-results__option span[title=紧急],
.prioritySelectDropDownDetail .select2-results__option span[title=紧急] {
    color: #444;
    background-color: #FFC8EA;
}

.prioritySelectDropDown .select2-results__option span[title=重要],
.prioritySelectDropDownDetail .select2-results__option span[title=重要] {
    color: #B45F06;
    background-color: #FFEE9C;
}

.prioritySelectDropDown .select2-results__option span[title=普通],
.prioritySelectDropDownDetail .select2-results__option span[title=普通] {
    color: #4DA400;
    background-color: #E6F6CF;
}

.prioritySelectDropDown .select2-results__option span[title=低],
.prioritySelectDropDownDetail .select2-results__option span[title=低] {
    color: #888888;
    background-color: #E6E6E6;
}

/*处理人优先级选择框样式结束*/
/*机器人气泡对话框样式 开始*/
.showBotRemarkDetail {
    display: inline-block;
    vertical-align: bottom;
    margin-left: 15px;
    cursor: pointer;
}

.showBotRemarkDetail.dialog-tip.right .tip-content {
    right: 30px;
    left: unset;
    width: auto;
    min-height: 73px;
}

.showBotRemarkDetail .luimCommonRemarkPanel {
    position: unset;
    padding-top: 0;
    cursor: default;
    right: unset;
    left: 10px;
    width: auto;
}

.showBotRemarkDetail .luimCommonRemarkPanel .lists {
    padding: 0;
}

.showBotRemarkDetail .luimCommonRemarkPanel .lists .item {
    display: flex;
}

.showBotRemarkDetail .luimCommonRemarkPanel .lists .item .body .operation {
    white-space: nowrap;
}

.showBotRemarkDetail .luimCommonRemarkPanel .lists .item .info {
    min-width: 248px;
    width: auto;
}

.showBotRemarkDetail .luimCommonRemarkPanel .lists .item .body {
    padding-top: 2px;
    padding-bottom: 2px;
    padding-right: 10px;
}

/*机器人气泡对话框样式 结束*/
/*员工在线状态灯样式 开始*/
.assigneeOnline,
.assigneeOffline {
    padding-left: 20px;
    position: relative;
}

.assigneeSelectPanel .select2-container--default .select2-selection--single .select2-selection__rendered.assigneeLineState {
    padding-left: 24px;
}

.assigneeOnline:before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background-image: url(../images/online_status.png);
    background-position: 0 20px;
    left: 0;
    top: 3px;
}

.assigneeOffline:before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background-image: url(../images/online_status.png);
    background-position: 20px 20px;
    left: 0;
    top: 3px;
}

#preassignedWorkOrderLeft .assigneeOnline:before,
#preassignedWorkOrderLeft .assigneeOffline:before {
    left: 5px;
}

.select2-container .select2-selection--single .select2-selection__rendered.assigneeLineState.assigneeHangUp {
    padding-right: 90px;
}

.select2-container .select2-selection--single .select2-selection__rendered.assigneeLineState.assigneeHangUp:after {
    content: '强制挂起';
    position: absolute;
    height: 20px;
    line-height: 20px;
    background-color: red;
    right: 20px;
    top: 1px;
    font-size: 14px;
    color: #fff;
    padding: 1px 6px;
    border-radius: 4px;
    transform: scale(0.7);
}

.select2-container--open .select2-dropdown--below.preassignedWorkOrderAssigneeSelectDropDown {
    border: 1px solid #dfdfdf;
    margin-top: 10px;
}

.personState .assigneeOnline,
.personState .assigneeOffline {
    padding-left: 0;
}

.personState .assigneeOnline:before {
    left: 22px;
    top: 1px;
}

.personState .assigneeOffline:before {
    left: 22px;
    top: 1px;
}

.logPersonState .assigneeOnline:before {
    left: 12px;
    top: 1px;
}

.logPersonState .assigneeOffline:before {
    left: 12px;
    top: 1px;
}

/*员工在线状态灯样式 结束*/
/*new标记样式*/
.new-flag {
    font-size: 12px;
    color: #fff;
    background-color: red;
    margin-left: 10px;
    padding: 2px 6px;
    border-radius: 5px;
    line-height: 13px;
    display: inline-block;
}

/*个人上班下班挂起状态样式 开始*/
#workstatus_work {
    width: 100px !important;
    border-radius: 0 0 12px 12px;
    background-color: #1b508e;
    color: #fff;
    border: 2px solid #fff;
    border-top: none;
}

#workstatus_work .menu-line {
    display: none;
}

#workstatus_work .menu-item {
    border-bottom: 1px solid #dfdfdf;
}

#workstatus_work .menu-item:last-child {
    border-bottom: none;
}

#workstatus_work .menu-text {
    float: none;
    padding: 0;
    text-align: center;
}

#workstatus_work .menu-item:hover {
    background: #2861a2;
    color: #ffffff;
}

.menu-shadow {
    border-radius: 0 0 12px 12px;
}

#home_status_lb {
    display: none;
    float: right;
    border-radius: 12px;
    border: 2px solid rgb(255, 255, 255);
    margin-top: 11px;
    height: 26px;
    width: 100px;
}

#home_status_lb span {
    font-size: 12px;
    line-height: 34px;
}

#home_status_lb:hover {
    color: #fff;
    border: 2px solid #fff !important;
}

#home_status_lb .l-btn-left {
    margin-top: -12px;
}

#home_status_lb.m-btn .l-btn-left .l-btn-text {
    margin-right: 18px;
}

#home_status_lb.m-btn-plain-active {
    border-radius: 12px 12px 0 0;
}

#home_status_lb.home_status_offwork {
    background: #fd6c64;
    display: inline-block;
}

#home_status_lb.home_status_onwork {
    background: #008412;
    display: inline-block;
}

#home_status_lb.home_status_endwork {
    background: rgb(148, 148, 148);
    display: inline-block;
}

#home_status_lb.home_status_offwork:hover {
    background: rgb(253, 77, 85);
}

#home_status_lb.home_status_onwork:hover {
    background: #009314;
}

#home_status_lb.home_status_endwork:hover {
    background: rgb(99, 99, 99);
}

/*个人上班下班挂起状态样式 结束*/
/* 图标摇晃效果 红点阴影闪烁效果 开始 */
.effect_swing {
    animation: swing 1s 1s;
}

.effect_flicker {
    animation: flicker 1s infinite;
}

@keyframes flicker {
    from {
        box-shadow: 0 0 10px 2px #fff2f4;
    }

    50% {
        box-shadow: 0 0 18px 2px #fff2f4;
    }

    to {
        box-shadow: 0 0 10px 2px #fff2f4;
    }
}

.luim_nav a span.bell_number.finish {
    background: rgba(255, 0, 0, 0.8);
}

.luim_nav a span.bell_number.start {
    background: rgba(128, 255, 0, 0.8);
}

.luim_nav a span.bell_number.error {
    background: rgba(255, 255, 0, 0.8);
}

/* 图标摇晃效果 红点阴影闪烁效果 结束 */
.home_icon {
    display: flex;
    flex-direction: column;
    margin-right: 1px;
    width: 48px;
    height: 48px;
    float: right;
    text-align: center;
    position: relative;
}

.home_icon.separator:after {
    content: '';
    position: absolute;
    width: 1px;
    height: 20px;
    background-color: rgba(255, 255, 255, 0.4);
    display: block;
    right: 0;
    top: 50%;
    margin-top: -10px;
}

.home_icon.separator.left:after {
    right: unset;
}

#home_swVersion {
    float: right;
    display: flex;
}

#home_swVersion span {
    cursor: pointer;
    line-height: 24px;
    height: unset;
    background-color: #ffffff;
    border: 2px solid #ffffff;
    color: #4367dd;
    border-radius: 3px;
    font-weight: bold;
    transition: all .4s;
}

#home_swVersion span:hover {
    background-color: #ff761c;
    color: #ffffff;
}

/*返回旧版按钮样式开始*/
#home_swVersion.ov span {
    color: #ff761c;
}

#home_swVersion.ov span:hover {
    background-color: #4367dd;
    color: #ffffff;
}

/*返回旧版按钮样式结束*/

.luim_nav a span.bell_number {
    position: absolute;
    top: 8px;
    left: 26px;
    line-height: 11px !important;
    background: rgba(255, 0, 0, 0.8);
    border-radius: 4px;
    font-size: 12px;
    transform: scale(0.8);
    text-align: center;
    display: block;
}

.luim_nav a span.bell_number.show {
    border: 1px solid rgb(255, 255, 255);
    padding: 2px 2px;
}

/*按分辨率进行按钮显示控制 开始*/
@media (max-width: 1341px) {
    #home_help {
        display: none;
    }
}

@media (max-width: 1296px) {
    #home_export_download {
        display: none;
    }
}

@media (max-width: 1246px) {
    #home_system_setting {
        display: none;
    }
}

@media (max-width: 1196px) {
    #home_roster {
        display: none;
    }
}

@media (max-width: 1146px) {
    #home_userInfo_lb {
        display: none;
    }
}

/*按分辨率进行按钮显示控制 结束*/

.arrow_box_menu {
    box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.06), 0 2px 5px 0 rgba(0, 0, 0, 0.2);
    width: 200px;
    display: none;
    position: absolute;
    right: 4px;
    top: 48px;
    opacity: 1;
    z-index: 1000000;
    border: 1px solid #fff;
    color: #fff;
    min-width: 100px;
    border-radius: 8px;
}

.arrow_box_menu:after,
.arrow_box_menu:before {
    bottom: 100.5%;
    right: 11px;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
}

.arrow_box_menu:after {
    border-color: rgba(0, 0, 0, 0);
    border-bottom-color: rgb(245, 245, 245);
    border-width: 8px;
    margin-left: -8px;
}

.arrow_box_menu:before {
    border-color: rgba(255, 255, 255, 0);
    border-bottom-color: #ffffff;
    border-width: 9px;
    margin-left: -9px;
    right: 10px;
}

.arrow_box_menu.center:after {
    right: 50.5%;
}

.arrow_box_menu.center:before {
    right: 50%;
}

.arrow_box_menu .arrowBoxHead {
    width: 101%;
    border-radius: 8px 8px 0 0;
    margin: -1px 0 0 -1px;
    background: rgb(245, 245, 245);
    color: rgb(17, 17, 17);
    display: flex;
    justify-content: space-between;
}

.arrow_box_menu .arrowBoxHead p {
    height: 40px;
    line-height: 40px;
    width: 100%;
    text-align: center;
    font-size: 14px;
    font-weight: 900;
}

.arrow_box_menu .arrowBoxHead p:nth-of-type(2) {
    color: #2774ce;
}

.arrow_box_menu ul li {
    list-style-type: none;
    padding: 5px 0 5px 20px;
    width: 100%;
    margin-left: -1px;
    color: black;
    background: #ffffff;
    border-bottom: 1px solid #dfdfdf;
}

.arrow_box_menu ul li p {
    text-align: left;
}

.arrow_box_menu ul li:nth-last-of-type(1) {
    border-radius: 0 0 8px 8px;
    margin: 0 0 -1px -1px;
}

.arrow_box_menu .arrowBoxBottom {
    width: 101%;
    border-radius: 0 0 8px 8px;
    margin: 0 0 -1px -1px;
    background: rgb(245, 245, 245);
    color: rgb(17, 17, 17);
    display: flex;
    justify-content: space-between;
}

.arrow_box_menu .arrowBoxBottom p {
    height: 30px;
    line-height: 30px;
    width: 100%;
    text-align: center;
}

#home-layout .add_remove_hidden {
    overflow: unset;
}

.arrow_box_menu .arrow_box_loading {
    padding: 0;
    background: #fff;
    border-radius: 0 0 12px 12px;
}

/*导出通知开始*/
#download_information_box.arrow_box_menu:after {
    border-bottom-color: #ffffff;
}

#download_information_box.arrow_box_menu ul li {
    padding: 0 0 0 15px;
    cursor: default;
}

#download_information_box.arrow_box_menu ul li.download_doing {
    background-image: url(../images/downloading.svg);
    background-repeat: no-repeat;
}

#download_information_box.arrow_box_menu ul li:nth-of-type(1) {
    border-radius: 8px 8px 0 0;
    margin: -1px 0 0 -1px;
}

#download_information_box.arrow_box_menu ul li P {
    display: flex;
    justify-content: space-between;
}

#download_information_box.arrow_box_menu ul li P span {
    height: 40px;
    line-height: 40px;
}

#download_information_box.arrow_box_menu ul li P .download_information {
    display: flex;
    justify-content: space-between;
    width: 120px;
}

#download_information_box.arrow_box_menu ul li P .download_information_status_red {
    color: red;
}

#download_information_box.arrow_box_menu ul li P .download_information_status_green {
    color: green;
}

#download_information_box.arrow_box_menu ul li P .download_information_status_normal {
    color: black;
}

#download_information_box.arrow_box_menu ul li P .download_information .download_file_btn {
    color: #9ed76c;
    cursor: pointer;
}

#download_information_box.arrow_box_menu ul li P span:nth-of-type(1) span:nth-of-type(1) {
    display: inline-block;
    width: 100px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    word-break: break-all;
}

#download_information_box.arrow_box_menu ul li P>span:nth-last-of-type(1) {
    margin-right: 15px;
    float: right;
}

#download_information_box.arrow_box_menu ul li:nth-last-of-type(1) {
    border-radius: 0;
    margin: 0;
}

/*导出通知结束*/
/*铃铛通知开始*/
#small_bell_box.arrow_box_menu ul li:nth-last-of-type(1) {
    border-radius: 0;
    margin: 0;
}

#small_bell_box.arrow_box_menu .data_content_box_wrap {
    display: none;
    max-height: 141px;
    overflow: auto;
}

#small_bell_box.arrow_box_menu .data_content_box {
    overflow-y: auto;
    overflow-x: hidden;
    height: 100%;
}

#small_bell_box.arrow_box_menu .arrow_box_data span {
    color: black;
    font-size: 12px;
}

#small_bell_box.arrow_box_menu .arrow_box_data .luim-icon-close-small {
    color: #6c757d;
    font-size: 14px;
    cursor: pointer;


}

#small_bell_box.arrow_box_menu .arrow_box_data .data_title {
    display: flex;
    justify-content: space-between;
    padding: 0 25px 0 15px;
    cursor: pointer;
}

#small_bell_box.arrow_box_menu .arrow_box_data .data_title .data_title_number {
    font-size: 12px;
    transform: scale(0.8);
    color: #fff;
    background-color: red;
    padding: 2px 6px;
    border-radius: 10px;
    line-height: 13px;
    display: inline-block;
}

#small_bell_box.arrow_box_menu .arrow_box_data .data_title.disabled {
    pointer-events: none;
}

#small_bell_box.arrow_box_menu .arrow_box_data .data_title span {
    font-size: 14px;
}

#small_bell_box.arrow_box_menu .arrow_box_data .data_title .luim-icon-arrow-up {
    font-size: 20px;
    display: block;
}

#small_bell_box.arrow_box_menu .arrow_box_data .data_title .luim-icon-arrow-down {
    font-size: 20px;

}

#small_bell_box.arrow_box_menu .arrow_box_data .data_title P:nth-of-type(1) {
    display: flex;
}

#small_bell_box.arrow_box_menu .arrow_box_data .data_title .iconfont {
    font-size: 18px;
}

#small_bell_box.arrow_box_menu .arrow_box_data .data_content {
    display: flex;
}

#small_bell_box.arrow_box_menu .arrow_box_data .data_content P:nth-of-type(1) {
    display: flex;
    flex-direction: column;
    width: 142px;
    cursor: default;
}

#small_bell_box.arrow_box_menu .arrow_box_data .data_content P:nth-of-type(2) {
    line-height: 36px;
}

#small_bell_box.arrow_box_menu .arrow_box_data .data_content P span {
    line-height: 18px;
}

/*铃铛通知结束*/
/*头部导航帐号头像样式*/
#userInfo_true_name_label img {
    width: 26px;
    height: 26px;
    border-radius: 4px;
    vertical-align: middle;
    margin-right: 8px;
    margin-top: -2px;
    box-shadow: 1px 1px 2px 0 #00629c;
}

#preassignedWorkOrderLeft .preassignedWorkOrderLeftSearcherPanel {
    text-align: center;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding-bottom: 30px;
    padding-top: 100px;
}

#preassignedWorkOrderLeft #preassignedWorkOrderLeft_searchText {
    width: 300px;
    height: 40px;
    font-size: 20px;
    padding-left: 10px;
    padding-right: 10px;
    outline: none;
    border-radius: 6px 0 0 6px;
    border: 2px solid #004da7;
}

#preassignedWorkOrderLeft .loading #preassignedWorkOrderLeft_searchText {
    border-color: #6f6f6f;
    cursor: default;
}

#preassignedWorkOrderLeft #preassignedWorkOrderLeftSearchButton {
    vertical-align: top;
    width: 100px;
    border-radius: 0 6px 6px 0;
    background: -webkit-gradient(linear, left top, left bottom, from(#2774CE), to(#004da7));
    outline: none;
}

#preassignedWorkOrderLeft .loading #preassignedWorkOrderLeftSearchButton {
    background: -webkit-gradient(linear, left top, left bottom, from(#919191), to(#6f6f6f));
    cursor: default;
}

#preassignedWorkOrderLeft .rosary_loading {
    display: none;
    width: 100%;
}

#preassignedWorkOrderLeft .loading .rosary_loading {
    display: block;
}

/*同步参数、下单参数样式开始*/
.synchronizationParametersUploadingBtn,
.autoOrderConfigPanelUploadingBtn {
    height: 35px;
    font-size: 14px;
    padding: 0 10px;
}

.synchronizationParametersHistoryBtn,
.autoOrderConfigPanelHistoryBtn {
    color: #551A8B;
    cursor: pointer;
    margin-left: 10px;
}

.synchronizationParametersHistoryVersion {
    width: 313px;
    height: 91%;
    overflow: auto;
    position: fixed;
    right: -310px;
    top: 84px;
    z-index: 0;
    border-left: 1px solid #dfdfdf;
    transition-property: right;
    transition-duration: 1s;
    margin-top: 10px;
}

.synchronizationParametersHistoryVersion .historyVersion_hear {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
    border-bottom: 1px #dfdfdf solid;
    margin: 0 20px;
    position: fixed;
    width: 246px;
    background: #fff;
    z-index: 1;
}

.synchronizationParametersHistoryVersion .historyVersion_hear span:nth-of-type(1) {
    font-size: 15px;
}

.synchronizationParametersHistoryVersion .historyVersion_hear span:nth-of-type(2) {
    cursor: pointer;
}

.autoOrderConfigPanelHistoryVersion {
    width: 313px;
    height: 91%;
    overflow: auto;
    position: fixed;
    right: -310px;
    top: 84px;
    z-index: 0;
    border-left: 1px solid #dfdfdf;
    transition-property: right;
    transition-duration: 1s;
    margin-top: 10px;
}

.autoOrderConfigPanelHistoryVersion .historyVersion_hear {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
    border-bottom: 1px #dfdfdf solid;
    margin: 0 20px;
    position: fixed;
    width: 246px;
    background: #fff;
    z-index: 1;
}

.autoOrderConfigPanelHistoryVersion .historyVersion_hear span:nth-of-type(1) {
    font-size: 15px;
}

.autoOrderConfigPanelHistoryVersion .historyVersion_hear span:nth-of-type(2) {
    cursor: pointer;
}

.historyVersion_content {
    padding-bottom: 35px;
    padding-top: 61px;
}

.historyVersion_content .historyVersion_content_item {
    padding: 10px 25px 10px 31px;
    word-break: break-all;
}

.historyVersion_content .historyVersion_content_item:hover {
    background: rgba(0, 0, 0, 0.04);
}

.historyVersion_content .historyVersion_content_item p {
    cursor: default;
}

.historyVersion_content .historyVersion_content_item div {
    cursor: default;
}

.historyVersion_content .historyVersion_content_item p:nth-of-type(1) {
    font-weight: 900;
    cursor: pointer;
}

.historyVersion_content .historyVersion_content_item p:nth-of-type(1):hover {
    text-decoration: underline;
}

.historyVersion_content .historyVersion_content_item p:nth-of-type(2) {
    padding: 8px 0;
}

.historyVersion_content .historyVersion_content_item .person {
    line-height: 16px;
}

.historyVersion_content .historyVersion_content_item .person .mark {
    display: inline-block;
    border-radius: 50%;
    width: 6px;
    height: 6px;
    margin-right: 6px;
    transform: translate(0, -1.5px);
    background: #257ee6;
}

.synchronization_parameters_page .config-content {
    overflow: hidden;
    width: 850px;
}

.synchronization_parameters_page .config-panel {
    box-shadow: none;
}

.panel-body.panel-body-noheader.panel-body-noborder.luim-function-content[tab-key='samp_config_synchronization_parameters']::-webkit-scrollbar {
    display: none;
}

.panel-body.panel-body-noheader.panel-body-noborder.luim-function-content[tab-key ^='samp_config_auto_order']::-webkit-scrollbar {
    display: none;
}

.synchronization_hear,
.autoOrderConfigPanel_hear {
    border-bottom: none;
    width: 100%;
    background: #fff;
    padding: 20px 20px 0;
    margin: 0;
    z-index: 1;
    position: sticky;
    top: 0;
}

.synchronization_hear .synchronization_hear_content,
.autoOrderConfigPanel_hear .synchronization_hear_content {
    border-bottom: 1px solid #dfdfdf;
    padding: 0 15px 15px 15px;
}

/*同步参数、下单参数样式结束*/
/*商品管理设置禁用*/
#productOnSaleManageSetAvailability_permanentDisabled {
    display: inline-block;
    margin-left: 135px;
    background: #ffffff;
    padding: 4px 8px;
    border: 1px solid #009bde;
    cursor: pointer;
    color: #009bde;
}

#productOnSaleManageSetAvailability_permanentDisabled.permanentDisabled {
    margin-left: 127px;
    color: #ffffff;
    background: #009bde url(../images/selected.png) right bottom no-repeat;
    background-size: 20px;
    padding: 4px 20px 4px 8px;
}

/*售后单异常显示*/
.psGxOrderResultIsNormal span:nth-of-type(2) {
    display: block;
    margin-top: 8px;
}

.psGxOrderResultIsNormal .abnormal {
    color: red;
    font-family: '微软雅黑', sans-serif;
    text-align: center;
    overflow: hidden;
    font-size: 14px;
    line-height: 14px;
    display: none;
}

.datagrid-body .card-table table .psGxOrderResultIsSuccess {
    padding-bottom: 0;
    padding-top: 14px;
}

.psGxOrderResultIsSuccess span:nth-of-type(2) {
    margin-top: 0;
}

.psGxOrderResultIsSuccess .abnormal {
    display: inline-block;
}

/*售后单：200自动退款图片*/
.automaticRefundImg {
    background: url(../images/automaticRefund.png) right 77px no-repeat;
}

.needRefundImg {
    background: url(../images/needRefund.png) 99.4% 73px no-repeat;
    background-size: 150px;
}

.automaticRefundAndNeedRefundImg {
    background: url(../images/automaticRefund.png) right 77px no-repeat, url(../images/needRefund.png) 93.5% 79px no-repeat;
    background-size: auto, 150px;
}

.localRefundImg {
    background: url(../images/local_refund.png) 214px 0 no-repeat;
    background-size: 100px;
}

/*前端批处理机器人插件进度条样式*/
.batchBotProgressPanel {
    position: absolute;
    width: 400px;
    height: 90px;
    background: rgba(255, 255, 255, .75);
    z-index: 10000;
    bottom: -100px;
    left: 50%;
    margin-left: -200px;
    border-radius: 5px;
    padding: 10px;
    border: 1px solid #dfdfdf;
    transition-property: bottom;
    transition-duration: 1s;
}

.batchBotProgressText {
    text-align: center;
    line-height: 26px;
}

.batchBotProgressBtn {
    text-align: right;
    line-height: 20px;
}

.batchBotProgressPanel.normal {
    bottom: 15px;
}

.batchBotProgressPanel.minModel {
    background: transparent;
    border: none;
    bottom: 5px;
    height: 20px;
    padding: 0;
    cursor: pointer;
}

.batchBotProgressPanel.minModel .batchBotProgressText {
    display: none;
}

.batchBotProgressPanel.minModel .batchBotProgressBtn {
    display: none;
}

.batchBotProgressPanel .progressbar {
    background-color: #d7f4ff;
}

.batchBotProgressPanel.minModel .progressbar {
    background-color: #ffffff;
}

.psGxOrderStateRefreshBtn {
    display: none;
    margin-left: 5px;
    cursor: pointer;
    vertical-align: text-top;
}

.psGxOrderStateRefreshBtn.active {
    display: inline-block;
    margin-left: 5px;
    cursor: pointer;
    vertical-align: text-top;
}

.afterSalesStateRefreshBtn {
    display: none;
    cursor: pointer;
    height: 100%;
    line-height: 46px;
}

.afterSalesStateRefreshBtn.active {
    display: block;
}

.suGxOrderStateRefreshBtn {
    display: none;
    margin-left: 5px;
    cursor: pointer;
    vertical-align: text-top;
}

.suGxOrderStateRefreshBtn.active {
    display: inline-block;
    margin-left: 5px;
    cursor: pointer;
    vertical-align: text-top;
}

.autoOrderDataTable .autoOrderDataTableTr {
    display: none;
}

.autoOrderDataTable .autoOrderDataTableTr .autoOrderDiv {
    display: none;
}

/*代码编辑器相关样式 开始*/
.panel.window .monaco-editor * {
    font-size: unset;
}

.verify-panel {
    flex: 1;
    overflow: hidden;
    box-sizing: border-box;
}

.verify-wrap {
    display: flex;
    height: 100%;
}

.verify-grid {
    flex: 1;
    height: 100%;
    overflow: hidden;
}

.verify-middle {
    width: 200px;
    height: 100%;
    border-left: 1px solid #ccc;
    border-right: 1px solid #ccc;
    position: relative;
}

.verify-middle .icon {
    position: absolute;
    top: 50%;
    margin-top: -23px;
    width: 100%;
    text-align: center;
}

.verify-middle .icon em {
    color: #0096ff;
    font-size: 26px;
}

.layer-code-editor .btn-group {
    text-align: right;
    pointer-events: auto;
    user-select: none;
    -webkit-user-select: none;
    background-color: #fff;
    box-sizing: border-box;
    border-top: 1px solid #ccc;
    position: relative;
}

.layer-code-editor .btn-group .tip {
    position: absolute;
    left: 20px;
    color: red;
    font-size: 16px;
    top: 50%;
    margin-top: -12px;
    display: flex;
}

.layer-code-editor .btn-group .tip em {
    font-size: 12px;
    margin-right: 10px;
    line-height: 25px;
}

.layer-code-editor .btn-group a {
    height: 28px;
    line-height: 28px;
    margin: 10px;
    padding: 0 15px;
    border: 1px solid #dedede;
    background-color: #fff;
    color: #333;
    border-radius: 2px;
    font-weight: 400;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.layer-code-editor .btn-group a:hover {
    opacity: .9;
    text-decoration: none
}

.layer-code-editor .btn-group a:active {
    opacity: .8;
}

.layer-code-editor .btn-group .layui-layer-btn0 {
    border-color: #1E9FFF;
    background-color: #1E9FFF;
    color: #fff;
}

.layer-code-editor .btn-group .layui-layer-btn0.disabled {
    border-color: #dddddd;
    background-color: #d7d7d7;
    color: #4f4f4f;
    cursor: not-allowed;
    outline: none;
}

@keyframes bounce-right {
    25% {
        transform: translateX(-3px);
    }

    50% {
        transform: translateX(0);
    }

    75% {
        transform: translateX(3px);
    }

    100% {
        transform: translateX(0);
    }
}

.animate-bounce-right {
    -webkit-animation: bounce-right 1s linear infinite;
    animation: bounce-right 1s linear infinite;
}

.local-verify-panel {
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 0 5px 2px #ccc;
}

.local-verify-main {
    padding: 20px;
    background-color: #fff;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.local-verify-main .local-verify-var-area {
    flex: 1;
}

.local-verify-var-area .var-item {
    width: 100%;
    padding: 10px 5px;
}

.local-verify-var-area .var-item .var-item-value {
    font-size: 16px;
    display: flex;
    line-height: 36px;
}

.local-verify-var-area .var-item .var-item-value input {
    flex: 1;
    height: 36px;
    border: 1px solid #ccc;
    padding: 0 10px;
    line-height: 36px;
    font-size: 18px;
}

.local-verify-var-area .var-item .var-item-memo {
    font-size: 14px;
    color: #5c5c5c;
    line-height: 24px;
    padding: 10px 0;
    font-family: arial, sans-serif;
}

.local-verify-main .local-verify-btn {
    height: 50px;
    text-align: right;
    line-height: 50px;
}

.local-verify-panel .local-verify-result {
    padding: 10px 20px;
    background-color: #fff;
    height: 60px;
    line-height: 50px;
    display: block;
    box-sizing: content-box;
    border-top: 1px solid #ccc;
}

.local-verify-panel .local-verify-result span {
    color: red;
    font-size: 30px;
    margin-left: 5px;
}

.local-verify-panel .local-verify-result span.error {
    font-size: 14px;
    overflow: hidden;
    display: inline-block;
    float: right;
}

.detailTable td {
    border-left: 1px solid #dfdfdf;
    border-right: 1px solid #dfdfdf;
}

div[data-daterangepicker ^='ui-datepicker-div'] {
    z-index: 99900000 !important;
}

.daterangepickerDateTimeBox {
    padding-left: 33px;
    background-position-y: 11px;
    font-size: 12px;
    padding-bottom: 0;
    border: none;
    border-bottom: 1px solid #dfdfdf;
}

/*代码编辑器相关样式 结束*/
.refundQueriesStored:before {
    content: '已入库';
    display: inline-block;
    border: 1px solid red;
    color: red;
    border-radius: 3px;
    height: 20px;
    text-align: center;
    line-height: 20px;
    background: #ffdcdc;
    margin-right: 5px;
    padding: 0 3px;
}

.refundQueriesUnStore:before {
    content: '未入库';
    display: inline-block;
    border: 1px solid #2f7a00;
    color: #2f7a00;
    border-radius: 3px;
    height: 20px;
    text-align: center;
    line-height: 20px;
    background: #f1fff0;
    margin-right: 5px;
    padding: 0 3px;
}

.layui-layer a.layui-layer-btn1.count {
    float: left;
    margin-left: -1px;
    border: none;
    cursor: auto;
}

.layui-layer a.layui-layer-btn1.cancelRefundAddressJson {
    border: 1px solid #167bef;
    color: #167bef;
    float: left;
    margin-left: -1px;
    border-radius: 2px;
}

.layui-layer a.layui-layer-btn1.cancelLocalitSalesReturn {
    border: 1px solid #FFAFAF;
    color: #EC2424;
    float: left;
    margin-left: -1px;
    border-radius: 2px;
}

.layui-layer a.layui-layer-btn1.cancelLocalitSalesReturn.cancelCaiNiao {
    border: none;
    color: #167bef;
}

.layui-layer a.layui-layer-btn1.cancelLocalitSalesReturn.cancelCaiNiao:hover {
    background: rgba(36, 182, 236, .1);
}

.caiNiaoReturn_layer .luim-table td {
    background: unset;
}

.caiNiaoReturn_layer .checkWrap.checked {
    background: #f6f6f6;
}

a.layui-layer-btn1.cancelLocalitSalesReturn:hover {
    background: rgba(236, 36, 36, .1);
}

a.layui-layer-btn1.cancelLocalitSalesReturn.count {
    cursor: auto;
}

a.layui-layer-btn1.cancelLocalitSalesReturn.count:hover {
    text-decoration: none;
}

.failCauseDetail:hover {
    text-decoration: underline;
}

.select2-container--default.selectInputCombination {
    margin-right: -4px;
    height: 32px;
}

.select2.select2-container .select2-selection--single.selectPart {
    border: none;
    padding-top: 2px;
}

.select2-container--default .select2-selection--single.selectPart .select2-selection__arrow {
    height: 30px;
}

#afterSalesRefundQueriesSearch_minPrice:focus {
    outline-color: rgba(63, 102, 224, .5);
}

#afterSalesRefundQueriesSearch_maxPrice:focus {
    outline-color: rgba(63, 102, 224, .5);
}

.selectInputCombinationOuter {
    display: inline-block;
    border: 1px solid #dfdfdf;
}

.selectInputCombinationOuter .selectInput:focus {
    outline: none;
}

.selectInputCombinationOuter.onfocus {
    border: 2px solid rgba(63, 102, 224, .5);
    border-radius: 2px;
}

.luim-tag {
    position: absolute;
    display: inline-block;
    background-color: green;
    color: #fff;
    right: 10px;
    top: 7px;
    padding: 0 8px;
    opacity: 0;
    transition-duration: 0.8s;
    transition-property: padding-left, padding-right, width, border-radius, opacity;
    transition-timing-function: ease-in-out;
    border-radius: 5px;
    width: 115px;
    height: 18px;
    text-align: center;
}

.luim-tag.active {
    opacity: 1;
    transition-duration: 1s;
}

.luim-tag.error {
    background-color: red;
    width: 90px;
}

.luim-tag em {
    font-style: normal;
    transition-duration: 1.2s;
}

.luim-tag em.flag {
    position: absolute;
    opacity: 0;
    top: 0;
    right: 6px;
    font-size: 14px;
    line-height: 18px;
}

.luim-tag.shrink {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    padding: 0 5px;
    cursor: pointer;
    overflow: hidden;
}

.luim-tag.shrink em {
    opacity: 0;
}

.luim-tag.shrink em.flag {
    opacity: 1;
    /*display: block;*/
}

#select2-afterSalesRefundQueriesSearch_expertSearch-results {
    max-height: 300px !important;
}

#select2-afterSalesRefundQueriesSearch_expertSearch-results .select2-results__group {
    color: #dfdfdf;
    padding: 0 6px;
}

.systemLogMore {
    text-decoration: none;
    color: #676767;
    font-size: 12px;
    float: right;
    line-height: 28px;
    font-weight: normal;
}

.systemLogMore:hover {
    text-decoration: underline;
}

.aboutUs {
    position: relative;
    align-items: center;
    min-height: 11vh;
    background-color: rgb(73 146 220) !important;
    overflow: hidden;
}

.aboutUs:before {
    content: "";
    position: absolute;
    left: 50%;
    min-width: 70vw;
    min-height: 70vw;
    background-color: #fff;
    animation-name: rotate;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    bottom: 15vh;
    border-radius: 45%;
    animation-duration: 10s;
}

.aboutUs:after {
    content: "";
    position: absolute;
    left: 50%;
    min-width: 70vw;
    min-height: 70vw;
    background-color: #fff;
    animation-name: rotate;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    bottom: 13vh;
    opacity: .5;
    border-radius: 47%;
    animation-duration: 10s;
}

@keyframes rotate {
    0% {
        transform: translate(-50%, 0) rotateZ(0deg);
    }

    50% {
        transform: translate(-50%, -2%) rotateZ(180deg);
    }

    100% {
        transform: translate(-50%, 0%) rotateZ(360deg);
    }
}

.progressWrap {
    height: 14px;
    width: 200px;
    border-radius: 8px;
    background: #F1F3F5;
    text-align: left;
}

.progressWrap .progress {
    height: 100%;
    display: flex;
}

.progressWrap .progress .progressContent {
    display: inline-block;
    height: 100%;
    width: 50%;
    background: #4065E0;
    border-radius: 8px;
}

.progressWrap .progress .progressWord {
    height: 14px;
    line-height: 14px;
    vertical-align: top;
    transform: scale(0.83);
    position: absolute;
    color: black;
}

.progressWrap .progress .progressWord.insidehalf {
    color: #ffffff;
}

.progressWrap .progress .progressWord.inside {
    position: unset;
}

.progressDone .progressWrap .progressWord,
.progressStarted .progressWrap .progressWord {
    color: #ffffff;
}

.progressDone .progressWrap .progress .progressContent {
    background: #37a755;
}

#productOnSaleManageOneKeyOperation_disableInput:focus {
    outline: none;
    border: 2px solid #A0B3F0 !important;
}
#productOnSaleManageOneKeyOperation_searchStore:focus {
    outline: none;
    border: 2px solid #A0B3F0 !important;
}

#productOnSaleManageOneKeyOperation_passWord,
#salesManageNewOneKeyOperation_passWord {
    width: 240px;
    height: 30px;
    border: 1px #D2DDFF solid;
    padding-left: 15px;
    margin-left: 8px;
    border-radius: 16px;
    background: rgba(64, 101, 224, 0.1);
    outline-color: #3F66E0;
}

.tecStoreLayerBtn .layui-layer-btn2.passWordInput {
    margin: 0;
    border: none;
    padding: 0;
    border-radius: 16px;
    position: absolute;
    left: 20px;
    bottom: 24px;
}

.tecStoreLayerBtn .layui-layer-btn2.passWordInput input:focus {
    outline: none;
    border: 2px solid #A0B3F0 !important;
}

.tecStoreLayerBtn .layui-layer-btn2.passWordInput input::-webkit-input-placeholder {
    color: #8FA9FC;
}

.select2.select2-container .select2-selection--single.aKeySelect {
    border-radius: 18px;
    padding-left: 9px;
    border-color: #EDF0F4;
}

/*弹出框样式重写 开始*/
.layui-layer.layui-layer-page {
    border-radius: 8px;
    overflow: hidden;
}

.layui-layer.layui-layer-page.layui-layer-photos {
    overflow: initial;
}

.layui-layer.layui-layer-page.layui-layer-photos .layui-layer-content {
    border-radius: 8px;
}

.layui-layer.layui-layer-page.layui-layer-nobg {
    overflow: unset;
}

.layui-layer.layui-layer-page.widget-dialog {
    border-radius: 8px;
    overflow: unset;
}

.layui-layer.layui-layer-page.layui-layer-rim {
    border: none;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: none
}

.layui-layer.layui-layer-rim .layui-layer-title {
    border-bottom: none;
}

/*主按钮样式*/
.layui-layer .layui-layer-btn .layui-layer-btn0 {
    border-color: #3F66E0;
    background-color: #3F66E0;
    color: #fff;
}

/*辅按钮样式*/
.layui-layer .layui-layer-btn a {
    border: 1px solid #EDF0F4;
    color: #8F93A7;
    line-height: 26px;
}

/*弹出框样式重写 结束*/
/*select2选择框样式 开始*/
.select2-container .select2-dropdown {
    border: 1px solid #dfdfdf;
    border-radius: 6px;
}

.select2-container.select2-container--open {
    border-radius: 0;
}

.select2-container.select2-container--default .select2-results__option[aria-selected=true] {
    background-color: #E4F1FC;
    color: #4065e0;
}

.select2-container.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #F1FAFF;
    color: #24252A;
}

/*select2选择框样式 结束*/
.luim-btn.forwardOperation_copy {
    height: 28px;
    width: 64px;
    font-size: 12px;
    padding: 0;
    background: #ffffff;
    color: #3F66E0;
    border: 1px solid #3F66E0;
    border-radius: 2px;
    margin: 0;
    cursor: pointer;
    outline: none;
}

.luim-btn.forwardOperation_copy:hover {
    background: rgba(63, 102, 224, .1);
}

.localitSalesReturnSwitchDiv {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.localitSalesReturnSwitchDiv .localitSalesReturnSwitchWrap {
    width: 120px;
    height: 41px;
    background: #F5F7FA;
    text-align: center;
    padding-top: 0;
    display: flex;
    justify-content: space-around;
    border-radius: 7px;
    font-size: 14px;
    margin-left: 10px;
    align-items: center;
}

.localitSalesReturnSwitchDiv .defaultLabel {
    margin-left: 32px;
}

.localitSalesReturnSwitchDiv .defaultLabel.active {
    margin-left: 80px;
}

.refundQueriesDetailRemarkPanel .luimCommonRemarkTextarea {
    height: 94px;
    padding: 0;
}

.localitSalesReturn_switchOn .forwardOperation_textarea {
    width: 100%;
    resize: none;
    padding: 10px;
    line-height: 24px;
    height: 94px;
    border: 1px solid #dfdfdf;
    border-radius: 2px;
}

.refundQueriesDetailRemarkPanel .returnAddressWrap .returnAddress {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    margin: 10px 0;
}

.localitSalesReturn_article input {
    width: 245px;
    border-radius: 2px;
}

.localitSalesReturn_article.forwardOperationHasMjcode input {
    width: 135px;
}

.localitSalesReturn_article.forwardOperationHasMjcode>span {
    width: 98px;
}

.localitSalesReturn_article.forwardOperationHasMjcode span.input-field-type-1-label:nth-of-type(2) {
    width: 82px;
}

.localitSalesReturn_article.forwardOperationHasMjcode .forwardOperationMjBarcodeDom .input-field-type-1-label {
    width: 73px;
}

.online {
    background: #00C7B8;
}

.offline {
    background: #A8A8A8;
}

.online,
.offline {
    display: none;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    position: absolute;
    right: 0;
    top: 0;
}

.online.active,
.offline.active {
    display: block;
}

.passwordEyes {
    position: absolute;
    top: 50%;
    right: 22px;
    width: 12px;
    height: 10px;
    margin-top: -3px;
    cursor: pointer;
}

.passOpenEye {
    background: url(../images/pass_open_eye.png) 0 0 no-repeat;
    background-size: 100%;
}

.passCloseEye {
    background: url(../images/pass_close_eye.png) 0 0 no-repeat;
    background-size: 100%;
}

.inputSearchBox,
#systemUserRoleNewAddInfo_layer .search_roleName {
    outline: none;
}

.inputSearchBox:focus,
#systemUserRoleNewAddInfo_layer .search_roleName:focus {
    border: 2px solid rgba(63, 102, 224, .5) !important;
}

.tree-select-single-wrap {
    position: relative;
    width: 100%;
    height: 40px;
    border: 1px #E8EAED solid;
}

.tree-select-single-wrap:after {
    content: '';
    border-color: #888 transparent transparent transparent;
    border-style: solid;
    border-width: 5px 4px 0 4px;
    height: 0;
    right: 10px;
    margin-left: -4px;
    margin-top: -2px;
    position: absolute;
    top: 50%;
    width: 0;
}

.tree-select-single {
    width: 100%;
    height: 40px;
    padding-left: 10px;
    font-size: 14px;
    border-radius: 2px;
    line-height: 40px;
    box-sizing: border-box;
    cursor: pointer;
}

.tree-select-placeholder {
    color: #8F93A7;
}

.tree-select-panel {
    max-height: 350px;
    position: absolute;
    top: 40px;
    background-color: #ffffff;
    border: 1px #E8EAED solid;
    width: 100%;
    left: 0;
    min-height: 100px;
    z-index: 100;
    border-radius: 2px;
    overflow-x: hidden;
    display: none;
}

.stepLogo {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 13px;
    line-height: 21px;
    text-align: center;
    border: 1px solid #DEDEDE;
    color: #DEDEDE;
}

.stepLogo.active {
    background: #4065E0;
    border-color: #4065E0;
    color: #FFFFFF;
}

.stepWord {
    color: #DEDEDE;
}

.stepWord.active {
    color: #333333;
}

#flag5_information_box {
    display: none;
    width: 263px;
    border-radius: 4px;
    top: 34px;
    right: 55px;
    background: #FFFFFF;
}

#flag5_information_box.arrow_box_menu:after {
    border-bottom-color: #FFFFFF;
}

#flag5_information_box ul li {
    position: relative;
    color: #666666;
    padding: 0 0 0 13px;
    line-height: 25px;
    border-bottom: none;
}

/*物流监控界面相关样式 开始*/
#logisticsMonitorWrap {
    padding: 15px;
    background-color: #F4F4F4;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

#logisticsMonitorWrap>.header {
    height: 40px;
    display: flex;
    line-height: 40px;
}

#logisticsMonitorWrap>.header>.title {
    width: 160px;
    font-size: 22px;
    margin-right: 28px;
}

#logisticsMonitorWrap>.header>.title em {
    width: 5px;
    height: 40px;
    display: inline-block;
    background-color: #00a2d4;
    vertical-align: bottom;
    margin-right: 10px;
}

#logisticsMonitorWrap>.header .searchBar input {
    font-size: 12px;
}

#logisticsMonitorWrap .statPanel {
    height: 164px;
    display: flex;
    margin-top: 20px;
}

#logisticsMonitorWrap .statPanel .statBlockArea {
    flex: 1;
    display: flex;
}

#logisticsMonitorWrap .statPanel .statBlockArea>div {
    flex: 1;
    background-color: #FFFFFF;
    text-align: center;
    display: flex;
    flex-direction: column;
    margin: 0 13px;
    border-radius: 6px;
    cursor: pointer;
}

#logisticsMonitorWrap .statPanel .statBlockItem .title {
    height: 60px;
    line-height: 80px;
    font-size: 16px;
}

#logisticsMonitorWrap .statPanel .statBlockItem .number {
    flex: 1;
    justify-content: center;
    font-size: 36px;
    font-family: Arial, serif;
    line-height: 62px;
    overflow: hidden;
}

#logisticsMonitorWrap .statPanel .statBlockItem .number span.flag {
    font-size: 18px;
    display: inline-block;
    margin-right: 5px;
}

#logisticsMonitorWrap .statPanel .statBlockItem .qoq {
    height: 45px;
    line-height: 40px;
    font-size: 14px;
}

#logisticsMonitorWrap .statPanel .statBlockItem .qoq em {
    font-family: "iconfont" !important;
    font-size: 14px;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

#logisticsMonitorWrap .statPanel .statBlockItem .qoq.rise {
    color: red;
}

#logisticsMonitorWrap .statPanel .statBlockItem .qoq.rise em {
    display: inline-block;
}

#logisticsMonitorWrap .statPanel .statBlockItem .qoq.rise em:before {
    content: "\e69a";
}

#logisticsMonitorWrap .statPanel .statBlockItem .qoq.decline em {
    display: inline-block;
}

#logisticsMonitorWrap .statPanel .statBlockItem .qoq.decline {
    color: green;
}

#logisticsMonitorWrap .statPanel .statBlockItem .qoq.decline em:before {
    content: "\e695";
}

#logisticsMonitorWrap .statPanel .openOrderPanel {
    width: 90px;
    background-color: #4385F8;
    border-radius: 6px;
    text-align: center;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    cursor: pointer;
    font-size: 14px;
    line-height: 22px;
}

#logisticsMonitorWrap .statPanel .openOrderPanel em {
    font-family: "iconfont" !important;
    font-size: 12px;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

#logisticsMonitorWrap .statPanel .openOrderPanel em:before {
    content: "\e68c";
}

#logisticsMonitorWrap .statEchartsPanel {
    display: flex;
    margin-top: 30px;
    flex: 1;
}

#logisticsMonitorWrap .statEchartsPanel .echartsPanel {
    flex: 1;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
}

#logisticsMonitorWrap .statEchartsPanel .echartsPanel>.title,
#logisticsMonitorWrap .statEchartsPanel .timeoutDataSourcePanel>.title {
    height: 60px;
    font-size: 21px;
    padding-top: 10px;
    padding-left: 15px;
    box-sizing: border-box;
}

#logisticsMonitorWrap .statEchartsPanel .echartsPanel>.title em,
#logisticsMonitorWrap .statEchartsPanel .timeoutDataSourcePanel>.title em {
    font-size: 30px;
    color: #7b60ed;
    vertical-align: middle;
    margin-right: 10px;
}

#logisticsMonitorWrap .statEchartsPanel .timeoutDataSourcePanel {
    width: 420px;
    background-color: #ffffff;
    margin-left: 30px;
}

#logisticsMonitorWrap .statEchartsPanel .timeoutDataSourcePanel>.title em {
    color: #5335e9;
}

#logisticsMonitorWrap .statEchartsPanel .timeoutDataSourcePanel .displayPanel .header {
    display: block;
    height: 30px;
    font-size: 16px;
    padding: 15px;
    font-weight: bold;
    box-sizing: content-box;
}

#logisticsMonitorWrap .statEchartsPanel .timeoutDataSourcePanel .displayPanel .header em {
    display: inline-block;
    width: 35px;
    height: 35px;
    vertical-align: middle;
    background-color: #4423E7;
    color: #ffffff;
    font-size: 16px;
    line-height: 35px;
    overflow: hidden;
    border-radius: 50%;
    text-indent: 9px;
    font-style: normal;
    margin-right: 10px;
}

#logisticsMonitorWrap .statEchartsPanel .timeoutDataSourcePanel .displayPanel .displayItem {
    display: flex;
    width: 100%;
    margin-bottom: 10px;
}

#logisticsMonitorWrap .statEchartsPanel .timeoutDataSourcePanel .displayPanel .displayItem>div {
    flex: 1;
    text-align: center;
    margin-right: 5px;
    font-size: 16px;
}

#logisticsMonitorWrap .statEchartsPanel .timeoutDataSourcePanel .displayPanel .displayItem .name {
    width: 140px;
    text-align: right;
    flex: unset;
}

#logisticsMonitorWrap .statEchartsPanel .timeoutDataSourcePanel .displayPanel .displayItem .percent {
    width: 70px;
    flex: unset;
    text-align: left;
}

/*物流监控界面相关样式 结束*/
.tabs-disabled .disabledDom {
    cursor: context-menu;
}

.priceCalculateParam_content .tabs-header .tabs .tabs-disabled .disabledDom .tabs-title {
    font-size: 20px;
}

.eyesDom, .eyesDom12 {
    cursor: pointer;
    color: #4065e0;
}

#tcStatus.aaa {
    position: absolute;
    right: 20px;
    bottom: 160px;
}

#afterSalesRefreshBatchDiv {
    position: absolute;
    left: 49.5%;
    bottom: 5px;
    display: flex;
}

#afterSalesRefreshBatchBtn,#ddAfterSalesRefreshBatchBtn,#pddAfterSalesRefreshBatchBtn {
    background: #4065e0;
    color: #ffffff;
    padding: 2px 5px;
    border-radius: 4px;
    cursor: pointer;
    display: none;
}

#afterSalesRefreshBatchDiv .afterSalesProgress {
    display: none;
}

#afterSalesRefreshBatchDiv .afterSalesProgress.active {
    display: flex;
}
#ddAfterSalesRefreshBatchDiv .afterSalesProgress.active {
    display: flex;
}
#afterSalesRefreshBatchBtn.active,#ddAfterSalesRefreshBatchBtn.active,#pddAfterSalesRefreshBatchBtn.active {
    display: block;
}

#t_verify.changeType {
    z-index: 0 !important;
}

#t_mask.changeType {
    display: none;
}

.colum_bgcolor.colum_color_type1 {
    background: #F3D2D2 !important;
}

.colum_bgcolor.colum_color_type2 {
    background: #f5e7d4 !important;
}

.colum_bgcolor.colum_color_type3 {
    background: #d8f2ed !important;
}

.permissionPage {
    position: relative;
    width: 100%;
    height: 100%;
}

.permissionPage .permissionDiv {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -144px;
    margin-left: -293px;
}

/*tipso 样式扩展浅色背景配合样式*/
.tipso_content {
    word-break: break-all;
}
.tipso_content.chase {
    box-shadow: #011e3a 0 0 0 1px;
    padding: 0 10px;
}

.tipso_arrow.chase-right {
    border-right-color: #011e3a !important;
}

.inputTypeThreeWrapDom input {
    width: 310px;
    height: 40px;
    border: 1px #E8EAED solid;
    padding-left: 10px;
    border-radius: 2px;
}

.checkboxWrap {
    display: inline-block;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid #E5EEFD;
    text-align: center;
    line-height: 10px;
    cursor: pointer;
    vertical-align: text-top;
}

.checkboxWrap.checked {
    border: 2px solid #4065E0;
}

.checkboxWrap.checked .checkboxInner {
    display: inline-block;
    height: 8px;
    width: 8px;
    background: #8BA5FA;
    border-radius: 50%;
}

.createOrdersOfBsReadFile {
    width: 80px;
    height: 40px;
    border: 1px #E8EAED solid;
    border-left: none;
    color: #666666;
    font-size: 14px;
    line-height: 40px;
    text-align: center;
    cursor: pointer;
}

.createOrdersOfBsAddFileDom {
    width: 45px;
    border: 1px #E8EAED solid;
    height: 40px;
    border-left: none;
    line-height: 40px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.createOrdersOfBsAddFileDom .createOrdersOfBsAddFileDomInner {
    height: 19px;
    width: 19px;
    border-radius: 50%;
    background: #4065E0;
    color: #ffffff;
    font-size: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    user-select: none;
}

.inputTypeThreeWrapDom table td {
    padding: 3px 10px;
}

.bswo-title {
    font-size: 20px;
    font-weight: 500;
    padding-left: 40px;
    margin-top: 15px;
}

.bswo-wrap {
    margin: 10px 20px;
    border: 1px solid #F1F2F5;
    border-radius: 16px;
    overflow: hidden;
    min-height: 200px;
    font-size: 16px;
}

.bswo-wrap.img-list,
.file-window.img-list {
    border: none;
}

.file-window.img-list {
    background-color: #fff;
    display: block;
    overflow: hidden;
}

.bswo-wrap.img-list a,
.file-window.img-list a {
    float: left;
    margin: 10px;
    height: 190px;
    border: 1px solid #ccc;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
}

.file-window.img-list a {
    height: 100px;
}

.bswo-wrap.img-list a:hover,
.file-window.img-list a:hover {
    background-color: #f5f5f5;
}

.bswo-wrap.img-list img {
    height: 170px;
}

.file-window.img-list img {
    height: 80px;
}

.bswo-wrap th,
.bswo-wrap td {
    background-color: #FFFFFF;
    padding: 5px;
}

.bswo-wrap .fileButton {
    width: 24px;
    height: 24px;
    background: #5BC0DE;
    border-radius: 4px;
    color: #ffffff;
    border: none;
    cursor: pointer;
}

.bswo-wrap .fileButton:hover {
    background-color: #31b0d5;
    border-color: #269abc;
}

.bswo-wrap tr.logsTr:hover td {
    background-color: #f5f5f5;
}

.button_type_1 {
    padding: 3px 5px;
    margin: 5px;
    display: inline-block;
    border-radius: 2px;
    border: 1px solid #E8EAED;
    color: #8F93A7;
    background: #FFFFFF;
    font-size: 14px;
    cursor: pointer;
}

.button_type_1:hover {
    border: 1px solid #4065E0;
}

.button_type_1.disabled {
    background: #F4F1F1;
    cursor: default;
}

.button_type_1.disabled:hover {
    border: 1px solid #E8EAED;
}

.button_type_1.checked {
    border: 1px solid #4065E0;
    color: #4065E0;
    background: #fbfcff;
}

.warehouseFloatConfigPanelPage .config-panel .config-content .config-item>label {
    width: 183px;
}

.warehouseFloatConfigPanelPage .config-panel .config-content .changeDataLogo {
    width: 15px;
    height: 15px;
    text-align: center;
    line-height: 15px;
    color: #ffffff;
    background-color: #118a00;
    margin-top: 17px;
    margin-left: 2px;
    border-radius: 50px;
    font-size: 12px;
}

.warehouseFloatConfigPanelPage .config-panel .config-content .config-small-table {
    border-collapse: collapse;
    text-align: center;
    width: 1500px;
}

.warehouseFloatConfigPanelPage .config-panel .config-content .config-small-table tr td {
    width: 150px;
    border: 1px solid #dfdfdf;
    height: 45px;
    line-height: 7px;
}

.warehouseFloatConfigPanelPage .config-panel .config-content .config-small-table tr td:first-of-type {
    width: 120px;
    font-size: 16px;
}

.warehouseFloatConfigPanelPage .config-panel .config-content .config-small-table .supportLogo {
    height: 20px;
    width: 20px;
    border: 3px solid green;
    display: inline-block;
    border-radius: 50%;
}

.warehouseFloatConfigPanelPage .config-panel .config-content .config-small-table .unsupportLogo {
    font-size: 31px;
    color: red;
    cursor: default;
}

.warehouseFloatConfigPanelPage .config-panel .config-content .config-small-table input {
    width: 50px;
    border: none;
    border-bottom: 1px solid black;
    height: 26px;
    text-align: center;
}

.warehouseFloatConfigPanelPage .config-panel .config-content .config-small-table input:focus {
    outline: none;
}

.warehouseFloatConfigPanelPage .config-panel .config-content .config-small-table .changeDataLogo {
    display: inline-block;
    margin-top: 0;
}

.warehouseFloatConfigPanelPage .config-panel .config-content .config-item .form-item .input-panel.active input {
    border: none;
}

.time-panel {
    display: flex;
    margin-top: 2px;
}

.time-panel .time-span {
    flex: 1;
    font-size: 14px;
    color: #9294a0;
    height: 24px;
    background: #f4f4f4;
    border: 1px solid #f4f4f4;
    border-radius: 4px;
    line-height: 24px;
    text-align: center;
    vertical-align: middle;
    padding: 0 2px;
}

.time-panel .time-span:nth-child(1) {
    margin-right: 4px;
}

.time-panel .time-span:nth-child(2) {
    flex: none;
    padding: 0 8px;
}

.time-panel .warning {
    color: #FE0649;
    background-color: #ffffff;
    border-color: #FFD0DC;
}

.time-panel .forword-tag {
    font-size: 14px;
    color: #4385F8;
    height: 18px;
    background: #ffffff;
    border: 1px solid #4385F8;
    border-radius: 4px;
    line-height: 20px;
    text-align: center;
    vertical-align: middle;
    transform: scale(0.9);
    box-sizing: content-box;
    padding: 0 10px;
    margin-right: -2px;
    margin-left: -2px;
}

.time-panel .divide {
    font-size: 14px;
    width: 5px;
    height: 24px;
    text-align: center;
    vertical-align: bottom;
    line-height: 24px;
}

#fakeRepairContainer {
    margin: 15px;
}

#fakeRepairContainer .txt {
    text-align: center;
    font-size: 18px;
}

.fakeRepairProgressBarWrap {
    height: 28px;
    background-color: #dae3ff;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 0 1px 0 #a0a0a0;
    margin-top: 10px;
}

.fakeRepairProgressBar {
    height: 28px;
    background-color: #4268dd;
}

#batchProcessing_layer .show-tip {
    background: #ff0526;
    visibility: hidden;
}

#batchProcessing_layer .show-tip.isShow {
    visibility: visible;
}

.finish-animation {
    position: relative;
    font-size: 16px;
    line-height: 26px;
}

.finish-animation .m-duigou {
    width: 17px;
    height: 9px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    overflow: hidden;
    display: inline-block;
    vertical-align: text-top;
    margin-top: 2px;
    margin-left: 10px;
}

.finish-animation .m-duigou:before,
.m-duigou:after {
    content: "";
    position: absolute;
    background: #008f26;
    border-radius: 6px;
}

.finish-animation .m-duigou:before {
    width: 3px;
    height: 9px;
    left: 0;
    -webkit-animation: dgLeft 0.3s linear 1s 1 both;
    animation: dgLeft 0.3s linear 1s 1 both;
}

.finish-animation .m-duigou:after {
    width: 17px;
    height: 3px;
    bottom: 0;
    -webkit-animation: dgRight 0.3s linear 1.5s 1 both;
    animation: dgRight 0.3s linear 1.5s 1 both
}

@-webkit-keyframes dgLeft {
    0% {
        top: -100%
    }

    100% {
        top: 0%
    }
}

@-webkit-keyframes dgLeft {
    0% {
        top: -100%
    }

    100% {
        top: 0%
    }
}

@-webkit-keyframes dgRight {
    0% {
        left: -100%
    }

    100% {
        left: 0%
    }
}

@-webkit-keyframes dgRight {
    0% {
        left: -100%
    }

    100% {
        left: 0%
    }
}

/*补单快递运费选择器样式*/
.select2.select2-container .select2-selection--single.resupply-express-select {
    height: 20px;
}

.select2.select2-container .select2-selection--single.resupply-express-select .select2-selection__rendered {
    line-height: 18px;
    font-size: 12px;
    padding-right: 18px;
}

.select2.select2-container .select2-selection--single.resupply-express-select .select2-selection__arrow {
    height: 18px;
}

#refundManyRepeat_layer .refundManyRepeat_soNameList .refundManyRepeat_soNameLabel:hover {
    background: #e6f6ff;
}

.message-layer .layui-layer-setwin .layui-layer-close2 {
    right: -6px;
    top: -6px;
}

.message-layer .Progress {
    font-size: 15px;
    color: black;
    margin-left: 30px;
}

.message-layer .box3 {
    font-size: 35px;
    color: black;
    margin-left: 30px;
    text-align: center;
}


.message-layer .p1 {
    font-size: 15px;
    color: #DDDDDD;
    margin-left: 180px;
    vertical-align: top;
}


.message-layer .p2 {
    font-size: 15px;
    color: black;
    margin-left: 120px;
    vertical-align: top;
}

.message-layer .p3 {
    font-size: 15px;
    color: black;
    margin-left: 200px;
}

.message-layer .playBox {
    width: 500px;
    height: 259px;
    position: relative;
    overflow: hidden;
    display: flex;
}

.message-layer .playBox .pic-oUlplay {
    width: 170px;
    height: 200px;
    overflow: hidden;
    margin-top: 40px;
    margin-left: 55px;
}

.message-layer .playBox .pic-oUlplay .oUlplay {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.2s;
}


/*
#playBox .smalltitle .thistitle{
    background:#69aaec;
}
*/


/* 通知小弹窗样式 */

@keyframes sinking {
    0% {
        top: 0;
    }

    100% {
        top: 100px;
    }
}

.notice-list::-webkit-scrollbar {
    width: 4px !important;
    height: 14px !important;
}

.notice-list::-webkit-scrollbar-thumb {
    width: 2px !important;
    height: 14px !important;
    border-radius: 10px !important;
    background-color: rgba(0, 0, 0, 0.2) !important;
}

.remakes-notice-dialog {
    width: 416px;
    padding: 0 8px;
    box-sizing: border-box;
    border-radius: 5px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
    background-color: #fff;
    position: absolute;
    right: 0;
    top: 48px;
    display: block;
    z-index: 99999999;
}

.remakes-notice-dialog .notice-null {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.remakes-notice-dialog .notice-null>img {
    width: 100px;
    height: 100px;
}

.remakes-notice-dialog>.notice-header {
    width: 100%;
    height: 56px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    user-select: none;
    font-size: 14px;
}

.remakes-notice-dialog>.notice-header>button {
    position: absolute;
    right: 10px;
    width: 88px;
    height: 32px;
    background-color: #fff;
    border: none;
    color: #0052d9;
    cursor: pointer;
    border-radius: 4px;
}

.remakes-notice-dialog>.notice-header>span {
    color: #000;
    font-size: 14px;
}

.remakes-notice-dialog>.notice-header>button:hover {
    background-color: #f3f3f3;
}

.remakes-notice-dialog>.notice-header::before {
    content: '';
    display: block;
    width: 400px;
    height: 1px;
    position: absolute;
    bottom: 0;
    left: 8px;
    background-color: #888;
    transform: scaleY(0.1);
}

.remakes-notice-dialog>.notice-list {
    width: 400px;
    height: 396px;
    box-sizing: border-box;
    overflow-y: auto;
    overflow-x: hidden;
    position: relative;
}

.remakes-notice-dialog>.notice-list>.notice-item {
    width: 100%;
    height: 92px;
    padding: 16px 24px;
    box-sizing: border-box;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: #fff;
    overflow: hidden;
}

.remakes-notice-dialog>.notice-list>.notice-item>.item-top {
    width: 100%;
    height: 25px;
    display: flex;
    align-items: center;
}

.remakes-notice-dialog>.notice-list>.notice-item>.item-top>span {
    font-size: 14px;
    color: #0052da;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.remakes-notice-dialog>.notice-list>.notice-item>.item-bottom {
    width: 100%;
    height: 25px;
    position: relative;
    display: flex;
    justify-content: space-between;
}

.remakes-notice-dialog>.notice-list>.notice-item>.item-bottom>span {
    color: rgba(0, 0, 0, 0.6);
    font-size: 14px;
}

.remakes-notice-dialog>.notice-list>.notice-item>.item-bottom>span:nth-child(2) {
    position: absolute;
    top: 0;
    right: 0;
    transition: .6s;
}

.remakes-notice-dialog>.notice-list>.notice-item>.item-bottom>button {
    width: 64px;
    height: 24px;
    opacity: 1;
    transition: .6s;
    position: absolute;
    top: 100px;
    right: 0;
    border-radius: 2px;
    font-size: 12px;
    cursor: pointer;
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.2);
}

.remakes-notice-dialog>.notice-list>.notice-item>.item-bottom>button:hover {
    border: 1px solid #0052da;
    color: #0052da;
}

/* 右上角铃铛弹出列表hover样式 */
.notice-item {
    background-color: #ffffff;
}

.remakes-notice-dialog>.notice-list>.notice-item>.item-bottom>.notice-item-time {
    top: 0;
    opacity: 1;
}

.remakes-notice-dialog>.notice-list>.notice-item>button {
    top: 100px;
    opacity: 0.1;
}

.notice-item:hover {
    background-color: #f3f3f3;
}

.remakes-notice-dialog>.notice-list>.notice-item:hover>.item-bottom>.notice-item-time {
    top: 100px;
    opacity: 0.1;
}

.remakes-notice-dialog>.notice-list>.notice-item:hover>.item-bottom button {
    top: 0;
    opacity: 1;
}

.remakes-notice-dialog>.notice-list>.notice-item::before {
    content: '';
    display: block;
    width: 400px;
    height: 1px;
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: #888;
    transform: scaleY(0.1);
}

.remakes-notice-dialog>.notice-bottom {
    width: 100%;
    height: 56px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.remakes-notice-dialog>.notice-bottom::before {
    content: '';
    display: block;
    width: 400px;
    height: 1px;
    position: absolute;
    top: 0;
    left: 8px;
    background-color: #888;
    transform: scaleY(0.1);
}

.remakes-notice-dialog>.notice-bottom>button {
    width: 88px;
    height: 32px;
    background-color: #fff;
    border: none;
    color: #0052d9;
    cursor: pointer;
    font-size: 14px;
    border-radius: 4px;
}

.remakes-notice-dialog>.notice-bottom>button:hover {
    background-color: #f3f3f3;
}


.notice-container {
    width: 100%;
    height: 100%;
    display: none;
    background-color: #fff;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    position: absolute;
    left: 0;
    top: 34px;
    z-index: 999;
}

.notice-null {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.notice-null>img {
    width: 100px;
    height: 100px;
}

.notice-container>.notice-all-list {
    width: 100%;
    height: 500px;
}

.notice-container>.notice-all-list>.notice-child {
    width: 100%;
    height: 48px;
    padding-right: 200px;
    padding-left: 10px;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    background-color: #fff;
    cursor: pointer;
}

.notice-container>.notice-all-list>.notice-child::before {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: #888;
    transform: scaleY(0.1);
}

.notice-container>.notice-all-list>.notice-child:hover {
    background-color: #f3f3f3;
}

.notice-container>.notice-all-list>.notice-child>.notice-child-left {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.notice-container>.notice-all-list>.notice-child>.notice-child-left>span:nth-child(1) {
    display: inline-block;
    padding: 2px 8px;
    font-size: 13px;
    margin-right: 10px;
    border-radius: 3px;
    color: #e34d59;
    background-color: #fdecee;
}

.notice-container>.notice-all-list>.notice-child>.notice-child-left>span:nth-child(2) {
    color: rgba(0, 0, 0, 0.9);
    font-size: 16px;
}

.notice-container>.notice-all-list>.notice-child>.notice-child-right {
    width: 200px;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.notice-container>.notice-all-list>.notice-child>.notice-child-right>span {
    color: rgba(0, 0, 0, 0.9);
    font-size: 16px;
}


.notice-container>.tabs {
    width: 100%;
    height: 50px;
    padding: 1px 10px;
    display: flex;
    align-items: center;
    background-color: #fff;
    box-sizing: border-box;
    position: relative;
    z-index: 9999;

}

.notice-container .close {
    width: 26px;
    height: 26px;
    position: absolute;
    right: 18px;
    top: 8px;
    cursor: pointer;
}

.notice-container>.tabs::before {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: #888;
    transform: scaleY(0.6);
}

.notice-container>.tabs .tab-item {
    width: 100px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
    font-size: 16px;
}

.notice-container>.tabs .tab-item>.hr {
    width: 100%;
    height: 2px;
    position: absolute;
    left: 0;
    bottom: 0;
    background-color: #fff;
}

.message-num {
    position: absolute;
    left: 23px;
    top: 8px;
    width: 21px !important;
    height: 21px !important;
    line-height: 20px !important;
    font-size: 13px;
    color: #fff !important;
    border-radius: 50%;
    background-color: red;
    transform: scale(0.9);
    display: none;
}

/*利润率配置历史版本样式 开始*/
.profitHistoryPanel {
    width: 33%;
    height: 600px;
    overflow-y: auto;
    padding: 10px 10px 20px 20px;
}

.profitHistoryPanel .historyItem {
    padding: 10px 0 10px 15px;
    cursor: pointer;
    border-bottom: 1px solid #e3e3e3;
}

.profitHistoryPanel .historyItem:hover {
    background: rgba(0, 0, 0, 0.04);
}

.profitHistoryPanel .historyItem:last-child {
    border-bottom: none;
}

/*利润率配置历史版本样式 结束*/
.refundNewMessageStateLogo {
    width: 15px;
    height: 15px;
    background: #ffffff;
    display: inline-block;
    border-radius: 50%;
    margin-right: 7px;
    vertical-align: sub;
}

.refundNewMessageStateLogo.refundNewMessageStateLogo1 {
    background: #d9001b;
}

.refundNewMessageStateLogo.refundNewMessageStateLogo2 {
    background: #ec808d;
}

.refundNewMessageStateLogo.refundNewMessageStateLogo3 {
    background: #caf982;
}

.refundNewMessageStateLogo.refundNewMessageStateLogo4 {
    background: #70b603;
}

.cssmarquee {
    position: absolute;
    top: 68px;
    z-index: 1;
    width: 100%;
    height: 40px;
    line-height: 40px;
    font-size: 24px;
    background: rgba(0, 57, 219, .64);
    overflow: hidden;
    display: none;
}

.cssmarquee.showTime {
    display: block;
}

.cssmarquee .wrapper {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    animation: cssmarqueeWrapper 15s linear infinite;
}

.cssmarquee .marqueeWords {
    font-size: 16px;
    color: #ffffff;
    line-height: 40px;
    position: absolute;
    height: 100%;
    left: 0;
    top: 0;
    margin: 0;
    text-align: left;
    white-space: nowrap;
    transform: translateX(0);
    animation: cssmarquee 15s linear infinite;
}

@keyframes cssmarqueeWrapper {
    0% {
        transform: translateX(100%);
        /* parent 100% */
    }

    100% {
        transform: translateX(0);
    }
}

@keyframes cssmarquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
        /* words -100% */
    }
}

/* 卡券弹出界面样式 */

.card-voucher {
    width: 100%;
    height: 100%;
    padding: 40px 50px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;

}

.card-voucher img {
    width: 400px;
    height: 200px;
    margin-bottom: 15px;
}

.card-voucher .voucher-item {
    width: 100%;
    height: 40px;
    padding: 0 10px;
    box-sizing: border-box;
    margin-top: 10px;
    border-radius: 5px;
    background-color: #f5f5f5;
    display: flex;
    align-items: center;
}

.card-voucher .voucher-item> :nth-child(1) {
    color: #333;
}

.card-voucher .voucher-item> :nth-child(2) {
    color: #006eff;
    font-size: 13px;
}

.card-voucher .voucher-items {
    width: 100%;
    height: 40px;
    padding: 0 10px;
    box-sizing: border-box;
    margin-top: 20px;
    border-radius: 5px;
    display: flex;
    align-items: center;
}


@keyframes ToLef {
    0% {
        left: 200px;
        opacity: 0.1;
    }

    100% {
        left: 0;
        opacity: 1;

    }
}

@keyframes first {
    0% {
        transform: translateX(0px);
    }

    100% {
        transform: translateX(200px);
    }

}

.medal-remakes-popup-tolef {
    animation: ToLef .4s;
}

.medal-remakes-popup {
    width: 100%;
    height: 100%;
    background-color: #fff;
    box-sizing: border-box;
    overflow: hidden;
}

.medal-remakes-popup>.medal-remakes-header {
    width: 100%;
    height: 258px;
    padding: 0 30px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.medal-remakes-popup>.medal-remakes-header>.medal-remakes-header-left {
    width: 45px;
    height: 45px;
}

.medal-remakes-popup>.medal-remakes-header>.medal-remakes-header-left>img {
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.medal-remakes-popup>.medal-remakes-header>.medal-remakes-header-right {
    width: 45px;
    height: 45px;
}

.medal-remakes-popup>.medal-remakes-header>.medal-remakes-header-right>img {
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.medal-remakes-popup>.medal-remakes-header>.medal-remakes-header-img {
    width: 170px;
    height: 200px;
    position: relative;
}

.medal-remakes-popup>.medal-remakes-header>.medal-remakes-header-img>img {
    width: 170px;
    height: 200px;
    position: absolute;
    left: 0
}

.medal-remakes-popup .medal-remakes-level-wrap {
    width: 530px;
    display: flex;
    overflow: hidden;
    margin: 0 auto;
}

.medal-remakes-popup .medal-remakes-level-wrap.center {
    justify-content: center;
}

.medal-remakes-popup .medal-remakes-level,
.medal-remakes-popup .medal-remakes-level-text {
    display: flex;
    justify-content: center;
    transition: all .5s;
}

.medal-remakes-popup .medal-remakes-level {
    margin-left: 4px;
}

.medal-remakes-popup .medal-remakes-level .medal-remakes-level-item,
.medal-remakes-popup .medal-remakes-level-text .medal-remakes-level-item {
    width: 60px;
    height: 22px;
    box-sizing: border-box;
    background-color: #fff;
    position: relative;
    display: flex;
    align-items: center;
}

.medal-remakes-popup .medal-remakes-level .medal-remakes-level-item.level-item-hidden .medal-remakes-level-item-progress {
    opacity: 0;
}

.medal-remakes-popup .medal-remakes-level .medal-remakes-level-item .item-ball {
    box-sizing: content-box;
    background-color: #ffffff;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    border: #cbcbcb 4px solid;
    cursor: pointer;
    transition: all .6s;
}

.medal-remakes-popup .medal-remakes-level .medal-remakes-level-item .item-ball:hover {
    box-shadow: 0 0 2px 4px #aecbff;
    border: #4165df 4px solid;
    z-index: 1;
}

.medal-remakes-popup .medal-remakes-level .medal-remakes-level-item.hold-medal .item-ball:hover {
    box-shadow: 0 0 2px 4px #aecbff;
    z-index: 1;
}

.medal-remakes-popup .medal-remakes-level .medal-remakes-level-item.hold-medal .item-ball {
    background-color: #ffffff;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    border: #4165df 4px solid;
}

.medal-remakes-popup .medal-remakes-level .medal-remakes-level-item.hold-medal.current-hold .item-ball {
    background-color: #4165df;
    border: #4165df 3px solid;
    box-shadow: 0 0 2px 4px #aecbff;
    z-index: 1;
}

.medal-remakes-popup .medal-remakes-level-text .medal-remakes-level-item span {
    font-size: 14px;
}

.medal-remakes-popup .medal-remakes-level-text .medal-remakes-level-item.hold-medal.current-hold span {
    font-size: 16px;
    font-weight: bold;
    text-indent: -4px;
}

.medal-remakes-popup .medal-remakes-level .medal-remakes-level-item.current .item-ball {
    border: #4165df 4px solid !important;
    box-shadow: 0 0 2px 4px #aecbff;
    background-color: #01f22f;
}

.medal-remakes-popup .medal-remakes-level .medal-remakes-level-item:last-child .medal-remakes-level-item-progress {
    display: none;
}

.medal-remakes-popup .medal-remakes-level .medal-remakes-level-item-progress {
    flex: 1;
    height: 4px;
    position: relative;
    border-radius: 0;
    overflow: hidden;
    display: flex;
    background-color: #bfcad9;
    transition: all .5s;
}

.medal-remakes-popup .medal-remakes-level .medal-remakes-level-item-progress div {
    height: 100%;
    background-color: #4165df;
    position: absolute;
    left: 0;
    top: 0;
}

.medal-remakes-popup>.medal-remakes-info {
    width: 100%;
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.medal-remakes-popup>.medal-remakes-info>span:nth-child(1) {
    display: inline-block;
    padding: 5px 20px;
    box-sizing: border-box;
    border-radius: 10px;
    color: #000;
    font-size: 35px;
    background-color: #f5f5f5;
}

.medal-remakes-popup>.medal-remakes-info>span:nth-child(2) {
    color: #888;
    font-size: 14px;
    margin-top: 20px;
}

.medal-remakes-popup>.medal-remakes-info>span:nth-child(3) {
    color: #333;
    font-size: 14px;
    margin-top: 20px;
}

.medal-remakes-popup>.medal-remakes-info>span:nth-child(4) {
    color: #222;
    font-size: 14px;
    margin-top: 20px;
}

.storeItemDom .storeItemFieldsetDom {
    border: 1px solid #dfdfdf;
    margin: 20px 20px 0 20px;
    position: relative;
    padding-left: 5px;
}

.storeItemDom .storeItemFieldsetDom .storeItemLegend {
    padding: 0 10px;
    margin-left: 30px;
    font-size: 18px;
}

.storeItemDom .storeItemFieldsetDom .storeItemLegend img {
    height: 22px;
    vertical-align: sub;
    margin-right: 10px;
}

.storeItemDom .storeItemFieldsetDom .storeItemContentWrap {
    padding: 11px 10px 17px 40px;
    font-size: 14px;
    margin-bottom: -10px;
}

.storeItemDom .storeItemFieldsetDom .storeItemContentWrap .storeItemContentItem {
    display: inline-block;
    padding-right: 28px;
    padding-bottom: 10px;
}

.storeItemDom .storeItemFieldsetDom .storeItemContentWrap .storeItemContentItem label {
    cursor: pointer;
    display: flex;
    align-items: center;
}

.storeItemDom .storeItemFieldsetDom .storeItemContentWrap .storeItemContentItem input {
    vertical-align: middle;
}

.storeItemDom .storeItemFieldsetDom .storeItemContentWrap .storeItemContentItem .storeItemContentItemName {
    margin-left: 5px;
    color: #666666;
    font-weight: 400;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    word-break: break-all;
    width: 125px;
}

.storeItemDom .allCheckLabel {
    cursor: pointer;
    position: absolute;
    right: 7px;
    top: -8px;
}

.storeItemDom .allCheckLabel .allCheckInput {
    vertical-align: text-bottom;
    cursor: pointer;
}

.storeItemDom .allCheckLabel .allCheckTitle {
    color: #666666;
    font-weight: 400;
}

.allCheckLabel.allCheckStoreLabel {
    display: flex;
    align-items: center;
    cursor: pointer;
    position: absolute;
    right: 23px;
    bottom: 3px;
}

#businessCard_user {
    width: 320px;
    min-height: 150px;
    position: fixed;
    top: 400px;
    right: 274px;
    z-index: 900099;
    /*border-radius: 29px;*/
    /*background: linear-gradient(145deg, #cacaca, #f0f0f0);*/
    /*box-shadow:  5px 5px 10px #bebebe,*/
    /*-5px -5px 10px #ffffff;*/
    background-color: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);
    border: 0 solid rgba(255, 255, 255, 0.18);
    box-shadow: rgba(142, 142, 142, 0.19) 0 6px 15px 0;
    -webkit-box-shadow: rgb(142 142 142) 0 6px 15px 0;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    color: rgb(255, 255, 255);
    display: block;
    transition: all .5s;
}

.user_like {
    position: absolute;
    top: 16px;
    right: 10px;
    height: 50px;
    width: 50px;
    color: black;
    transition: all .5s;
}

.user_like:before {
    position: absolute;
    right: 16px;
    cursor: pointer;
    font-size: 16px;
}

.user_likeNum {
    font-size: 12px;
    position: absolute;
    top: 34px;
    right: 22px;
    height: 36px;
    width: 24px;
    color: black;
    transition: all .5s;
    text-align: center;
}

.luim-icon-zan:before {
    content: "\ec7f";
}

.luim-icon-zan-block:before {
    color: red;
    content: "\ec8c";
}

/* loading */
.user_loading {
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    top: 0;
    z-index: 99999;
    width: 45px;
    height: 48px;
    border-radius: 50%;
    display: inline-block;
    position: absolute;
    background: linear-gradient(0deg, rgba(255, 61, 0, 0.2) 33%, #ff3d00 100%);
    animation: rotation 1s linear infinite;
}

.user_loading:after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }

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

.card_userInfo {
    height: 100%;
    width: 100%;
    color: black;
}

.avatar_img {
    float: left;
    width: 30%;
    height: 84px;
}

.card_userInfo {
    height: 100%;
    width: 100%;
    color: black;
    padding: 20px;
    vertical-align: bottom;
    border-radius: 5px;
}

.user_Info {
    width: 65%;
    float: left;
}

.user_Info p {
    width: 100%;
    font-size: 12px;
    font-weight: 350;
    padding-left: 10px;
    height: 30px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    vertical-align: bottom;
}

.avatar_img img {
    height: 100%;
    width: 100%;
    border-radius: 5px;
}

#businessCard_user strong {
    font-weight: 600;
    font-size: 14px;
}

.clearfix_:after {
    content: "";
    display: block;
    clear: both;
}

.medal_user {
    display: flex;
    flex-wrap: wrap;
}

.medal_user img {
    width: 46px;
    /*height: 46px;*/
    display: block;
    padding: 1px;
    margin-right: 12px;
    margin-bottom: 5px;
}

.medal_user img:nth-child(5n) {
    margin-right: 0;
}

.expressTagList {
    width: 97%;
    height: 32px;
    border: 1px solid #0091f4;
    border-radius: 4px;
    color: #0091f4;
    display: flex;
    margin: 0 auto 10px;
}

.exprItemActive {
    color: white;
    background: #0091f4;
}

.expressTagList div {
    font-size: 11px;
    flex: 1;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid #0091f4;
    transition: all .4s;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.expressTagList div:last-child {
    border-right: unset;
}

.supply {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 5.9em;
    -o-text-overflow: ellipsis;
    -o-white-space: nowrap;
    -o-text-overflow: ellipsis;
    -o-white-space: nowrap;
    -moz-text-overflow: ellipsis;
    -moz-white-space: nowrap;
    -webkit-text-overflow: ellipsis;
    -webkit-white-space: nowrap;
}

.mj_btn {
    border: 1px solid #dddddd;
    padding: 5px 17px;
    border-radius: 4px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    transition: .3s all;
}

.mj_btn:hover {
    background: #f6f6f6;
    border: 1px solid #e3e3e3;
    cursor: pointer;
}

.mj_btn-group {
    display: flex;
    margin-left: 65px;
}

.mj_btn_error {
    color: #ff4d4f;
    border: 1px solid #ff4d4f;
}

.mj_btn_error:hover {
    background: #fff1f0;
    border: 1px solid #ff7875;
}

.mj_btn_import {
    color: #fff;
    background: #ec6800;
    border-color: transparent;
}

.mj_btn_import:hover {
    background: #ff7200;
}

.Management_Box {
    padding: 3px;
    height: 300px;
}

.Management_header {
    display: flex;
    justify-content: space-between;
    line-height: 25px;
    margin: 9px 0;
    width: 100%;
}

.Management_content {
    margin-top: 10px;
}

.Management_content table {
    padding: 0 20px;
}

.Management_content table:last-child {
    border-top: unset;
}

.Management_item_line {
    border-right: 1px solid #f0f0f0 !important;
    padding-right: 20px;
}

.Management_item_line input {
    vertical-align: middle;
}

.Management_Main {
    max-height: 217px;
    overflow: auto;
    height: 217px;
}

.Management_Main_table {
    width: 100%;
}

.Management_content table {
    border-collapse: collapse;
    border: 1px solid #f0f0f0;
}

.Management_Main_table td {
    border: unset;
}

.Management_item {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #f0f0f0;
    line-height: 30px;
    width: 100%;
    padding: 0 20px;
}

.Management_item:hover {
    background: #f5f5f5;
}

.Management_item:last-child {
    border: unset;
}

.Management_item:first-child {
    border-bottom: 1px solid #f0f0f0;
    border-top: unset;
}

.Management_item_header {
    padding: unset;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #f0f0f0;
    line-height: 25px;
}

.Management_item_header label {
    margin-left: 10px;
}

.Management_item span {
    margin-left: 15px;
}

.Management_Main::-webkit-scrollbar {
    width: 2px;
    height: 2px;
    background-color: #f5f5f5;
    border-radius: 4px;
}

.Management_Main::-webkit-scrollbar-thumb {
    background-color: #c1c1c1;
    border-radius: 4px;
}

.Management_Main::-webkit-scrollbar-track {
    background-color: #f5f5f5;
    border-radius: 4px;
}

.Management_Main::-webkit-scrollbar-thumb:hover {
    background-color: #9c9c9c;
}

.Management_Main::-webkit-scrollbar-thumb:active {
    background-color: #7f7f7f;
}

#salesOrderListSearch_nameOrMobile-container {
    display: inline-block;
}

#salesOrderListSearch_nameOrMobile-container .select2-selection--single {
    border: none;
    border-right: 1px solid #dfdfdf;
}

.select2ContentDom .select2-selection--multiple {
    height: 30px;
    /*width: 180px;*/
}

.select2ContentDom .select2-search__field {
    margin-top: 0 !important;
}

.select2ContentDom .select2-container--default.select2-container--focus .select2-selection--multiple {
    border: 1px #ced4da solid !important;
}

.select2ContentDom .select2-container--default .select2-selection--multiple {
    border: 1px solid #ced4da !important;
}

.select2ContentDom>table>tbody>tr>td.search-form-inline>span:nth-child(2) {
    margin-left: 5px !important;
}

.select2ContentDom .select2-container--default .select2-selection--multiple .select2-selection__choice {
    border: 1px solid #fff;
}

.select2ContentDom .select2-container--default .select2-selection--multiple .select2-selection__rendered {
    border-radius: 0 3px 3px 0 !important;
    max-height: 30px;
    overflow-y: auto !important;
}

#fakeExpressLogSearch_storeScreening+.select2-container {
    min-width: 180px;
}

.select2ContentDom .select2-selection--multiple {
    height: 30px;
    /*width: 180px;*/
    border-radius: 0;
}

.batchFilling:hover {
    background: #fff;
}

.file_lable {
    border: 1px solid #E8EAED;
    display: block;
    width: 68px;
    border-radius: 2px;
    line-height: 26px;
    padding-left: 10px;
    transition: all .3s;
    cursor: pointer;
    max-height: 60px;
    white-space: nowrap;
    text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
    -o-white-space: nowrap;
    -moz-text-overflow: ellipsis;
    -moz-white-space: nowrap;
    -webkit-text-overflow: ellipsis;
    -webkit-white-space: nowrap;
    overflow: hidden;

}

.showFiles {
    cursor: default;
    border: 1px solid #E8EAED;
    display: block;
    border-radius: 2px;
    line-height: 26px;
    padding-left: 10px;
    transition: all .3s;
    max-height: 60px;
    white-space: nowrap;
    text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
    -o-white-space: nowrap;
    -moz-text-overflow: ellipsis;
    -moz-white-space: nowrap;
    -webkit-text-overflow: ellipsis;
    -webkit-white-space: nowrap;
    overflow: hidden;
}

.showFiles:hover {
    border: 1px solid #cbcbcb !important;
}

.file_lable:hover {
    border: 1px solid #4065E0;
}

#widgetPanel .jobListRenderArea {
    padding: 20px 20px 35px 20px;
}

#widgetPanel .jobListRenderArea .expressTimeLineItem {
    padding-left: 25px;
    /*margin-top: 4px;*/
    position: relative;
}

#widgetPanel .jobListRenderArea .expressTimeLineItem .timeLineItem {
    padding: 6px 10px;
    line-height: 20px;
    border-radius: 4px;
    transition: background .5s;
}

#widgetPanel .jobListRenderArea .expressTimeLineItem .timeLineItem span:first-child {
    padding-top: 4px;
}

#widgetPanel .jobListRenderArea .expressTimeLineItem:hover .timeLineItem {
    background: #f4f4f4;
}

#widgetPanel .jobListRenderArea .expressTimeLineItem .scalperListDeleteBtn {
    position: absolute;
    top: 10px;
    right: 0px;
    display: none;
    color: red;
    font-size: 12px;
    background: 0,0,0,0;
}

#widgetPanel .jobListRenderArea .expressTimeLineItem:hover .scalperListDeleteBtn {
    display: block;
}

#widgetPanel .jobListRenderArea .expressTimeLineItem span {
    display: block;
    word-wrap: break-word;
    word-break: break-all;
    margin-bottom: 5px;
    font-size: 15px;
}

#widgetPanel .jobListRenderArea .expressTimeLineItem:before {
    content: '●';
    border: 1px solid #4367dd;
    position: absolute;
    left: 0;
    top: 12px;
    border-radius: 50%;
    width: 15px;
    height: 15px;
    background-color: #fff;
    z-index: 11;
    font-size: 21px;
    color: #ffffff;
    line-height: 10px;
    text-align: center;
    transition: color .5s;
}

#widgetPanel .jobListRenderArea .expressTimeLineItem:after {
    content: '';
    position: absolute;
    left: 8px;
    top: 16px;
    border-left: 1px solid #dfdfdf;
    height: 100%;
    z-index: 10;
}

#widgetPanel .jobListRenderArea .expressTimeLineItem:hover:before {
    color: #4367dd;
}

#widgetPanel .jobListRenderArea .expressTimeLineItem:last-child:after {
    display: none;
}

#widgetPanel div.medal-slider-panel.job-slider-panel .jobListRenderAreaFooter {
    /* display: none; */
    position: fixed;
    bottom: -35px;
    background: transparent;
    width: calc(30% - 48px);
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    /*border: 1px solid #dfdfdf;*/
    transition: all .3s;
}

#widgetPanel div.medal-slider-panel.job-slider-panel .jobListRenderAreaFooter .loadMore {
    font-size: 12px;
    cursor: pointer;
}

#widgetPanel div.medal-slider-panel.job-slider-panel .jobListRenderAreaFooter .loadMore_s {
    font-size: 12px;
    /*cursor: pointer;*/
    color: #a2a2a2;
    display: flex;
    justify-content: center;
    align-items: center;
}

#widgetPanel div.medal-slider-panel.job-slider-panel .jobListRenderAreaFooter.timeLineItem {
    display: flex;
    flex-direction: column;
}

.kuiruiUpimgViews {
    display: flex;
    flex-wrap: wrap;
}

.kuiruiUpimgViews .kuiruiUpimgViewsItem {
    position: relative;
    border: 1px solid #cbcbcb;
    padding: 4px;
    border-radius: 4px;
    width: 62px;
    height: 62px;
}

.kuiruiUpimgViews .kuiruiUpimgViewsItem img {
    width: 100% !important;
    height: 100% !important;
}

.kuiruiUpimgViews .kuiruiUpimgViewsItem .luim-icon-close {
    position: absolute;
    top: -3px;
    right: -1px;
    font-size: 8px;
    transition: all .5s;
    opacity: 0;
    cursor: pointer;
}

.kuiruiUpimgViews .kuiruiUpimgViewsItem:hover .luim-icon-close {
    opacity: .8;
}

.kuiruiUpimgViews div {
    margin-right: 20px;
}

.tipso_prices_left_right {
    width: 305px;
    display: flex;
    justify-content: space-between;
}

.blemish_list {
    width: 100%;
    background: #fff;
    margin: 0 auto;
    border-radius: 10px;
    padding: 5px 20px 20px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.blemish_list .item {
    width: 100%;
    height: 100%;
    background: #fff;
    /*padding: 10px;*/
}

.blemish_list .item div:not(:last-child) {
    margin-bottom: 10px;
    line-height: 25px;
}

.blemish_list .item .images {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.blemish_list .item .images .image-box {
    height: 60px;
    width: 60px;
    margin-right: 15px;
}

.blemish_list .item .remark {
    width: 100%;
    word-wrap: break-word;
}

.blemish_list .item .images .image-box:nth-child(5n) {
    margin-right: 0;
}

.blemish_list .item .images .image-box img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

/* 点踩 */
.parentImg {
    animation: vertical-animation 2s linear forwards;
    -webkit-animation: vertical-animation 2s linear forwards;
}

@-webkit-keyframes vertical-animation {
    0% {
        transform: translateY(0px);
        opacity: 1
    }

    100% {
        transform: translateY(-100px);
        opacity: 0
    }
}

.parentImg .heartleft {
    animation: splitleft 2s linear forwards;
}
.parentImg .heartright {
    animation: splitright 2s linear forwards;

}
@-webkit-keyframes splitleft {
    0%{
        -moz-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: translateX(0px); transform: scale(0);
    }
    10%{ transform: scale(1);}
    25% { transform: translateX(5px); }
    50%{transform: translateX(0px); }
    75%{
        -moz-transform: rotate(-40deg);
        -webkit-transform: rotate(-40deg);
        transform: translateX(-5px);
    }
    100%{
        -moz-transform: rotate(-90deg);
        -webkit-transform: rotate(-90deg);
        transform: translateX(0px);
    }
}
@-webkit-keyframes splitright {
    0%{
        -moz-transform: rotate(0);
        -webkit-transform: rotate(0);
        /* margin-left:-10px; */
        transform: translateX(0px); transform: scale(0);
    }
    10%{ transform: scale(1);}
    25% { transform: translateX(5px); }
    50%{transform: translateX(0px); }
    75%{
        -moz-transform: rotate(40deg);
        -webkit-transform: rotate(40deg);
        margin-left:-10px;
        transform: translateX(-5px);
    }
    100%{
        -moz-transform: rotate(90deg);
        -webkit-transform: rotate(90deg);
        margin-left:-10px;
        transform: translateX(0px);
    }
}
.daterangepicker{
    z-index:999999999999999 !important;
}
.cityWrapDom {}
.cityWrapDom .select2-container {
    margin-left: -4px;
}
.cityWrapDom .select2-container .select2-selection--single .select2-selection__rendered {
    padding-right: 11px;
}
.cityWrapDom .select2-container--default .select2-selection--single .select2-selection__arrow {
    width: 10px;
}
.cityWrapDom .select2.select2-container .select2-selection--single {
    border: none;
    border-bottom: 1px solid #dfdfdf;
}
.inventoryDetailsExportSearch_dateRange_label {
    transition: all .5s;
}

.inventoryDetailsExportSearch_dateRange_span:hover .inventoryDetailsExportSearch_dateRange_label {
    display: unset!important;
    cursor: pointer;
}

#detailsOfTheDefect {
    display: flex;
    height: 100%;
    font-size: 14px;
}
#detailsOfTheDefect .leftElement {
    height: 100%;
    border-right: 1px solid #eaeaea;
}
#detailsOfTheDefect .leftElement {
    width: 55%;
}
#detailsOfTheDefect .rightElement {
    width: 45%;
}
#detailsOfTheDefect .leftTopElement,
#detailsOfTheDefect .leftBomElement {
    padding: 10px 20px;
    box-sizing: border-box;
    flex: 0.5;
}
#detailsOfTheDefect .leftTopElement,
#detailsOfTheDefect .rightTopElement {
    height: 32%;
    box-sizing: border-box;
    padding: 10px 20px;
    border-bottom: 1px solid #eaeaea;
}
#detailsOfTheDefect .leftTopElement .notesElement,
#detailsOfTheDefect .rightTopElement .notesElement {
    margin: 30px 0;
}
#detailsOfTheDefect .leftBomElement,
.rightBomElement {
    height: 68%;
}
#detailsOfTheDefect .rightBomElement {
    box-sizing: border-box;
    padding: 10px 20px;
}
#detailsOfTheDefect .leftBomElement {
    padding-right: 5px;
}
#detailsOfTheDefect .theProblemType {
    padding-bottom: 10px;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #f1f1f1;
}
#detailsOfTheDefect .problemPicture {
    display: flex;
    flex-wrap: wrap;
    height: 70px;
}
#detailsOfTheDefect .problemPicture img {
    width: 70px;
    height: 70px;
    border-radius: 5px;
}
#detailsOfTheDefect .leftBomElement {
    display: flex;
    flex-direction: column;
}
#detailsOfTheDefect .leftBomElement .title {
    padding-bottom: 10px;
}
#detailsOfTheDefect .leftBomElement .messageList {
    flex: 1;
    margin-top: 10px;
    font-size: 12px;
    overflow-y: auto;
}
#detailsOfTheDefect .leftBomElement .messageList .mes-img-box {
    display: flex;
    flex-wrap: wrap;
}
#detailsOfTheDefect .leftBomElement .messageList .messageItem {
    margin-top: 30px;
    margin-bottom: 30px;
}
#detailsOfTheDefect .leftBomElement .messageList .rightELe {
    display: flex;
    flex-direction: row-reverse;
    padding-right: 15px;
}
#detailsOfTheDefect .leftBomElement .messageList .messageItem:first-child {
    margin-top: 0;
}
#detailsOfTheDefect .leftBomElement .messageList .right {
    position: relative;
    width: 355px;
    line-height: 35px;
    min-height: 35px;
    background: #eaf6ff;
    border: 1px solid #eaf6ff;
    border-radius: 15px;
    margin-top: 15px;
    padding: 5px 5px 5px 10px;
}
#detailsOfTheDefect .leftBomElement .messageList .right .triangle-right {
    position: absolute;
    top: -19px;
    margin-right: 10px;
    width: 0;
    height: 0;
    right: 0;
    border-style: solid;
    border-width: 10px;
    border-color: transparent transparent #eaf6ff transparent;
    font-size: 0;
    line-height: 0;
}
#detailsOfTheDefect .leftBomElement .messageList .left {
    position: relative;
    width: 355px;
    background: #f5f5f5;
    border: 1px solid #f5f5f5;
    border-radius: 15px;
    margin-top: 10px;
    line-height: 35px;
    min-height: 35px;
    padding: 5px 5px 5px 10px;
}
#detailsOfTheDefect .leftBomElement .messageList .left .triangle-left {
    position: absolute;
    top: -19px;
    margin-left: 1px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px;
    border-color: transparent transparent #f5f5f5 transparent;
    font-size: 0;
    line-height: 0;
}
#detailsOfTheDefect .centerEle {
    padding: 10px 20px;
}
#detailsOfTheDefect .centerEle .centerTitle {
    padding-bottom: 10px;
    margin-bottom: 10px;
}
#detailsOfTheDefect .directives {
    text-align: center;
    position: relative;
}
#detailsOfTheDefect .comItem {
    margin: 20px 0;
}
#detailsOfTheDefect .comItem textarea {
    padding: 5px 10px;
}
#detailsOfTheDefect .label-block {
    display: block;
    width: 78px;
    height: 78px;
    border: 1px dashed #ccc;
    border-radius: 9px;
    position: relative;
    text-align: center;
    transition: all 0.3s;
    cursor: pointer;
    box-sizing: border-box;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
#detailsOfTheDefect .label-block:hover {
    border-color: dodgerblue;
    color: dodgerblue;
}
#detailsOfTheDefect .label-block span {
    position: relative;
    top: 45px;
    color: #a6a6a6;
    font-size: 12px;
}
#detailsOfTheDefect .label-block::before,
.label-block::after {
    transition: all 0.3s;
    content: '';
    position: absolute;
    background: #cdcdcd;
}
#detailsOfTheDefect .label-block:before {
    height: 1px;
    width: 35px;
    top: 26px;
    left: 21px;
}
#detailsOfTheDefect .label-block::after {
    height: 35px;
    width: 1px;
    top: 9px;
    left: 38px;
}
#detailsOfTheDefect .imageContainer {
    display: flex;
    flex-wrap: wrap;
    margin-top: 20px;
}
/*.imageContainer*/
#detailsOfTheDefect .input-img {
    margin-right: 5px;
    margin-bottom: 5px;
    position: relative;
    box-sizing: border-box;
    border: 4px solid #e6e6e6;
    border-radius: 7px;
}
#detailsOfTheDefect .input-img img {
    display: block;
    width: 70px;
    height: 70px;
    border-radius: 3px;
}
/*.imageContainer*/
#detailsOfTheDefect .input-img:hover .mask {
    opacity: 0.7;
}
/*.imageContainer */
#detailsOfTheDefect .input-img .mask {
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    transition: all 0.3s;
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    opacity: 0;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}
#detailsOfTheDefect .input-img .mask div img {
    width: 15px;
    height: 15px;
    cursor: pointer;
}
#detailsOfTheDefect .imageContainer img {
    height: 70px;
    width: 70px;
    border-radius: 4px;
    display: block;
}
.jddj, .samp_dw, .samp_dd, .samp_pddLining, .samp_pddInternational, .samp_jd, .samp_tm, .samp_tbBrands, .samp_tbLining, .samp_tbInternational, .samp_supplier, .samp_smt, .samp_temu, .samp_ks, .samps_all_check{
    text-align: left;
    margin-bottom: 15px;
    margin-top: -5px;
    font-size: 16px;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
}
.jddj .iconfont, .samp_dw .iconfont, .samp_dd  .iconfont, .samp_pddLining .iconfont, .samp_pddInternational .iconfont,
.samp_jd .iconfont, .samp_tm .iconfont, .samp_tbBrands .iconfont, .samp_tbLining .iconfont, .samp_tbInternational .iconfont, .samp_supplier .iconfont, .samp_smt .iconfont, .samp_temu .iconfont, .samp_ks .iconfont {
    display: inline-block;
    transition: all .3s;
}
.arrow-up{
    transform:rotate(90deg)!important;
}
.arrow-down{
    transform: rotate(180deg)!important;
}
#normal_0 {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    width: 120px;
    margin-right: -205px;
    color: red;
}

#warehouseShopConfig .shopItem {
    color: #5e5e5e;
    border: 1px #d2d2d2 solid;
    border-radius: 3px;
    transition: all .3s;
    padding: 2px 15px;
}
#warehouseShopConfig .shop-label:hover .shop-del>i {
    cursor: pointer;
    display: block;
}
#warehouseShopConfig .shop-label:hover .shopItem {
    background: #e8f3ff;
}
#warehouseShopConfig .shop-label {
    /*border: 1px solid red;*/
    /*margin-right: 5px;*/
    margin-bottom: 10px;
    cursor: pointer;
}
#warehouseShopConfig .shop-del>i {
    display: none;
    color: red;
    font-size: 16px;
}
#warehouseShopConfig .shop-del {
    width: 20px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}
.select2-border-none {
    border: none !important;
}
#select2-TaobaoMultiTextSearchDropDownBox-results .select2-results__group,
#select2-pddAfterSalesRefundQueriesSearch_expertSearch-results .select2-results__group,
#select2-ddAfterSalesRefundQueriesSearch_expertSearch-results .select2-results__group {
    color: #dfdfdf;
    padding: 0 6px;
}
#afterSalesRefundQueriesSearch_refundInfo {
    outline: none;
}
.showTipRemark {
    overflow:hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-align: left;
    max-height: 40px;
    margin: 10px 0;
    width: 100%;
    text-overflow: ellipsis;
    padding: 0 10px;
    cursor: pointer;
}
.showTipRemark:hover {
    text-decoration: underline;
}
.flagRemarkTd {
    border: 1px solid #e9edf0;
    padding: 5px;
    text-align: center;
}

.mj-express-search {
    width: 500px;
    height: 390px;
    background: #ffffff;
    box-shadow: #aeaeae 0px 0px 30px -8px;
    margin-top: -100px;
}
.mj-express-search .mj-exp-sf {
    padding: 0 30px;
}
.mj-express-search .mj-exp-sf .title {
    font-size: 20px;
    font-weight: 400;
    padding: 75px 0 30px;
}
.mj-express-search .mj-exp-sf .title div {
    text-align: center;
}
.mj-express-search .mj-exp-sf .ipt-box {
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px;
    padding: 0 20px;
}
.mj-express-search .mj-exp-sf .ipt-box [id^='ipt-'] {
    outline: none;
    caret-color: transparent;
    height: 80px !important;
    width: 80px !important;
    position: relative;
    font-size: 60px;
    text-align: center;
}
.mj-express-search .mj-exp-sf .ipt-box [id^='ipt-']:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 5px;
    background: #dadada;
    bottom: -5px;
    left: 0;
    transition: all 0.3s;
}
.mj-express-search .mj-exp-sf .ipt-box [id^='ipt-'].active:after {
    background: #ff0000;
}
.mj-express-search .mj-exp-sf .quick-selection {
    display: flex;
    font-size: 16px;
    letter-spacing: 1px;
    margin-bottom: 20px;
}
.mj-express-search .mj-exp-sf .quick-selection div {
    cursor: pointer;
    position: relative;
}
.mj-express-search .mj-exp-sf .quick-selection div:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    background: #ff0a0a;
    bottom: -5px;
    left: 0;
}
.mj-express-search .mj-exp-sf .footer {
    display: flex;
    justify-content: center;
}
.mj-express-search .mj-exp-sf .footer .btn {
    width: 150px;
    font-size: 18px;
    padding: 12px 20px;
    background: #fd831c;
    text-align: center;
    border-radius: 8px;
    color: #fff;
    user-select: none;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
}
.mj-express-search .mj-exp-sf .footer .btn.loadings {
    background: #929292c9;
    cursor: not-allowed;
}
.mj-express-search .mj-exp-sf .footer .btn:hover:not(.loadings) {
    background: #fc8a2a;
}
.synchronizationParametersChanges_layer .config-panel .config-content .config-item>label {
    width: 120px;
    padding-right: 10px;
}
.hasRefundAddress {
    position: absolute;
    top: unset;
    bottom: 0;
    right: -2px;
}
.refundAddressJsonDomWrap {
    position: relative;
    cursor: pointer;
}
.refundAddressJsonDomWrap:hover {
    text-decoration: underline;
}
.topInfo {
    background: pink;
    animation: status-rgba-opacity 2.5s infinite linear;
}
@keyframes status-rgba-opacity {

    /*第一帧样式*/
    0% {
        background: rgba(255, 192, 203, 0);
    }

    /*动画执行到25%时样式*/
    25% {
        background: rgba(255, 192, 203, .5);
    }

    /*动画执行到50%时样式*/
    50% {
        background: rgba(255, 192, 203, 1);
    }

    /*动画执行到75%时样式*/
    75% {
        background: rgba(255, 192, 203, .5);
    }

    /*结束时样式*/
    100% {
        background: rgba(255, 192, 203, 0);
    }
}
