.da-thumbs {
 float: left;
    list-style: none outside none;

    padding: 0;
    position: relative;
    width: 990px;
}
.da-thumbs li {
	float: left;
	margin: 5px;
	background: #fff;
	padding: 3px;
	position: relative;
	box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
.da-thumbs li a,
.da-thumbs li a img {
	display: block;
	position: relative;
}
.da-thumbs li a {
	overflow: hidden;
}
.da-thumbs li a div {
	position: absolute;
	background: rgba(75,75,75,0.7);
	width: 100%;
	height: 100%;
}
.da-thumbs li a div.da-animate {
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
/* Initial state classes: */
.da-slideFromTop {
	left: 0px;
	top: -100%;
}
.da-slideFromBottom {
	left: 0px;
	top: 100%;
}
.da-slideFromLeft {
	top: 0px; 
	left: -100%;
}
.da-slideFromRight {
	top: 0px;
	left: 100%;
}
/* Final state classes: */
.da-slideTop {
	top: 0px;
}
.da-slideLeft {
	left: 0px;
}
.da-thumbs li a div span {
	display: block;
	padding: 10px 0;
	margin: 40px 20px 20px 20px;
	text-transform: uppercase;
	font-weight: normal;
	color: rgba(255,255,255,0.9);
	text-shadow: 1px 1px 1px rgba(0,0,0,0.2);
	border-bottom: 1px solid rgba(255,255,255,0.5);
	box-shadow: 0 1px 0 rgba(0,0,0,0.1), 0 -10px 0 rgba(255,255,255,0.3);
}

#Layer13{
	background-color: #deeeff;
	display: flex;
	justify-content: center;
	align-items: center;
	height: auto;
}
#Layer13_Container{
	width: 600px;
	background-color: white;
	padding: 30px;
	box-shadow: 0 2px 16px rgba(0, 0, 0, .1);
	border-radius: 20px;	
	margin-top: 30px;
	margin-bottom: 30px;
}
.tab_box{
	width: 100%
	display: flex;
	justify-content: space-around;
	align-items: center;
	border-bottom: 2px solid rgba(229, 229, 229);
	position: relative;
}
.tab_box .tab_btn{
	font-size: 18px;
	font-weight: 600;
	color: #919191;
	background: none;
	border: none;
	padding: 18px;
	cursor: pointer;
}

.content_box {
	padding: 20px;
}
.content_box .content1{
	display: none;
	animation: moving .5s ease;
}
@keyframes moving {
	from{transform: translateX(50px); opacity: 0;}
	to{transform: translateX(0px); opacity: 1;}
}

.content_box .content1 p{
	margin-top: 20px;
}
.tab_box .tab_btn.active{
	color: #607aff;
}
.content_box .content1.active{
	display: block;
}
.line{
	position: absolute;
	top: 54px;
	left: 0;
	width: 90px;
	height: 5px;
	background-color:#607aff;
	border-radius: 10px;
	transition: all .3s ease-in-out;
}