@charset "utf-8";
/*返回顶部按钮的样式*/
/*默认样式，主要是position:fixed实现屏幕绝对定位*/
#gotoTop{display:none;position:fixed;top:90%;right: 40px;cursor:pointer;margin-top:-50px;padding:9px 4px;width:42px;text-align:center;background:none;z-index: 1001;height: 42px;background:rgba(180, 180, 180, 0.4);text-decoration:none;z-index: 1001;border-radius: 50%;}
/*@media (min-width:1201px) and (max-width:1258px){*/
	/*#gotoTop{left:48%;}*/
/*}*/
/*@media (min-width:@screen-md-min) and (max-width:@screen-md-max){*/
	/*#gotoTop{left:36%;}*/
/*}*/
/*@media (min-width:@screen-sm-min) and (max-width:@screen-sm-max){*/
	/*#gotoTop{left:30%;}*/
/*}*/
/*@media (min-width:@screen-xs-min) and (max-width:@screen-xs-max){*/
	/*#gotoTop{left:20%;}*/
/*}*/
/*用CSS表达式(expression)来实现ie6下position:fixed效果*/
// #gotoTop{_position:absolute;_top:expression(documentElement.scrollTop + documentElement.clientHeight * 3/4 + "px")}
/*鼠标进入的反馈效果*/
#gotoTop.hover{background:rgba(180, 180, 180, 0.4);text-decoration:none;z-index: 1001;border-radius: 50%;}