/***** Font Icon *****/
@font-face {
    font-family: 'Material Icons';
    font-style: normal;
    font-weight: 400;
    src: url(iconFont/MaterialIcons-Regular.eot); /* For IE6-8 */
    src: local('Material Icons'),
    local('MaterialIcons-Regular'),
    url(iconFont/MaterialIcons-Regular.woff2) format('woff2'),
    url(iconFont/MaterialIcons-Regular.woff) format('woff'),
    url(iconFont/MaterialIcons-Regular.ttf) format('truetype');
}
.ft-icon {
    font-family: 'Material Icons';
    text-rendering: optimizeLegibility;
    font-feature-settings: "liga" 1;
    font-style: normal;
    text-transform: none;
    line-height: 1;
    font-size: 24px;
    width: 24px;
    height: 24px;
    display: inline-block;
    overflow: hidden;
    vertical-align: middle;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    word-break: initial !important;
    word-wrap: initial !important;
    position: relative;
    top: -2px;
}
.ft-icon.dp12 {
    font-size: 12px;
    width: 12px;
    height: 12px;
}
.ft-icon.dp14 {
    font-size: 14px;
    width: 14px;
    height: 14px;
}
.ft-icon.dp18 {
    font-size: 18px;
    width: 18px;
    height: 18px;
}
.ft-icon.dp36 {
    font-size: 36px;
    width: 36px;
    height: 36px;
}
.ft-icon.dp48 {
    font-size: 48px;
    width: 48px;
    height: 48px;
}
.ft-icon.dp60 {
    font-size: 60px;
    width: 60px;
    height: 60px;
}
@-webkit-keyframes play_rotate0 {
    0% {
        /*逆时针旋转*/
        -webkit-transform: rotate(0deg);
    }
    100% {
        /*逆时针旋转*/
        -webkit-transform: rotate(-360deg);
    }
}
@-webkit-keyframes play_rotateY {
    0% {
        /*水平翻转*/
        -webkit-transform:rotateY(0deg);
    }
    100% {
        /* 水平翻转 */
        -webkit-transform:rotateY(360deg);
    }
}
@-webkit-keyframes play_rotateX {
    0% {
        /*垂直翻转*/
        -webkit-transform:rotateX(0deg);
    }
    100% {
        /*垂直翻转*/
        -webkit-transform:rotateX(360deg);
    }
}
@-webkit-keyframes play_rotate360 {
    0% {
        /*顺时针旋转*/
        -webkit-transform:rotate(0deg);
    }
    100% {
        /*顺时针旋转*/
        -webkit-transform:rotate(360deg);
    }
}
.ft-icon-rotate0 {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-animation: play_rotate0 2.5s linear infinite;
    -moz-animation: play_rotate0 2.5s linear infinite;
    animation: play_rotate0 2.5s linear infinite;
}
.ft-icon-rotateY {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-animation: play_rotateY 2.5s linear infinite;
    -moz-animation: play_rotateY 2.5s linear infinite;
    animation: play_rotateY 2.5s linear infinite;
}
.ft-icon-rotateX {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-animation: play_rotateX 2.5s linear infinite;
    -moz-animation: play_rotateX 2.5s linear infinite;
    animation: play_rotateX 2.5s linear infinite;
}
.ft-icon-rotate360 {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-animation: play_rotate360 2.5s linear infinite;
    -moz-animation: play_rotate360 2.5s linear infinite;
    animation: play_rotate360 2.5s linear infinite;
}
/*****  checkbox and radio  *****/
.mj-ckb-item,
.mj-rdo-item {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    font-size: 0;
    -moz-user-select:none;/*火狐*/
    -webkit-user-select:none;/*webkit浏览器*/
    -ms-user-select:none;/*IE10*/
    -khtml-user-select:none;/*早期浏览器*/
    user-select:none;
}
.mj-ckb-item > input,
.mj-rdo-item > input{
    display: none;
}
.mj-ckb-item > input ~ label,
.mj-rdo-item > input ~ label {
    display: inline-block;
    margin: 0;
    font-size: 0;
}
/*添加禁用*/
.mj-ckb-item > input[disabled] ~ label,
.mj-rdo-item > input[disabled] ~ label {
    cursor: not-allowed;
}
.mj-rdo-item.sm-item > input:disabled ~ label > .item-pic{
    background-position: -140px -110px !important;
}
.mj-rdo-item.sm-item > input:disabled:checked ~ label > .item-pic{
    background-position: -140px -180px !important;
}
.mj-rdo-item.bg-item > input:disabled ~ label > .item-pic{
    background-position: -140px -424px !important;
}
.mj-rdo-item.bg-item > input:disabled:checked ~ label > .item-pic{
    background-position: -140px -534px !important;
}

.mj-ckb-item.sm-item > input:disabled ~ label > .item-pic{
    background-position: -20px -110px !important;
}
.mj-ckb-item.sm-item > input:disabled:checked ~ label > .item-pic{
    background-position: -20px -180px !important;
}
.mj-ckb-item.bg-item > input:disabled ~ label > .item-pic{
    background-position: -20px -424px !important;
}
.mj-ckb-item.bg-item > input:disabled:checked ~ label > .item-pic{
    background-position: -20px -534px !important
}
/*添加禁用*/
.mj-ckb-item > input ~ label > .item-pic,
.mj-rdo-item > input ~ label > .item-pic {
    display: inline-block;
    vertical-align: middle;
    background-color: #fff;
    margin-right: 10px;
    background: url('../images/glyphs.png?v=5') no-repeat;
}
.mj-ckb-item > input ~ label > .item-pic ~  *,
.mj-rdo-item > input ~ label > .item-pic ~  * {
    font-size: 12px;
    vertical-align: middle;
}
.mj-ckb-item.sm-item > input ~ label > .item-pic,
.mj-rdo-item.sm-item > input ~ label > .item-pic {
    width: 12px;
    height: 12px;
}
.mj-ckb-item.bg-item > input ~ label > .item-pic,
.mj-rdo-item.bg-item > input ~ label > .item-pic {
    width: 16px;
    height: 16px;
}
/** checkbox sm-item **/
.mj-ckb-item.sm-item[rel^='b'] > input ~ label > .item-pic,
.mj-ckb-item.sm-item[rel^='r'] > input ~ label > .item-pic,
.mj-ckb-item.sm-item[rel^='o'] > input ~ label > .item-pic,
.mj-ckb-item.sm-item[rel^='g'] > input ~ label > .item-pic {
    background-position: -20px -40px;
}
.mj-ckb-item.sm-item[rel^='b'] > input:checked ~ label > .item-pic {
    background-position:  -80px -40px;
}
.mj-ckb-item.sm-item[rel^='r'] > input:checked ~ label > .item-pic {
    background-position: -80px -180px;
}
.mj-ckb-item.sm-item[rel^='o'] > input:checked ~ label > .item-pic {
    background-position: -80px -110px;
}
.mj-ckb-item.sm-item[rel^='g'] > input:checked ~ label > .item-pic {
    background-position: -80px -250px;
}
/** checkbox bg-item **/
.mj-ckb-item.bg-item[rel^='b'] > input ~ label > .item-pic,
.mj-ckb-item.bg-item[rel^='r'] > input ~ label > .item-pic,
.mj-ckb-item.bg-item[rel^='o'] > input ~ label > .item-pic,
.mj-ckb-item.bg-item[rel^='g'] > input ~ label > .item-pic {
    background-position: -20px -320px;
}
.mj-ckb-item.bg-item[rel^='b'] > input:checked ~ label > .item-pic {
    background-position: -80px -320px;
}
.mj-ckb-item.bg-item[rel^='r'] > input:checked ~ label > .item-pic {
    background-position: -80px -534px;
}
.mj-ckb-item.bg-item[rel^='o'] > input:checked ~ label > .item-pic {
    background-position: -80px -424px;
}
.mj-ckb-item.bg-item[rel^='g'] > input:checked ~ label > .item-pic {
    background-position: -80px -638px;
}
/** radio sm-item **/
.mj-rdo-item.sm-item[rel^='b'] > input ~ label > .item-pic,
.mj-rdo-item.sm-item[rel^='r'] > input ~ label > .item-pic,
.mj-rdo-item.sm-item[rel^='o'] > input ~ label > .item-pic,
.mj-rdo-item.sm-item[rel^='g'] > input ~ label > .item-pic {
    background-position:  -140px -40px;
}
.mj-rdo-item.sm-item[rel^='b'] > input:checked ~ label > .item-pic {
    background-position: -200px -40px;
}
.mj-rdo-item.sm-item[rel^='r'] > input:checked ~ label > .item-pic {
    background-position: -200px -180px;
}
.mj-rdo-item.sm-item[rel^='o'] > input:checked ~ label > .item-pic {
    background-position: -200px -110px;
}
.mj-rdo-item.sm-item[rel^='g'] > input:checked ~ label > .item-pic {
    background-position: -200px -250px;
}
/** radio bg-item **/
.mj-rdo-item.bg-item[rel^='b'] > input ~ label > .item-pic,
.mj-rdo-item.bg-item[rel^='r'] > input ~ label > .item-pic,
.mj-rdo-item.bg-item[rel^='o'] > input ~ label > .item-pic,
.mj-rdo-item.bg-item[rel^='g'] > input ~ label > .item-pic {
    background-position: -140px -320px;
}
.mj-rdo-item.bg-item[rel^='b'] > input:checked ~ label > .item-pic {
    background-position: -200px -320px;
}
.mj-rdo-item.bg-item[rel^='r'] > input:checked ~ label > .item-pic {
    background-position: -200px -534px;
}
.mj-rdo-item.bg-item[rel^='o'] > input:checked ~ label > .item-pic {
    background-position: -200px -424px;
}
.mj-rdo-item.bg-item[rel^='g'] > input:checked ~ label > .item-pic {
    background-position: -200px -638px;
}
/*****  input  *****/
/* WebKit, Blink, Edge */
input::-webkit-input-placeholder{
    color: #bcbcbc;
}
/* Mozilla Firefox 19+ */
input::-moz-placeholder{
    color: #bcbcbc;
}
/* Mozilla Firefox 4 to 18 */
input:-moz-placeholder{
    color: #bcbcbc;
}
/* Internet Explorer 10-11 */
input:-ms-input-placeholder{
    color: #bcbcbc;
}
.mj-from {
    padding: 0 10px;
    border: 1px solid;
    border-radius: 2px;
    border-color: #d8dcdf;
    outline: none;
    width: 200px;
    height: 32px;
    line-height: 32px;
    color: #606266;
    box-sizing: border-box;
    -moz-user-select:none;/*火狐*/
    -webkit-user-select:none;/*webkit浏览器*/
    -ms-user-select:none;/*IE10*/
    -khtml-user-select:none;/*早期浏览器*/
    user-select:none;
}
.mj-from:hover {
    border-color: #bcbcbc;
}
/*.mj-from[rel^='b']{
    border-color: #497BEC;
}*/
.mj-from:focus,
.mj-from[rel^='d']:focus,
.mj-from[rel^='b']:focus,
.mj-select-item[rel^='b'] > input:focus{
    border-color: #497BEC !important;
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6) !important;
}
/*.mj-from[rel^='r']{
    border-color: #ff4747;
}*/
.mj-from[rel^='r']:focus,
.mj-select-item[rel^='r'] > input:focus{
    border-color: #ff4747 !important;
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(255,71,71,.6) !important;
}
/*.mj-from[rel^='g']{
    border-color: #00d6a1;
}*/
.mj-from[rel^='g']:focus,
.mj-select-item[rel^='g'] > input:focus{
    border-color: #00d6a1 !important;
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(0,214,161,.6) !important;
}
/*.mj-from[rel^='o']{
    border-color: #ff7300;
}*/
.mj-from[rel^='o']:focus,
.mj-select-item[rel^='o'] > input:focus{
    border-color: #ff7300 !important;
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(255,115,0,.6) !important;
}
.mj-form.error,
.mj-select-item.error > input{
    border-color: #ff4747 !important;
}
.mj-form.error:focus,
.mj-select-item.error > input:focus{
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(255,71,71,.6) !important;
}
/*****  button  *****/
.mj-btn {
    display: inline-block;
    padding: 0 20px;
    margin-bottom: 0;
    font-size: 12px;
    font-weight: 400;
    min-width: 80px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 2px;
    box-sizing: border-box;
}
.mj-btn[rel='icon'] {
    min-width: 100px;
}
.mj-btn > .ft-icon {
    margin-right: 6px;
}
.mj-btn[disabled="true"],
.mj-btn[disabled="disabled"] {
    background-color: #BCBCBC !important;
    border-color: #BCBCBC !important;
    color: #fff !important;
}
.mj-btn[disabled="true"]:hover,
.mj-btn[disabled="disabled"]:hover {
    cursor: not-allowed;
}
.mj-btn-primary {
    background: #398dee;
    color: #fff;
}
.mj-btn-primary:focus,
.mj-btn-primary:hover {
    background: #429ffc;
}
.mj-btn-green {
    background: #00d6a1;
    color: #fff;
}
.mj-btn-green:hover,
.mj-btn-green:focus {
    background: #07e0aa;
}
.mj-btn-primary > .ft_icon,
.mj-btn-green > .ft_icon {
    color: #fff;
}
.mj-btn-white {
    border-color: #d8dcdf;
    background: #fff;
    color: #909399;
}
.mj-btn-white > .ft_icon {
    color: #909399;
}
.mj-btn-white:hover,
.mj-btn-white:focus{
    border-color: #429ffc;
    background: #fff;
    color: #429ffc;
}
/*****  custom select  *****/
.mj-select-item {
    display: inline-block;
    position: relative;
    vertical-align: middle;
    width: 200px;
}
/*添加禁用*/
.mj-select-item.disabled{
    background-color: #F2F2F2;
}
.mj-select-item.disabled,
.mj-select-item.disabled > .select-val,
.mj-select-item.disabled > .sleDown{
    cursor: no-drop;
}
/*添加禁用*/
.mj-select-item.combox-item {
    border: none;
}
.mj-select-item.select-item {
    border: 1px solid #d8dcdf;
    border-radius: 2px;
}
.mj-select-item.select-item:hover {
    border-color: #bcbcbc;
}
.mj-select-item > input {
    width: calc(100% - 33px);
    border-radius: 2px 0 0 2px;
    vertical-align: middle;
    border-color: #d8dcdf;
    border-right-color: transparent;
}
.mj-select-item > span.select-val {
    display: inline-block;
    padding: 0 0 0 10px;
    box-sizing: border-box;
    width: calc(100% - 31px);
    height: 32px;
    line-height: 32px;
    vertical-align: middle;
    white-space: nowrap;
    overflow: hidden;
    cursor: pointer;
    font-size: 12px;
}
.mj-select-item > .select-val {
    color: #606266;
}
.mj-select-item > .sleDown {
    display: inline-block;
    margin-left: -1px;
    width: 32px;
    height: 32px;
    vertical-align: middle;
    cursor: pointer;
}
.mj-select-item.combox-item > .sleDown {
    background: url('../images/glyphs.png?v=1') no-repeat -495px -40px;
}
.mj-select-item.select-item > .sleDown {
    width: 30px;
    height: 30px;
    background: url('../images/glyphs.png?v=1') no-repeat -425px -30px;
}
.mj-select-item.select-item.remove > .sleDown {
    display: none;
}
.mj-select-item > .removeVal {
    display: none;
    position: absolute;
    top: 1px;
    right: 1px;
    width: 30px;
    height: 30px;
    background: url('../images/glyphs.png?v=1') no-repeat -255px -31px;
    cursor: pointer;
}
.mj-select-item.remove > .removeVal {
    display: block;
}

.mj-select-item:hover > input {
    border-color: #bcbcbc;
}
.mj-select-item:hover > input ~ .sleDown {
    background: url('../images/glyphs.png?v=1') no-repeat -575px -40px;
}
.mj-select-item.select-item.open,
.mj-select-item.select-item.open[rel^='b'] {
    border-color: #497BEC !important;
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6) !important;
}
.mj-select-item.select-item.open[rel^='r'] {
    border-color: #ff4747 !important;
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(255,71,71,.6) !important;
}
.mj-select-item.select-item.open[rel^='g'] {
    border-color: #00d6a1 !important;
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(0,214,161,.6) !important;
}
.mj-select-item.select-item.open[rel^='o'] {
    border-color: #ff7300 !important;
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(255,115,0,.6) !important;
}
.mj-select-item > input:focus ~ .sleDown,
.mj-select-item[rel^='b'] > input:focus ~ .sleDown {
    background: url('../images/glyphs.png?v=1') no-repeat -655px -40px;
}
.mj-select-item[rel^='o'] > input:focus ~ .sleDown {
    background: url('../images/glyphs.png?v=1') no-repeat -655px -110px;
}
.mj-select-item.error > input ~ .sleDown,
.mj-select-item.error > input:focus ~ .sleDown,
.mj-select-item[rel^='r'] > input:focus ~ .sleDown {
    background: url('../images/glyphs.png?v=1') no-repeat -655px -180px;
}
.mj-select-item[rel^='g'] > input:focus ~ .sleDown {
    background: url('../images/glyphs.png?v=1') no-repeat -655px -250px;
}
.mj-select-item > ul {
    display: none;
    position: absolute;
    top: 32px;
    left: -1px;
    width: 100%;
    max-height: 200px;
    overflow-y: auto;
    border: 1px solid #ddd;
    z-index: 1;
    box-shadow: 2px 0 0 #f2f2f2;
}
.mj-select-item.select-item > ul {
    top: 33px;
}
.mj-select-item.set-menu-up > ul,
.mj-select-item.up-menu > ul {
    top: inherit;
    bottom: 32px;
}
.mj-select-item.select-item.set-menu-up > ul,
.mj-select-item.select-item.up-menu > ul {
    top: inherit;
    bottom: 33px;
}
.mj-select-item > ul > li {
    padding: 0 10px;
    width: 100%;
    height: 32px;
    box-sizing: border-box;
    line-height: 32px;
    overflow: hidden;
    background: #fff;
    color: #606266;
    font-size: 12px;
    white-space: nowrap;
    text-overflow: ellipsis;
    cursor: pointer;
}
.mj-select-item > ul > li[name="customOption"]:hover {
    background: #fff !important;
    color: #606266 !important;
    cursor: default;
}
.mj-select-item > ul > li:hover,
.mj-select-item[rel^='b'] > ul > li:hover{
    background: #f2f2f2;
}
.mj-select-item[rel^='r'] > ul > li:hover{
    background: #ff4747;
    color: #fff;
}
.mj-select-item[rel^='o'] > ul > li:hover{
    background: #ff7300;
    color: #fff;
}
.mj-select-item[rel^='g'] > ul > li:hover{
    background: #00d6a1;
    color: #fff;
}
.mj-select-item.open > ul {
    display: block;
}
/*****  paging  *****/
.paging-module {
    font-size: 12px;
    font-family: "microsoft yahei";
    color: #606266;
}
.paging-module,
.paging-module * {
    box-sizing: border-box;
}
.paging-module .totalSize,
.paging-module .pageSizeNum {
    line-height: 22px;
    vertical-align: middle;
}
.paging-module a,
.paging-module .more-btn {
    display: inline-block;
    vertical-align: middle;
    border: 1px solid #bcbcbc;
    border-radius: 2px;
    width: 24px;
    height: 24px;
    line-height: 22px;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    color: #909399;
    font-size: 12px;
    margin: 0 3px;
    -moz-user-select:none;/*火狐*/
    -webkit-user-select:none;/*webkit浏览器*/
    -ms-user-select:none;/*IE10*/
    -khtml-user-select:none;/*早期浏览器*/
    user-select:none;
}
.paging-module .ft-icon {
    top: 0;
}
.paging-module .more-btn {
    font-size: 22px;
    cursor: default;
}
.paging-module a:hover {
    border-color: #398dee;
    color: #398dee;
}
.paging-module a.current,
.paging-module a.current:hover,
.paging-module a.current:focus {
    background-color: #398dee;
    border-color: #398dee;
    color: #fff;
}
.paging-module .disabled-btn,
.paging-module .disabled-btn:hover {
    border-color: #e4e4e4;
    color: #e4e4e4;
    cursor: no-drop;
}
.totalSize + #prePage,
.pageSizeNum + #firstPage{
    margin-left: 10px;
}
#prePage,
#nextPage,
#firstPage,
#lastPage {
    width: 24px;
    height: 24px;
    line-height: 22px;
}
#nextPage + .setting-group {
    margin-left: 10px;
}
.totalPages {
    margin: 0 10px;
}
.paging-module .setting-group {
    display: inline-block;
    position: relative;
    vertical-align: middle;
    width: 24px;
    height: 24px;
    line-height: 22px;
}
.paging-module .setting-group .ft-icon {
    width: 24px;
    height: 24px;
    line-height: 22px;
    text-align: center;
    font-size: 20px;
    color: #398dee;
    cursor: pointer;
}
.paging-module .setting-group .ft-icon:hover {
    color: #429ffc;
}
.paging-module .setting-group .menu {
    display: none;
    position: absolute;
    top: 25px;
    right: 0;
    padding: 20px;
    width: 160px;
    background: #fff;
    box-shadow: 0 0 1px #ccc;
    font-size: 12px;
    z-index: 10;
}
.paging-module.up-menu .setting-group .menu {
    top: initial;
    bottom: 25px;
}
.paging-module .setting-group.open .menu {
    display: block;
}
.paging-module .setting-group .menu p {
    margin: 0;
    text-align: left;
}
.paging-module .setting-group .menu p + p {
    margin-top: 10px;
}
.paging-module .setting-group .menu input,
.paging-module .setting-group .menu select {
    margin: 0 5px;
    padding:0 5px;
    width: 60px;
    height:24px;
    line-height: 22px;
}
.paging-module .setting-group .menu button {
    width: 80px;
    height: 24px;
    line-height: 22px;
}
/*****  scroll  *****/
/*****  modal  *****/
/*****  alert  *****/