﻿
.index-banner{
	background: url(../../skin/images/banner_new.jpg) center top no-repeat;
	background-size: auto 100%;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.containerbox{
	width: 1220px;
	height: 600px;
	margin: 0 auto;
	position: relative;
}

.banner-list{
	position: absolute;
	left: 0;
	top: 4%;
	height: 92%;
	width: 135px;
	border-radius: 8px;
	background-color: rgba(0,0,0,.4);
}

.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;	
}

@keyframes scale {
            0% {
                transform: scale(.3);
            }
            50% {
                transform: scale(.8);
            }
            100% {
                transform: scale(.3);
            }
        }

        /* 闪烁动画 */
        @keyframes blink {
            0% {
                opacity: .1;
            }
            100% {
                opacity: 1;
            }
        }
