@charset "utf-8";

/* 去除已经加上的 CSS 样式：必须放在其它 CSS 后面 */

.noBorderBottom {
    border-bottom: none;
}
.noUnderline {
    text-decoration: none;
}

.divHide {
    display: none;
}

.brNone {
    border-right: none;
}
.bbNone {
    border-bottom: none;
}

.mrNone{
    margin-right: 0px;
}

/* transform: translateY(-50px);
filter: drop-shadow(#66ccff 0 50px);
颜色 x轴偏移量 y轴 */


/* 设置透明，变淡 */
.alpha30{
	filter: alpha(Opacity=30);
	-moz-opacity: 0.3;
	opacity: 0.3;
}
.alpha60{
	filter: alpha(Opacity=60);
	-moz-opacity: 0.6;
	opacity: 0.6;
}
.alpha80{
	filter: alpha(Opacity=80);
	-moz-opacity: 0.8;
	opacity: 0.8;
}

/* 默认显示 浅色，鼠标指向显示 深色、链接指针 */
.arrowImg {
	filter: alpha(Opacity=60);
	-moz-opacity: 0.6;
	opacity: 0.6;
}
.arrowImg:hover {
	filter: alpha(Opacity=100);
	-moz-opacity: 1.0;
	opacity: 1.0;
    
	cursor: pointer;
    background-color:#E4E4E4;
}
