FSound.less 2.64 KB
.wev-fsound-audio {
	padding: 10px 0;
	display: block;
}
.wev-fsound-audio:after {
	content: '';
	clear: both;
	display: block;
}
.wev-audio-container {
	float: left;
	position: relative;
	width: 150px;
	height: 32px;
	background-color: #f8f8f8;
	background-image: -webkit-linear-gradient(-180deg, #f8f8f8 0%, #efefef 100%);
	background-image: -moz-linear-gradient(-180deg, #f8f8f8 0%, #efefef 100%);
	background-image: -o-linear-gradient(-180deg, #f8f8f8 0%, #efefef 100%);
	background-image: linear-gradient(-180deg, #f8f8f8 0%, #efefef 100%);
	border: 1px solid rgba(0, 0, 0, 0.12);
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	margin: 0 5px;
}
.wev-audio-container:before {
	content: '';
	position: absolute;
	display: block;
	width: 8px;
	height: 8px;
	border: 1px solid rgba(0, 0, 0, 0.12);
	-moz-transform: rotate(45deg); /* Firefox */
	-webkit-transform: rotate(45deg); /* Safari 和 Chrome */
	-o-transform: rotate(45deg); /* Opera */
	transform: rotate(45deg);
	left: -5px;
	top: 11px;
	background-color: #f8f8f8;
	background-image: -webkit-linear-gradient(-180deg, #f8f8f8 0%, #efefef 100%);
	background-image: -moz-linear-gradient(-180deg, #f8f8f8 0%, #efefef 100%);
	background-image: -o-linear-gradient(-180deg, #f8f8f8 0%, #efefef 100%);
	background-image: linear-gradient(-180deg, #f8f8f8 0%, #efefef 100%);
	border-top: none;
	border-right: none;
}
.wev-audio-status {
	float: left;
	margin-top: 8px;
	margin-left: 15px;
	width: 13px;
	height: 15px;
	background: url(/mobilemode/mobile/images/plugin/sound.png) no-repeat top left;
	-webkit-background-size: 100%;
	background-size: 100%;
}
.wev-audio-status.playing {
	-webkit-animation: audio_playing 1s infinite;
	-o-animation: audio_playing 1s infinite;
	animation: audio_playing 1s infinite;
}
.wev-audio-status.error:after {
	content: '!';
	font-size: @font-size-sm;
	color: #aaa;
	margin-left: 16px;
	vertical-align: top;
}
@-webkit-keyframes audio_playing {
  0% {
    background-position: 0 -15px;
  }
  30% {
    background-position: 0 -15px;
  }
  30.1% {
    background-position: 0 -30px;
  }
  61% {
    background-position: 0 -30px;
  }
  61.1% {
    background-position: 0 -45px;
  }
  100% {
    background-position: 0 -45px;
  }
}
.wev-audio-time {
	float: left;
	line-height: 32px;
	color: #999;
	font-size: 13 * @hd;
	font-family: SFUIDisplay-Regular, Arial;
}
.wev-audio-tips {
	padding-left: 10px;
	line-height: 32px;
	color: #999;
	font-size: @font-size-sm;
	font-family: SFUIDisplay-Regular, Arial;
}
.wev-audio-loading {
	line-height: 32px;
    width: 50px;
}
.wev-audio-clearshow {
	bottom: 0;
	top:auto;
	height:54px;
	display:block;
}
.wev-audio-divhidden {
	display:none;
}