html,body {
  height: 100%;
}
#workbench{
	height: 100%;
}
#workbench .foot{
  width: 100%;
	height: 45px;
	position: fixed;
	bottom: 0;
	left: 0;
}
#workbench .listBox{
	width: auto;
	padding: 30px 30px 0;
	display: flex;
	justify-content: space-between;
}
#workbench .workbenchBg{
	flex: 1;
	background-color: #fff;
	position: relative;
	top: 0;
	left: 0;
}
.workbenchBox{
	width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  overflow-y: auto;
}
#workbench .listTitle{
	text-align: center;
	font-size: 24px;
	color: #333;
	line-height: 48px;
	padding: 20px 0;
}
#workbench .listTitle span{
	color: #1f89e1;
	margin: 0 5px;
}
#workbench .listBox .listItem{
	min-width: 220px;
	flex: 1;
	margin: 0 15px;
	height: 146px;
	background: #FFFFFF;
	text-align: center;
	box-shadow: 0px 4px 14px 0px rgba(23, 77, 169, 0.18);
	border-radius: 4px;
	font-size: 20px;
	color: #333;
}
#workbench .listBox .listItem a{
	color: #333;
	text-decoration: none;
}
#workbench .listBox .listItem a:hover{
	color: #1f89e1;
}
#workbench .listBox .listItem:hover{
	box-shadow: 0 0 1px 1px #1f89e1;
}
#workbench .listBox .listItem .listAdd{
	width: 100%;
	height: 40px;
	line-height: 40px;
	background-color: #fff;
}
#workbench .listBox .listItem .listAdd:hover{
	color: #1f89e1;
}
#workbench .listBox .listItem img{
	width: 75px;
	height: 75px;
	margin: 24px 0 0;
}
#workbench .caseList{
	width: 100%;
	padding: 30px;
}
.liveMeetingBg{
	width: auto;
	padding: 0 20px;
	max-height: 300px;
	min-height: 200px;
	overflow-y: auto;
}
.liveMeetingBg .liveMeetingList{
	width: auto;
	padding: 10px 20px;
	border: 1px solid #e5e5e5;
	margin-bottom: 15px;
	border-radius: 5px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.liveMeetingBg .liveMeetingList .itemLeft .itemBox{
	margin: 10px 0;
	display: flex;
	justify-content: flex-start;
}
.liveMeetingBg .liveMeetingList .itemLeft .itemBox div{
	margin-right: 25px;
}
.liveMeetingBg .liveMeetingList .itemLeft .itemBox .itemStatus{
	width: 70px;
	line-height: 22px;
	border-radius: 2px;
	background-color: #409EFF;
	color: #fff;
	font-size: 12px;
	text-align: center;
}
