html {
	font-family: Microsoft YaHei;
}
/* 处理页面未加载完成之前显示绑定数据源码问题 */
[v-cloak] {
	display: none !important;
}
/* 页面加载中动画相关样式 */
.page-loading-div {
	width: 170px;
	height: 140px;
	margin:200px auto;
	font-size: 17px;
	color: #006ab3;
}
.requesting{
	top:0px;
	left:0px;
	position: absolute;
	z-index:2000;
	width:100%;
	height:100%;
	background-color:rgb(0, 0, 0, 0);
}
.request-loading{
	width: 185px;
    height: 56px;
    margin: 200px auto;
    line-height: 56px;
    font-size: 17px;
    opacity: 0.7;
    color: #006ab3;
    padding-left: 60px;
   -moz-border-radius: 20px;
	-webkit-border-radius: 20px;
	border-radius: 20px;
	filter: progid:DXImageTransform.Microsoft.Alpha(opacity=70);
}
.request-loading span{
	margin-left: -10px;
}

.loading-img {
    margin-left: 25px;
    width: 75px;
    height: 75px;
    box-sizing: border-box;
    position: relative;
}

.loading-img>div {
    position: absolute;
    border-radius: 100%;
    -webkit-animation: ball-spin-clockwise 1s infinite ease-in-out;
    -moz-animation: ball-spin-clockwise 1s infinite ease-in-out;
    -o-animation: ball-spin-clockwise 1s infinite ease-in-out;
    animation: ball-spin-clockwise 1s infinite ease-in-out;
    width: 16px;
    height: 16px;
    margin-top: -8px;
    margin-left: -8px;
    display: inline-block;
    float: none;
    background-color: #3b8fc3;
    border: 0 solid currentColor;
}

.loading-img>div:nth-child(1) {
    top: 5%;
    left: 50%;
    -webkit-animation-delay: -.875s;
    -moz-animation-delay: -.875s;
    -o-animation-delay: -.875s;
    animation-delay: -.875s;
}

.loading-img>div:nth-child(2) {
    top: 18.1801948466%;
    left: 81.8198051534%;
    -webkit-animation-delay: -.75s;
    -moz-animation-delay: -.75s;
    -o-animation-delay: -.75s;
    animation-delay: -.75s;
}

.loading-img>div:nth-child(3) {
    top: 50%;
    left: 95%;
    -webkit-animation-delay: -.625s;
    -moz-animation-delay: -.625s;
    -o-animation-delay: -.625s;
    animation-delay: -.625s;
}

.loading-img>div:nth-child(4) {
    top: 81.8198051534%;
    left: 81.8198051534%;
    -webkit-animation-delay: -.5s;
    -moz-animation-delay: -.5s;
    -o-animation-delay: -.5s;
    animation-delay: -.5s;
}

.loading-img>div:nth-child(5) {
    top: 94.9999999966%;
    left: 50.0000000005%;
    -webkit-animation-delay: -.375s;
    -moz-animation-delay: -.375s;
    -o-animation-delay: -.375s;
    animation-delay: -.375s;
}

.loading-img>div:nth-child(6) {
    top: 81.8198046966%;
    left: 18.1801949248%;
    -webkit-animation-delay: -.25s;
    -moz-animation-delay: -.25s;
    -o-animation-delay: -.25s;
    animation-delay: -.25s;
}

.loading-img>div:nth-child(7) {
    top: 49.9999750815%;
    left: 5.0000051215%;
    -webkit-animation-delay: -.125s;
    -moz-animation-delay: -.125s;
    -o-animation-delay: -.125s;
    animation-delay: -.125s;
}

.loading-img>div:nth-child(8) {
    top: 18.179464974%;
    left: 18.1803700518%;
    -webkit-animation-delay: 0s;
    -moz-animation-delay: 0s;
    -o-animation-delay: 0s;
    animation-delay: 0s;
}

@keyframes ball-spin-clockwise {
	0%,
	100% {
		opacity: 1;
		-webkit-transform: scale(1);
		-moz-transform: scale(1);
		-o-transform: scale(1);
		transform: scale(1)
	}
	20% {
		opacity: 1
	}
	80% {
		opacity: 0;
		-webkit-transform: scale(0);
		-moz-transform: scale(0);
		-o-transform: scale(0);
		transform: scale(0)
	}
}

.error-page-img {
	padding-left: 15px;
}

.unselect-text{
	-webkit-user-select:none;
	-moz-user-select:none;
	-ms-user-select:none;
	user-select:none;
}

.btn{
	height:36px;
	line-height: 36px;
	width:80px;
	color:#fff;
	border-radius:2px;
	cursor: pointer;
	text-align:center;
	-webkit-user-select:none;
	-moz-user-select:none;
	-ms-user-select:none;
	user-select:none;
}

.btnSubmit{
	background-color:#00b7ee;
}

.btnSubmit:active{
	background-color:#0487af;
}

.btnSave{
	background-color:#5bc0de;
}

.btnSave:active{
	background-color:deepskyblue;
}
.btnCancel{
	background-color:#d2b813;
}
.btnCancel:active{
	background-color:#9a8609;
}
.btnUnActive{
	background-color:#c1b9b9;
}

/* 自定义滚动条样式 -开始 */

::-webkit-scrollbar { /*滚动条整体样式*/
	/*高宽分别对应横竖滚动条的尺寸*/
	width: 8px; /* 竖向滚动条的粗细尺寸  */ 
	height: 8px; /* 横向滚动条的粗细尺寸 */
}

::-webkit-scrollbar-thumb { /*滚动条里面小方块*/
	background: #d5d9de;
}

::-webkit-scrollbar-track { /*滚动条里面轨道*/
	background: #fff;
}
.view-panel::-webkit-scrollbar-thumb{
	background: #bfbbbb;
}
.view-panel::-webkit-scrollbar-track{
	background: #ecf0f5;
}
/* 自定义滚动条样式 -结束 */

/* 翻页数据表格样式-开始 */
.data-grid{
	width:100%;
	min-width:500px;
	margin:0 auto;
}

.data-grid table{
	border-collapse:collapse;
	border-spacing:0px;
	width:100%;
	vertical-align:middle;
	text-align: center;
	margin:0 auto;
}

.data-grid tr{
	
}

.data-grid tr:hover{
	background-color:#f7f5f5;
}

.data-grid th{
	border:1px solid #ccc;
	background-color:#e6eaef;
	color:#4b535a;
	font-size: 15px;
}

.data-grid td{
	border:1px solid #ccc;
	font-size: 15px;
}

@media screen and (max-width: 1280px) {
	.data-grid th {
		font-size: 12px;
	}
	.data-grid td {
		font-size: 12px;
	}
}

.data-grid th, .data-grid td{
	height:36px;
	padding:0 5px 0 5px;
}

.operate_td span{
	padding:5px 8px;
	/* border:1px solid #ccc; */
	cursor: pointer;
	color:#fff;
	font-size:13px;
	background-color:#00b7ee;
	border-radius: 2px;
}

.td-btn{
	padding:3px 15px;
	cursor: pointer;
    color: #fff;
    font-weight: normal;
	background-color:#00b7ee;
	border-radius: 2px;
	margin-left:5px;
	font-size: 14px;
	white-space: nowrap;
}
.td-btn:active{
	background-color:#089ac5;
}
.td-btn-del{
	padding:3px 15px;
	font-size: 14px;
	cursor: pointer;
	color:#fff;
	border-radius: 2px;
	margin-left:5px;
	background-color:#fb3b3b;
	white-space: nowrap;
}
.td-btn-del:active{
	background-color:#e81717;
}
.td-btn-add{
	color:#00b7ee; 
	cursor: pointer;
	padding:3px 15px;
	user-select: none;
	white-space: nowrap;
}
.td-btn-disable{
	padding:3px 15px;
	font-size: 14px;
	cursor: pointer;
	color:#fff;
	font-size:13px;
	background-color:#00b7ee;
	border-radius: 2px;
	margin-left:5px;
	background-color:#c2c9cc;
	cursor: default;
	white-space: nowrap;
}
.sp-btn{
	color:#27a4f9;
	cursor: pointer;
	user-select:none;
}
.sp-btn:active{
	color:#1a7bbd;
}
.pop-btn{
	padding:5px 22px;
	cursor: pointer;
	color:#fff;
	font-size:15px;
	background-color:#00b7ee;
	border-radius: 2px;
	margin-left:10px;
}
.pop-btn:active{
	background-color:#089ac5;
}
.pop-btn-cancel{
	padding:5px 22px;
	cursor: pointer;
	color:#fff;
	font-size:15px;
	border-radius: 2px;
	margin-left:10px;
	background-color:#d2b813;
}
.pop-btn-cancel:active{
	background-color:#ad970a;
}
.gw-pagination{
	height:36px;
	line-height:36px;
	width:100%;
	float:right;
	margin:20px 0 0 0;
	text-align: right;
	vertical-align:middle;
	-webkit-user-select:none;
	-moz-user-select:none;
	-ms-user-select:none;
	user-select:none;
}

.gw-goto-input{
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 15px;
    text-align: center;
    display: inline-block;
    border: 1px solid #ccc;
    padding: 1px 2px 0px 2px;
    margin:0 5px;
}
.span-text{
	color:#908f8f;
}
.gw-page-btn{
	border:1px solid #ccc;
	padding:5px;
	margin-left:5px;
}
.gw-page-num-btn{
	border:1px solid #ccc;
	padding:5px 8px;
	margin-left:5px;
}
.gw-unactive-page-btn{
	cursor: default;
}
.gw-active-page-btn{
	cursor: pointer;
}
.gw-active-page-btn:hover{
	background-color:#e6eaef;
}
.gw-visited-btn{
	background-color:#e6eaef;
}

.cur-index{
	background-color:#e6eaef;
}
/*翻页数据表格样式-结束*/

/* 下拉框组件封装样式-开始 */
.drp-panel{
}
.input-div {
	width: 200px;
	height: 30px;
	line-height: 30px;
	border: 1px solid #ccc;
	background-color:#fff;
	overflow: hidden;
}

.input-div input {
	width:170px;
	height: 30px;
	line-height: 30px;
	border:0px !important;
	border-radius: 2px;
	outline: 0;
	padding: 0 4px !important;
	-web-kit-appearance: none;
	-moz-appearance: none;
	display: block !important;
	text-decoration: none;
	float:left;
	font-size: 15px;
}

.input-div i {
	background: url(../../project/img/icons.png) no-repeat;
    background-position:-163px -163px;
    background-color:#fff;
    display: inline-block;
    width: 20px;
    height: 20px;
    float:left;
    margin-top:5px;
}

.drp-div {
	background-color: #fff;
	width: 198px;
	margin-top: 2px;
	/* box-shadow: 0px 5px 8px 2px #e6dfdf; */
    border: 1px solid #ccc3c3;
    /* border-radius: 0px 0px 3px 3px; */
	position: absolute;
	top:32px;
	left:0px;
	z-index:100;
	display:none;
	overflow-y: auto;
	overflow-x: hidden;
}

.drp-div::-webkit-scrollbar { /*滚动条整体样式*/
	width: 7px; /* 竖向滚动条的粗细尺寸  */ 
	height: 7px; /* 横向滚动条的粗细尺寸 */
}
.drp-div::-webkit-scrollbar-track { /*滚动条里面轨道*/
	background: #fff;
}

.drp-div::-webkit-scrollbar-thumb { /*滚动条里面小方块*/
	-webkit-box-shadow: inset 0 0 5px #fff;
	background: #fff;
}

.drp-div:hover::-webkit-scrollbar-thumb { /*滚动条里面小方块*/
	-webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
	background: #e2dddd;
}

.drp-div ul{
	/* 去掉前面的点 */
	list-style: none;
	/* 去掉前后左右空格 */
	padding:0; 
	margin:0;
}

.drp-div li{
	height:30px;
	line-height:30px;
	padding-left:4px;
	cursor: pointer;
	text-align: left;
}

.drp-div li:hover{
	background-color:#45a9ec;
	color:#fff;	
}

/* 下拉框组件封装样式-结束 */

/* 复杂下拉框封装样式-开始 */

.gdrp-panel{
	width:200px;
}

.tb-drp-div {
	background-color: #fff;
	min-width: 200px;
	margin-top: 2px;
	box-shadow: 0px 5px 8px 2px #847878;
	border-radius: 0 0 3px 3px;
	position:absolute;
	top:32px;
	left:0px;
	z-index:100;
	display:none;
	overflow-y: auto;
	overflow-x: hidden;
}

.tb-head{
	position:absolute;
	top:0;
	left:0;
	height:36px;
	width:593px;
	overflow-y: hidden;
	overflow-x: hidden;
	border-bottom: 1px solid #ccc;
	background-color:#fff;
}

.tb-body{
	max-height:396px;
	width:600px;
	overflow-y: scroll;
	overflow-x: hidden;
}

.tb-body::-webkit-scrollbar { /*滚动条整体样式*/
	width: 7px; /* 竖向滚动条的粗细尺寸  */ 
	height: 7px; /* 横向滚动条的粗细尺寸 */
}
.tb-body::-webkit-scrollbar-track { /*滚动条里面轨道*/
	border-radius: 5px;
	background: #fff;
}

.tb-body::-webkit-scrollbar-thumb { /*滚动条里面小方块*/
	-webkit-box-shadow: inset 0 0 5px #fff;
	background: #fff;
}

.tb-body:hover::-webkit-scrollbar-thumb { /*滚动条里面小方块*/
	-webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
	border-radius: 5px;
	background: #e2dddd;
}

.drp-tb{
	border-collapse:collapse;
	border-spacing:0px;
}
.drp-tb tr{
	height:35px !important;	
}
.tb-body tr:hover{
	background-color:#45a9ec;
	cursor: pointer;
	color:#fff;
}
.drp-tb td{
	border:0px !important;
}
.tr-head td{
    color: #4b535a;
    font-weight: 600;
}

.bt-panel{
	border-top:1px solid #ccc;
	height:40px;
	line-height: 40px;
	margin-right:7px;
	text-align: center;
}
.bt-panel span{
	color:#06c4fd;
	cursor: pointer;	
	margin:0 10px;
}

/* 复杂下拉框封装样式-结束 */

/* 弹窗组件封装样式-开始 */
.lock-screen{
	top:0px;
	left:0px;
	position: fixed;
	width:100%;
	height:100%;
	z-index:1000;
	background-color:rgba(27,27,27,0.5);
	overflow-x: hidden;
    overflow-y: auto;
	display: none;
}
.pop-box{
	z-index: 1100;
	background-color:#fff;
	width:500px;
	min-height:142px;
	margin:30px auto;
	overflow-x: hidden;
    overflow-y: auto;
    opacity: 1;
    box-shadow: 0px 4px 18px 0px #333;
    border:0px solid #333;
    /* border-radius: 5px 5px 0 0; */
    border-radius: 3px;
}

.pop-title-panel{
	height:35px; 
	line-height:35px;
	border-bottom:1px solid #ccc;
	background-color:#c8e5f9;
}
.pop-title-span {
	margin-left:15px;
	color:#333;
	font-weight: 600;
}
.pop-title-panel i {
	width: 20px;
	height: 20px;
	background: url(../../project/img/icons.png) no-repeat;
	background-position: -957px -165px;
	display: inline-block;
	float: right;
	margin-top: 7px;
	margin-right: 10px;
}
.pop-title-panel i:hover{
	cursor: pointer;
}
.pop-tip{
	position:fixed;
 	top:0px;
	left:0px;
	z-index: 1108;
	background-color:#fff;
	width:350px;
	min-height:100px;
	overflow-x: hidden;
    overflow-y: auto;
    opacity: 1;
    box-shadow: 0px 4px 18px 0px #333;
    border:0px solid #333;
    border-radius: 5px;
    display:none;
}
.pop-tip-body{
	min-height:120px;
	position: relative;
	overflow: auto;
}
.tip-content-panel{
	min-height:60px;
	overflow:auto;
	margin-top:20px;
	margin-left:20px;
	margin-bottom:45px;
}
.tip-btn-panel{
	position:absolute;
	bottom:0px;
	width:100%;
	height:45px;
	line-height:45px;
	border-top:1px solid #ccc;
}
.tip-ok-btn{
	width:80px;
	height:30px;
	line-height: 30px;
	float:right;
	text-align:center;
	cursor:pointer;
	color:#fff;
	background-color:#00b7ee;
	margin-right:11px;
	margin-top:8px;
	border-radius: 2px;
}
.tip-ok-btn:active{
	background-color:#99c4e2;
}
.tip-icon{
	float:left;
}
.tip-txt{
	margin: 3px 20px 20px 20px;
	float:left;
	line-height: 25px;
	font-size: 15px;
	width:250px;
}
/* 弹窗组件封装样式-结束*/

/* 页面弹窗组件封装样式-开始*/
.pop-view{
	position: relative;
}

/* 页面弹窗组件封装样式-结束*/

/* 日期控件封装 - 开始  */

.date-box {
	width: 456px;
	min-height: 293px;
	line-height: 35px;
	background-color: #fff;
	border-radius: 0 0 5px 5px;
	font-size: 14px;
	overflow: hidden;
	position: absolute;
	top: 250px;
	left: 500px;
	z-index: 1004;
	box-shadow: 0px 3px 8px 0px #a09494;
	display: none;
}

.date-clear{
	position: absolute;
    right: 3px;
    cursor: pointer;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
}

.date-clear svg{
    height: 15px;
    width: 15px;
    stroke: #66696c;
    fill: #66696c;
    stroke-width: 1.25;
}
.date-clear svg:hover{
	background: #d5d6d8;
    border-radius: 50%;	
}

.top-year {
	height: 35px;
	text-align: center;
	border-bottom: 1px solid #ccc;
	color: #333;
	font-weight: 600;
	background-color: #c8e5f9;
}

.year-span-btn {
	cursor: pointer;
	margin: 0 5px;
	padding: 2px 5px;
}

.month-span-btn {
	cursor: pointer;
	margin: 0 10px;
	padding: 2px 5px;
}

.ym-span-btn {
	margin: 0 5px;
	padding: 2px 5px;
}

.year-span {
	cursor: pointer;
}

.month-span {
	cursor: pointer;
}

.date-left-box {
	margin-left: 4px;
	float: left;
}

.date-right-box {
	border-left: 1px solid #ccc;
	float: right;
	width: 165px;
	height: 248px;
}

.date-row-size {
	width: 280px;
	margin: 0 auto;
}

.date-row-size div {
	float: left;
	width: 35px;
	text-align: center;
}

.week-row {
	height: 35px;
	line-height: 35px;
	border-bottom: 1px solid #ccc;
}

.week-row div {
	height: 35px;
	line-height: 35px;
	margin-left:4px;
}

.date-row {
	height: 35px;
	line-height: 35px;
}

.date-row div {
	cursor: pointer;
	height: 35px;
	line-height: 35px;
	margin-left:4px;
}

.unselected-date:hover {
	background-color: #d9edf3;
	border-radius: 5px;
}

.date-row .selected-date2 {
    width: 65px;
    height: 50px;
    line-height: 50px;
 	background-color: #00b7ee;
	border-radius: 5px;
	color: #fff !important;
}

.date-row .unselected-date2 {
    width: 65px;
    height: 50px;
    line-height: 50px;
}

.date-row .unselected-date2:hover {
	background-color: #d9edf3;
	border-radius: 5px;
}

.selected-date {
 	background-color: #00b7ee;
	border-radius: 5px;
	color: #fff !important;
}

.not-month-date {
	color: #b1a3a3;
}

.date-btn {
	clear: both;
	border-top: 1px solid #ccc;
	height: 45px;
	line-height: 45px;
	cursor: pointer;
}

.date-btn-size {
	width: 131px;
	margin: 0 auto;
}

.date-btn-size span {
	margin-left: 5px;
	background-color: #00b7ee;
	color: #fff;
	padding: 6px 15px;
	border-radius: 3px;
}

.time-txt {
	height: 35px;
	line-height: 35px;
	border-bottom: 1px solid #ccc;
	text-align: center;
}

.time-body {
	
}

.h-m-s-time {
	width: 54px;
	float: left;
	height: 210px;
	overflow-x: hidden;
	overflow-y: scroll;
	float: left;
}
.h-m-s-time::-webkit-scrollbar { /*滚动条整体样式*/
	width: 5px; /* 竖向滚动条的粗细尺寸  */ 
	height: 5px; /* 横向滚动条的粗细尺寸 */
}
.h-m-s-time::-webkit-scrollbar-track { /*滚动条里面轨道*/
	border-radius: 5px;
	background: #fff;
}

.h-m-s-time::-webkit-scrollbar-thumb { /*滚动条里面小方块*/
	-webkit-box-shadow: inset 0 0 5px #fff;
	background: #fff;
}

.h-m-s-time:hover::-webkit-scrollbar-thumb { /*滚动条里面小方块*/
	-webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
	border-radius: 5px;
	background: #ccc;
}

.h-m-s-time ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.h-m-s-time li {
	height: 25px;
	line-height: 25px;
	text-align: center;
	cursor: pointer;
}

.date-inp {
	width: 260px;
	height: 30px;
	line-height: 30px;
	border: 1px solid #ccc;
	outline: 0;
	padding: 0px 4px 0px 4px;
	-web-kit-appearance: none;
	-moz-appearance: none;
	display: inline-block;
	text-decoration: none;
	font-size:15px;
}

/* 日期控件封装 - 结束  */

/* 上传附件控件封装 - 开始 */

.file-table{
	border-collapse:collapse;
	border-spacing:0px;
	width:100%;
	vertical-align:middle;
	text-align: center;
	margin:0 auto;
	border: 1px solid #ccc;
}
.file-table th{
	border: 1px solid #ccc;
	background-color:#e6eaef;
	color:#4b535a;
	font-size: 15px;
	line-height: 30px;
}

.file-table td{
	border: 1px solid #ccc;
	font-size: 15px;
	line-height: 30px;
}
.file-btn-span{
	border-radius:2px;
	color:#fff;
	padding:5px 8px;
	cursor: pointer;
}
.f-del-btn{
	background-color:#f91249;
	margin-right:5px;
}
.f-dl-btn{
	background-color:#06c4fd;
}
.add-file-td{
	/* background-color:#e6eaef; */
	color:#06c4fd;
	/* font-weight:700; */
	cursor: pointer;
}

.add-file-td:active{
	background-color:#d7d9dc;
}
.hidden-file-div {
    border: 0;
    width: 0;
    height: 0;
    overflow: hidden;
}

.fmore-row{
	margin: 10px 15px;
	height:30px;
	line-height:30px; 
}
.fmore-row-txt{
	float:left;
}
.fmore-row-inp{
	float:left;
}
.fmore-row-btn{
	border: 1px dashed #ccc;
    text-align: center;
    color: #0aa1f5;
    cursor: pointer;
}
.f_op-col{
	max-width: 231px;
	min-width:80px;
	overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
/* simple file */
.proTip{
	background-color:#fff;
	border-radius:2px;
	margin:300px auto;
	width:252px;
	height:50px;
	line-height: 50px;
	text-align: center;
	box-shadow: 0px 4px 18px 0px #333;
    border:0px solid #333;
    color:#0987f7;
}

/* 上传附件控件封装 - 结束 */

/* 自动提示框封装 - 开始 */
.auto-tip{
	height:20px;
	width:20px;
	position:relative;
}
.auto-tip-box{
	display:none;
	position:absolute;
	top:30px;
	left:-17px;
	z-index:20;
	height:100px;
	line-height:24px;
	width:350px;
}
.auto-tip-icon{
	margin:2px auto;
	float:left;
	height:14px;
	width:14px;
	border:2px solid #0aa1f5;
	border-radius: 10px;
	line-height: 14px;
	text-align: center;
}
.tip-icon-txt{
	color:#0aa1f5;
	font-size: 14px;
	font-weight: 800;
}
.tip-icon-l{
	height:10px;
	width:4px;
	background-color:#fff;
	border-radius: 5px;
	margin:2px auto;
}
.tip-icon-d{
	height:4px;
	width:4px;
	background-color:#fff;
	border-radius: 2px;
	margin:2px auto;
}
.tip-txt-box{
	position:relative;
	border:1px solid #d2b6b6;
	border-radius:5px;
	height:100px;
	line-height:24px;
	width:350px;
	background-color:#fff;
	box-shadow: 2px 5px 11px 0px #716d6d;
	text-align: left;
}
.tip-arrow{
	position:absolute;
	top:-6px;
	left:20px;
	z-index:10;
    border-top: 1px solid #d2b6b6;
    border-right: 1px solid #d2b6b6;
    width: 10px;
    height: 10px;
    background-color:#fff;
    transform: rotate(-45deg);
}

/* 自动提示框封装 - 结束 */

/* 表格选择弹窗封装样式 - 开始 */
.ser-panel{
	width:766px;
	margin:10px auto;
	height:50px;
	line-height:50px;
	background-color:#fff;
	border:1px solid #ccc;
	border-radius: 4px;
}
.ser-item {
    float: left;
    height: 50px;
    line-height: 50px;
}
.ser-item-txt {
    float: left;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.ser-item-input {
    float: left;
    margin-right: 10px;
}
.ser-item-input input {
    float: left;
    margin-top:9px;
    width: 155px;
    height: 30px;
    line-height: 30px;
    border: 1px solid #ccc;
    outline: 0;
    padding: 0 4px;
    -web-kit-appearance: none;
    -moz-appearance: none;
    text-decoration: none;
}

/* 表格选择弹窗封装样式 - 结束 */

/* IDT异常事件决策树组件样式 -开始 */
.idt-panel{
	width:980px;
	height:585px;
	line-height:20px;
	margin:10px auto;
	border: 1px solid #ccc;
	font-size:15px;
}
.idt-svg{
	width:100%;
	height:100%;
	background-color:#fff;
}
/* IDT异常事件决策树组件样式 -结束 */

/* 年龄控件封装 - 开始 */
.age-box{
	border:1px solid #ccc;
	width: 170px;
	height:30px;
	line-height:30px;
	background-color:#ecf0f5;
}
.age-inp{
	width:25px;
	height: 29px;
	line-height: 29px;
	border:0px;
	outline: 0;
	padding: 0 4px;
	-web-kit-appearance: none;
	-moz-appearance: none;
	display:inline-block; 
	text-decoration: none;
	font-size:15px;
	text-align: right;
}
.age-unit{
	float:left;
    border:1px solid #ccc;
    margin-top:-1px;
	background-color:#ecf0f5;
	width: 22px;
	text-align:center;
	line-height:30px;
	height:30px;
}
.age-x{
	float:left;
}
/* 年龄控件封装 - 结束*/

/* 带单位的输入框控件封装 - 开始*/

 .unit-inp-box{
	border:1px solid #ccc;
	width: 180px;
	height:30px;
	line-height:30px;
}
.unit-inp{
	width:122px;
	height: 28px;
	line-height: 28px;
	border:0px;
	outline: 0;
	padding: 0 4px;
	-web-kit-appearance: none;
	-moz-appearance: none;
	display:inline-block; 
	text-decoration: none;
	font-size:15px;
	text-align: right;
}
.unit-txt{
	float:right;
    border:1px solid #ccc;
    border-right:0px;
    margin-top:-1px;
	background-color:#ecf0f5;
	width: 36px;
	text-align:center;
	line-height:30px;
	height:30px;
}
.unit-x{
	float:right;
} 
/* 带单位的输入框控件封装 - 结束*/
/* 带查询图标的输入框控件封装 - 开始*/
.search-inp-box{
	border:1px solid #ccc;
	width: 180px;
	height:30px;
	line-height:30px;
}
.search-inp{
	width:122px;
	height: 28px;
	line-height: 28px;
	border:0px;
	outline: 0;
	padding: 0 4px;
	-web-kit-appearance: none;
	-moz-appearance: none;
	display:inline-block; 
	text-decoration: none;
	font-size:15px;
	text-align: left;
}
.g-search-btn{
	float: right;
    border: 1px solid #f15252;
    border-right: 0px;
    margin-top: -1px;
    margin-right: -1px;
    background-color: #f15252;
    width: 74px;
    text-align: center;
    line-height: 30px;
    color: #fff;
    height: 30px;
    cursor: pointer;
}
.g-search-btn:active{
	background-color: #dc4949;
}
.search-x{
	float:right;
} 
.search-btn-img{
	float: left;
    margin-left: 8px;
    margin-top: 4px;
	width:20px;
	height:20px;
}
.search-btn-txt{
	float: left;
    margin-left: 5px;
}
/* 带查询图标的输入框控件封装 - 结束*/
/* 树组件封装 - 开始*/
.g-tree{
	margin:10px 0px;
	line-height: 25px;
	width:200%;
}
.g-tree-part{
	margin-left:20px;
	min-height:25px;
	overflow: auto;
}
.g-tree-row{
	height:25px;
}
.g-tree-icon{
	float: left;
    border: 1px solid #ccc;
    width: 11px;
    height: 11px;
    line-height: 11px;
    margin-top: 4px;
    cursor: pointer;
    text-align: center;
}
.g-tree-node{
	float:left;
	height:25px;
	margin-left: 3px;
}
.g-tree-child-panel{
	min-height:25px;
	overflow:auto;
	border-left: 1px dashed #ccc;
	margin-left: 6px;
}
.g-tree-child-panel-ex{
	min-height:25px;
	overflow:auto;
	margin-left: 6px;
}
.g-tree-line{
	float: left;
    width: 11px;
    height: 11px;
    margin-top: 4px;
    margin-right: 2px;
}
.g-tree-line-up{
    width: 5px;
    height: 13px;
    line-height: 11px;
    margin-top: -6px;
    margin-left: 6px;
    cursor: pointer;
    text-align: center;
    border-left: 1px dashed #ccc;
    border-bottom: 1px dashed #ccc;
}
.g-tree-line-down{
    width: 5px;
    height: 13px;
    line-height: 11px;
    margin-top: -2px;
    margin-left: 6px;
    cursor: pointer;
    text-align: center;
    border-left: 1px dashed #ccc;
}
/* 树组件封装 - 结束 */
/* 提示组件封装 - 开始 */
.g-show-tip{
	border:1px solid #ccc;
    border-radius: 5px;
	min-height: 25px;
	line-height: 25px;
	text-align: left;
	position: absolute;
	z-index:200;
	background-color:#fff;
	padding:10px 10px;
	display: none;
    box-shadow: 0 6px 12px #0000002e;
}

.g-tip-body{
	position: relative;
}

.g-tip-arrow{
	position:absolute;
	z-index:10;
	background-color:#fff;
	transform: rotate(-45deg);
}
/* 提示组件封装 - 结束 */

/* 展开内容组件封装 - 开始 */
.g-expand-btn-wrap {
    width: 100%;
    background-image: -webkit-gradient(linear,left top, left bottom,from(rgba(255,255,255,0)),color-stop(70%, #fff));
    background-image: linear-gradient(-180deg,rgba(255,255,255,0) 0%,#fff 70%);
    padding-bottom: 26px;
    position: relative;
    z-index: 1998;
    padding-top: 160px;
    bottom: -1px;
    margin-top: -200px;
    text-align: center;
}

.g-expand-btn {
	cursor: pointer;
	user-select: none;
}
/* 展开内容组件封装 - 结束 */
/* 工具弹窗封装 - 开始 */

.tool-view #nav_main {
    display: inline-block;
    list-style-type: none;
    width: calc(100% - 64px);
    min-height: 435px;
    margin: 0px 32px;
	padding: 0px;
    padding-bottom: 20px;
}

.tool-view #nav_main li {
	float: left;
	vertical-align: top;
	display: inline-block;
    width: 134px;
    height: 70px;
    margin: 30px 8px;
	padding: 0px;
	text-align: center;
	border: 1px solid #ccc;
    border-radius: 5px;
}

.tool-view .nav-item-image {
    width: 134px;
    height: 70px;
	background-size: 100% 100%;
}

.tool-view .nav-item-text {
	width: 100%;
    height: 30px;
    line-height: 30px;
    font-size: 20px;
	text-align: center;
	color: unset;
	font-weight: unset;
    margin-top: 10px;
}

.tool-view #nav_main li:hover .nav-item-text{
	color: seagreen;
	font-weight: 800;
}
/* 工具弹窗封装 - 结束 */

.hidden {
	display: none;
}

.auto-save{
	position: fixed;
    right: 9px;
    bottom: 0;
    z-index: 10;
    user-select:none;
}
.auto-save1{
	width: 217px;
    height: 35px;
    background-color: #fff;
    border: 1px solid #ccc;
    overflow: hidden;
}
.auto-save2{
	width: 20px;
    height: 35px;
    background-color: #fff;
    border: 1px solid #ccc;
}
.auto-save-txt{
	float:left;
	height:35px;
	line-height: 35px;
	margin-left:5px;
}
.auto-save-btn{
	float:left;
	height:35px;
	line-height: 35px;
	margin-left:10px;
	cursor: pointer;
	color:red;
}
.auto-save-ricon{
	float:left;
	width:20px;
	height:20px;
}
.ricon-img{
	width: 16px; 
	height: 16px; 
	margin-top: 10px; 
	margin-left: 2px;
	cursor: pointer;
}
.licon-img{
	width: 16px; 
	height: 16px; 
	margin-top: 10px; 
	margin-left: 2px;
}
/* 树形展示组件 - 开始 */
.tree-search{
	height: 40px;
    line-height: 45px;
    background-color: #fff;
    margin: 0 auto;
    border-bottom: 1px solid #ccc;
}
.tree-search input {
	padding: 0 3px;
	border: 0;
	line-height: 20px;
	outline: none;
}
.tree-btn-panel {
	height: 50px;
	border-top: 1px solid #ccc;
	margin: 0 auto;
}
/* 树形展示组件 - 结束 */
.comm-img{
	width:100%;
	height:100%;
}
.comm-must{
	color:red;
}

/* imgx 组件相关样式 - 开始*/

.cp-imgx{
	width:20px;
	height:20px;
	display: flex;
    justify-content: center;
    align-items: center;
    user-select:none;
}

/* imgx 组件相关样式 - 结束*/

/* imgxText 组件相关样式 - 开始*/

.cp-imgtext{
	display: flex;
    align-items: center;
    flex-wrap: nowrap;
}
.cp-imgtext-img{
	margin-right:5px;
	display: flex;
    flex-wrap: nowrap;
    align-items: center;
}
.cp-imgtext-txt{
	overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* imgxText 组件相关样式 - 结束*/

/* catalog 组件相关样式 - 开始*/
.cp-catalog{
	position: fixed;
    left: 208px;
    top: 118px;
    z-index: 1;
    min-width: 150px;
    height: calc(100% - 118px);
    border: 1px solid #ccc;
    line-height: 35px;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
}
.cp-catalog-head{
    border-bottom: 1px solid #ccc;
    width: 100%;
    margin-bottom: 5px;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
}

.cp-catalog-close{
	font-size: 18px;
    cursor: pointer;
    width: 23px;
    height: 20px;
    border: 1px solid #cccccc00;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 2px;
    margin-right: 10px;
    border-radius: 20px;
    user-select:none;
}
.cp-catalog-close:hover{
	background-color: #d7e6eb;
	border:1px solid #ccc;
}
.cp-catalog-close:active{
	background-color: #c7d5e7;
	border:1px solid #ccc;
}
.cp-catalog-title{
	margin-left:10px;
	font-weight: 700;
}
.cp-catalog-navi{
	width: calc(100% - 20px);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    border:1px solid #ffffff00;
   	border-radius: 20px;
    padding: 0 10px;
    cursor: pointer;
}
.cp-catalog-navi:hover{
	background-color: #d7e6eb;
	border:1px solid #ccc;
}
.cp-catalog-navi:active{
	background-color: #c7d5e7;
	border:1px solid #ccc;
}
.cp-catalog-href{
	text-decoration: none;
    color: #000;
}
/* catalog 组件相关样式 - 结束*/

/* operateNavi 组件相关样式 - 开始*/
.cp-operatenavi{
	position: fixed;
    right: 10px;
    top: 118px;
    z-index: 1;
    min-width: 150px;
    height: calc(100% - 118px);
    border: 1px solid #ccc;
    line-height: 35px;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
}
.cp-opnavi-head{
	border-bottom: 1px solid #ccc;
    width: 100%;
    margin-bottom: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cp-opnavi-title{
	margin-left:15px;
	font-weight: 700;
}
.cp-opnavi-close{
	font-size: 18px;
    cursor: pointer;
    width: 23px;
    height: 20px;
    border: 1px solid #cccccc00;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 2px;
    margin-right: 10px;
    border-radius: 20px;
    user-select:none;
}
.cp-opnavi-close:hover{
	background-color: #d7e6eb;
	border:1px solid #ccc;
}
.cp-opnavi-close:active{
	background-color: #c7d5e7;
	border:1px solid #ccc;
}
.cp-opnavi{
	width: calc(100% - 30px);
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
}
.cp-opnavi-btn{
	cursor: pointer;
    user-select: none;
    width: 100%;
    border:1px solid #ffffff00;
    border-radius: 30px;
    padding: 0 10px;
}
.cp-opnavi-btn:hover{
	background-color: #d7e6eb;
	border:1px solid #ccc;
}
.cp-opnavi-btn:active{
	background-color: #c7d5e7;
	border:1px solid #ccc;
}
/* operateNavi 组件相关样式 - 结束*/