@charset "utf-8";

:root{
	/* --theme-color: #6954F0; */
	/* --theme-color: #8178ff; */
	--theme-rgb: 129, 120, 255;
	--theme-color: rgb(var(--theme-rgb));
	--theme-color-bg: rgba(var(--theme-rgb), 0.2);
	--danger-color: #f16c55;
	
	/* --theme-color-bg: #e5e3ff; */
	/* --theme-color: var(--theme-color); */
}

/* CSS Document */

body,
div,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
li,
ol,
dl,
dt,
dd,
p,
a,
span,
input,
img,
button,
textarea,
select,
table,
label,
tr,
td,
thead,
tbody {
	margin: 0;
	padding: 0;
	list-style: none;
	border: none;
	outline: none;
}

body {
	color: #333;
	font-size: 14px;
	/* font-family: "微软雅黑" !important; */
}
/* *:not(.fa,.sidebar-toggle){
    font-family: 微软雅黑 !important;
} */

/* .schemeSimulateBtn{
	display: none!important;
} */

html,body{
	min-height: 100vh;
}
a {
	color: #333;
	text-decoration: none;
	outline: none;
}

a:hover {
	color: #188DFF;
	text-decoration: none;
}

a:focus {
	text-decoration: none;
	outline: none;
}

* {
	-moz-box-sizing: border-box;  /*Firefox3.5+*/
	-webkit-box-sizing: border-box; /*Safari3.2+*/
	-o-box-sizing: border-box; /*Opera9.6*/
	-ms-box-sizing: border-box; /*IE8*/
	box-sizing: border-box; /*W3C标准(IE9+，Safari5.1+,Chrome10.0+,Opera10.6+都符合box-sizing的w3c标准语法)*/
}

button{
	background: none;
	cursor: pointer;
}

.lm-tip-marker{
	position: relative;
	--tip-size: 4px;
}
.lm-tip-marker::after{
	content: "";
	position: absolute;
	right: 0;
	top: 0;
	width: 0;
	height: 0;
	border-top: var(--tip-size) solid #f00;
	border-bottom: var(--tip-size) solid transparent;
	border-left: var(--tip-size) solid transparent;
	border-right: var(--tip-size) solid #f00;
}


.btn {
	padding: 0;
}
.lm-noData{
	width: 100%;
	line-height: 50px;
	text-align: center;
	color: #ccc;
}
iframe#edit_table{
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	display: none;
	z-index: 9999999999;
}


iframe.edit_table_class{
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	display: none;
	z-index: 9999999999;
}

/*伪类清浮动*/


/*这段代码 每次要加在cssrest当中 把它当做一个模块来使用 使用方法就是：给高度塌陷的元素 加上这个clearfix类名即可*/

.clearfix:after {
	content: "";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}

.clearfix {
	display: inline-table;
}

*html .clearfix {
	height: 1%;
}

.clearfix {
	display: block;
}

*+html .clearfix {
	min-height: 1%;
}



::-webkit-scrollbar {
    width: 6px;
    height: 10px;
	border-radius: 3px;
    background-color: #F5F5F5;
}

::-webkit-scrollbar-corner, ::-webkit-scrollbar-track {
    background-color: #e2e2e2;
}

::-webkit-scrollbar-thumb {
    border-radius: 3px;
    background-color: #d2d2d2;;
}

::-webkit-scrollbar-thumb {
    background-color: #d2d2d2;
}

::-webkit-scrollbar-corner, ::-webkit-scrollbar-track {
    background-color: #e2e2e2;
}

::-webkit-scrollbar-track {
    background-color: #F5F5F5;
}
.lm-zHidden{
	z-index: -9999999!important;
}
.lm-hide{
	display: none!important;
}
button:hover{
	opacity: .9;
}

input[type='number']{-moz-appearance:textfield;}
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {-webkit-appearance: none;margin: 0;}

.layui-form-item .layui-form-checkbox{
	margin-top: 0;
}

.lm-btn:hover {
	opacity: 0.9;
}
.lm-btn {
	padding: 0 15px;
	height: 30px;
	border-radius: 3px;
	cursor: pointer;
	box-sizing: border-box;
	background: none;
	border: 1px solid #dedede;
	position: relative;
}
.lm-tip.ok{ background: #1ec458;}
.lm-tip{
	width: 24px;
	height: 24px;
	border-radius: 50%;
	color: #fff;
	font-weight: bold;
	position: absolute;
	top: -8px;
	right: -8px;
	transform: scale(0.8);
	font-size: 12px;
	text-align: center;
	line-height: 24px;
	background: #f00;
}


/**/
.lm-form-selBlock {
	display: flex;
	flex-wrap: wrap;
}
.lm-form-selItem.active {
	background: #1ec458;
	border-color: #1ec458;
	color: #fff;
}
.lm-form-selItem:hover {
	border-color: #1ec458;
}
.lm-form-selItem {
	margin: 0 10px 10px 0;
	height: 30px;
	border-radius: 2px;
	padding: 0 10px;
	line-height: 30px;
	border: 1px solid #eee;
	cursor: pointer;
}
.lm-form-selItem.disabled {
	background: #f0f0f0;
	border-color: #f0f0f0;
	color: #999;
	cursor: not-allowed;
}
.lm-form-selItem.disabled:hover {
	border-color: #f0f0f0;
}

.debugger-btns{
	position: fixed;
	right: 10px;
	top: 10px;
	display: flex;
	z-index: 999;
	background: #fff;
}
.debugger-addBtn{
	margin-right: 10px;
	background: #fff;
}

/*校外主题*/
.lm-form-selItem.active {
	background: var(--theme-color);
	border-color: var(--theme-color);
}
.lm-form-selItem:hover {
	border-color: var(--theme-color);
}

/* .layui-form-checkbox i{
	box-sizing: content-box;
} */

.lm-img-box{
	padding-top: 5px;
	display: flex;
	flex-wrap: wrap;
    --width: 80px;
    --height: 80px;
}
.lm-img-item{
    width: var(--width);
    height: var(--height);
	position: relative;
	border-radius: 8px;
	margin-right: 10px;
	margin-bottom: 10px;
	overflow: hidden;
	display: flex;
	border: 1px solid #dedede;
	align-items: center;
	justify-content: center;
	/* cursor: -webkit-zoom-in; */
}
.lm-img-item .imgDel:hover{
	color: #ff5b5b;
}
.lm-img-item:hover .imgDel{display: block;}
.lm-img-item .imgDel{
	color: #ff5b5b;
	cursor: pointer;
	display: none;
	position: absolute;
	right: 5px;
	top: 5px;
}
.lm-img-item img{
    width: 100%;
    height: 100%;
	max-height: unset!important;
    object-fit: cover;
}
.lm-img-item.aspectFit img{
	/* max-width: 95%;
	max-height: 95%;
	min-width: unset;
	min-height: unset; */
    object-fit: contain;
}
.lm-img-item.add{
	color: #666;
	font-size: 20px;
	cursor: pointer;
}
.lm-img-item.add:hover{
	color: #333;
}
.powerTip{
	position: fixed;
	right: 10px;
	top: 10px;
	font-size: 16px !important;
	color: var(--theme-color)
}


/*power*/
.yhy-power-hide {
    visibility:hidden !important;
    display: none !important;
}


.window-full{
	position: fixed !important;
	left: 0 !important;
	top: 0 !important;
	width: 100vw !important;
	height: 100vh !important;
	z-index: 9999999 !important;
}

iframe.perf_schemeId_class{
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	display: none;
	z-index: 9999999999;
}
.lm-error-tip{
	font-size: 12px;
	color: #ff5b5b;
	line-height: 24px;
}

.layui-table-tool-panel li[data-type="csv"]{
	display: none;
}

#app.appHide{
	visibility: hidden;
}
.lm-flex{
	display: flex;
}
.lm-center-flex{
	display: flex;
	align-items: center;
}
.lm-warp-flex{
	display: flex;
	flex-wrap: wrap;
}
.lm-text-tip{
	color: rgb(255, 115, 0);
	font-size: 12px;
}
.flex_auto{
	flex: auto;
}

.previewFile{
	font-size: 20px;
	cursor: pointer;
}
.layui-form .layui-disabled, 
.layui-form .layui-disabled:hover{
    color: #666 !important;
}
.layui-form .layui-btn.layui-disabled, 
.layui-form .layui-btn.layui-disabled:hover, 
.layui-form dd.layui-disabled, 
.layui-form dd.layui-disabled:hover{
    color: #eee !important;
}

.lm-fa-btn:hover{
	opacity: .8;
}
.lm-fa-btn{
	font-size: 16px;
	color: var(--theme-color);
	cursor: pointer;
}

.fa.del:hover{
    color: #e43a3a;
}
.fa.del{
    font-size: 16px;
    cursor: pointer;
    color: #666;
    z-index: -1;
    transform: translateX(-8px);
    opacity: 0;
    transition: all .3s;
}
.hover-btn{
	cursor: pointer;
}
.hover-btn:hover{
	color: var(--theme-color);
}


.pos-tip-rt{
	position: absolute;
	right: 5px;
	top: 5px;
}
.pos-tip-rb{
	position: absolute;
	right: 5px;
	bottom: 5px;
}

.full-view{
	width: 100%;
	height: 100%;
}
.full-h{
	height: 100%;
}
.full-w{
	width: 100%;
}
.fullWindow-view{
	width: 100vw;
	height: 100vh;
}
.fullWindow-h{
	height: 100vh;
}
.fullWindow-w{
	width: 100vw;
}

.flex-row {
	display: flex;
}
.flex-col {
	display: flex;
	flex-direction: column;
}
.flex-item {
	display: flex;
}
.items-center {
    align-items: center;
}
.justify-center {
    justify-content: center;
}
.justify-between {
    justify-content: space-between;
}
.justify-end {
    justify-content: flex-end;
}
.flex-wrap {
    flex-wrap: wrap;
}
.flex-auto {
    flex: auto;
}
.flex-1 {
    flex: 1 1 0%;
}
.flex-2 {
    flex: 2 1 0%;
}
.flex-3 {
    flex: 3 1 0%;
}
.text-btn {
	color: var(--theme-color);
	cursor: pointer;
}
.text-center {
    text-align: center;
}
.text-right {
    text-align: right;
}
.text-left {
    text-align: left;
}
.text-justify {
    text-align: justify;
}
.text-nowrap{
	white-space: nowrap;
}
.text-bold {
	font-weight: bold;
}
.text-noBold {
	font-weight: normal;
}
.text-italic {
	font-style: italic;
}
.text-underline {
	text-decoration: underline;
}
.text-line-through {
	text-decoration: line-through;
}
.text-capitalize {
	text-transform: capitalize;
}
.text-uppercase {
	text-transform: uppercase;
}

.text-info {
	color: #777;
}
.text-danger {
	color: var(--danger-color);
}
.text-theme {
	color: var(--theme-color);
}
.text-success {
	color: #1ec458;
}



.border-all {
    border: 1px solid #dedfe0;
}
.border-right {
    border-right: 1px solid #dedfe0;
}
.border-bottom {
    border-bottom: 1px solid #dedfe0;
}
.border-left {
    border-left: 1px solid #dedfe0;
}
.border-top {
    border-top: 1px solid #dedfe0;
}


.mt-2{
    margin-top: 2px;
}
.mb-2{
    margin-bottom: 2px;
}
.ml-2{
    margin-left: 2px;
}
.mr-2{
    margin-right: 2px;
}

.mt-4{
    margin-top: 4px;
}
.mb-4{
    margin-bottom: 4px;
}
.ml-4{
    margin-left: 4px;
}
.mr-4{
    margin-right: 4px;
}

.mt-6{
    margin-top: 6px;
}
.mb-6{
    margin-bottom: 6px;
}
.ml-6{
    margin-left: 6px;
}
.mr-6{
    margin-right: 6px;
}


.mt-8{
    margin-top: 8px;
}
.mb-8{
    margin-bottom: 8px;
}
.ml-8{
    margin-left: 8px;
}
.mr-8{
    margin-right: 8px;
}


.mt-10{
    margin-top: 10px;
}
.mb-10{
    margin-bottom: 10px;
}
.ml-10{
    margin-left: 10px;
}
.mr-10{
    margin-right: 10px;
}
.mt-15{
    margin-top: 15px;
}
.mb-15{
    margin-bottom: 15px;
}
.ml-15{
    margin-left: 15px;
}
.mr-15{
    margin-right: 15px;
}



.mt-20{
    margin-top: 20px;
}
.mb-20{
    margin-bottom: 20px;
}
.ml-20{
    margin-left: 20px;
}
.mr-20{
    margin-right: 20px;
}


.mt-30{
    margin-top: 30px;
}
.mb-30{
    margin-bottom: 30px;
}
.ml-30{
    margin-left: 30px;
}
.mr-30{
    margin-right: 30px;
}
.mt-50{
    margin-top: 50px;
}
.mb-50{
    margin-bottom: 50px;
}
.ml-50{
    margin-left: 50px;
}
.mr-50{
    margin-right: 50px;
}
.mt-60{
    margin-top: 60px;
}
.mb-60{
    margin-bottom: 60px;
}
.ml-60{
    margin-left: 60px;
}
.mr-60{
    margin-right: 60px;
}


.pd-10{
	padding: 10px;
}
.pd-20{
	padding: 20px;
}


	
.pt-5{
	padding-top: 5px;
}
.pb-5{
	padding-bottom: 5px;
}
.pl-5{
	padding-left: 5px;
}
.pr-5{
	padding-right: 5px;
}


.pt-8{
    padding-top: 8px;
}
.pb-8{
    padding-bottom: 8px;
}
.pl-8{
    padding-left: 8px;
}
.pr-8{
    padding-right: 8px;
}


.pt-10{
    padding-top: 10px;
}
.pb-10{
    padding-bottom: 10px;
}
.pl-10{
    padding-left: 10px;
}
.pr-10{
    padding-right: 10px;
}


.pt-15{
    padding-top: 15px;
}
.pb-15{
    padding-bottom: 15px;
}
.pl-15{
    padding-left: 15px;
}
.pr-15{
    padding-right: 15px;
}


.pt-20{
    padding-top: 20px;
}
.pb-20{
    padding-bottom: 20px;
}
.pl-20{
    padding-left: 20px;
}
.pr-20{
    padding-right: 20px;
}


.pt-30{
    padding-top: 30px;
}
.pb-30{
    padding-bottom: 30px;
}
.pl-30{
    padding-left: 30px;
}
.pr-30{
    padding-right: 30px;
}


.pt-50{
    padding-top: 50px;
}
.pb-50{
    padding-bottom: 50px;
}
.pl-50{
    padding-left: 50px;
}
.pr-50{
    padding-right: 50px;
}


.pt-60{
    padding-top: 60px;
}
.pb-60{
    padding-bottom: 60px;
}
.pl-60{
    padding-left: 60px;
}
.pr-60{
    padding-right: 60px;
}


.p-3-5{
	padding: 3px 5px;
}
.p-3-10{
	padding: 3px 10px;
}

.p-0-10{
	padding: 0 10px;
}
.p-0-20{
	padding: 0 20px;
}
.p-5-10{
	padding: 5px 10px;
}
.p-8-10{
	padding: 8px 10px;
}
.p-10{
	padding: 10px;
}
.p-10-20{
	padding: 10px 20px;
}
.p-20{
	padding: 20px;
}

.radius-all{
	border-radius: 50%;
}
.radius-2{
	border-radius: 2px;
}
.radius-3{
	border-radius: 3px;
}
.radius-5{
	border-radius: 5px;
}
.radius-8{
	border-radius: 8px;
}
.radius-10{
	border-radius: 10px;
}
.radius-20{
	border-radius: 20px;
}


.f12{
	font-size: 12px;
}
.f14{
	font-size: 14px;
}
.f16{
	font-size: 16px;
}
.f18{
	font-size: 18px;
}
.f20{
	font-size: 20px;
}
.f22{
	font-size: 22px;
}
.f24{
	font-size: 24px;
}
.f26{
	font-size: 26px;
}
.f28{
	font-size: 28px;
}
.f30{
	font-size: 30px;
}
.f32{
	font-size: 32px;
}
.f34{
	font-size: 34px;
}
.f36{
	font-size: 36px;
}

















#loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999999;
  }

  #loader {
    display: block;
    position: relative;
    left: 50%;
    top: 50%;
    width: 150px;
    height: 150px;
    margin: -75px 0 0 -75px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: var(--theme-color);
    -webkit-animation: spin 2s linear infinite;
    -ms-animation: spin 2s linear infinite;
    -moz-animation: spin 2s linear infinite;
    -o-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
    z-index: 1001;
  }

  #loader:before {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: var(--theme-color);
    -webkit-animation: spin 3s linear infinite;
    -moz-animation: spin 3s linear infinite;
    -o-animation: spin 3s linear infinite;
    -ms-animation: spin 3s linear infinite;
    animation: spin 3s linear infinite;
  }

  #loader:after {
    content: "";
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: var(--theme-color);
    -moz-animation: spin 1.5s linear infinite;
    -o-animation: spin 1.5s linear infinite;
    -ms-animation: spin 1.5s linear infinite;
    -webkit-animation: spin 1.5s linear infinite;
    animation: spin 1.5s linear infinite;
  }


  @-webkit-keyframes spin {
    0% {
      -webkit-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
      transform: rotate(0deg);
    }

    100% {
      -webkit-transform: rotate(360deg);
      -ms-transform: rotate(360deg);
      transform: rotate(360deg);
    }
  }

  @keyframes spin {
    0% {
      -webkit-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
      transform: rotate(0deg);
    }

    100% {
      -webkit-transform: rotate(360deg);
      -ms-transform: rotate(360deg);
      transform: rotate(360deg);
    }
  }
#loader-wrapper .load_title {
    font-family: 'Open Sans';
    color: var(--theme-color);
    font-size: 19px;
    width: 100%;
    text-align: center;
    z-index: 9999999999999;
    position: absolute;
    top: 60%;
    opacity: 1;
    line-height: 30px;
  }

  #loader-wrapper .load_title span {
    font-weight: normal;
    font-style: italic;
    font-size: 13px;
    color: var(--theme-color);
    opacity: 0.5;
  }

