.FLoatWindowContainer {
	position: fixed;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background-color: rgba(0, 0, 0, 0.6);
	z-index: 1000;
}

.FloatWindow {
	position: relative;
	width: calc(100% - 80px);
	height: 80%;
	top: 10%;
	left: 40px;
	background-color: transparent;
}

.FloatWindowNavigationBar {
	position: relative;
	background-color: #0D6FB8;
	height: 40px;
	text-align: center;
	line-height: 40px;
	border-top-right-radius:4px;
	border-top-left-radius:4px;
}

.FloatWindowNavigationTitle {
	position: relative;
	color: white;
	font-size: 14px;
	height: 14px;
}

.FloatWindowNavigationCancleImg {
	position: absolute;
	right: 0px;
	width: 40px;
	height: 40px;
}

.FloatWindowContentContainer {
	position: relative;
	background-color: white;
	height: calc(100% - 40px);
	overflow-y: scroll;
	overflow-x: hidden;
	border-bottom-right-radius: 4px;
    border-bottom-left-radius: 4px;
}

.FloatWindowContent {
	position: relative;
}

.FloatWindowMainGroupContainer {
	position: relative;
}

.FloatWindowMainGroup {
	position: relative;
	margin: 0 10px;
}

.FloatWindowMainGroupTitle {
	position: relative;
	display: inline-block;
	vertical-align: top;
	width: 10%;
}

.FloatWindowMainGroupTitle div {
	padding-top: 20px;
	color: #999;
	font-size: 14px;
}

.FloatWindowMainGroupList {
	position: relative;
	display: inline-block;
	width: 90%;
}

.FloatWindowMainGroupItem {
	position: relative;
	display: inline-block;
	margin: 20px 10px 0 10px;
	margin-top: 20px;
	border-bottom: #666 1px solid;
	color: #666;
	font-size: 14px;
	cursor: pointer;
}

.FloatWindowMainGroupItem:hover {
	border-bottom: #45C0FF 1px solid;
	color: #45C0FF;
}

.FloatWindowMainGroupItemSelected {
	position: relative;
	display: inline-block;
	margin: 20px 10px 0 10px;
	margin-top: 20px;
	/*border-bottom: #666 1px solid;*/
	color: #0D6FB8;
	font-size: 14px;
	cursor: pointer;
}

.FloatWindowSubGroupContainer {
	position: relative;
	margin-top: 20px;
}

.FloatWindowSubGroup {
	position: relative;
	margin: 0 10px;
	border-top: #999 1px solid;
	text-align: center;
}

.FloatWindowSubGroupTitle {
	position: relative;
	text-align: left;
}

.FloatWindowSubGroupTitle div {
	position: relative;
	line-height: 40px;
	color: #999;
	font-size: 14px;
}

.FloatWindowSubGroupList {
	position: relative;
	display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.FloatWindowSubGroupItem {
	position: relative;
	display: inline-block;
	width: 159px;
	height: 159px;
	border: #D8D8D8 1px solid;
	margin-right: 10px;
	margin-bottom: 10px;
	cursor: pointer;
}


.FloatWindowSubGroupItem:hover {
	border: #00C7FF 1px solid;
}

.FloatWindowSubGroupItemSelected {
	border: #00C7FF 1px solid;
	cursor: default;
}

.FloatWindowSubGroupItem img {
	width: 159px;
	height: 159px;
}

.FloatWindowSubGroupItemRemindImg {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}

.FloatWindowSubGroupItemRemind {
	position: absolute;
	right: 5px;
	bottom: 5px;
	font-size: 12px;
	color: #333;
}

.FloatWindowSubGroupItemBubble {
	position: absolute;
	bottom: 160px;
	width: 100%;
	text-align: center;
	font-size: 12px;
	color: #333;
	padding: 20px 0 30px 0;
	background: url(https://cdns.007vin.com/img/icon_tishikuang.png) no-repeat;
	background-size: 100% 100%;
	z-index: 2;
}

.FloatWindowSubGroupItemBubble div {
	padding: 0 10px;
	/*text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;*/
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
	white-space: normal;
}