#top_photo_wrap {
	float: left;
	width: 623px;
	height: 220px;
	margin-left: 6px;
	background: #333;
	color: #fff;
}
.slick-slide {
	height: 220px;
}
.slick-slider img {
	width: 495px;
	height: auto;
	margin: 0 auto;
	border: none;
}

#top_photo {
	height: 220px;
	position: relative;
}

#mp_control_box {
	position: absolute;
	bottom: 5px;
	left: 5px;
}

#mp_control_box > button {
	width: 65px;
	height: 30px;
	text-align: left;
	text-indent: 0px;
	overflow: hidden;
	border: none;
	background-color: transparent;
	background-position: center center;
	background-repeat: no-repeat;
	cursor: pointer;
	color: transparent;
}
#mp_control_prev{ background-image: url(/img/photo/control/back.png);}
#mp_control_pause{ background-image: url(/img/photo/control/pause.png);}
#mp_control_play{ background-image: url(/img/photo/control/play.png);}
#mp_control_next{ background-image: url(/img/photo/control/forward.png);}

#mp_control_prev, #mp_control_next{
	opacity: 0.6;
	-webkit-transition: opacity 0.15s ease-in;
	transition: opacity 0.15s ease-in;
}
#mp_control_prev:hover, #mp_control_next:hover{
	opacity: 1;
}

.mp_control_hide{
	display: none;
}

#top_photo button.slick-arrow {
	display: none !important;
}
.photo_caption_box {
	display: block;
	width: 623px;
	height: auto;
	position: absolute;
	right: 0;
	bottom: 0;
	z-index: 10;
	line-height: 42px;
	text-align: right;
	background: #000;
}
.photo_num{
	padding: 0 10px;
}

#top_photo_progress.anim {
	width: 0%;
	height: 1px;
	background: rgba(255,255,255,0.5);
	position: absolute;
	bottom: 40px;
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
#top_photo_progress.anim{
	-webkit-animation-duration: 5s;
	        animation-duration: 5s;
	-webkit-animation-name: tp_prog;
	        animation-name: tp_prog;
	-webkit-animation-iteration-count: infinite;
	        animation-iteration-count: infinite;
	-webkit-animation-timing-function: linear;
	        animation-timing-function: linear;
}
@-webkit-keyframes tp_prog{
	0%{
		width: 0%;
	}
	100%{
		width: 100%;
	}
}
@keyframes tp_prog{
	0%{
		width: 0%;
	}
	100%{
		width: 100%;
	}
}