@CHARSET "UTF-8";
.collectContact{
	position: fixed;
	bottom: 0;
	right: 0;
	width: 300px;
	height: 400px;
	background-color: #fff;
	font-size: 16px;
	box-shadow:0 0 10px rgba(0,0,0,0.4);
	z-index: 9999999;
	transition:all ease-in-out 0.3s;
}
.collectContact.off{
	bottom: -360px;
}
.collectContact .title{
	height: 40px;
	line-height: 40px;
	background-color: #fb9526;
	color: #fff;
	text-align: center;
	font-weight: 900;
	position: relative;
}
.collectContact .title .expandBtn{
	background:url(../images/xuanchuan/expand-on.png) no-repeat;
	background-size:16px 16px;
	width: 16px;
	height: 16px;
	display: inline-block;
	cursor: pointer;
	position: absolute;
	top: 12px;
	right: 18px;
}
.collectContact .title .expandBtn.off{
	background:url(../images/xuanchuan/expand-off.png) no-repeat;
	background-size:16px 16px;
}
.collectContact .content{
	padding: 10px 15px 15px 15px;
	text-align: left;
}
.collectContact .content .hint{
	line-height: 1.6;
}
.collectContact .content form>div{
	position: relative;
}
.collectContact .content form>div .star{
	position: absolute;
	top: 14px;
	right: 8px;
	color: red;
	font-size: 24px;
}
.collectContact .content input[type=text]{
	border:1px solid #ccc;
	border-radius:4px;
	width: 248px;
	height: 36px;
	font-size: 16px;
	padding: 0 10px;
	margin: 5px 0;
}
.collectContact .content textarea{
	width: 248px;
	height: 60px;
	padding: 10px;
	margin: 5px 0;
	font-size: 16px;
	border:1px solid #ccc;
	border-radius:4px;
	resize: none;
}
.collectContact .content input[type=submit]{
	border:1px solid #ddd;
	border-radius:4px;
	background-color: #ddd;
	color: #444;
	display: block;
	width: 268px;
	height: 34px;
	margin-top: 5px;
	font-size: 16px;
	outline: none;
	cursor: pointer;
}
.collectContact .content input[type=submit]:hover{
	background-color: #ccc;
}
