/*给整个轮播模块定位*/
.pub_bannerfade {}

	/*用于显示的框,宽度是浏览器宽度*/
	.bannerfade_show {
		/*width: 0;	*/ /*代表一下,使用js获取*/
		/*height: auto;*/
		margin: 0 auto;
		overflow: hidden;
		position: relative;
	}
		/*所有的li加起来的宽度就是这个的宽度*/
		.bannerfade_ul {
			width: 1920px;
			height: 450px;
			overflow: hidden;
			position: relative;
		}
			.bannerfade_ul li {
				/*根据不同的设置为不同的宽度,引用时注意更改*/
				width: 100%;
				height: 100%;
				position: absolute;
				top: 0;
				left: 0;
			}
				.bannerfade_ul li img {
					/*图片宽度和高度,必设*/
					width: 100%;
					height: 100%;
				}

		.bannerfade_select {
			/*width: 0;*/
			height: 25px;
			position: absolute;
			right: 10px;
			bottom: 10px;
			overflow: hidden;
			display: none;
		}
			.bannerfade_select li {
				width: 22px;
				height: 22px;
				border: 1px solid #fff;
				margin: 0 5px;
				float: left;
				background-color: red;
				text-align: center;
			}
			.bannerfade_select span {
				font-size: 16px;
				color: #fff;
				line-height: 22px;
			}
			.bannerfade_select li:hover {
				background-color: #000;
			}

		.bannerfade_UporDown {
			width: 100%;
			height: 104px;
			position: absolute;
			top: 45%;
			left: 0;
			overflow: hidden;
		}

			.banfade_Up {
				width: 49px;
				height: 104px;
				float: left;
				overflow: hidden;

				margin-left: 50px;

				/*IE滤镜，透明度50%*/
				filter:alpha(opacity=50); 
				/*Firefox私有，透明度50%*/
				-moz-opacity:0.5; 
				/*其他，透明度50%*/
				opacity:0.5;
			}
				.banfade_Up:hover {
					/*IE滤镜，透明度50%*/
					filter:alpha(opacity=100); 
					/*Firefox私有，透明度50%*/
					-moz-opacity:1.0; 
					/*其他，透明度50%*/
					opacity:1.0;
				}
				.banfade_Up img {
					width: 98px;
					height: 104px;
					margin-left: 0px;
				}
			.banfade_Down {
				width: 49px;
				height: 104px;
				float: right;
				overflow: hidden;

				margin-right: 50px;

				/*IE滤镜，透明度50%*/
				filter:alpha(opacity=50); 
				/*Firefox私有，透明度50%*/
				-moz-opacity:0.5; 
				/*其他，透明度50%*/
				opacity:0.5;
			}
				.banfade_Down:hover {
					/*IE滤镜，透明度50%*/
					filter:alpha(opacity=100); 
					/*Firefox私有，透明度50%*/
					-moz-opacity:1.0; 
					/*其他，透明度50%*/
					opacity:1.0;
				}
				.banfade_Down img {
					width: 98px;
					height: 104px;
					margin-left: -48px;
				}



