﻿@charset "utf-8";
/*html,body{
	width: 100%;
	height: 100%;
	background: #ef6a6c;
}
a:hover{
	text-decoration: none;
}*/
.willesPlay{
	/*width: 1000px;
	height: 660px;*/
	/*width: 1024px;
	height: auto;*/
	/*margin: 30px 10px 80px;*/
	box-shadow: 0px 0px 3px #999;
	position: relative;
    overflow:visible;
}
/*播放器头部*/
.willesPlay .playHeader{
	width: 100%;
	height: 48px;
	background: #EAEBED;
	border-radius: 3px 3px 0px 0px;
    display:none;
}
.willesPlay .playHeader .videoName{
	font-size: 16px;
	/*width: 400px;*/
	height: 48px;
	line-height: 48px;
	text-align: center;
	margin: 0 auto;
	color: #E70012;

}
.willesPlay .playContent{
	position: relative;
	height: auto;
	overflow: hidden;
	background:#000;
	cursor: pointer;
}
.willesPlay .playContent .turnoff{
	position: absolute;
	z-index: 10;
	right: -40px;
	top: 50%;
	margin-top: -90px;
}
.willesPlay .playContent .turnoff li a{
	display: block;
	width: 40px;
	height: 40px;
	line-height: 40px;
	margin-bottom: 20px;
	text-align: center;
	font-size: 20px;
	color: #fff;
	background: rgba(0,0,0,.5);
}
.willesPlay .playContent .turnoff li a:hover{
	color: #666;
}
.willesPlay .playContent .playTip{
	position: absolute;
	width: 60px;
	height: 60px;
	text-align: center;
	line-height: 55px;
	top: 50%;
	left: 50%;
	margin-left: -30px;
	margin-top: -30px;
	background: url(../images/video_zanting.png) #fff;
    background-size:contain;
	font-size: 30px;
	border: 1px solid #FFFFFF;
	border-radius: 50%;
	color: #fff;
	cursor: pointer;
}
.willesPlay .playControll{
	position: absolute;
	z-index: 9999;
	width: 100%;
	height: 48px;
	bottom: -48px;
	background: url(../images/video_playheader.jpg) repeat-x;
	border-radius: 0px 0px 3px 3px;
	-moz-user-select:none;
    -webkit-user-select:none;
    user-select:none;   
}
.willesPlay .fullControll{
	background:rgba(0,0,0,.5);
}
.willesPlay .fullControll .timebar span{
	color: #FFFFFF;
}
.willesPlay .playControll .playPause{
	float: left;
	width: 20px;
	height: 25px;
	background: url(../images/video_control.png) 0px 0px no-repeat;
	margin: 11px 0px 0px 12px;
	cursor: pointer;
}
.willesPlay .playControll .playIcon{
	background-position: 0px -32px;
}
/*进度条*/
.progress {
  height: 20px;
  margin-bottom: 20px;
  overflow: hidden;
  /*background-color: #f5f5f5;*/
  background-color: #999;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1);
          box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1);
}
.progress-bar {
  float: left;
  width: 0;
  height: 100%;
  font-size: 12px;
  line-height: 20px;
  color: #fff;
  text-align: center;
  background-color: #337ab7;
  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15);
          box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15);
  -webkit-transition: width .6s ease;
       -o-transition: width .6s ease;
          transition: width .6s ease;
}
.progress-striped .progress-bar,
.progress-bar-striped {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
  background-image:      -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
  background-image:         linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
  -webkit-background-size: 40px 40px;
          background-size: 40px 40px;
}
.progress.active .progress-bar,
.progress-bar.active {
  -webkit-animation: progress-bar-stripes 2s linear infinite;
       -o-animation: progress-bar-stripes 2s linear infinite;
          animation: progress-bar-stripes 2s linear infinite;
}
.progress-bar-success {
  background-color: #5cb85c;
}
.progress-striped .progress-bar-success {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
  background-image:      -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
  background-image:         linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
}
.progress-bar-info {
  background-color: #5bc0de;
}
.progress-striped .progress-bar-info {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
  background-image:      -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
  background-image:         linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
}
.progress-bar-warning {
  background-color: #f0ad4e;
}
.progress-striped .progress-bar-warning {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
  background-image:      -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
  background-image:         linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
}
.progress-bar-danger {
  background-color: #0064C6;
}
.progress-striped .progress-bar-danger {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
  background-image:      -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
  background-image:         linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
}

.willesPlay .playControll .timebar{
float: left;
width: calc(100% - 145px);
line-height: 48px;
overflow: hidden;
margin: 0 auto;
margin: 0px 0px 0px 10px;
}
.willesPlay .playControll .timebar .progress{
	float: left;
	width: 97%;
	margin: 19px 5px;
	height: 10px;
	cursor: pointer;
}
.willesPlay .playControll .timebar span{
	float: left;
	width: 8%;
	text-align: center;
    display:none;
}
.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;
	/*background: url(../images/video_control.png) no-repeat;*/
	cursor: pointer;
}
.willesPlay .otherControl span:nth-child(1){
	font-size: 28px;
	color: #ef6a6c;
}
/*.willesPlay .otherControl span:nth-child(2){
	background-position: -171px 0px;
}*/
.willesPlay .otherControl span:nth-child(2){
	color: #919597;
}
.willesPlay .otherControl span.volume {
    background: url(../images/video_voice.png) no-repeat;
    background-size:contain;
}
.willesPlay .otherControl span.fullScreen {
    width:28px;
    height:28px;
    background: url(../images/video_fullscreen.png) no-repeat;
    background-size:contain;
}
/*音量*/
.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;
}

@media screen and (max-width:480px) {
.willesPlay .playContent .playTip{
	width: 36px;
	height: 36px;
	line-height: 30px;
	top: 50%;
	margin-left: -18px;
	margin-top: -18px;
	font-size: 18px;
}
}

.willesPlay .playControll{ height:40px;}
.willesPlay .playControll .playPause{ height:20px; background-size:150px;}
.willesPlay .playControll .playIcon {
    background-position: 0px -25px;
}
.willesPlay .otherControl, .willesPlay .fullControll{ overflow:visible}
.willesPlay .otherControl .volumeBar{ top:-96px; left:6px;}
.willesPlay .playControll .timebar {
    line-height: 40px;
}
.willesPlay .playControll .timebar .progress{ margin: 17px 5px; height: 8px;}
.willesPlay .otherControl span{ width:25px; height:25px; margin:8px 7px;}
.willesPlay .otherControl span.fullScreen{ width:23px; height:23px;}