body{
	background: #fff;
}
/* 弹框 */
.cgToastDiv{
	position: fixed;
}
#cgToastContext{
	width: 50vw;
	height: 192px;
	left: 50%;
	margin-left: -25vw;
	border-radius: 3px;
}

.cgToastDiv .rowOne{
	padding: 0 20px;
	width: calc(100% - 40px);
	display: flex;
	height: 40px;
}	
.cgToastDiv .rowOne .left{
	display: flex;
	align-items: center;
	font-size: 14px;
	padding-left: 10px;
	background: #fbfbfb;
	flex: 1;
	border-left: 1px solid #d9d9d9;
	border-top: 1px solid #d9d9d9;
	border-bottom: 1px solid #d9d9d9;
}
.cgToastDiv .rowOne .right{
	flex: 4;
	border: 1px solid #d9d9d9;
	background: #fff;
}
.cgToastDiv .rowOne .right input{
	width: calc(100% - 20px);
	height: 30px;
	border: 0;
	margin-top: 4px;
	margin-left: 10px;
}
.cgToastDiv .head{
	display: flex;
	height: 55px;
	border-bottom: 1px solid #d9d9d9;
	align-items: center; 
	color: #666;
	margin-bottom: 20px;
}
.cgToastDiv .head .left{
	flex: 1;
	padding-left: 20px;
	font-size: 15px;
}
.cgToastDiv .head .right{
	flex: 1;
	padding-right: 20px;
	display: flex;
	justify-content: flex-end;
}
.cgToastDiv .foot{
	display: flex;
	padding-right: 10px;
	box-sizing: border-box;
	justify-content: flex-end; 
	align-items: center; 
	position: absolute;
	border-top: 1px solid #d9d9d9;
	bottom:0;
	width: 100%;
	height: 55px;
}
.cgToastDiv .foot .btn{
	background: #1890ff;
	border: 1px solid #eee;
	border-radius: 5px;
	font-size: 14px;
	text-align: center;
	color: #fff;
	padding:7px 20px;
	cursor: pointer;
}
/* 弹框end */


/* 内容区 */
.content .contentTitle{
	display: flex;
	background: #f6f6f6;
}
.content .contentTitle .div{
	height: 55px;
	display: flex;
	align-items: center;
	margin:0 10px 0 10px;
}
.content .contentTitle .div .divSpan{
	display: inline-block;
	padding: 0 10px;
	height: 30px;
	line-height: 30px;
}

.content .contentTitle .div input{
	height: 30px;
	border: 1px solid #eee;
	padding-left: 10px;
}
.content .contentTitle .search{
	background: #1890ff;
	border: 0px;
	border-radius: 3px;
	font-size: 14px;
	text-align: center;
	color: #fff;
	padding: 5px 20px;
	height: 20px;
	margin-top: 13px;
	cursor: pointer;
}

.content .layui-table{
	margin: 0 0 10px 0;
}
.content .dataList{
	background: red;
}
.content .paging{
	width: 100%;
	display: flex;
    justify-content: center;
}
.content .paging span{
	display: flex;
	align-items: center; 
	justify-content: center;  
}
.content .paging i{
	top:-2px;
}
.content .paging .pageUp{
	top: -2px;
}
/* 内容区end */



/* 图片放大 */
.imgBig{
	position: fixed;
	top: 100px;
	left:50%;
	transition: all ease 0.5s; 
	z-index: 150;
	width: 1280px;
	margin-left: -640px;
	height: 720px;
	cursor: pointer;
}
.imgBigOff{
	transform: scale(0);
	-webkit-transform: scale(0);
	-moz-transform: scale(0);
	-o-transform: scale(0);
	-ms-transform: scale(0);
}
.imgBigOn{
	transition: all ease 0.5s; 
	transform: scale(1);
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-o-transform: scale(1);
	-ms-transform: scale(1);
}
.footDownload{
	position: fixed;
	bottom: 10px;
	z-index: 150;
	left:50%;
	width: 40px;
	height: 40px;
	line-height: 40px;
	margin-left: -40px;
	text-align: center;
	border: 2px solid #fff;
	border-radius: 50%;
	cursor: pointer;
}
.footDownload i{
	color: #fff;
	font-size: 24px;
}
	
.imgBg{
	position: fixed;
	top:0;
	width: 100vw;
	height: 100vh;
	background: rgba(0,0,0,0.4);
	z-index: 149;
}

.imgText{
    font-size: 36px;
    position: absolute;
    top: 0;
    display:flex;
    align-items:center;
    justify-content:center;
    height: 45px;
    color: #fff;
    width: 100%;
    z-index:150;
    text-align:center;
}

/* 图片放大end */