@charset "utf-8";


/* 播放器 */
#willesPlay {
	/*margin: 100px auto;*/
	/*box-shadow: 0px 0px 15px #333333;*/
	position: relative;
        border-bottom: #0D6DB9 solid 8px;
}

/* 播放器头部 */
#willesPlay .playHeader {
	width: 100%;
	height: 48px;
	background: url(../imgs/playheader.jpg) repeat-x;
	border-radius: 3px 3px 0px 0px;
}

/* 播放器头部视频名称 */
#willesPlay .playHeader .videoName {
	font-size: 16px;
	width: 400px;
	height: 48px;
	line-height: 48px;
	text-align: center;
	margin: 0 auto;
	color: #7A7F82;
}

/* 播放器主体区 */
#willesPlay .playContent {
	position: relative;
	height: auto;
	overflow: hidden;
	background: #000;
	cursor: pointer;
}

/* 播放器控制条 */
#willesPlay .playControll {
	position: absolute;
	z-index: 2147483650;
	width: 100%;
	height: 48px;
	bottom: -48px;
	background: url(../imgs/playheader.jpg) repeat-x;
	border-radius: 0px 0px 3px 3px;
}

/* 播放器控制条 暂停 */
#willesPlay .playControll .playPause {
	float: left;
	width: 20px;
	height: 25px;
	background: url(../imgs/control_01.png) 0px 0px no-repeat;
	margin: 11px 0px 0px 12px;
	cursor: pointer;
}

/* 播放器控制条 开始 */
#willesPlay .playControll .playIcon {
	background-position: 0px -32px;
}

/* 播放器时间轴区域 */
#willesPlay .playControll .timebar {
	float: left;
	width: calc(100% - 145px);
	line-height: 48px;
	overflow: hidden;
	margin: 0 auto;
	margin: 0px 0px 0px 20px;
}

/* 播放器进度条 */
#willesPlay .playControll .timebar .progress {
	float: left;
	width: 74%;
	margin: 19px 5px;
	height: 10px;
	cursor: pointer;
	margin-left:24px;
}

/* 播放器控制条时间轴 span */
#willesPlay .playControll .timebar span {
	float: left;
	width: 8%;
	text-align: center;
}

/* 播放器全屏播放 */
#willesPlay .otherControl {
	float: right;
	position: relative;
}

#willesPlay .otherControl span {
	display: inline-block;
	width: 30px;
	height: 30px;
	text-align: center;
	line-height: 30px;
	vertical-align: middle;
	font-size: 20px;
	margin: 9px 7px;
	cursor: pointer;
}

#willesPlay .otherControl span:nth-child(1) {
	font-size: 28px;
	color: #EF6A6C;
}

#willesPlay .otherControl span:nth-child(2) {
	color: #919597;
}

/* 播放器音量 */
#willesPlay .otherControl .volumeBar {
	display: none;
	position: absolute;
	top: -110px;
	left: 4px;
	width: 26px;
	height: 100px;
	background: #F1F2F2;
	border-radius: 4px;
	cursor: pointer;
}

/* 播放器音量 */
#willesPlay .otherControl .volumeBar:after {
	content: "";
	display: block;
	position: absolute;
	bottom: -7px;
	left: 5px;
	width: 0;
	height: 0;
	border-left: 8px solid transparent;
	border-right: 8px solid transparent;
	border-top: 8px solid #F1F2F2;
}

#willesPlay .otherControl .volumeBar .volumewrap {
	background: #A2A7AA;
	width: 8px;
	height: 80px;
	position: absolute;
	bottom: 10px;
	left: 9px;
	border-radius: 4px;
}

#willesPlay .otherControl .volumeBar .progress{
	background: none;
}
#willesPlay .otherControl .volumeBar .progress-bar{
	position: absolute;
	bottom: 0px;
	left: 0px;
	border-radius: 4px;
}

video::-webkit-media-controls-enclosure {
    /*禁用播放器控制栏的样式*/
    display: none !important;
}
:-webkit-full-screen{}
