@charset "utf-8";
/* CSS Document */
* {
	margin: 0;
	padding: 0;
	margin: 0px 0px 0px 0px;
}
body {
	overflow-x: hidden;background: #000;cursor: url('../smps8/mouse.png'), auto;
}
a:hover {
  cursor: url('../smps8/mouse2.png'), auto; /
}
.bigcontainer {
	width: 100%;
	background: #000;
}
.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:1078px;left: 50%;margin-left: -960px;
	overflow: hidden;
	position: relative;
	background: url(../images/bj_01.jpg) no-repeat top;
	background-position: -0px -0px;
}

.animatetop{	
	width:1920px;height:1080px;left:50%;margin-left:-960px;

}

#Version{width:100%;height:1080px;position:relative;overflow:hidden;z-index:3}
#Flash{width:1920px;height:1080px;position:absolute;left:50%;margin:0px auto -272px -960px;z-index:-1}
#Header{margin:0 auto -290px -960px;width:1920px;height:1080px;position:absolute;left:50%;z-index:-2;line-height:0px;}


.sm1{
	width:1920px;height:700px;left: 50%;margin-left: -960px; margin-top:-1px;
	overflow: hidden;
	position: relative;
	background: url(../images/sm1.jpg) no-repeat center; z-index:999999;
	background-position: 0px -0px;
}
.sm2 {
    width: 1920px;
    height: 700px;left: 50%;margin-left: -960px;
    overflow: hidden;
    position: relative;
    background: url(../images/sm2.jpg) no-repeat center;
	background-position: 0px -0px;
}
.sm3 {
    position: relative;
    width: 1920px;
    height: 1050px;
    left: 50%;
    margin-left: -960px;
    overflow: hidden;
    background: url(../images/sm3.jpg) no-repeat top;
}
.sm4 {
    position: relative;
    width: 1920px;
    height: 900px;
    left: 50%;
    margin-left: -960px;
    overflow: hidden;
    background: url(../images/sm4.jpg) no-repeat top;
}


  @keyframes ticker-kf {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-308rem, 0, 0); }
  }
  .img-ticker {
    animation: ticker-kf 60s linear infinite;
    height: 600px;
  }
  .w-64 {}
  .mx-4 { margin-left: 12px; margin-right: -8px; }
  .overflow-hidden { overflow: hidden; }
  .flex { display: flex; }
  .-mx-4 { margin-left: -1rem; margin-right: -1rem; }
  .mx-4 { margin-left: 0.2rem; /*间隔*/margin-right: 0rem; }
  .self-start { align-self: flex-start; }
  
.carousel {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1400px;
    height: 420px;
}
.carousel-track {
    position: relative;
    width: 1400px;
    height: 420px;
}
.carousel-item {
    position: absolute;
    top: 0;
    left: 50%;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 8px 32px rgba(0,0,0,0.23);
    transition: opacity 0.6s cubic-bezier(.75,-0.19,.36,1.27),
                transform 0.6s cubic-bezier(.75,-0.19,.36,1.27);
}
.carousel-item img {
    width: 100%;
    height: 100%;
    display: block;
}

/* 主图样式 */
.carousel-item.main {
    width: 600px;
    height: 420px;
    z-index: 3;
    transform: translateX(-50%) scale(1) rotateY(0deg);
    opacity: 1;
    transition: none; /* 主图切换不需要动画！ */
}

/* 左小图 */
.carousel-item.left {
    width: 420px;
    height: 294px;
    z-index: 2;
    transform: translateX(calc(-50% - 390px)) scale(0.7) rotateY(25deg);
    opacity: 0.6;
}
.carousel-item.left.fadeout {
    opacity: 0;
    transform: translateX(calc(-50% - 550px)) scale(0.5) rotateY(25deg);
}
.carousel-item.left.fadein {
    opacity: 0;
    transform: translateX(calc(-50% - 240px)) scale(0.5) rotateY(25deg);
}
.carousel-item.left.in {
    opacity: 0.6;
    transform: translateX(calc(-50% - 390px)) scale(0.7) rotateY(25deg);
}
.carousel-item.left,
.carousel-item.right {
    top: 60px;
}
/* 右小图 */
.carousel-item.right {
    width: 420px;
    height: 294px;
    z-index: 2;
    transform: translateX(calc(-50% + 390px)) scale(0.7) rotateY(-25deg);
    opacity: 0.6;
}
.carousel-item.right.fadeout {
    opacity: 0;
    transform: translateX(calc(-50% + 550px)) scale(0.5) rotateY(-25deg);
}
.carousel-item.right.fadein {
    opacity: 0;
    transform: translateX(calc(-50% + 240px)) scale(0.5) rotateY(-25deg);
}
.carousel-item.right.in {
    opacity: 0.6;
    transform: translateX(calc(-50% + 390px)) scale(0.7) rotateY(-25deg);
}
/* 按钮 */
.arrow {
    width: 50px;
    height: 50px;
    background: rgba(30,30,30,0.8);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5em;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    transition: background 0.2s;
    user-select: none;
}
.arrow-left {
    position: absolute;
    left: 10px;
    top:50%;
    transform: translateY(-50%);
}
.arrow-right {
    position: absolute;
    right: 10px;
    top:50%;
    transform: translateY(-50%);
}
.arrow:hover {
    background: #111;
}
.sm4{
	width:1920px;height:900px;left: 50%;margin-left: -960px;
	overflow: hidden;
	position: relative;
	background: url(../images/sm4.jpg) no-repeat center;
	background-position: 0px -0px;
}
.sm5{
	width:1920px;height:800px;left: 50%;margin-left: -960px;
	overflow: hidden;
	position: relative;
	background: url(../images/sm5.jpg) no-repeat center;
	background-position: 0px -0px;
}
.sm6{
	width:1920px;height:820px;left: 50%;margin-left: -960px;
	overflow: hidden;
	position: relative;
	background: url(../images/sm6.jpg) no-repeat center;
	background-position: 0px -0px;
}
.sm7{
	width:1920px;height:170px;left: 50%;margin-left: -960px;
	overflow: hidden;
	position: relative;
	background: url(../images/sm7.jpg) no-repeat center;
	background-position: 0px -0px;
}


#Floatingbars{width: 166px;height:459px;position:fixed;top:20%;right: -3px;z-index:10000;background: url(../images/icon29.png) no-repeat center center;}
#Floatingbars ._btn_qqqun{display:block;text-align:center;margin-top:13px;}
#Floatingbars .btn_showhide{width: 25px;height: 128px;position:absolute;top: 74px;right: 157px;cursor:pointer;background:url(../images/icon25.png) no-repeat left top;}
#Floatingbars .btn_showhide.off{background:url(../images/icon33.png) no-repeat left top;right: 164px;}
.kefulist{}
.kefulist li{font-size:14px;padding-right:19px;padding-left:19px;}
.kefulist li a{height:48px;line-height:48px;color: #ffff;text-decoration:none;display:block;width: 108px;text-align: center;}
.kefulist li a [class^='icon']{margin-right:10px;vertical-align:middle;}
.kefulist li:nth-last-of-type(1) a{border:none;}
.kefulist li:hover .icon_qq{background-position:right top;}
.kefulist li:hover a{color:#dcb86b;}

.RQcodes{padding-top: 94px;padding-bottom:17px;}
.RQcodes strong{line-height:24px;font-size:16px;font-weight:normal;color:#ffff;display:block;padding-left:43px;padding-right:12px;}
.RQcodes span{line-height:20px;color:#ffff;margin-bottom:10px;display:block;padding-left:20px;padding-right:12px;}
.RQcodes .pic{width:108px;height:108px;margin:0 auto;}
.RQcodes .pic img{width:100%;height:100%;}


#Downloads{width: 918px;height: 97px;text-align:center;position:absolute;top: 857px;left:50%;margin-left: -375px;z-index:51;border-radius:5px;background:url(../images/down.html) no-repeat left top;}
#Downloads .btns_down_s1{float:left;width: 422px;height: 98px;text-indent:-999em;background:url(../images/btn_down1.png) no-repeat left top;}
#Downloads .btns_down_s2{float:left;width: 422px;height: 98px;text-indent:-999em;margin-left: 55px;background:url(../images/btn_down2.png) no-repeat left top;}
#Downloads .btns_down_s1:hover{background:url(../images/btn_down1.png) no-repeat left bottom;}
#Downloads .btns_down_s2:hover{background:url(../images/btn_down2.png) no-repeat left bottom;}

#Downloads .btns_down_s1,
#Downloads .btns_down_s2 {
  position: relative;
  overflow: hidden; 
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 5px;
}

#Downloads .btns_down_s1:hover,
#Downloads .btns_down_s2:hover {
  transform: translateY(-5px) scale(1.05); 
}
/
#Downloads .btns_down_s1:before,
#Downloads .btns_down_s2:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.1);
  transform: scale(0);
  transition: transform 0.3s ease;
  border-radius: 5px;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

#Layer12 {
	position:relative;
	height:79px;
	z-index:10800;
	background-image: url(../images/smtop.jpg);
	background-repeat: no-repeat;
	background-position: center;
	width: 1920px;
}
#Layer13 {
	position:absolute;
	width:150px;
	height:50px;
	z-index:1;
	top: 18px;
	left: 1150px;
}
#Layer14 {
	position:absolute;
	width:150px;
	height:50px;
	z-index:2;
	left: 1350px;
	top: 18px;
}
#Layer15 {
	position:absolute;
	width:150px;
	height:50px;
	z-index:3;
	left: 1560px;
	top: 18px;
}

#focus_Box {
    position: relative;
    padding-top: 107px; padding-left:60px;
    margin: 0 auto;
}
.feature-swiper{
    width: 990px;
	height: 600px;
}
.feature-swiper .swiper-slide {
    width: 400px;
}
.feature-swiper img {
    width: 400px;
}
.img_box_s{
    position: relative;
}
.img_box_s::after{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: -webkit-gradient(linear,right top,left top,from(rgba(0,0,0,.5)),to(rgba(0,0,0,0)));
    background-image: -webkit-linear-gradient(left,rgba(0,0,0,.5),rgba(0,0,0,0));
    background-image: -moz-linear-gradient(left,rgba(0,0,0,.5),rgba(0,0,0,0));
    background-image: -o-linear-gradient(left,rgba(0,0,0,.5),rgba(0,0,0,0));
    background-image: linear-gradient(to right,rgba(0,0,0,.5),rgba(0,0,0,0));
}
.feature-swiper .swiper-slide.swiper-slide-active .img_box_s::after{
    background-image: none;
}
.feature-pa {
    position: static;
    padding-bottom: 20px;
    counter-reset: num;
}
#focus_Box .prev,#focus_Box .next{display:block;z-index:100;overflow:hidden;cursor:pointer;position:absolute;width:100px;height:76px;top:404px;}
#focus_Box .prev{background:url(../images/1.png) left bottom no-repeat;left:350px;}
#focus_Box .next{background:url(../images/2.png) right bottom no-repeat;right:350px;}
#focus_Box .proL{ 
	transform: perspective(1100px) translate(0, 0) rotateY(-30deg);		 
	-webkit-transform: perspective(1100px) translate(0, 0) rotateY(-30deg);		 
	-moz-transform: perspective(1100px) translate(0, 0) rotateY(-30deg);	 
}
#focus_Box .proR{ 
	transform: perspective(1100px) translate(0, 0) rotateY(30deg);		 
	-webkit-transform: perspective(1100px) translate(0, 0) rotateY(30deg);		 
	-moz-transform: perspective(1100px) translate(0, 0) rotateY(30deg);	 
}



#Layer4 {
	position:absolute;
	width:1920px;
	height:132px;
	z-index:2;
	left: 0px;
	top: 0px;
	background-image: url(images/sm7.jpg);
	background-repeat: no-repeat;
}
#Layer5 {
	position:absolute;
	width:700px;
	height:90px;
	z-index:1;
	left: 777px;
	top: 24px;
}
#Layer2 {
	position:absolute;
	width:1200px;
	height:700px;
	z-index:2;
	left: 390px;
	top: 213px;
}

.STYLE2 {	font-size: 12px;
	color: #FFFFFF;
}


.slide4{
	width:1430px;
	height:420px;
	left: 50%;
	margin-left: -723px;
	top: 198px;
}

.slide4 .uls li{list-style: none;}

.slide4 .prev,.slide4 .next{width:140px;height:152px;}
.slide4 .prev{top: -334px;left: -677px;}
.slide4 .next{top: -454px;left: 560px;}




.bottom{
	width:1920px;
	height:991px;
	left: 50%;
	margin-left: -960px;
	overflow: hidden;
	position: relative;
	background: url(../images/bj_06.jpg) no-repeat center;
	background-position: 0px -0px;
	background-image: url(../images/bj_06.jpg);
}

.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: 1223px;
	height:586px;
	margin-left: 0px;
	top: 256px;
}
.slide2 .uls li{list-style: none;}
.slide2 .prev,.slide2 .next{width: 39px;height: 51px;}
.slide2 .prev{top: -252px;left: 396px;}
.slide2 .next{top: -304px;left: -369px;}
.slide2 .slide2images{margin-left:357px;margin-top:-12px;}
.slide2 .slide2hd{/* width: 132px; *//* height: 109px; *//* left: 105px; */margin-left: -542px;/* top: 664px; */}
.slide2 .slide2hd .sm{width: 132px;height: 109px;
-webkit-transition: -webkit-transform .5s ease;
	transition: -webkit-transform .5s ease;
	-moz-transition: transform .5s ease, -moz-transform .5s ease;
	transition: transform .5s ease;
	transition: transform .5s ease, -webkit-transform .5s ease, -moz-transform .5s ease;
}
.slide2 .slide2hd .sm:hover{cursor: pointer;}

.slide2 .slide2hd .sm1{margin-left:-431px;width:433px;height:250px;overflow:hidden;} 
.slide2 .slide2hd .sm1 .xx1{background:url(../smps8/01.png);width:433px;height:250px;overflow:hidden;-webkit-transition: -webkit-transform .5s ease;
	transition: -webkit-transform .5s ease;
	-moz-transition: transform .5s ease, -moz-transform .5s ease;
	transition: transform .5s ease;
	transition: transform .5s ease, -webkit-transform .5s ease, -moz-transform .5s ease;} 
.slide2 .slide2hd .sm1:hover .xx1{-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);width:433px;height:250px;} 

.slide2 .slide2hd .sm2{margin-top: 110px;width:432px;height:346px;overflow:hidden;margin-left: -431px;} 
.slide2 .slide2hd .sm2 .xx1{background:url(../smps8/02.png);width:432px;height:346px;overflow:hidden;-webkit-transition: -webkit-transform .5s ease;
	transition: -webkit-transform .5s ease;
	-moz-transition: transform .5s ease, -moz-transform .5s ease;
	transition: transform .5s ease;
	transition: transform .5s ease, -webkit-transform .5s ease, -moz-transform .5s ease;} 
.slide2 .slide2hd .sm2:hover .xx1{-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);width:432px;height:346px;} 

.slide2 .slide2hd .sm3{margin-top: 390px;width:433px;height:193px;margin-left: -431px;overflow:hidden;}
.slide2 .slide2hd .sm3 .xx1{background:url(../smps8/03.png);width:433px;height:193px;overflow:hidden;-webkit-transition: -webkit-transform .5s ease;
	transition: -webkit-transform .5s ease;
	-moz-transition: transform .5s ease, -moz-transform .5s ease;
	transition: transform .5s ease;
	transition: transform .5s ease, -webkit-transform .5s ease, -moz-transform .5s ease;} 
.slide2 .slide2hd .sm3:hover .xx1{-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);width:433px;height:193px;} 

 
.yihuo{width:743px;height:679px;background:url(../smps8/yihuo.html);margin-left: 739px;margin-top: 270px;}

.slide3{
	width:1032px;
	height:527px;
	left:210px;
	top:209px;
}
.slide3 .uls li{list-style: none;}
.slide3 .prev,.slide3 .next{width:63px;height: 84px;}
.slide3 .prev{
	top: -400px;
	left: -564px;
}
.slide3 .next{
	top: -493px;
	left:960px;
	background-image: url(../images/LG.html);
}


.slider {
    position: relative;
    width: 1220px;
    height: 600px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    margin: 210px auto 0; /* 修改这里，设置上边距为 150 像素，并水平居中 */
}
        .slides {
            display: flex;
            width: 400%;
            height: 100%;
            transition: transform 0.5s ease-in-out;
        }

        .slides img {
            width: 1220px;
            height: 600px;
            object-fit: cover;
        }

        button {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background-color: rgba(0, 0, 0, 0.5);
            color: white;
            border: none;
            padding: 10px;
            cursor: pointer;
            font-size: 24px;
            transition: background-color 0.3s ease;
        }

        button:hover {
            background-color: rgba(0, 0, 0, 0.8);
        }

        .prev {
            left: 10px;
        }

        .next {
            right: 10px;
        }

.slide5{width:1078px;height:419px;left: 50%;margin-left: -539px;top:1097px;}
.slide5 .uls li{list-style: none;}
.slide5 .prev,.slide5 .next{width:40px;height:52px;}
.slide5 .prev{top:-262px;left:-85px;}
.slide5 .next{top:-317px;left:1121px;}



.top-box{width:100%;position:absolute;left:0;height:84px;z-index:9;}
.top-box .lostark-logo{display:block;position:absolute;left:60px;top:50%;margin-top:-25px;width:199px;height:49px;   }
.top-box .top-list{width:100%;text-align: center;font-size: 0}
.top-box .top-list li{display:inline-block;*display:inline;*zoom:1;vertical-align: top;width:175px;    margin-top: -12px;position:relative;height:100%;}
.top-box .top-list li a{display:block;width:100%;padding-top:22px;height:62px;-webkit-transition: all .2s;transition: all .2s;}
.top-box .top-list li a:hover{-webkit-transform: scale(1.15);transform: scale(1.15);    text-decoration: none;}
.top-box .top-list li a span{display:block;text-align: center;font-size: 18px;color:#ffffff;line-height: 24px;text-shadow:0 0 0.2em rgba(255,255,255,0.5),0 0 0.2em rgba(255,255,255,0.5);}
.top-box .top-list li a em{font-size: 12px;color:#ffffff;text-align: center;line-height: 16px;text-shadow:0 0 0.2em rgba(255,255,255,0.5),0 0 0.2em rgba(255,255,255,0.5);}
.top-box .top-list li .top-line{position:absolute;right:0;top:50%;margin-top:-18px;width:2px;height:37px;background:url(../images/top-line.png) right center no-repeat;}
#smdown{width: 902px;height: 101px;text-align:center;position:absolute;top:840px;left:50%;margin-left: -450px;z-index:5100;border-radius:5px;background:url(../images/smdown.png) no-repeat left top;}
#smdown .smdown1{float:left;width: 252px;height: 101px;text-indent:-999em;}
#smdown .smdown2{float:left;width: 181px;height: 101px;text-indent:-999em;}
#smdown .smdown3{float:left;width: 128px;height: 101px;text-indent:-999em;}
#smdown .smdown4{float:left;width: 99px;height: 89px;text-indent:-999em;margin-left: 4px;}


address, caption, cite, code, dfn, em, strong, th, var {font-style: normal;font-weight: normal;}


.slg {
    width: 576px;
    height: 319px;
    margin: auto;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 285px;
    z-index: 10;
}
.slg img {
    width: 100%;
}
.slg .slg-text-wrap {
    position: absolute;
    top: 160px;
    left: 0;
    width: 520px;
    height: 64px;
    font-size: 0;
    right: 0;
    margin: auto;
}
.slg .slg-text-wrap span {
    display: inline-block;
    width: 50px;
    height: 55px;
    background: url(../images/slg_text_2.html) no-repeat;
    background-size: 480px 55px;
    margin-right: 10px;
    opacity: 0;
    animation:showtext 1s linear forwards;
    -webkit-animation:showtext 1s linear forwards;
}

.slg .slg-text-wrap .slg1 {
    background-position: 5px center;
    animation-delay:0s;
    -webkit-animation-delay:0s; /* Safari 和 Chrome */
   
}
.slg .slg-text-wrap .slg2 {
    background-position: -54px center;
    animation-delay:.6s;
    -webkit-animation-delay:.6s; /* Safari 和 Chrome */
   
}
.slg .slg-text-wrap .slg3 {
    background-position: -112px center;
    animation-delay:1.2s;
    -webkit-animation-delay:1.2s; /* Safari 和 Chrome */
   
}
.slg .slg-text-wrap .slg4 {
    background-position: -168px center;
    margin-right: 50px;
    animation-delay:1.8s;
    -webkit-animation-delay:1.8s; /* Safari 和 Chrome */
   
}
.slg .slg-text-wrap .slg5 {
    background-position: -262px center;
    animation-delay:2.4s;
    -webkit-animation-delay:2.4s; /* Safari 和 Chrome */
   
}

.slg .slg-text-wrap .slg6 {
    background-position: -320px center;
    animation-delay:3.0s;
    -webkit-animation-delay:3.0s; /* Safari 和 Chrome */
   
}
.slg .slg-text-wrap .slg7 {
    background-position: -378px center;
    animation-delay:3.6s;
    -webkit-animation-delay:3.6s; /* Safari 和 Chrome */
   
}
.slg .slg-text-wrap .slg8 {
    background-position: -436px center;
    margin-right: 0;
    animation-delay:4.2s;
    -webkit-animation-delay:4.2s; /* Safari 和 Chrome */
   
}

@keyframes showtext {
    0% {opacity: 0;transform: scale(1.1);}
    100% {opacity: 1;transform: scale(1);}
}


.large_thumb_border span{position:absolute;display:block}
.large_thumb_border span:nth-child(2){top:0;left:0;width:100%;height:4px;background:-webkit-gradient(linear, left top, right top, from(transparent), to(#fff));background:linear-gradient(90deg, transparent, #fff);-webkit-animation:animate1 1s linear infinite;animation:animate1 1s linear infinite}
.large_thumb_border span:nth-child(3){top:-100%;right:0;width:4px;height:100%;background:-webkit-gradient(linear, left top, left bottom, from(transparent), to(#fff));background:linear-gradient(180deg, transparent, #fff);-webkit-animation:animate2 1s linear infinite;animation:animate2 1s linear infinite;-webkit-animation-delay:0.25s;animation-delay:0.25s}
.large_thumb_border span:nth-child(4){bottom:0;right:0;width:100%;height:4px;background:-webkit-gradient(linear, right top, left top, from(transparent), to(#fff));background:linear-gradient(270deg, transparent, #fff);-webkit-animation:animate3 1s linear infinite;animation:animate3 1s linear infinite;-webkit-animation-delay:0.50s;animation-delay:0.50s}
.large_thumb_border span:nth-child(5){bottom:-100%;left:0;width:4px;height:100%;background:-webkit-gradient(linear, left bottom, left top, from(transparent), to(#fff));background:linear-gradient(360deg, transparent, #fff);-webkit-animation:animate4 1s linear infinite;animation:animate4 1s linear infinite;-webkit-animation-delay:0.75s;animation-delay:0.75s}



@-webkit-keyframes animate1{
	0%{left:-100%}
	50%,100%{left:100%}
}
@keyframes animate1{
	0%{left:-100%}
	50%,100%{left:100%}
}
@-webkit-keyframes animate2{
	0%{top:-100%}
	50%,100%{top:100%}
}
@keyframes animate2{
	0%{top:-100%}
	50%,100%{top:100%}
}
@-webkit-keyframes animate3{
	0%{right:-100%}
	50%,100%{right:100%}
}
@keyframes animate3{
	0%{right:-100%}
	50%,100%{right:100%}
}
@-webkit-keyframes animate4{
	0%{bottom:-100%}
	50%,100%{bottom:100%}
}
@keyframes animate4{
	0%{bottom:-100%}
	50%,100%{bottom:100%}
}

.box4 .center {
  position: relative;
  top: 110px;
  margin: 0 auto;
  height: 50px;
  width: 1491px;
}
.box4 .center ul {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  width: 100%;
}
.box4 .center ul li {
  margin-top: 106px;
  width: 439px;
  height: 254px;
  cursor: pointer;
  overflow: hidden;
}
.box4 .center ul li img {
  width: 100%;
  height: 100%;
  transition: all 0.5s;
  object-fit: fill;
}
.box4 .center ul li img:hover {
  transform: scale(1.08);
}

.par2 {
	padding-top:150px;
}
.par2 h2 {
	background-position:0 -324px; 
	width:878px;
	height:137px;
	display:block;
	margin:0 auto
}
.list_show {
	display:flex;
	justify-content:space-between;
	align-items:center;
	flex-wrap:wrap;
	transform-style:preserve-3d;
	height:605px
}
.list_show .card {
	position:relative;
	width:240px;
	height:400px;
	transform-style:preserve-3d;
	perspective:1080px;
	margin-top: 55px;
}
.list_show .card .boxs {
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	transform-style:preserve-3d;
	transition:1s ease
}
.list_show .card:hover .boxs {
	transform:rotateY(180deg)
}
.list_show .card .boxs .imgBx {
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%
}
.list_show .card .boxs .imgBx img {
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	object-fit:cover
}
.list_show .card .boxs .contentBx {
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	backface-visibility:hidden;
	display:flex;
	justify-content:center;
	align-items:center;
	transform-style:preserve-3d;
	transform:rotateY(180deg);
	display:none
}
.list_show .card .boxs .contentBx img {
	 transform-style:preserve-3d;
	 transform:translateZ(40px);
	display:block;
}
.list_show .card .boxs:hover .contentBx {
	display:block
}
.btn_look {
	background-position:-371px 0;
	width:113px;
	height:33px;
	display:block;
	position:absolute;
	bottom:40px;
	left:64px
}


#Download{width: 764px;height: 172px;text-align:center;position:absolute;top: 890px;left:50%;margin-left: -416px;z-index:51;border-radius:5px;background:url(../images/down.png) no-repeat left top;}
#Download .btn_down_s1{float:left;width: 259px;height: 89px;text-indent:-999em;margin-left: 106px;margin-top: 43px;}
#Download .btn_down_s2{float:left;width: 181px;height: 91px;text-indent:-999em;margin-left: 4px;margin-top: 39px;}
#Download .btn_down_s3{float:left;width: 181px;height: 101px;text-indent:-999em;margin-left: 4px;margin-top: 35px;}
#Download .btn_down_s4{float:left;width: 131px;height: 89px;text-indent:-999em;overflow:hidden;margin-left: 13px;margin-top: 42px;}

.navxx {
	display: flex;
	align-items: center;
	position: fixed;
	top: 50%;
	z-index: 50;
	padding-top: 51px;
	min-width: 148px;
	background: url(../images/title_nav.png) 0 0/148px 26px no-repeat;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	transition: all 1s cubic-bezier(0.455, 0.03, 0.515, 0.955);
	opacity: 0;
	z-index: -1;
	color: #7c8185;
	font-size: 14px;
	right: 1px;
}

.navxx .gnb li {
  position: relative; list-style:none;
}

.navxx .gnb li a {
  position: relative;
  padding-left: 25px;
}

.navxx .gnb li a::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 1px;
  z-index: 5;
  width: 11px;
  height: 11px;
  background: url(../images/bullet_nav.png) 0 0/100% no-repeat;
}

.navxx .gnb li a:hover {
  color: #c7c07a;text-decoration: none;
}

.navxx .gnb li a:hover::before {
  top: 1px;
  left: -3px;
  width: 19px;
  height: 20px;
  background-image: url(../images/bullet_nav_on.png);
}

.navxx .gnb li:not(:first-child) {
  padding-top: 35px;
}

.navxx .gnb li:not(:first-child)::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 6px;
  width: 1px;
  height: 100%;
  background-color: #3c3a38;
}

.navxx .gnb li.active a {
  color: #c7c07a;
}

.navxx .gnb li.active a::before {
  top: 1px;
  left: -3px;
  width: 19px;
  height: 20px;
  background-image: url(../images/bullet_nav_on.png);
}

.navxx.show {
	opacity: 1;
	z-index: 100;
}

  @keyframes ticker-kf {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-308rem, 0, 0); }
  }
  .img-ticker {
    animation: ticker-kf 60s linear infinite;
    height: 600px;
  }
  .w-64 {}
  .mx-4 { margin-left: 12px; margin-right: -8px; }
  .overflow-hidden { overflow: hidden; }
  .flex { display: flex; }
  .-mx-4 { margin-left: -1rem; margin-right: -1rem; }
  .mx-4 { margin-left: 0.2rem; /*间隔*/margin-right: 0rem; }
  .self-start { align-self: flex-start; }
#preview{position:absolute;border:1px solid #614635;background:#3c2116;padding:5px;display:none;margin-top:-300px;z-index:999999999;}
.m6piccon{float:left;position:relative;width:620px;height:145px;margin-left:402px;margin-top:240px;z-index:999}
.m6piccon li{float:left;width:94px;height:80px;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;background:#1c1010;padding:5px 3px;margin-top:10px;text-align:center;margin-left:0px}
.m6piccon li img {float:left;width:40px;height:40px}

.m7piccon{float:left;position:relative;width:320px;height:145px;margin-left:675px;margin-top:-526px;z-index:999}
.m7piccon li{float:left;width:94px;height:80px;padding:0 0px;margin-bottom:25px}
.m7piccon li a span{float:left;width:60px;height:15px;line-height:15px;border:1px solid #585858;font-size:12px;color:#ed2d01;background:#1c1010;padding:5px 3px;margin-top:10px;text-align:center;margin-left:0px}
.m7piccon li img {float:left;width:40px;height:40px}
.m8piccon{float:left;position:relative;width:220px;height:145px;margin-left:400px;margin-top:-526px;z-index:999}
.m8piccon li{float:left;width:94px;height:80px;padding:0 0px;margin-bottom:25px}
.m8piccon li a span{float:left;width:60px;height:15px;line-height:15px;border:1px solid #585858;font-size:12px;color:#ed2d01;background:#1c1010;padding:5px 3px;margin-top:10px;text-align:center;margin-left:0px}
.m8piccon li img {float:left;width:40px;height:40px}

.items {width:1220px;left:50%;margin-left:-513px;margin-top:320px;}
.items ul{}
.items li{ width:42px; height:176px; 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=90);-moz-opacity:0.9;opacity: 0.9;}



.navs {
	width: 1050px;
	height: 226px;
	left:50%;
	margin-left: -470px;
	top: 750px;
	z-index: 99;
}
.nav1,.nav2,.nav3,.nav4 {
	width: 320px;
	height: 224px;
	/* margin-right: 166px; */
}

.nav1 {
	/* margin-left:90px; */
	background:url(../images/xz.png) 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.png) no-repeat;
}

.nav3 {
	background:url(../images/xz.png) no-repeat;
}

.nav4 {
	background:url(../images/xz.png) no-repeat;
	/* margin-left: 38px; */
	float: right;
}





.m6piccon li img {
            transition: All 0.4s ease-in-out;
            -webkit-transition: All 0.4s ease-in-out;
            -moz-transition: All 0.4s ease-in-out;
            -o-transition: All 0.4s ease-in-out;
        }

.m6piccon li img:hover {
            transform: rotate(360deg) scale(1.1);
            -webkit-transform: rotate(360deg) scale(1.1);
            -moz-transform: rotate(360deg) scale(1.1);
            -o-transform: rotate(360deg) scale(1.1);
            -ms-transform: rotate(360deg) scale(1.1);
        }

		


#header {
	z-index: 999;
	position: absolute;
	top: 0;
	left: 50%;
	margin-left: -960px;
	width: 1920px;
	height: 60px;
	background-color: #000;
	color: #fff;
}

#header .logo,
#header .menu {
	position: absolute;
	left: 200;
}

#header .logo img {
	position: absolute;
	left: 200px;
	top: 48px;
	margin-top: -37px;
	margin-left: 0px;
}

#header .menu {
	left: 1080px;
	right: 0;
}

#header .menu ul {
  list-style-type: none;
  list-style: none;
  display: block;
  margin: 0;
  padding: 0;
}

#header .menu ul li {
  text-align: center;
  margin: 8px;
  padding: 0 15px;
  float: left;
  width: 128px;
}

#header .menu ul li .t1,
#header .menu ul li .t2 {
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

#header .menu ul li .t1 {
  font-size: 18px;
  margin-top: 5px;
  margin-bottom: 3px;
  font-weight: bold;
}

#header .menu ul li .t2 {
  font-size: 12px;
  font-weight: lighter;
  text-transform: uppercase;
  white-space: nowrap;
}

#header .menu ul li:hover .t1,
#header .menu ul li:hover .t2 {
  color: #fe2828;
}

#header .menu ul li:hover .t2 {
  letter-spacing: 1px;
}

#header .btn {
  display: none;
}

#Layer1 {
	position:relative;
	width:1500px;
	height:500px;
	z-index:1;
	top: 165px;
}
.Layer3 {
	position:relative;
	width:1500px;
	height:755px;
	z-index:1;    margin-top: 265px;
}
#Layer18 {
	position:absolute;
	width:1920px;
	height:1080px;
	z-index:5;
	top: 0px;
	left: 0px;
}
#Layer19 {
	position:absolute;
	width:200px;
	height:115px;
	z-index:1;
	left: 946px;
	top: 776px;
}
#Layer6 {
	position:absolute;
	width:120px;
	height:110px;
	z-index:2;
	left: 900px;
	top: 732px;
	background-image: url(images/qrcode.html);
	background-repeat: no-repeat;
}
#Layer2 {
	position:absolute;
	width:1018px;
	height:565px;
	z-index:2;
	background-image: url(images/fb.html);
	left: 450px;
	top: 80px;
}
.foot {
	position:absolute;
	width:1920px;
	height:132px;
	z-index:2;
	left: 50%;
	margin-top:0px;
    margin-left: -960px;
    background-image: url(../images/foot.jpg);
    background-repeat: no-repeat;
}
#Layer5 {
	position:absolute;
	width:700px;
	height:90px;
	z-index:1;
	left: 777px;
	top: 24px;
}
.STYLE2 {	font-size: 12px;
	color: #FFFFFF;
}


#Layer7 {
	position:absolute;
	width:95px;
	height:25px;
	z-index:4;
	left: 1398px;
	top: 30px;
}
#Layer8 {
	position:absolute;
	width:265px;
	height:65px;
	z-index:1;
	left: 503px;
	top: 906px;
}
#Layer9 {
	position:absolute;
	width:265px;
	height:65px;
	z-index:2;
	left: 828px;
	top: 906px;
}
#Layer10 {
	position:absolute;
	width:265px;
	height:65px;
	z-index:3;
	left: 1150px;
	top: 906px;
}
#Layer11 {
	position:absolute;
	width:850px;
	height:450px;
	z-index:2;
	left: 700px;
	top: 234px;
}
.STYLE3 {color: #CCCCCC; font-size: 16px; font-weight: bold; }
.STYLE4 {
	font-size: 12px;
	color: #CCCCCC;
}
.STYLE6 {font-size: 13px; color: #CCCCCC; }
