diff --git a/themes/beauty/views/site/index.php b/themes/beauty/views/site/index.php
index b4a1354..b7a118d 100644
--- a/themes/beauty/views/site/index.php
+++ b/themes/beauty/views/site/index.php
@@ -415,6 +415,7 @@ eof;
data-video-url="{$file['path']}"
alt="{$file['filename']}">
{$title}
+
00:00:00
diff --git a/www/css/beauty.css b/www/css/beauty.css
index 656293b..3a2e3bc 100644
--- a/www/css/beauty.css
+++ b/www/css/beauty.css
@@ -156,7 +156,7 @@ a:link{text-decoration:none}
.audio-item a{display:block;min-height:60px}
.audio-item img{float:left;width:60px;height:60px}
.audio-item .title{display:block;margin-left:70px}
-.audio-item .duration{width:56px;overflow:hidden;margin-left:2px;bottom:4px}
+.audio-item .duration{width:52px;overflow:hidden;margin-left:4px;bottom:4px;font-size:11px}
.audioplayer{position:fixed;left:0;right:0;bottom:0;z-index:1000;height:120px;overflow:hidden;background-color:#000}
.audioplayer .videoplayer{max-width:460px;height:120px;overflow:hidden;opacity:0.85}
.audioplayer .downloadbtn{width:96px;margin:81px auto 0 auto}
diff --git a/www/js/beauty.js b/www/js/beauty.js
index 9ea2fa4..d876a9b 100644
--- a/www/js/beauty.js
+++ b/www/js/beauty.js
@@ -680,10 +680,10 @@ if ($('#my-player').length > 0 && typeof(videojs) != 'undefined') {
for (var index in videos) {
if (videos[index].id == ignoreId) {continue;}
- tmp = template.replace('{videoUrl}', getVideoUrl(videos[index].id, videos[index].path));
- tmp = tmp.replaceAll('{title}', videos[index].filename);
- tmp = tmp.replaceAll('{videoId}', videos[index].id);
- tmp = tmp.replaceAll('{videoPath}', videos[index].path);
+ tmp = template.replace(/\{videoUrl\}/ig, getVideoUrl(videos[index].id, videos[index].path));
+ tmp = tmp.replace(/\{title\}/ig, videos[index].filename);
+ tmp = tmp.replace(/\{videoId\}/ig, videos[index].id);
+ tmp = tmp.replace(/\{videoPath\}/ig, videos[index].path);
html += tmp;
}