/* 计算器浮动窗口样式 */
.calcContainer {
	position: fixed;
	right: 100px;
	top: 400px;
	border-radius: 10px;
	z-index: 1000;
	width: 700px;
	height: 410px;
	background-color: beige;
	overflow: hidden;
	display: none;
}

.title_bar {
	cursor: move;
	background-color: #0384fc;
	color: white;
	text-align: center;
	padding: 10px 0px;
}

.title_bar .close {
	float: right;
	color: white;
	margin-right: 20px;
	opacity: 1;
	cursor: pointer;
}

.icon_calc {
	display: inline-block;
	background-image: url(/public/tiku/images/icons_v9.png);
	width: 30px;
	height: 30px;
	background-position: -44px -211px;
	margin-top: 20px;
}
