.renderSelect{
    position: relative;
    font-size: 12px;
    color: #575d6c;
    display: inline-block;
    padding-right: 24px;
}
.renderSelectNow{
    display: inline-block;
    cursor: pointer;
    position: relative;
}
.renderSelectNow:after{
    content:'';
    display: inline-block;
    width: 10px;
    height: 6px;
    background: url(icon/arrowBottom.png) no-repeat center;
    background-size: 10px 6px;
    top:5px;
    position: absolute;
    right: -16px;
    transition: 0.3s;
}
.renderDrop{
    min-width: 100%;
    left: 0;
    position: absolute;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    background: white;
    border: 1px solid #EFF2F8;
    border-radius: 0px 0px 2px 2px;
    margin-top:12px;
    box-sizing: border-box;
    z-index: 233;
    box-shadow: 0px 4px 5px 1px rgb(0 0 0 / 5%);
    transform: translateY(30px);
    white-space: nowrap;
}
.renderDrop:before{
    content:'';
    display: block;
    width: 10px;
    height: 10px;
    background: white;
    border: 1px solid #d9d9d9;
    box-shadow: 0px 4px 5px 1px rgb(0 0 0 / 5%);
    box-sizing: border-box;
    position: absolute;
    transform: rotate(45deg);
    left: 38px;
    margin-top: -4px;
}
.renderDrop>div{
    height: 30px;
    display: flex;
    align-items: center;
    cursor: pointer;
    padding:0 12px;
    position: relative;
    background: white;
    z-index: 2;
    font-weight: normal;
}
.renderDrop>div:hover{
    color:#3E4FD3;
}
.renderDrop>div.on{
    color:white!important;
    background: #3E4FD3;
}
.renderSelect.on .renderDrop{
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}
.renderSelect.on .renderSelectNow:after{
    transform: rotate(180deg);
}
.order,.orderByDate{
    display: inline-flex;
    align-items: center;
    position: relative;
    font-size: 12px;
    cursor: pointer;
}
.order:after,.orderByDate:after{
    content:'';
    background: url("icon/timeNormal.png");
    background-size: cover;
    width: 9px;
    height: 12px;
    display: inline-flex;
    align-items: center;
    margin-left: 6px;
}
.order.desc:after,.orderByDate.desc:after{
    background: url("icon/timeDesc.png");
    background-size: cover;
}
.order.asc:after,.orderByDate.asc:after{
    background: url("icon/timeAsc.png");
    background-size: cover;
}
.tableDivLoading{
    position: relative;
}
.tableDivLoading:before{
    content:'';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top:0;
    background: rgba(255, 255, 255, 0.85);
    z-index: 23;
    filter: blur(20px);
}
.tableDivLoading1::after {
    content: "";
    width: 4px; height: 4px;
    border-radius: 100%;
    color: rgba(0, 0, 0, .4);
    box-shadow: 0 -10px rgba(0,0,0,.9),    /* top */
    10px 0px,                  /* right */
    0 10px,                    /* bottom */
    -10px 0 rgba(0,0,0,.7),    /* left */

    -7px -7px rgba(0,0,0,.8),  /* left-top */
    7px -7px rgba(0,0,0,1),    /* right-top */
    7px 7px,                   /* right-bottom */
    -7px 7px;                  /* left-bottom */
    animation: spin 1s steps(8) infinite;
    /* center */
    position: absolute;
    z-index: 24;
    top: 0; right: 0; bottom: 0; left: 0;
    margin: auto;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}


 .tableDivLoading:after{
     content:'';
     border:8px solid #f3f3f3;
     border-radius:50%;
     border-top:8px solid #2842d8;
     width:60px;
     height:60px;
     animation:rotate 1s linear infinite;
     position: absolute;
     left: 0;
     right: 0;
     top: 0;
     bottom: 0;
     margin: auto;
     z-index: 24;
 }

@keyframes rotate{
    0%{
        transform: rotate(0deg);
    }
    100%{
        transform:rotate(360deg);
    }
}
.tableSearchInputBtn{
    font-size: 12px;
    font-weight: normal;
    margin-left: 6px;
    cursor: pointer;
    transition: 0.3s;
}
.tableSearchInputBtn:hover{
    color:#3E4FD3;
}
.tableSearchInputBox{
    transition: 0.3s;
    position: absolute;
    margin-top: -25px;
    z-index: 2;
    width: 0;
    margin-left: -10px;
    visibility: hidden;
    opacity: 0;
}
.tableSearchInputBox.showInput{
    width: 100%;
    min-width: 260px;
    opacity: 1;
    visibility: visible;
}
.tableSearchInputBox>input{
    outline: none;
    transition: 0.3s;
    height: 32px;
    width: 100%;
    box-sizing: border-box;
    border:none;
    padding-left: 10px;
    padding-right: 25px;
}
.tableSearchInputBox>input:focus{
    border:none;
}
.productTable .productTable-row.tableHead>.productTable-cell{
    position: relative;
    white-space: nowrap;
    padding-right: 10px;
}
.productTable-row>div.checkTab{
    padding-left:0;
    padding-right: 0!important;
    /*width: 45px;*/
    width: 10px;
}
.tabSearchSubmitBtn{
    position: absolute;
    z-index: 2;
    font-size: 14px;
    font-weight: normal;
    top: 6px;
    cursor: pointer;
    right: 8px;
    transition: 0.3s;
}
.tabSearchSubmitBtn:hover{
    color:blue;
}


/*多选*/
.renderCheckBox{
    position: relative;
    font-size: 12px;
    color: #575d6c;
    display: inline-block;
    padding-right: 24px;
}
.renderCheckBoxTitle{
    display: inline-block;
    cursor: pointer;
    position: relative;
}
.renderCheckBoxTitle:after{
    content:'';
    display: inline-block;
    width: 10px;
    height: 6px;
    background: url(icon/arrowBottom.png) no-repeat center;
    background-size: 10px 6px;
    top:5px;
    position: absolute;
    right: -16px;
    transition: 0.3s;
}
.renderCheckBoxDrop{
    min-width: 100%;
    left: 0;
    position: absolute;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    background: white;
    border: 1px solid #EFF2F8;
    border-radius: 0px 0px 2px 2px;
    margin-top:12px;
    box-sizing: border-box;
    z-index: 233;
    box-shadow: 0px 4px 5px 1px rgb(0 0 0 / 5%);
    transform: translateY(30px);
    white-space: nowrap;
}
.renderCheckBoxDrop:before{
    content:'';
    display: block;
    width: 10px;
    height: 10px;
    background: white;
    border: 1px solid #d9d9d9;
    box-shadow: 0px 4px 5px 1px rgb(0 0 0 / 5%);
    box-sizing: border-box;
    position: absolute;
    transform: rotate(45deg);
    left: 38px;
    margin-top: -4px;
}
.renderCheckBoxDrop>label{
    height: 30px;
    display: flex;
    align-items: center;
    cursor: pointer;
    padding:0 12px;
    position: relative;
    background: white;
    z-index: 2;
    font-weight: normal;
}
.renderCheckBox.on .renderCheckBoxDrop{
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}
.renderCheckBox.on .renderCheckBoxTitle:after{
    transform: rotate(180deg);
}
.renderCheckBoxDrop>label>input{
    margin-right: 10px;
}
.autoFixed .productTable{
    table-layout: initial;
}