@charset "utf-8";
/* CSS Document */
* {
	margin: 0;
	padding: 0;
	margin: 0px 0px 0px 0px;
}
body {
	overflow-x: hidden;
	background-color: #000000;
}
.bigcontainer {
	width: 100%;
	background: #000;
	top:-110;
}
.test {
	border: 1px solid red;
}
.fl {
	float: left;
}
.cl {
	clear: both;
}
.bl {
	display: block;
}
.ab {
	position: absolute;
	left: 431px;
	top: 0px;
}
.rl {
	position: relative;
}
.topcontainer {
	width:1920px;height:1080px;left: 50%;margin-left: -960px;
	overflow: hidden;
	position: relative;
	background: url(../images/bj_01.html) no-repeat center;
	background-position: -0px -0px;
}

.animatetop{	
	width:1920px;height:1080px;left:50%;margin-left:-960px;

}


.topcontainer .topnavs{
	width:616px;height:30px;left:50%;margin-left:-41px;top:23px;
}

.topcontainer .topnavs .nav{
	width:112px;height:30px;
}

.topcontainer .topnavs .nav1{
	margin-left:0px;;
}

.topcontainer .topnavs .nav2{
	margin-left:167px;;
}

.topcontainer .topnavs .nav3{
	margin-left:335px;;
}

.topcontainer .topnavs .nav4{
	margin-left:503px;;
}



.topcontainer .navs{
	width:938px;height:263px;left:50%;margin-left:-471px;top:836px;
}

.topcontainer .navs .nav{
	width:177px;height:178px;
}

.topcontainer .navs .nav1{
	margin-left:0px;top:86px;
}

.topcontainer .navs .nav2{
	margin-left:255px;top:35px;
}

.topcontainer .navs .nav3{
	margin-left:508px;top:0px;
}

.topcontainer .navs .nav4{
	margin-left:761px;top:7px;
}


.topcontainer .navs .nav:hover{
	cursor: pointer;	
}

.gameIntro {
	width:1920px;height:850px;left: 50%;margin-left: -960px;
	overflow: hidden;
	position: relative;
	background: url(../images/bj_02.jpg) no-repeat center;
	background-position: 0px -0px;
}



.gzshow{
	width:1920px;
	height:800px;
	left: 50%;
	margin-left: -960px;
	overflow: hidden;
	position: relative;
	background: url(../images/bj_03.jpg) no-repeat top;
	background-position: 0px -0px;
	background-image: url(../images/bj_03.jpg);
}


.zbShow{
	width:1920px;
	height:700px;
	left: 50%;
	margin-left: -960px;
	overflow: hidden;
	position: relative;
	background: url(../images/bj_04.jpg) no-repeat center;
	background-position: 0px -0px;
	background-image: url(../images/bj_04.jpg);
}

.gzimg{width:309px;height:309px;left:50%;margin-left:-366px;top:221px;background: url(../images/bj04_jcjt/gifdh.html) no-repeat center;z-index: 50;}
.zbShow2 {
    width: 1920px;
    height: 700px;
    left: 50%;
    margin-left: -960px;
    overflow: hidden;
    position: relative;
    background: url(../images/bj_05.jpg) no-repeat  bottom;
    background-position: 0px 0px;
    background-image: url(../images/bj_05.jpg);
}

.carousel-container {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1500px;  /* 改为1500 */
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1200px;
    margin: 0 auto;
}
/* 轮播轨道 */
/* 轮播轨道 */
.carousel-track {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;  /* 从30px改为10px，间距更窄 */
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
/* 图片项 */
.carousel-item {
    flex-shrink: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
}

.carousel-item img {
    display: block;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    transition: all 0.5s ease;
}

/* 主图样式 - 中间 */
.carousel-item.active {
    width: 529px;
    height: 419px;
    z-index: 10;
    transform: scale(1);
    opacity: 1;
}

.carousel-item.active img {
    width: 529px;
    height: 419px;
    object-fit: cover;
}

/* 两侧缩略图 - 第一级 */
.carousel-item.side-1 {
    width: 370px;
    height: 293px;
    z-index: 5;
    transform: scale(0.85);
    opacity: 0.7;
    filter: brightness(0.8);
}

.carousel-item.side-1 img {
    width: 370px;
    height: 293px;
    object-fit: cover;
}

/* 两侧缩略图 - 第二级（最外） */
.carousel-item.side-2 {
    width: 260px;
    height: 206px;
    z-index: 3;
    transform: scale(0.7);
    opacity: 0.4;
    filter: brightness(0.6) blur(1px);
}

.carousel-item.side-2 img {
    width: 260px;
    height: 206px;
    object-fit: cover;
}

/* 隐藏其他 */
.carousel-item.hidden {
    display: none;
}

/* 左右箭头 */
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.1);
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.carousel-arrow:hover {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.6);
    transform: translateY(-50%) scale(1.1);
}

.carousel-arrow.prev {
    left: 100px;
}

.carousel-arrow.next {
    right: 100px;
}

.carousel-arrow::before {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
}

.carousel-arrow.prev::before {
    border-width: 10px 15px 10px 0;
    border-color: transparent rgba(255,255,255,0.8) transparent transparent;
    margin-right: 3px;
}

.carousel-arrow.next::before {
    border-width: 10px 0 10px 15px;
    border-color: transparent transparent transparent rgba(255,255,255,0.8);
    margin-left: 3px;
}

/* 指示器 */
.carousel-dots {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 20;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: rgba(255,255,255,0.9);
    transform: scale(1.3);
}

.dot:hover {
    background: rgba(255,255,255,0.6);
}
.zbShow3{
	width:1920px;
	height:500px;
	left: 50%;
	margin-left: -960px;
	overflow: hidden;
	position: relative;
	background: url(../images/bj_06.jpg) no-repeat top;
	background-position: 0px -0px;
	background-image: url(../images/bj_06.jpg);
}

.zbShow4{
	width:1920px;
	height:700px;
	left: 50%;
	margin-left: -960px;
	overflow: hidden;
	position: relative;
	background: url(../images/bj_08.jpg) no-repeat center;
	background-position: 0px -0px;
	background-image: url(../images/bj_08.jpg);
}

.zbShow5{
	width:1920px;
	height:650px;
	left: 50%;
	margin-left: -960px;
	overflow: hidden;
	position: relative;
	background: url(../images/bj_09.jpg) no-repeat center;
	background-position: 0px -0px;
	background-image: url(../images/bj_09.jpg);
}

.zbShow6{
	width:1920px;
	height:650px;
	left: 50%;
	margin-left: -960px;
	overflow: hidden;
	position: relative;
	background: url(../images/bj_10.jpg) no-repeat center;
	background-position: 0px -0px;
	background-image: url(../images/bj_10.jpg);
}

.zbShow7{
	width:1920px;
	height:650px;
	left: 50%;
	margin-left: -960px;
	overflow: hidden;
	position: relative;
	background: url(../images/bj_11.jpg) no-repeat center;
	background-position: 0px -0px;
	background-image: url(../images/bj_11.jpg);
}


.bottom{
	width:1920px;
	height:132px;
	left: 50%;
	margin-left: -960px;
	overflow: hidden;
	position: relative;
	background: url(../images/bj_07.jpg) no-repeat center;
	background-position: 0px -0px;
	background-image: url(../images/bj_07.jpg);
}




#preview{position:absolute;padding:5px;display:none;margin-top:-40px;z-index:99999;}
.m6piccon{float:left;position:relative;width:1440px;height:80px;margin-left:289px;margin-top:78px;z-index:999}
.m6piccon li{float:left;width:99.8px;height:93px;padding:0 0px;margin-bottom:25px}
.m6piccon li a span{float:left;width:60px;height:15px;line-height:15px;border:1px solid #585858;font-size:12px;color:#ed2d01;padding:5px 3px;margin-top:10px;text-align:center;margin-left:0px}
.m6piccon li img {float:left;width:44px;height:44px}

.items {width:1220px;left:50%;margin-left:-513px;margin-top:320px;}
.items ul{}
.items li{ width:42px; height:106px; float:left; list-style:none; margin-right:159px;}

.itemcss{ position:relative;width:52px; height:52px;margin:0 auto} 
.itemcss a,.itemcss span{display:none; text-decoration:none}
.itemcss:hover{cursor:pointer} 
.itemcss:hover a.now{cursor:pointer; position:absolute; top:0; width:100%; height:100%;
 z-index:100; left:0; display:block;}
.itemcss:hover span{ display:block;position:absolute; bottom:0; left:0;color:#FFF;margin-left:50px;
z-index:10;height:36px; line-height:36px; filter:alpha(opacity=100);-moz-opacity:0.9;opacity: 0.9;}


.slide1{
	width:1145px;height:559px;left: 50%;margin-left: -573px;top:107px;
	
}

.slide1 .uls li{list-style: none;}

.slide1 .prev,.slide1 .next{width:32px;height:50px;}
.slide1 .prev{top:-315px;left:-38px;}
.slide1 .next{top:-367px;left:1144px;}

.slide2{
	width:1103px;height:459px;left: 758px;margin-left: -350px;top:60px;
	
}

.slide2 .uls li{list-style: none;}

.slide2 .prev,.slide2 .next{width:40px;height:52px;}
.slide2 .prev{top:-318px;left:-610px;}
.slide2 .next{top:-370px;left:587px;}

.slide2 .slide2hd{width:781px;height:110px;left: 804px;margin-left: -444px;top:487px;}

.slide2 .slide2hd .sm{width:107px;height:110px;}
.slide2 .slide2hd .sm:hover{cursor: pointer;}

.slide2 .slide2hd .sm1{left:0px;} 
.slide2 .slide2hd .sm1.on{background:url(../images/bj04fb/1.html);} 

.slide2 .slide2hd .sm2{left:125px;} 
.slide2 .slide2hd .sm2.on{background:url(../images/bj04fb/2.html);} 

.slide2 .slide2hd .sm3{left:250px;} 
.slide2 .slide2hd .sm3.on{background:url(../images/bj04fb/3.html);} 

.slide2 .slide2hd .sm4{left:375px;} 
.slide2 .slide2hd .sm4.on{background:url(../images/bj04fb/4.html);} 

.slide2 .slide2hd .sm5{left:751px;} 
.slide2 .slide2hd .sm5.on{background:url(../images/bj04fb/5.html);}

.slide2 .slide2hd .sm6{left:940px;} 
.slide2 .slide2hd .sm6.on{background:url(../images/bj04fb/6.html);}

.slide3{
	width:1032px;height:527px;left: 983px;margin-left: -545px;top:70px;
	
}

.slide3 .uls li{list-style: none;}

.slide3 .prev,.slide3 .next{width:60px;height:80px;}
.slide3 .prev{top:-329px;left:-598px;}
.slide3 .next{
	top:-437px;
	left:670px;
	background-image: url(../images/LG.html);
}


.slide4{
	width:1078px;height:419px;left: 50%;margin-left: -423px;top:77px;
	
}

.slide4 .uls li{list-style: none;}

.slide4 .prev,.slide4 .next{width:40px;height:52px;}
.slide4 .prev{top:-543px;left:-577px;}
.slide4 .next{top:-597px;left:652px;}


.slide5{
	width:1078px;height:419px;left: 50%;margin-left: -806px;top:92px;
	
}

.slide5 .uls li{list-style: none;}

.slide5 .prev,.slide5 .next{width:40px;height:52px;}
.slide5 .prev{top:-352px;left:707px;}
.slide5 .next{top:-410px;left:-601px;}


#Floatingbar{width:157px;position:fixed;top:80%;right:0px;margin-top:-150px;background-color:#e5e5e5;box-shadow:0 3px 14px rgba(0,0,0,0.4);z-index:150000;font-size:12px;background-color:#ffffff;font-family:'Microsoft YaHei';}
#Floatingbar .ewm{padding:22px 0 15px;line-height:24px;text-align:center;color:#fff;background-color:#333333;}
#Floatingbar .ewm img{width:117px;height:117px;margin:0 auto;display:block;}
#Floatingbar ul{padding:14px 0;background:url(../images/line_x.html) no-repeat center bottom;list-style-type:none;background-color:#333333;color:white;}
#Floatingbar ul li{height:22px;line-height:22px;text-align:center;margin-bottom:7px;cursor: pointer;}
#Floatingbar ul li a{color:white;}
#Floatingbar ul li a:hover{color:white;}
#Floatingbar ul li img{margin-left:5px;vertical-align:middle;}
#Floatingbar .btn_backtop{height:31px;line-height:31px;text-align:center;color:#fff;background-color:#676767;display:block;}
#Floatingbar .btn_backtop:hover{background-color:#507129;}
#Floatingbar .btn{width:15px;height:130px;position:absolute;top:23px;left:-15px;background:url(../images/arrow.html) no-repeat right top;cursor:pointer;}
#Floatingbar .btn.change{background-position:left top;}


.navs {
	width: 535px;
	height: 226px;
	left:50%;
	margin-left: -270px;
	top: 830px;
	z-index: 99;
}
.nav1,.nav2,.nav3,.nav4 {
	width: 62px;
	height: 224px;
	/* margin-right: 166px; */
}

.nav1 {
	/* margin-left:90px; */
	background:url(../images/xz.html) no-repeat;
}
.nav1:hover,.nav2:hover，.nav3:hover，.nav4:hover{cursor: pointer;}
.nav1:hover,.nav2:hover,.nav3:hover,.nav4:hover {
	margin-top:-10px;	
}




.nav2 {
	background:url(../images/xz.html) no-repeat;
	margin-left: 100px;
}

.nav3 {
	background:url(../images/xz.html) no-repeat;
	margin-left: 90px;
}

.nav4 {
	background:url(../images/xz.html) no-repeat;
	/* margin-left: 38px; */
	float: right;
}





.list-info{
	width: 658px;
	height: 453px;
	margin-top: 251px;
	position: absolute;
	left: 785px;
}
.NewsList li{height:53px;line-height:53px;font-size:19px;transition:all 0.1s linear;}
	.NewsList li:hover{transform:translatex(5px);}
	.NewsList li a{float: left;overflow:hidden;color:#f5c69d;text-decoration:none;text-overflow:ellipsis;white-space:nowrap;display:block;}
	.NewsList li time{float:right;color:#aaabaf;}
	.NewsList li .lx{float:left;}
	.NewsList li:hover a{color:#ae862e;}

	ul, ol {
		list-style-type: none;
	}

