@charset "utf-8";
/* CSS Document */



#photoshow{
	position: fixed;
	top:0;
	left:0;
	width:100%;
	height:100vh;
	background-color: #000;
	overflow:hidden;
	z-index: 99999;
}

#photoshow-header {
	height:30px;
	width:100%;
	overflow:hidden;
}
#photoshow-header #photo-title{
	float:left;
	width:-moz-calc(100% - 50px);
    width:-webkit-calc(100% - 50px);
    width: calc(100% - 50px);
	line-height: 30px;
	color:#FFF;
	overflow: hidden;
	cursor: pointer;
}
#photoshow-header #photo-title i{
	padding: 8px 10px;
}
#photoshow-header #line-share{
	float:right;
	width:30px;
	height:30px;
	padding: 5px;
}

#photoshow-content{
	width: 100%;
    height: calc(100vh - 30px);
	overflow:hidden;
}
.owl-photo {
	padding-bottom:30px;
	position:relative;
}
.owl-photo .owl-controls {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	text-align: center;
	-webkit-tap-highlight-color: transparent;
}
.owl-photo .owl-nav{
}
.owl-photo .owl-nav [class*=owl-] {
    color: #000;
    font-size: 14px;
    margin: 5px;
    padding: 4px 7px;
    background: #D6D6D6;
    display: inline-block;
    cursor: pointer;
    border-radius: 3px;
}
.owl-photo .owl-dots .owl-dot{
    display:none;
    zoom: 1;
}

.owl-photo .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    margin: 5px 7px;
    background: #d6d6d6;
    display: block;
    -webkit-backface-visibility: visible;
    -webkit-transition: opacity 200ms ease;
    -moz-transition: opacity 200ms ease;
    -ms-transition: opacity 200ms ease;
    -o-transition: opacity 200ms ease;
    transition: opacity 200ms ease;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
}
.owl-photo .owl-dots .owl-dot.active span, 
.owl-photo .owl-dots .owl-dot:hover span {
    background: #F00;
}

.owl-photo .item{
	width: 100%;
    height: calc(100vh - 100px);
	margin:20px auto;
    text-align: center;
    overflow: hidden;
    position: relative;
}
.owl-photo .item img{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
	width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
}

