
/* diashow */

.diashow{
	position:relative;
	width:100%;
	padding-bottom:20px;
}
.diashow-images{
	position:relative;
	width:100%;
	height:300px;
	overflow:hidden;
}
.diashow-arrow-left{
	position:absolute;
	width:33px;
	height:45px;
	margin-top:157px;
	z-index:9;
	cursor:pointer;
}
.diashow-arrow-right{
	position:absolute;
	width:33px;
	height:45px;
	margin-top:157px;
	right:0px;
	z-index:10;
	cursor:pointer;
}
.diashow-box{
	position:absolute;
	text-align:left;
	/*height:71px;*/
	left:0px;
	color:#333333;
	font-size: 1.3rem;
	z-index:8;
}
.diashow-box-subline{
	float:left;
	color:#333333;
	font-family: 'Open Sans', sans-serif;
	font-weight:600;
	font-size: 1.3rem;
}
.diashow-box a {
	color:#d8d3b4;
	text-decoration:none;
}
.diashow-box a:hover {
	color:#65b6d3;
}
.diashow-box  a:active {
	color:#65b6d3;
}
.diashow-image{
	width:100%;
	height:100%;
	background-size:cover;
	background-position:center center;
	/*position:absolute;
	top:0;
	left:0;*/
}
.diashow-image-img{
	height:100%;
	width:auto;
	float:left;
}

.diashow-progress-area{
	float:right;
	right:10px;
	height:3px;
	bottom:15px;
	position:absolute;
	z-index:20;
}
.diashow-progress{
	float:left;
	width:10px;
	height:10px;
	border-radius:20px;
	margin-right:5px;
	cursor:pointer;
}
.diashow-progress.progress-on{
	background-color:#ffffff;
}
.diashow-progress.progress-off{
	background-color:#aaaaaa;
	background-color:rgba(0,0,0,0.5);
}
.diashow li{
	margin-left:0;
}
.diashow-thumbs{
	float:right;
	width:30%;
	margin-left:30px;
	overflow:hidden;
}
.diashow-thumb{
	display:inline-block;
	width:calc(33.33% - 6px);
	height:auto;
	margin-right:6px;
	margin-bottom:6px;
	vertical-align:top;
	box-sizing:border-box;
	transition:opacity 0.2s;
	cursor:pointer;
	border:1px solid transparent;
}
.diashow-thumb:hover{
	opacity:0.8;
}
.diashow-thumb._active{
	border:1px solid #5d77b0;
	border-radius:2px;
}
.diashow[data-type="5"]{
	width:calc(70% - 30px); 
	float:left;
}
.diashow[data-type="5"] .lSAction>.lSNext{
	right:10px;
}
.diashow[data-type="5"] .lSAction>.lSPrev{
	left:10px;
}
@media(min-width:1000px){
	.diashow[data-type="5"] .lSGallery{
		display:none;
	}
}
@media(max-width:1000px){
	.diashow[data-type="5"]{
		float:none;
		width:100%;
	}
	.diashow-thumbs{
		float:none;
		width:100%;
		margin:0;
		margin-top:20px;
		display:none;
	}
	.diashow-thumb{
		
	}
}