@charset "utf-8";
/* CSS Document */
.banner .swiper-slide .txt_all p{
	transform: translateY(60px);
    transition: all 1s;
    transition-delay: 0.3s;
    opacity: 0;
}
.banner .swiper-slide .more{
	transform: translateY(60px);
    transition: all 1s;
    transition-delay: 0.9s;
    opacity: 0;
}
.banner .swiper-slide-active .txt_all p,.banner .swiper-slide-active .more{
    transform: translateY(0);
    opacity: 1;
}
.index_bar2a ul,.index_bar3 ul{
	opacity: 0;
}
.index_bar2a .swiper-slide-active ul,.index_bar3 .swiper-slide-active ul{
	opacity: 1;
}
.index_bar2a ul li{
	transform: translateY(60px);
    transition: all 0.4s linear;
    opacity: 0;
}
.index_bar2a ul li:nth-of-type(1){
	transition-delay: 0.2s;
}
.index_bar2a ul li:nth-of-type(2){
	transition-delay: 0.5s;
}
.index_bar2a ul li:nth-of-type(3){
	transition-delay: 0.8s;
}
.index_bar2a ul li:nth-of-type(4){
	transition-delay: 1.1s;
}
.index_bar2a .swiper-slide-active ul li{
    transform: translateY(0);
    opacity: 1;
}