@charset "utf-8";
/* CSS Document */
/******************************************
/******
/******     弹出窗口CSS代码
/******
/******
******************************************/
.windowBg {
	/*display: none;*/
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.3);
	display: flex;
	justify-content: center;
	align-items: center;
}
.windowBg.remove {
	opacity: 0;
	transition: all linear 0.2s;
}
.windowLayer {
	border: 0px solid #898989;
	position: absolute;
	background-color: #FFF;
	box-shadow: 0px 0px 16px 1px rgba(0, 0, 0, 0.25);
	border-radius: 0px;
	overflow: hidden;
	box-sizing: border-box;
	transition: height 0.5s;
	max-height: 92vh;
	display: flex;
	flex-direction: column;
}
.windowTitle {
	border-bottom: 1px solid #ddd;
	/*	overflow: hidden;*/
	/* background-image: linear-gradient(120deg, #3a65a4, #00a9e4); */
	/* background-image: linear-gradient(120deg, #1F4FB3, #1F4FB3); */
	/* background: #0E5CC9 url(windowTitle.png) repeat-x center; */
	/* background-size: auto 100%; */
	/* line-height: 60px; */
	border-bottom: 1px solid #ececec;
	overflow: hidden;
	/*    border-radius: 5px 0px 0 0;*/
	background-color: #ffffff;
	position: relative;
	height: 60px;
	box-sizing: border-box;
	flex: 0 0 auto; /* 自动高度 */
}
.windowTitle > .titleTxt {
	/*float:left;*/
}
.windowTitle > .titleTxt > p, .screenTitle > .titleTxt > p {
	font-weight: normal;
	margin: 0;
	font-size: 15px;
	text-align: left;
	padding: 0 24px;
	line-height: 50px;
}
.windowTitle > .titleTxt > p {
	color: #4c4c4c;
}
.screenTitle > .titleTxt > p {
	color: #ffffff;
}
.windowTitle > .closeBtn, .screenTitle > .closeBtn, .tipsTitle > .closeBtn {
	float: right;
	position: absolute;
	right: 0px;
	top: 0px;
	/* display: none; */
	line-height: normal;
}
.windowClose,.screenClose {
	margin-right: 13px;
	cursor: pointer;
	border-radius: 50%;
	/* background: #536381; */
	width: 28px;
	display: block;
	height: 28px;
	margin-top: 10px;
	text-align: center;
	opacity: .8;
	line-height: 28px;
}
/*
.windowClose {
    line-height: 23px;
}
*/
.windowClose svg, .screenClose svg {
	width: 12px;
	fill: #ffffff;
	vertical-align: middle;
	text-align: center;
	/* padding: 0px 6px; */
}

.screenContArea, .windowContArea{
	flex: 1;
    display: flex;
    flex-direction: column;
	overflow: auto
}

.windowCont {
	width: 100%;
	padding: 25px;
	overflow: auto;
	position: relative;
	/* height: calc(100% - 130px) !important; */
	display: flex;
	background: #EFF3F6;
	flex: 1;
}
.screenCont {
	width: calc(100% - 0px);
/*	padding: 12px;*/
	overflow: auto;
	position: relative;
	/*	height: calc(100% - 126px) !important;*/
	display: flex;
	background: #afd9ff;
	flex: 1;
}
.windowBtn {
	position: relative;
	text-align: center;
	width: 100%;
	border-top: 1px #e3e3e3 solid;
	box-sizing: border-box;
	/* height: 80px; */
	/* line-height: 60px; */
	/* padding: 15px 25px; */
	background: #ededed;
}
.windowBtn button ,.screenBtn button {
	/* margin-right: 18px; */
	display: inline-block;
	outline: none;
	/* border-radius: 3px; */
	vertical-align: middle;
	cursor: pointer;
	border: 0;
	border-right: 1px solid #e3e3e3;
	font-weight: normal;
	line-height: 36px;
	height: auto;
	padding: 0px 27px;
	/* width: 65px; */
	font-size: 14px;
	color: #ffffff;
	text-align: center;
	/* background: #0f9cf3; */
	width: 50%;
}
.windowBtn > button > i, .screenBtn > button > i { /* 普通按钮 */
	display: none;
}
.windowBtn button#cancel > i, .windowBtn button#no > i, .windowBtn button#close > i, .screenBtn button#cancel > i, .screenBtn button#no > i, .screenBtn button#close > i {
	background-image: url("../button/cancelBtn.png");
}
.windowBtn button#save > i, .screenBtn button#save > i {
	background-image: url("../button/saveBtn.png");
}
.windowBtn button#yes > i, .screenBtn button#yes > i {
	background-image: url("../button/sureBtn.png");
}
.windowBtn button#Import > i, .screenBtn button#Import > i {
	/*    background: #75bd6e;*/
	background-image: url("../button/importBtn.png");
}
.windowBtn button#Import > i, .screenBtn button#Import > i {
	/*    background: #75bd6e;*/
	background-image: url("../button/importBtn.png");
}
.windowBtn button#urge > i, .screenBtn button#urge > i {
	/*    background: #75bd6e;*/
	background-image: url("../button/hornBtn.png");
}
.windowBtn button#Edit > i, .screenBtn button#Edit > i {
	/*    background: #75bd6e;*/
	background-image: url("../button/editBtn.png");
}
.windowBtn button#export > i, .screenBtn button#export > i {
	/*    background: #75bd6e;*/
	background-image: url("../button/exportBtn.png");
}
.windowBtn button:hover {
	opacity: 0.6;
}
.screenBtn button:hover {
	opacity: 1;
	/*
	background: transparent;
	color: #266dc3;
*/
}
.windowBtn button:last-child, .screenBtn button:last-child {
	margin-bottom: 0px;
	margin-right: 0px;
}
.windowBtn button.readonly, .screenBtn button.readonly {}
/******************************************
/******
/******     滑出窗口CSS代码
/******
/******
******************************************/
.screenBg {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(126, 136, 145, 0.7);
	z-index: 500;
}
.screenBg.remove {
	opacity: 0;
	transition: all linear 0.2s;
}
.screenLayer {
	border: 0px solid #b9b9b9;
	background-color: #FFF;
	box-shadow: 4px 3px 20px 1px rgba(0, 0, 0, 0.25);
	border-radius: 9px 0px 0px 9px;
	position: fixed;
	top: 0;
	bottom: 0;
	/*	right:0;*/
	/* background: url(../../../images/secondMainBg.png) no-repeat 100% 100%; */
	/* background: #1a73e8; */
	background-position: -400px center;
	display: flex;
	flex-direction: column;
}
.screenTitle {
	/* line-height: 60px; */
	/* border-bottom: 1px solid #ececec; */
	overflow: hidden;
	/*    border-radius: 5px 0px 0 0;*/
	background-color: #ffffff;
	position: relative;
	height: 50px;
	box-sizing: border-box;
	/* background-image: linear-gradient(120deg, #3a65a4, #00a9e4); */
	/* background-image: linear-gradient(120deg, #00b9fa, #0080dd); */
	/* box-shadow: 0px 0px 20px 1px rgba(0, 0, 0, 0.55); */
	background-image: linear-gradient(180deg, #8ac5fd, #afd9ff);
	flex: 0 0 auto; /* 自动高度 */
}
.screenTitle > .titleTxt {
	/*float:left;*/
}
.screenCont > .contArea{
	
position: relative;
	
padding: 29px 12px;
	
background: #F1F2F6;
	
border-radius: 20px 20px 0 0;
	
width: 100%;
	
flex: 1;
}
.screenBtn {
	position: relative;
	bottom: 0px;
	width: 100%;
	box-sizing: border-box;
	/* line-height: 36px; */
	padding: 15px 0px;
	/* float: left; */
	/* margin: 15px 8px 15px 14px; */
	background: #fff;
	/* border-radius: 8px; */
	text-align: center;
	/* top: calc(100% -  127px); */
	/* height: 36px; */
	vertical-align: middle;
}

/******************************************
/******
/******     tips提示窗口CSS代码
/******
/******
******************************************/
.tipsBg {
	position: fixed;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	z-index: 99999999;
	text-align: center;
}
.tipsLayer {
	background-color: rgba(122, 122, 122, 0.85);
	box-shadow: 1px 1px 7px 1px rgb(0 0 0 / 31%);
	border-radius: 5px;
	opacity: 1;
	/* width: 45%; */
	margin: 0 auto;
	/*    display: block;*/
	z-index: 5000;
	overflow: revert;
	/* position: fixed; */
	/* left: 50%; */
	visibility: visible;
	position: relative;
	top: 50%;
	transform: translateY(-50%);
	display: inline-block;
	max-width: calc(100% - 7%);
	box-sizing: border-box;
	/*    padding: 30px 17px 30px 20px;*/
}
.tipsLayer.remove {
	opacity: 0 !important;
	margin-top: -30px !important;
	transition: all linear 0.2s;
}
.tipsTitle {
	border-bottom: 1px solid #ddd;
	overflow: hidden;
	background-color: #EA5A5A;
	position: relative;
	box-sizing: border-box;
	padding: 10px 0;
}
.tipsTitle > .titleTxt {
	/*float:left;*/
}
.tipsTitle > .titleTxt > p {
	font-weight: normal;
	margin: 0;
	padding: 0 20px;
}
.tipsTitle div em {}
.tipsClose {
	position: absolute;
	z-index: 50;
	right: 0px;
	margin-top: -15px;
	margin-right: -15px;
	border: 2px solid;
	border-radius: 50%;
	cursor: pointer;
	border-color: transparent;
	background: #a32525;
}
.tipsClose:hover {
	background: #d00000;
}
.tipsClose svg {
	display: block;
	fill: #ffffff;
	width: 30px;
	height: 30px;
	/*    background: #a32525;*/
	border-radius: 50%;
	/*background: transparent;*/
}
.tipsCont {
	position: relative;
	color: #fff;
	border-radius: 5px;
	box-sizing: border-box;
	height: 100%;
	margin: 30px 40px;
}
.tipsCont span {
	display: inline-block;
	float: left;
	box-sizing: initial;
}
.tipsCont .loadImg.active {
	padding: 0 15px 0 2px;
	width: 50px;
	height: 50px;
	vertical-align: middle;
	line-height: 35px;
}
.tipsCont em {
	font-style: normal;
	text-align: left;
	display: inline-block;
}
.tipsCont em.load {
	line-height: 50px;
	/*
    text-align: left;
    display: block;
*/
}
.tipsCont .loadImg svg, .tipsCont .loadImg img {
	animation: fadenum 3s linear infinite;
}
@keyframes fadenum {
	0% {
		-webkit-transform: rotate(0deg);
	}
	50% {
		-webkit-transform: rotate(180deg);
	}
	100% {
		-webkit-transform: rotate(360deg);
	}
}
/* 设置滚动条的样式 */
.tipsCont::-webkit-scrollbar {
	width: 5px;
}
/* 滚动槽 */
.tipsCont::-webkit-scrollbar-track {
	-webkit-box-shadow: inset006pxrgba(0, 0, 0, 0.6);
	border-radius: 10px;
}
/* 滚动条滑块 */
.tipsCont::-webkit-scrollbar-thumb {
	border-radius: 10px;
	background: rgba(0, 0, 0, 0.1);
	-webkit-box-shadow: inset006pxrgba(0, 0, 0, 0.5);
}
.tipsCont::-webkit-scrollbar-thumb:window-inactive {
	background: rgba(46, 159, 148, 0.4);
}