.bookingCardWindow{
	width:100%;
	height:100%;
	background:rgba(82,81,83,0.6);
	position: fixed;
	top:0;
	left:0;
	z-index: 5;
    font-family: "Microsoft YaHei";
	display: none;
}
.bookingCard{
	position: fixed;
	top:50%;
	left:50%;
	z-index:6;
	transform:translate(-50%,-50%);
	width:750px;
	/* padding-bottom:20px; */
	/* height:500px; */
	background: #fff;
	border-radius:6px;
	overflow:hidden;
	display: none;
}

.bookingCard .bodyContent{
    width:100%;
    height:100%;
    padding:32px;
    position: relative;
}

/* 关闭按钮 */
.shutOn{
	display: inline-block;
	width:30px;
	height:30px;
	line-height: 30px;
	text-align:center;
	font-size:22px;
	font-weight: bold;
	color:#000;
	cursor:pointer;
	position: absolute;
	top:4px;
	right:4px;
}


/* 许可证 - 表 */
.licenceTable{
    width:100%;
    height:100%;
    max-height:465px;
    overflow: auto;
}
.licenceTable table{
    width:100%;
    font-size:14px;
    color:#444;
}
.licenceTable table tr{
    height:40px;
}
.licenceTable table td{
    border:1px solid #ddd;
    text-align: center;
}
.licenceTable .licenceTitle{
    color:#b79688;
    background:#f8f8f8;
}
.licenceTable .licenceTitle td:nth-child(1){
    width:300px;
}
.licenceTable .licenceTitle td:nth-child(2){
    width:130px;
}
.licenceTable .licenceTitle td:nth-child(3){
    width:238px;
}


