﻿@charset "utf-8";
/* CSS Document */

.index-pro li, .iCase-block .t1, .iCase-block .t2, .iCase-block .more {
	transition: all .6s ease-in-out .2s;
	-webkit-transition: all .6s ease-in-out .2s;
}
.index-pro li, .iCase-block .t1, .iCase-block .t2, .iCase-block .more {
	opacity: 0;
}
.index-pro li {
	transform: translateX(-200px);
	-webkit-transform: translateX(-200px);
}
.iCase-block .t1, .iCase-block .t2 {
	transform: translateY(-50px);
	-webkit-transform: translateY(-50px);
}
.iCase-block .more {
	transform: translateY(50px);
	-webkit-transform: translateY(50px);
}
.index-pro li:nth-child(2) {
	transition-delay: .3s;
	-webkit-transition-delay: .3s;
}
.index-pro li:nth-child(3) {
	transition-delay: .4s;
	-webkit-transition-delay: .4s;
}
.index-pro li:nth-child(4) {
	transition-delay: .5s;
	-webkit-transition-delay: .5s;
}
.iCase-box:hover .iCase-block .t1, .iCase-box:hover .iCase-block .t2, .iCase-box:hover .iCase-block .more, .index-pro.active li {
	transform: translate(0);
	-webkit-transform: translate(0);
	opacity: 1;
}
