@media (min-width: 1200px) {
    .page-section,.page-title-bar {
       /* max-width:1140px */
        max-width:11200px
    }
}

.wrapper-display {
	display: flex;
}

/**looper的form-control改成outsystem.input，需要设置宽度**/
.input {
	display: block;
	width:12rem;
}

/**
body {
	background-color: rgb(255,255,255);
}
*/
/*下拉数据集，下拉选项框样式(根据looper.css)*/
.mselect2-selection__clear{
	float:right;
}
.mselect2-selection__arrow{
	right: 4px;
    box-sizing: border-box;
    cursor: pointer;
    display: block;
    height: 28px;
    position: absolute;
    top: 2px;
    height: 2.25rem;
    width: 0.5rem;

}
.mpresentation{
	border-color: #888 transparent transparent transparent;
    border-style: solid;
    border-width: 5px 4px 0 4px;
    height: 0;
    left: -10%;
    margin-left: -4px;
    margin-top: -2px;
    position: absolute;
    top: 55%;
    width: 0;
}
.arrowtop{
	border-color: transparent transparent #888 transparent;
    border-width: 0 4px 5px 4px;
}
.mselect{
	padding-right:20px;
	min-height:25px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    cursor: pointer;
}
.mmsearch1{
	padding: 4px;
}
.widgetcelect{
	position: relative;
}
.myserach1{
	width: 100%;
    box-sizing: border-box;
    border: 1px solid #aaa;
    padding: .375rem .75rem;
    border-radius: .25rem;
    border-color: #d4d5d7;
    -webkit-box-shadow: inset 0 1px 0 0 rgba(61,70,79,.05);
    box-shadow: inset 0 1px 0 0 rgba(61,70,79,.05);
    box-sizing:border-box !important;
}

.mslist li {
    padding: 6px 9px;
    cursor: pointer;
    font-size: 14px;
}
.mslist li span.f{
	border-bottom: 1px solid #555;
}
.mslist {
    margin: 0;
    list-style: none;
    max-height: 160px;
    overflow-x: hidden;
    overflow-y: auto;
}
.msselect {
    display: none;
    position: absolute;
    z-index: 20000;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 3px;
    box-shadow: 0 0 5px #ccc;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-user-select: none;
    user-select: none;
}

#center-panel .msselect .before {
    content: "";
    display: block;
    position: absolute;
    border: 10px solid transparent;
    border-bottom-color: #ccc;
    border-top-width: 0;
    top: -11px;
    left: 20px;
}
#center-panel .msselect .down{
	border-bottom-width:0px;
	border-top-width:10px;
	border-top-color:darkgrey;
	bottom:-11px;
	top:auto;
}

.mbackground{
	background-color: #e9eaeb;

}

.mschoose{
	color:#fff;
	background-color: #346cb0;
}
.mselectborder{
	border-radius: 4px;
	cursor: pointer;
    display: block;
    user-select: none;
    -webkit-user-select: none;
    border: 1px solid #aaa;
    outline: 0;
    border-color: #346cb0;
    -webkit-box-shadow: 0 0 0 1px #346cb0;
    box-shadow: 0 0 0 1px #346cb0;
}
.clearhide{
	display:none;
}



/*单选框样式*/
.mradio{
	position: relative;
}
.mradio:before{
    border-radius: 50%;
    background: linear-gradient(180deg,#fff,#f5f5f5);
    border: 1px solid #d4d5d7;
    -webkit-box-shadow: 0 1px 0 0 rgba(61,70,79,.05);
    box-shadow: 0 1px 0 0 rgba(61,70,79,.05);
    pointer-events: auto;
    -webkit-user-select: auto;
    -moz-user-select: auto;
    -ms-user-select: auto;
    user-select: auto;
    position: absolute;
    top: -0.2rem;
    left: 0;
    display: block;
    width: 1rem;
    height: 1rem;
    content: "";
}
.mradio:after{
	-webkit-transform: scale(0);
    transform: scale(0);
    -webkit-transition: -webkit-transform .2s ease;
    transition: -webkit-transform .2s ease;
    transition: transform .2s ease;
    transition: transform .2s ease,-webkit-transform .2s ease;
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: 65% 65%;
    position: absolute;
    top: -0.2rem;
    left: 0;
    display: block;
    width: 1rem;
    height: 1rem;
    content: "";
}

.mradio:checked:before{
    border-color: #346cb0;
    color: #fff;

}

.mradio:checked:after{
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%230179A8' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M3 0c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3z' transform='translate(1 1)' /%3e%3c/svg%3e");
	-webkit-transform: scale(1);
    transform: scale(1);
}

/*复选框样式*/
.mcheckbox{
	position: relative;
	visibility: hidden;
}
.mcheckbox:before{
	visibility: visible;
	border-radius: .25rem;
	background: -webkit-gradient(linear,left top,left bottom,from(#fff),to(#f5f5f5));
	background: linear-gradient(180deg,#fff,#f5f5f5);
	border: 1px solid #d4d5d7;
	-webkit-box-shadow: 0 1px 0 0 rgba(61,70,79,.05);
	box-shadow: 0 1px 0 0 rgba(61,70,79,.05);
	pointer-events: auto;
	-webkit-user-select: auto;
	-moz-user-select: auto;
	-ms-user-select: auto;
	user-select: auto;
    display: block;
    width: 1rem;
    height: 1rem;
    content: "";

}
.mcheckbox:after{
	visibility: visible;
	-webkit-transform: scale(0);
    transform: scale(0);
    -webkit-transition: -webkit-transform .2s ease;
    transition: -webkit-transform .2s ease;
    transition: transform .2s ease;
    transition: transform .2s ease,-webkit-transform .2s ease;
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: 65% 65%;
    
    position: absolute;
    top: 0rem;
    left: 0;
    display: block;
    width: 1rem;
    height: 1rem;
    content: "";
}

.mcheckbox:checked:after{
	-webkit-transform: scale(1);
    transform: scale(1);
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%230179A8' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M6.41 0l-.69.72-2.78 2.78-.81-.78-.72-.72-1.41 1.41.72.72 1.5 1.5.69.72.72-.72 3.5-3.5.72-.72-1.44-1.41z' transform='translate(0 1)' /%3e%3c/svg%3e");
   
}
.mcheckbox:checked:before{
	border-color: #346cb0;
    color: #fff;
}
td .container{
	width:100%;
	max-width:100%;
	margin-right: 0;
    margin-left: 0;
}
/*table控件内部的基本显示应该是居中的，将margin设置为空*/
.table td>*, .table th>* {
	margin-bottom: 0;
}


td .d-flex{
	width:100%;
}
/*上方topbar样式*/
.#topbar{
	width: 100%;
    line-height: 30px;
    padding: 5px 0;
}
#topbar:before {
    display: block;
    width: 100%;
    height: 1px;
    margin-top: 29px;
    content: "";
}
#topbar .raq-title {
    font-size: 18px;
    position: absolute;
    left: 30px;
    top: 5px;
}
#raqname {
    white-space: nowrap;
}
.clearfix {
    margin-bottom: auto;
    line-height: 1.42857143;
}
#topbar #raqname>img {
    display: inline-block;
    height: 28px;
    width: 28px;
    margin-right: 10px;
}
#topbar #raqname>div {
    display: inline-block;
    margin-right: 30px;
    position: relative;
    white-space: nowrap;
}
#topbar #raqname>div:after {
    content: "";
    display: block;
    position: absolute;
    width: 10px;
    height: 10px;
    background-image: url(../webmisWeb/images/breadcrumbs_arrow.png);
    top: 8px;
    right: -20px;
}
.clearfix:after {
    display: block;
    content: '';
    clear: both;
    visibility: hidden;
}



.btable{
	background-color: #fff;
}
.btable  td
{
	vertical-align:middle;
}
.section-block
{
	background-color: #f5f5f5;
}

/**html默认背景色为looper的背景色*/
.bg-body{
	background-color: #f5f5f5;
}



/*分页控件样式*/
.noprint .left{
	float: left;
    margin-left: 50px;

}
.noprint .right{
	float: right;
    margin-right: 80px;

}
.right .btn-group{
	float: left;
    margin-right: 15px;
}
.right .btn-group a{
	margin-top: 0px;
    padding: 0px 12px;
    height: 20px;
    line-height: 20px;
    font-size: 12px;
}
.eachnum{
	margin-left: 4px;
    margin-right: 4px;
    width: auto;
    height: 21px;
    padding: 0;
}
.js-paged .pagination{
	float: left;
    margin-right: 15px;
    display: initial;
}

.nowrap{
	white-space:nowrap;
}



/*正整数输入框样式*/
@font-face {
  font-family: "Ionicons";
  src: url(./ionicons.eot?v=1.4.1);
  src: url(./ionicons.eot?v=1.4.1#iefix) format("embedded-opentype"), url(./ionicons.ttf?v=1.4.1) format("truetype"), url(./ionicons.woff?v=1.4.1) format("woff"), url(./ionicons.svg?v=1.4.1#Ionicons) format("svg");
  font-weight: normal;
  font-style: normal; }

.tb-numberOperation.cUVFnmm {
	display:flex;
    width: 100%;
}
.tb-numberOperation.cUVFnmm .btn.cUVFnmm {
    border-radius: 0;
}
.btn.x-gray {
    color: #ffffff;
    background-color: #e7e7e7;
    border-color: #e7e7e7;
}
.tb-numberOperation.cUVFnmm span.cUVFnmm {
    padding: 4px 15px;
    border-top: 1px solid rgb(225, 225, 225);
    border-bottom: 1px solid rgb(225, 225, 225);
    font-size:14px;
}
.icon-android-remove, .icon-android-add{
	display: inline-block;
    font-family: "Ionicons";
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    text-rendering: auto;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    
}
.icon-android-add:before {
    content: "\f2c7";
}
.icon-android-remove:before {
    content: "\f2f4";
}
/*disabled属性*/
html [disabled="disabled"] {
    cursor: default;
    background-color: #eee;
}


[disabled] {
   /* 详情页面有时会有文件控件需要下载，不能禁用所有点击事件。*/
   /* pointer-events: none;*/
    cursor: not-allowed;
}


.action-btn.mis-MDiv[disabled] {
    /* 立即执行区域设置不可编辑的样式*/
    pointer-events: none;
    cursor: not-allowed;
}

/*pc进度条样式*/
/*td[wt="67"] .progress {
    height: 1rem;
    min-height: 0px;
    margin-bottom: 0px;
    overflow: hidden;
    /*background-color: #f5f5f5; 进度条会覆盖bootstrap的背景颜色*/
    border-radius: 0.25rem;
    -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1);
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1);
}
.progress{
	min-width:4rem;	
}*/



/*标签组(新)样式*/

.none {
    display: none !important;
}


/*日历控件样式*/

.mcalendari{
	margin-right: 8px;
    float: right;
    cursor: pointer
}
[v-mcalendar] .flatpickr-input{
	background-color: inherit;
	width: calc(100% - 19.59375px);
}
[v-mcalendar].form-control>input.flatpickr-input{
	background-color: inherit;
	/*width: calc(100% - 19.59375px);*/
	width: 100%;
	margin-right:-6px;
}



/*解决input不同浏览器超出问题*/
input {
	max-width:100%;
}

.mis-bounded 
{
	max-width:100%;
	max-height:100%;
}


.mis-unbounded 
{
	max-width:9999rem;
	max-height:9999rem;
}
.mis-width-bounded 
{
	max-width:100%;
}

.mis-width-unbounded 
{
	max-width:9999rem;
}
.mis-height-bounded 
{
	max-height:100%;
}

.mis-height-unbounded 
{
	max-height:9999rem;
}

//弹出式长文本样式bug
.mpcminwidth{
	min-width: 2rem;
}


div[misgridrow] 
{
	-webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;

}

/*排序按钮样式*/



/* inline */
.mis-display-inline{
	display:inline;
}

/*复杂查询样式*/
.mbtn{
	border: 1px solid #ccc !important;
}

/*附件控件样式*/

.mfilecls{
	min-height:2rem;
	cursor: pointer;
}

.mfilea{
	color: #346cb0;
    text-decoration: none;
    background-color: transparent;
    -webkit-text-decoration-skip: objects;
}
.mfilea:hover{
	color: #234875;
    text-decoration: underline;
}


/*最小高度样式定义*/


.mminheightcls-high{
	min-height:4rem;
}

.mminheightcls-middle{
	min-height:2.22rem;
}
.mminheightcls-small{
	min-height:1rem;
}

/*正整数输入框样式*/
.withinput{
	height:2.22rem;
}


table[id^=r] td {
	position: relative;
}

.img-cell.img-big img{
	max-width: 100%;
	max-height: 100%;
}

.img-cell>img{
	max-width: 100%;
	max-height: 300px;
}

.ui-dialog .ui-dialog-content{
	overflow: auto !important;
}




[v-mtextarea] {
	min-height: 39px;
}

[v-mpicture]>img{
	width:100%;
}
.size-rem-1{
	width: 1rem;
	height: 1rem;
}
.size-rem-2 {
	width: 2rem;
	height: 2rem;
}
.size-rem-3 {
	width: 3rem;
	height: 3rem;
}
.size-rem-4 {
	width: 4rem;
	height: 4rem;
}
.size-rem-6 {
	width: 6rem;
	height: 6rem;
}
.size-rem-8 {
	width: 8rem;
	height: 8rem;
}
.size-rem-10 {
	width: 10rem;
	height: 10rem;
}
.size-rem-12 {
	width: 12rem;
	height: 12rem;
}
.size-rem-14 {
	width: 14rem;
	height: 14rem;
}
.size-rem-16 {
	width: 16rem;
	height: 16rem;
}
.size-rem-18 {
	width: 18rem;
	height: 18rem;
}
.size-rem-20 {
	width: 20rem;
	height: 20rem;
}
.size-rem-22 {
	width: 22rem;
	height: 22rem;
}
.size-rem-24 {
	width: 24rem;
	height: 24rem;
}
.carousel-item img{
	max-width: 100%;
	height:auto;
}
img:not([src]) {
	display: none;
}
.img-cell{
	display: inline-block;
	width: 150px;
	height: 150px;
	position: relative;
	margin: 10px;
	vertical-align: top;
	text-align: center;
}
.img-cell.img-big{
	width: 360px;
	height:  260px;
}
.img-cell img{
	height: 100%;
	width: 100%;
	cursor: zoom-in;
}
.img-cell>span{
	display: block;
	overflow: hidden;
}
.img-cell.img-novalue .img-ho{
	display: block;
}
.img-novalue .str-re, .img-novalue .img-del{
	display: none;
}
.img-ho{
	position: absolute;
	display: none;
	width: 100%;
	bottom: 0;
	background: #555;
	background: rgba(0,0,0,.5);
	text-align: right;
}
.img-ho a{
	color:#E0E0E0;
	display: inline-block;
	position: relative;
	height: 30px;
	line-height: 30px;
	vertical-align: middle;
	overflow: hidden;
	cursor: pointer;
	font-size: 12px;
	margin: 0 10px;
}
.img-ho a:not([href]):not([tabindex]) {
   color:#E0E0E0;
}
.img-ho a:hover{text-decoration: none;color: #fff;}
.img-ho a input[type="file"] {
	position: absolute;
	left: 0px;
	width: 100%;
	cursor: pointer;
	opacity: 0;
	filter: alpha(opacity=0);
	font-size: 150px;
}
.img-cell:hover .img-ho{
	display: block;
}
img[src=""] {
	display: none;
}
/******文件上传*******/
td[wt="11"]>div{
	height: 100%;
}
.file-cell a.file-link {
	overflow: auto;
}
.file-ho a {
	position: relative;
	cursor: pointer;
	font-size: 14px;
}
.file-ho input[type="file"] {
	position: absolute;
	top: 0;
	left: 0;
	width: 60px;
	height: 22px;
	cursor: pointer;
	opacity: 0;
	filter: alpha(opacity=0);
}
.file-rename{
	color:#08c;
	font-size:14px;
	border: 1px solid #ccc;
	border-radius: 4px;
	min-height: 23px;
	max-height: 100%;
	line-height: 23px;
	width: 50%;
	padding: 0px 0px 0px 0px;
	margin: 2px 2px 2px 10px;
	-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,0.075);
	-moz-box-shadow : inset 0 1px 1px rgba(0,0,0,0.075);
	box-shadow: inset 0 1px 1px rgba(0,0,0,0.075);
	-webkit-transition: border linear .2s,box-shadow linear .2s;
	-moz-transition: border linear .2s,box-shadow linear .2s;-o-transition: border linear .2s,box-shadow linear .2s;
	transition: border linear .2s,box-shadow linear .2s;
}
a:not([href]):not([tabindex]) {
	color:#346cb0;
    text-decoration: none;
}
a:not([href]):not([tabindex]):hover {
	color: #346cb0;
    text-decoration: none;
}
.block{
	display:block;
}
.inline{
	display:inline;
}
.inline-block{
	display:inline-block;
}
.page-item.active .page-link {


}
.page-item a:not([href]):not([tabindex]) {
	color:#28313b;
}
.page-item.active a:not([href]):not([tabindex]) {
	color:#346cb0;
}
.page-item a:not([href]):not([tabindex]):hover {
	color: #346cb0;
}
.width-auto {
	width:auto;
}

div.misraq .width-full {
	width:100%;
}

.form-control input.flatpickr-input{
    margin: -6px -12px;
    padding: 6px 12px;
}
div.ui-dialog[i="dialog"]{
	background-color: #f5f5f5;
}

[role="alertdialog"]{
	max-width:100%;
}
[ i="dialog"].ui-dialog{
	overflow:auto;
}
.dropdown-menu.mdropdown-menu{
	top:auto;
}
table.ui-dialog-grid{
	width:100%;
}
ul.steps {
    margin: 0 auto;
    padding-left: 0;
    list-style: none;
    background-color: #e9eaeb;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    border-radius: 999px;
}
.flex{
	display: flex;
}

.inline-flex{
	display: inline-flex;
}
input.curr_page{
	text-align: center;
	width:40px;
	height:21px;
}
input.curr_page,select.eachnum {
	    color: #28313b;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #d4d5d7;
    border-radius: .25rem;
	margin-left: 4px;
    margin-right: 4px;
}
input.curr_page:focus,select.eachnum:focus {
    color: #28313b;
    background-color: #fff;
    border-color: #346cb0;
    outline: 0;
    -webkit-box-shadow: 0 0 0 1px #346cb0;
    box-shadow: 0 0 0 1px #346cb0
}
[src*=rolesSet]{
	margin-bottom:-5px;
}
[src*=mainPageSet]{
	margin-bottom:-5px;
}

.mis-cursor-pointer:not(:disabled):not(.disabled) {
    cursor: pointer
}
.bg-auto{
	background: auto;
}
.relative{
	position: relative;
}
.flex-1{
	flex:1;
}
.height-full{
	height:100%;
}
.overflow-auto{
	overflow:auto;
}
.overflow-visible{
	overflow:visible;
}

.overflow-hidden{
	overflow:hidden;
}
.overflow-x-auto{
	overflow-x:auto;
}
.overflow-x-visible{
	overflow-x:visible;
}

.overflow-x-hidden{
	overflow-x:hidden;
}
.overflow-y-auto{
	overflow-y:auto;
}
.overflow-y-visible{
	overflow-y:visible;
}

.overflow-y-hidden{
	overflow-y:hidden;
}

.list-style-none{
	list-style: none;
}

.ml--1 {
	margin-left: -.25rem;
}

.ml--2 {
	margin-left: -.5rem;
}

.ml--3 {
	margin-left: -1rem;
}
.text-align-center {
	text-align: center;
}
.display-inline{
	display:inline;
}

.top-em-2 {
	top: 0.5em;
}
.mt--2 {
	margin-top: -0.5em;
}






