#album{
	overflow:hidden;
}
.workshow section{
    position: relative;
    margin: 0 0 50px;
}
.workshow h2{
	background: #e68c00;
    display: inline-block;
    position: absolute;
    right: 0;
    padding: 11px 20px;
    font-weight: normal;
    top: 15%;
    width: 30%;
    transition: all cubic-bezier(0.39, -0.08, 0, 1.21) 1s;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	z-index: 2;
}
.workshow h2 a{
	color:#fff;
}
.workshow .art{
    position: absolute;
    background: #fff;
    box-shadow: 0 0 30px rgba(136, 136, 136, 0.29);
    width: 30%;
    top: 30%;
    left: 0;
    padding: 20px;
    line-height: 180%;
	transition: all cubic-bezier(0.39, -0.08, 0, 1.21) 1s;
	z-index: 2;
}
.workshow .art:after{
    content: '';
    width: 2px;
    height: 50%;
    background: #29abe2;
    position: absolute;
    bottom: -10%;
    right: 5%;
    transform: rotate(45deg);
	transition: all cubic-bezier(0.39, -0.08, 0, 1.21) 1s;
}
.workshow .art h3{
	color: #404040;
    font-size: 14px;
    height: 75px;
    overflow: hidden;
	font-weight: normal;
}
.workshow .art p{
	text-align: right;
    margin: 10px 0 0;
}
.workshow .art p a{
	color:#29abe2;
	font-size:14px;
	margin-right: 20%;
}
.workshow .photo{
	width: 100%;
	transition: all cubic-bezier(0.39, -0.08, 0, 1.21) 1s;
}
.workshow .photo a{
	display:block;
	background-repeat:no-repeat;
	background-position:50% 50%;
	background-size:cover;
}
.workshow .photo a img{
	width:100%;
}
.workshow section:nth-child(odd) h2{
    right: inherit;
    left: 0;	
}
.workshow section:nth-child(even) .art{
    left: inherit;
    right: 0;	
}
.workshow section:after{
    content: '';
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #ffa212 0%, #29abe2 100%);
    position: absolute;
    top: 0;
    opacity: 0;
    z-index: 1;
	transition:all linear 0.3s;
}
#album-info{
	display: flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: -webkit-flex;
	flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	-o-flex-wrap: wrap;
	-webkit-flex-wrap: wrap;
}
#album-info::after {
	content: '';
	flex-grow: 999999999;
	-moz-flex-grow: 999999999;
	-ms-flex-grow: 999999999;
	-o-flex-grow: 999999999;
	-webkit-flex-grow: 999999999;
	min-width: 200px;
	height: 0;
}
.album_box {
	margin: 10px;
	position: relative;
	height: 350px;
	flex-grow: 1;
	-moz-flex-grow: 1;
	-ms-flex-grow: 1;
	-o-flex-grow: 1;
	-webkit-flex-grow: 1;
	background-color: #fff;
	transition:all ease-in-out 0.3s;
}
.album_box img{
	max-width: 100%;
	min-width: 100%;
	height: 350px;
	object-fit: cover;
	-moz-object-fit: cover;
	-ms-object-fit: cover;
	-o-object-fit: cover;
	-webkit-object-fit: cover;
	vertical-align: bottom;
}
.album_box ,
.album_box img{
	height:270px;
}

@media screen and (max-width: 1440px) {
	.workshow .art p a{
		font-size:12px;
	}
	.workshow h2{
		font-size:16px;
	}
	.album_box ,
	.album_box img{
		height:230px;
	}
}
@media screen and (min-width: 1024px) {
	.workshow section:hover:after{
		opacity: 0.5;
	}
	.workshow .art:hover:after{
		transform: rotate(90deg);
		bottom: -15%;
		right: 35%;
		background: #e60000;
	}
}
@media screen and (max-width: 980px) {
	.workshow section:after{
		display:none;
	}
	.album_box ,
	.album_box img{
		height:180px;
	}
}
@media screen and (max-width: 768px) {
	.workshow .art,
	.workshow section:hover .art{
		top: 45px;
		width: 40%;
	}
	.workshow h2{
		width: 40%;
		top: 0;
	}
	.workshow .art h3{
	    height: 46px;	
	}
	.workshow .art p a{
		margin-right: 0;
	}
	#album .photoItem{
		width:49%;
		margin:0 0.5% 30px;
	}
}
@media screen and (max-width: 480px) {
	.workshow h2{
		position: inherit;
		width: 100%;	
	}
	.workshow .photo{
		
	}
	.workshow h2, 
	.workshow section:hover h2{
		top:-15%;
	}
	.workshow .art, .workshow section:hover .art{
		box-shadow: none;
		position: inherit;
		width: calc(100% - 42px);
		top: 0;
		border: 1px solid #e7e7e7;	
	}
	#album .photoItem{
		width:48%;
		margin:0 1% 30px;
	}
}