﻿/*首页样式（音乐馆样式）*/
a{text-align:center; text-decoration:none; outline:none;}
input{outline:none;}
em{font-style:normal;}

/*滚动条*/
::-webkit-scrollbar{width:6px; height:6px;}
::-webkit-scrollbar-track-piece{background-color:transparent;}
body::-webkit-scrollbar-track-piece{background-color:#ccc;}
::-webkit-scrollbar-track-piece:no-button{}
::-webkit-scrollbar-thumb{background-color:#29944d;border-radius: 2px;}
::-webkit-scrollbar-thumb:hover{background-color:#0eaf52;}
::-webkit-scrollbar-thumb:active{background-color:#0eaf52;}
/*/滚动条*/




/*轮播图 开始*/
.main_banner{width:100%; height:350px; padding-top:30px;}
.main_banner_wrap{
	width:1000px; height:350px; position:relative;
	margin:0 auto; overflow:hidden;
}
#myCanvas {
	position: absolute;
	z-index: 13;
	opacity: 0.8;
	cursor: pointer;
	-webkit-animation: roll 3s;
	animation: roll 3s;
	display:none;
}
@-webkit-keyframes roll {
	from{-webkit-transform:rotate(120deg);opacity:0;}
	to{-webkit-transform:rotate(0deg);opacity:0.8;}		
}
@keyframes roll {
	from{transform:rotate(120deg);opacity:0;}
	to{transform:rotate(0deg);opacity:0.8;}		
}
.banner_btn{ 	/*a 标签 按钮*/
		width:255px; height:240px; position:absolute; 
		display:block; z-index:9; top:20px;
}
.btn_next{right:20px;}
.banner_btn span{width:50px; height:100px; display:block; position:absolute;
		left:110px; top:70px; opacity:0; transition:0.5s;
		background:url(../images/bannerBtn.png) no-repeat 0 0;}
.btn_next span{background-position:-50px 0;}
.main_banner_box:hover .banner_btn_arrow{opacity:0.6;}
.banner_btn span i{width:50px; height:100px; display:block;
		background:url(../images/bannerBtn.png) no-repeat 0 0;}
.btn_next span i{background-position:-50px 0;}
.banner_btn:hover i{
		-webkit-animation:arrow 0.5s infinite alternate ease-in-out;
		-moz-animation:arrow 0.5s infinite alternate ease-in-out;
}
@-webkit-keyframes arrow{
	from{-webkit-transform:scale(1); opacity:1;}
	to{-webkit-transform:scale(1.5); opacity:0.2;}
}
@-moz-keyframes arrow{
	from{-moz-transform:scale(1); opacity:1;}
	to{-moz-transform:scale(1.5); opacity:0.2;}
}

.main_banner_box{
	width:1000px; height:350px; margin:auto; position:relative; z-index:0;
	/*-webkit-倒影样式*/
	-webkit-box-reflect:below 0 -webkit-linear-gradient(top,rgba(255,255,255,0) 0%,rgba(255,255,255,.2) 100%);
}
/*火狐倒影图层样式*/
.main_banner_box p#rflt{width:1200px; height:280px; position:absolute; left:0; top:280px;
		background:-moz-element(#m_box) no-repeat; -moz-transform:scaleY(-1); opacity:0.2;
}/*火狐倒影图层样式*/
.main_banner li{
		position:absolute; background:#fff; overflow:hidden;
		box-shadow:0 4px 8px rgba(0, 0, 0, 0.15);		
}
/*给每张图片初始设置不同宽高，层级，位置width:670px; height:280px;*/
.main_banner li#imgCard0{
		width:474px; height:314px; z-index:5;
		left:260px; top:0px; opacity:1; background:#fff;
}
.main_banner li#imgCard0 a span{opacity: 0;}
.main_banner li#imgCard1{
		width:362px; height:240px; z-index:1; 
		left:680px; top:40px; opacity:1; background:#fff;
}
.main_banner li#imgCard1 a span{opacity: 0.4;}
.main_banner li#imgCard2{/*初始在背后，透明度为0*/
		width:272px; height:180px; z-index:1;
		left:0px; top:60px; opacity:0; background:#fff;
}
.main_banner li#imgCard2 a span{opacity: 0.4;}
.main_banner li#imgCard3{/*初始在背后，透明度为0*/
		width:272px; height:180px; z-index:1;
		left:0px; top:60px; opacity:0; background:#fff;
}
.main_banner li#imgCard3 a span{opacity: 0.4;}
.main_banner li#imgCard4{
		width:362px; height:240px; z-index:2; 
		left:0px; top:40px; opacity:1; background:#fff;
}
.main_banner li#imgCard4 a span{opacity: 0.4;}
.main_banner li img{width:474px; height:314px;}
.main_banner li span{/*遮罩层*/
		width:100%; height:100%; position:absolute; top:0; left:0; 
		z-index:1; background:#000; opacity:0; filter:alpha(opacity=0);
		color:#fff; font-size:30px; line-height:120px; text-align:center;
}
.main_banner li p{width:250px; height:50px; overflow:hidden; position:absolute;
		left:110px; bottom:-50px; background-color:#f49e0e; text-align:center; color:#fff;
		 line-height:50px; font-size:16px;
}

/*指示器按钮*/
.btn_list{text-align:center; position:relative; left:0; top:6px; z-index:10;}
.btn_list span{
		width:15px; height:15px; display:inline-block; margin:15px 5px;
		background:#787d82; border-radius:50%; cursor:pointer;
}
.btn_list span.curr{background:#FFAE00;}

/*轮播图 结束*/



