/* Default tab style */


.tabs {
	position: relative;
	overflow: hidden;
	margin: 0 auto;
	width: 100%;
	font-weight: 300;
	font-size: 1.25em;
}

/* Nav */
.tabs nav {
	text-align: center;
}

.tabs nav ul {
	position: relative;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: flex;
	margin: 0 auto;
	padding: 0;
	list-style: none;
	-ms-box-orient: horizontal;
	-ms-box-pack: center;
	-webkit-flex-flow: row wrap;
	-moz-flex-flow: row wrap;
	-ms-flex-flow: row wrap;
	flex-flow: row wrap;
	-webkit-justify-content: center;
	-moz-justify-content: center;
	-ms-justify-content: center;
	justify-content: center;
}

.tabs nav ul li {
	position: relative;
	z-index: 1;
	display: block;
	margin: 0;
	text-align: center;
	-webkit-flex: 1;
	-moz-flex: 1;
	-ms-flex: 1;
	flex: 1;
}

.tabs nav a {
	position: relative;
	display: block;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	line-height: 2.5;
}

.tabs nav a span {
	vertical-align: middle;
	font-size: 0.75em;
}

.tabs nav li.tab-current a {
	color: #74777b;
}

.tabs nav a:focus {
	outline: none;
}


/* Content */
.content-wrap {
	position: relative;
}

.content-wrap section {
	display: none;
	margin: 0 auto;
	opacity: 0;
	text-align: center;
  animation: light001 1s linear 1 ;	
}

.content-wrap section.content-current {
	display: block;
	opacity: 1;

}

.content-wrap section p {
	margin: 0;

	color: rgba(40,44,42,0.05);
	font-weight: 900;
	font-size: 4em;
	line-height: 1;
	    text-align: left;
}
.content-wrap section .yyname{
  animation: light001 1s linear 1 ;
}
.content-wrap section .yyimg{
  animation: light001 1.5s linear 1 ;
}
.content-wrap section .sec1_2_1, .content-wrap section .sec1_2 .yycontent1{
  animation: light001 2s linear 1 ;
}

.content-wrap section .sec1_2 .yycontent2{
  animation: light001 2.5s linear 1 ;
}
.content-wrap section .sec1_2 .yycontent3{
  animation: light001 3s linear 1 ;
}

.sec1_2_1{display:none;}


 @keyframes light001 {
 0% {
opacity: 0;
transform:translate(0,200px);
-webkit-transform:translate(0,200px);
-moz-transform:translate(100px,0px);
-o-transform:translate(100px,0px);
-ms-transform:translate(100px,0px); 
}
 
 100% {
opacity: 1;

}
}