@charset "utf-8";
video {
		/*height: 394px;*/
		width: 100%;
		max-width: 700px;
	}

@keyframes fadeOut {
  0% {
     opacity: 1;
  }
  100% {
     opacity: 0;
  }
}
@keyframes fadeIn {
  0% {
     opacity: 0;
  }
  100% {
     opacity: 1;
  }
}
.firstLoginCheckBox {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 99999;
	width: 100%;
	height: 394px;
}
.loginShowBox {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 999999;
	display: none;
	width: 100%;
	height: 394px;
	background-color: rgba(0,0,0,0.8);
	display: none;
	animation: fadeOut 0.3s ease-out forwards;
}
.loginShowBox:hover {
	display: block;
	animation: fadeIn 0.3s ease-out forwards;
}
.loginShowBoxText {
	display: flex;
	align-items: center;
	margin-left: 80px;
	width: 100%;
	height: 100%;
}
.loginShowBoxText h4 {
	font-weight: normal !important;
	font-size: 21px !important;
	line-height: 33px;
}
.loginShowBoxText p,
.loginShowBoxText h4{
	color: #fff !important;
}
.loginShowBoxText p {
	font-size: 12px !important;
	line-height: 1;
}
.loginShowBoxText .btn{
	margin-top: 15px;
	font-size: 12px !important;
	line-height: 35px;
	width: 82px;
	background:#666;
}
.loginShowBoxText .btn span {
	padding: 0;
}
.loginShowBoxText .btn:hover{
	background:#ed8804;
}
.loginShowBox .sideBtnList {
	display: none;
	width: 200px;
	position: absolute;
	left: calc(50% - 100px);
	top: calc(50% - 140px);
}
.loginError {
	display: none;
	text-align: center;
	font-size: 13px !important;
    color: rgb(197, 13, 18) !important;
}
.movList {
	padding: 20px;
	background: #f2f2f2;
}
.movWrap {
	position: relative;
	width: 100%;
	cursor: pointer;
}
.movWrap .movPoster,
.movWrap .movText {
	width:　100%;
	box-sizing: border-box;
}
.movWrap .movText {
	padding: 20px 20px 20px 0;
}
.movWrap div img{
	width: 100%;
}
.movWrap div h4{
	font-size: 18px;
	line-height: 1.4;
}
.movWrap div p {
	font-size: 18px;
	color: #666;
}
.totalTime {
	font-size: 14px;
}
.showWrap {
	width: 100%;
	height: 100%;
}
.videoWrapBox {
	position: relative;
	width: 700px;
	max-width: 700px;
}
.videoBoxInner {
	position: relative;
	width: 100%;
	height: 100%;
}
.controllerBox {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background:transparent;
}
.closeBtn {
	cursor: pointer;
	position: absolute;
	top: -38px;
	right: 0;
	padding: 10px;
	font-size: 18px;
	line-height: 18px;
	color: #fff;
	font-weight: bold;
	background:rgba(0,0,0,0.5);
}
.playBtnThumb, .pauseBtnThumb, .mutedThumb,
.playBtn, .pauseBtn, .muted {
	cursor: pointer;
	position: absolute;
	z-index: 9999;
	border-radius: 10px;
	font-size: 18px;
	font-weight: bold;
	line-height: 18px;
	color: #fff;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 100% 100%;
}
.playBtnThumb, .pauseBtnThumb,
.playBtn, .pauseBtn {
	left: 10px;
	bottom: 10px;
	width: 62px;
	height: 62px;
}
.playBtnThumb, .pauseBtnThumb{
	background-image: url('/technical/movie/img/play.png');
}
.playBtn, .pauseBtn {
	background-image: url('/technical/movie/img/pause.png');
}
.mutedThumb {
	display: none;
}
.muted,
.mutedThumb {
	padding: 10px;
	left: 78px;
	width: 62px;
	height: 62px;
	bottom: 10px;
	background-image: url('/technical/movie/img/muteOn.png');
}
.videoBox,
.videoBoxThumb {
	line-height: 0;
}
.loadBox {
	display: none;
	position: absolute;
	top: 0;
	left: 0;		width: 100%;
	height: 100%;
	background-color:rgba(0,0,0,0.3);
	background-image: url('/technical/movie/img/download.gif');
	background-position: center center;
	background-repeat: no-repeat;
}
.timeBarBox {
	width: 100%;
	height: 10px;
	background:#000;
}
.timeBar {
	width: 0;
	height: 10px;
	background:#ccc;
}
.chapterBox {
	display: flex;
	justify-content: space-between;
	height: 0;
	overflow: hidden;
	background:#fff;
}
.chapter {
	border-radius: 10px;
	padding: 10px;
	margin: 0 5px;
	font-size: 20px;
	font-weight: bold;
	color: #fff;
	background:#666;
	line-height: 1;
	cursor: pointer;
}
.chapter:hover {
	opacity: 0.7;
}
.pageNaviBox {
	padding: 50px 0 0 0;
	width: 100%;
	display: flex;
	justify-content: flex-end;
}
.pageNaviBox a {
	color: #808080; 
	font-size: 18px;
	line-height: 18px;
	width: 33.3%;
}
.pageNaviBox a:hover {
	color:#39B54A;
	text-decoration: none;
}
.pageNaviBox .nextPage:after,
.pageNaviBox .prevPage:before {
    content: "";
    display: inline-block;
    height: 12px;
    width: 12px;
    border-top: 2px solid #39B54A;
    border-right: 2px solid #39B54A;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
}
.pageNaviBox .prevPage:before {
    transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
    -ms-transform: rotate(-135deg);
}
.listLink {
	text-align: center;
}
.nextPage {
	text-align: right;
}
.prevPage {
	text-align: left;
}
@media only screen and (max-width: 767px){
	.mutedThumb {
		display: block;
	}
	.pageNaviBox a {
		font-size: 12px;
	}
	.loginShowBox {
		height: 100%;
		animation: fadeIn 0.3s ease-out forwards;
	}
	.loginShowBox h2{
		margin-top: 0 !important;
	}
	.loginShowBoxText {
		justify-content: center;
		margin-left: 0;
	}
}