@charset "utf-8";

/* 矿分类 */
.mineral_row{
	padding: 10px 0 10px 10px;
	width: 90%;
	float: left;
	height: 30px;
}

.mineral_row span{
	width: 100px;
	display: inline-block;
	cursor:pointer;
	text-align: center;
}

.mineral_row span:hover{
	color: white;
	background: linear-gradient(to right, #0060cc 0%, #0094fd 100%);
}

.mineral_row .active {
	color: white;
	background: linear-gradient(to right, #0060cc 0%, #0094fd 100%);
}

/* 折叠 */
.panel_expand {
	float: right;
	margin-right: 20px;
	position: relative;
	width: 50px;
	height: 22px;
	visibility: visible;
	color: #333;
}

.panel_expand:hover {
	text-decoration: none;
	color: #175295;
}

.panel_expand i {
	background: url("../images/search.ele.png") no-repeat 9999px 9999px;
	-webkit-transition: background-position .15s ease-in-out;
	transition: background-position .15s ease-in-out;
}

.panel_expand i {
	position: absolute;
	top: 10px;
	right: 0;
	display: block;
	width: 20px;
	height: 20px;
	border: 1px solid #DDD;
	background-position: 4px 7px;
}

.panel_expand.opened i {
	background-position: 4px -27px;
}