:root {
	--vis-height: 60vh;
    --vis-scale-d-height: 74vh;
	--vis-bgcolor: #e3e3e3;
	--vis-image-bindwrap: var(--bindwrap-width);
}

.vis-face {
	position: relative;
	z-index: 0;
	margin-bottom: var(--share-space);
}
.vis-face:nth-of-type(1) {
	background-color: var(--vis-bgcolor);
}
.vis-face .bindwrap {
	max-width: var(--vis-image-bindwrap);
	margin-left: auto;
	margin-right: auto;
	position: relative;
	z-index: 0;
	height: 100%;
	overflow: hidden;
}

/*scale*/
.vis-face[data-scale="wide"] .bindwrap,
.vis-face[data-scale="d"] .bindwrap {
	max-width: 100%;
}
.vis-face[data-scale="fit"] .bindwrap {
	overflow: visible;
}
@media only screen and (min-width: 721px){
	.vis-face[data-scale="d"] {
		--vis-height: var(--vis-scale-d-height);
	}
	.vis-face[data-scale="fit"] {
		--vis-height: auto;
	}
}
@media only screen and (max-width: 720px){
	.vis-face[data-scale="d"] {
		--vis-height: var(--vis-scale-d-height);
	}
	.vis-face[data-scale="fit"] {
		--vis-height: auto;
	}
}
@media only screen and (min-width:721px) {
	
}

/*cat: cover*/
.vis-face .cover {
	position: absolute;
	z-index: 10;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
}
.vis-face .cover {
    text-align: center;
    color: #fff;
    font-size: 1.2em;
    text-shadow: 0 0 3px rgba(0, 0, 0, 0.35);
}
	.vis-face .cover .title {
        font-size: 1.5em;
        font-weight: 500;
    }
	.vis-face .cover .description {
        font-size: 1.0em;
        font-weight: 400;
    }
@media only screen and (max-width:799px) {
    .vis-face .cover {
        font-size: 3.6vw;
    }
    .vis-face .cover .abs-centering {
        width: 100%;
    }
}

/*canvas*/
.vis-face .canvas {
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
	.vis-face .canvas::before {
		content: "";
		display: block;
		padding-top: var(--vis-height);
	}
	.vis-face .canvas .bgi {
		position: absolute;
		z-index: -12;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
	}
	.vis-face .canvas .bgi img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		object-position: center;
		position: absolute;
		z-index: 0;
		top: 0;
		left: 0;
		transform: scale(1.0);
	}
@media only screen and (max-width:799px) {
	.vis-face .wide-bind {
		padding: 0;
	}
	.vis-face .canvas::before {
		padding-top: var(--vis-height);
	}
}

/*cat: slide wrap*/
.vis-face .slide-wrap {
	position: absolute;
	z-index: -10;
	width: 100%;
	height: 100%;
	top: 0px;
	left: 0px;
}
.vis-face[data-slidestat=""] .slide-wrap {
	visibility: hidden;
}
.vis-face[data-slidestat="loading"] .slide-wrap {
    background-image: url(/share/im/prl_ring-wh.png);
    background-position: left 1.5em top 1.5em;
    background-size: auto 2em;
}
	.vis-face .slide-wrap li {
		display: block;
		width: 100%;
		height: 100%;
		position: absolute;
		z-index: 0;
		top: 0;
		left: 0;
		line-height: 0;
		margin: 0;
		margin-bottom: 0;
	}
	.vis-face[data-isbegin="true"] .slide-wrap li {
		visibility: hidden;
	}
	.vis-face[data-isbegin="true"] .slide-wrap li[data-vn="1"] {
		visibility: visible;
	}
		.vis-face .slide-wrap li::before {
			padding-top: var(--vis-height);
			content: "";
			display: block;
			width: 100%;
		}
		.vis-face .slide-wrap li picture,
		.vis-face .slide-wrap li figure {
			display: block;
			width: 100%;
			height: 100%;
		}
		.vis-face .slide-wrap li img {
			width: 100%;
			height: 100%;
			object-fit: cover;
			object-position: center;
			position: absolute;
			z-index: 0;
			top: 0;
			left: 0;
		}
	.vis-face .slide-wrap li.standby {
		opacity: 0;
	}

/*cat: flowdots*/
.vis-face .flowdots {
    position: absolute;
    z-index: 15;
    bottom: 0vw;
    left: 0px;
    width: 100%;
    text-align: center;
    font-size: 16px;
    line-height: 1em;
    padding: 4em 0;
    white-space: nowrap;
}
.vis-face[data-slidestat=""] .flowdots,
.vis-face[data-slidestat="loading"] .flowdots {
	visibility: hidden;
}
.vis-face[data-slidestat="loaded"] .flowdots {
	visibility: visible;
}
.vis-face[data-quantimages="1"] .flowdots {
	visibility: hidden;
}
.vis-face .flowdots[data-disabled="true"] {
	visibility: hidden;
}
	.vis-face .flowdots a {
		display: inline-block;
		text-align: center;
		width: 1em;
		height: 1em;
		line-height: 1em;
		padding: 0;
		padding-left: 0.6em;
		padding-right: 1.2em;
	}
	.vis-face .flowdots a[data-select="true"] {
		cursor: default;
	}
		.vis-face .flowdots a::before {
			content: "";
			display: inline-block;
			width: 10px;
			height: 10px;
			line-height: 1em;
			padding: 0;
			margin: 0;
			border-radius: 16em;
			background-color: rgba(255, 255, 255, 0.10);
			border: solid 2px rgba(255, 255, 255, 0.46);
			box-shadow: 0 0 2px rgba(0, 0, 0, 0.13);
		}
		.vis-face .flowdots a[data-select="true"]::before {
			content: "";
			display: inline-block;
			width: 10px;
			height: 10px;
			line-height: 1em;
			padding: 0;
			margin: 0;
			border-radius: 16em;
			background-color: #fff;
			border: solid 2px #fff;
			box-shadow: 0px 0px 5px rgba(255,255,255,1.0);
		}
@media only screen and (max-width:820px) {
    .vis-face .flowdots {
        bottom: 4.5vh;
    }
}
@media only screen and (max-width:640px) {
	.vis-face .flowdots a::before {
        width: 2vw;
        height: 2vw;
    }
    .vis-face .flowdots a[data-select="true"]::before {
        width: 2vw;
        height: 2vw;
    }
}
@media only screen and (min-width:641px) {
    .vis-face .flowdots a[data-select=""]:hover {
        transform-origin: center;
        transform: scale(1.4);
        transition: all 0.3s;
    }
}

/*cat: fit scale*/
/*first only image*/
.vis-face[data-scale="fit"] .canvas {
	position: static;
	overflow: visible;
}
    .vis-face[data-scale="fit"] .canvas .bgi img {
        width: 100%;
        height: auto;
        object-fit: initial;
        object-position: center;
        position: static;
        transform: scale(1.0);
    }
    .vis-face[data-scale="fit"] .canvas::before {
        display: none;
    }
    .vis-face[data-scale="fit"] .slide-wrap {
        position: static;
    }
		.vis-face[data-scale="fit"] .slide-wrap li {
			display: none;
		}
		.vis-face[data-scale="fit"] .slide-wrap li:nth-child(1) {
		    display: block;
		    position: static;
		    visibility: visible;
		}
			.vis-face[data-scale="fit"] .slide-wrap li::before {
				padding-top: 0;
			}
			.vis-face[data-scale="fit"] .slide-wrap li img {
			    object-fit: fill;
			    width: 100%;
			    height: auto;
			    position: static;
			}
.vis-face[data-scale="fit"] .flowdots {
	display: none;
}

/*cat: caption*/
.vis-face .caption {
    display: none;
    position: absolute;
    z-index: 10;
    bottom: 0;
    left: 0;
    width: 40vw;
}
.vis-face .caption {
	color: #fff;
	padding: 1.6em 2.0em;
	text-shadow: 0 0 2px rgba(0, 0, 0, 0.13);
}
.vis-face[data-displaycaption="true"] .caption {
	display: block;
}
    .vis-face .caption > * {
        max-height: 1.8em;
        white-space: nowrap;
        overflow: hidden;
    }
	.vis-face .caption .title {
		font-size: 1.0em;
		font-weight: 500;
		margin-bottom: 0.6em;
		opacity: 0.9;
	}
	.vis-face .caption .description {
		font-size: 0.94em;
		font-weight: 400;
		line-height: 1.5em;
		margin-bottom: 0.6em;
		opacity: 0.76;
	}
.vis-face .caption[data-efx=""] {
	opacity: 0.0;
}
.vis-face .caption[data-efx="true"] {
	animation-name: visCaptionVisible;
	animation-duration: 1.0s;
	animation-timing-function: ease-in;
	animation-iteration-count: 1;
	animation-fill-mode: forwards;
}
@media only screen and (max-width:820px) {
    .vis-face .caption {
        font-size: 0.92em;
        width: 100%;
    }
}

/*cat: control*/
.vis-face .controlScreen {
	position: absolute;
	z-index: 20;
	width: 100%;
	top: 0;
	left: 0;
}
.vis-face .viewanker {
	display: inline-block;
	position: absolute;
	z-index: 10;
	top: 0;
	right: 0;
	padding: 1.6em 1.6em;
}
.vis-face .viewanker[data-enable=""] {
	display: none;
}
	.vis-face .viewanker::before {
		content: url(/share/im/mrk_focus-line-i.svg);
		display: inline-block;
		width: 3em;
		height: 3em;
	}
@media only screen and (max-width:740px) {
    .vis-face .viewanker::before {
		width: 10vw;
		height: 10vw;
	}
}

/*cat: effect*/
.vis-face .efxVisIn {
	animation-name: visFadeIn;
	animation-duration: var(--vis-fadesec);
	animation-timing-function: linear;
	animation-iteration-count: 1;
	animation-fill-mode: forwards;
}
.vis-face .slide-wrap li {
    visibility: hidden;
}
.vis-face .slide-wrap li.efxVisIn {
	visibility: visible;
}
.vis-face[data-efxzoom="true"] .efxVisIn img.cast {
	animation-name: visZoomFlow;
	animation-duration: var(--vis-flowsec);
	animation-timing-function: linear;
	animation-iteration-count: 1;
	animation-fill-mode: forwards;
}
.vis-face[data-efxzoom="true"][data-scale="fit"] .efxVisIn img.cast {
	animation: none;
}
@keyframes visFadeIn {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1.0;
	}
}
@keyframes visZoomFlow {
	0% {
		transform: scale(1.0);
	}
	100% {
		transform: scale(var(--vis-efxzoomrate));
	}
}
@keyframes visCaptionVisible {
	0% {
		transform: translateX(0em);
		opacity: 0;
	}
	100% {
		transform: translateX(0em);
		opacity: 1.0;
	}
}