﻿
.index-banner{
	text-align: center;
	position: relative;
	overflow: hidden;
}

.banner-list{
	position: absolute;
	left: 50%;
	transform: translateX(-610px);
	top: 4%;
	height: 92%;
	width: 135px;
	border-radius: 8px;
	background-color: rgba(0,0,0,.4);
	z-index: 9;
}

.banner-list .title{
	line-height: 40px;
	height: 40px;
	color: #fff;
	text-align: center;
	background-color: #bb000b;
	border-top-right-radius: 8px;
	border-top-left-radius: 8px;
}

.banner-list .title h3{
	font-size: 14px;
	font-weight: initial;
	background: url(../images/list_icon.png) left center no-repeat;
	padding-left: 25px;
	display: inline-block;
}

.list-menu-box ul li{
	cursor: pointer;
	position: relative;
}

.list-menu-box ul li:hover h2{
	color: #ce0f1a;
	transition: .5s;
	background-color: #fff;
}

.list-menu-box ul li h2{
	font-size: 14px;
	text-align: center;
	line-height: 48px;
	color: rgba(255,255,255,.8);
	border-bottom: 1px solid rgba(255,255,255,.15);
	font-weight: initial;
	transition: .5s;
}

.list-menu-box ul li:hover ul{
	display: block;
}

.list-menu-box ul li ul{
	display: none;
	position: absolute;
	left: 135px;
	top: 0;
	width: 480px;
	padding: 10px 15px;
	background-color: #fff;
	border-top-right-radius: 8px;
	border-bottom-right-radius: 8px;
	border-bottom: 5px solid #ce0f1a;
	z-index: 9;
}

.list-menu-box ul li ul li{
	float: left;
	margin: 5px 8px;
}

.list-menu-box ul li ul li a{
	color: #666;
	font-size: 14px;
	transition: .5s;
}

.list-menu-box ul li ul li a:hover{
	color: #ce0f1a;
	transition: .5s;
}


.list-ten-link{
	
}

.list-ten-link ul li a{
	font-size: 20px;
	color: #652100;
	line-height: 48px;
	font-weight: bold;
	transition: all 0.3s;
	display: block;
	width: 120px;
	max-height: 48px;
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
}

.list-ten-link ul li a:hover{
	transform: scale(1.06);
	transition: all 0.3s;
}

.list-ten-link ul li:nth-of-type(1) a{
	position: absolute;
	left: 26.5%;
	top: 228px;
	transform: translateX(-50%);
}

.list-ten-link ul li:nth-of-type(2) a{
	position: absolute;
	left: 50%;
	top: 162px;
	transform: translateX(-50%);
}

.list-ten-link ul li:nth-of-type(3) a{
	position: absolute;
	left: 73.3%;
	top: 228px;	
	transform: translateX(-50%);
}



.light-beam{
	animation: scale 2s infinite ease-in-out, 
	           blink 1s infinite alternate;
}

.light-beam.beam-1{
	position: absolute;
	left: 330px;
	top: 135px;
}

.light-beam.beam-2{
	position: absolute;
	left: 625px;
	top: 65px;
}

.light-beam.beam-3{
	position: absolute;
	right: 200px;
	top: 138px;	
}


.particle-pic{
	position: absolute;
	left: 50%;
	top: 0;
	transform: translateX(-50%);
}


.index-banner {
	position: relative;
	z-index: 1;
}

.containerbanner{
	width: 1220px;
	height: 600px;
	margin: 0 auto;
	position: relative;
	z-index: 9;
}

.index-banner .carousel-slide img.pc {
	width: 100%;
	height: 100vh;
	object-fit: cover;
}

.index-banner .carousel-indicators {
	bottom: 25px;
}

.index-banner .carousel-controls span{
	display: none;
}


.responsive-carousel {
	position: relative;
	width: 100%;
	margin: 0 auto;
	overflow: hidden;
}

.carousel-container {
	display: flex;
	transition: transform 0.5s ease;
}

.carousel-slide {
	text-align: center;
	width: 100%;
	background-color: #fff;
	position: relative;
}

.carousel-slide a{
	display: block;
	position: relative;
	z-index: 9;
}

.carousel-slide img.phone {
	display: none;
}

.carousel-slide .particle-container{
	position: absolute;
	top: 5vh;
	left: 0;
	z-index: 1;
}

.carousel-controls {
	position: absolute;
	top: 50%;
	width: 100%;
	display: flex;
	justify-content: space-between;
	transform: translateY(-50%);
}

.carousel-controls span {
	cursor: pointer;
	padding: 10px;
	background: rgba(0, 0, 0, 0.5);
	color: white;
	font-weight: bold;
	user-select: none;
}

.carousel-indicators {
	position: absolute;
	bottom: 0px;
	width: 100%;
	text-align: center;
	z-index: 9;
}

.carousel-indicators span {
	display: inline-block;
	width: 20px;
	height: 6px;
	margin: 0 5px;
	background-color: rgba(255, 255, 255, .2);
	border-radius: 3px;
	cursor: pointer;
	transition: all 0.5s;
}

.carousel-indicators span.active {
	width: 24px;
	background-color: rgba(255, 255, 255, 1);
	transition: all 0.5s;
}



@keyframes scale {
            0% {
                transform: scale(.3);
            }
            50% {
                transform: scale(.8);
            }
            100% {
                transform: scale(.3);
            }
        }

        /* 闪烁动画 */
        @keyframes blink {
            0% {
                opacity: .1;
            }
            100% {
                opacity: 1;
            }
        }
