diff --git a/App.vue b/App.vue
index 723f4b5..0e90974 100644
--- a/App.vue
+++ b/App.vue
@@ -1,211 +1,402 @@
\ No newline at end of file
+@font-face {
+ font-family: "Futura";
+ src: url(https://static.ticket.sz-trip.com/epicSoul/taozi/fonts/Futura.ttc);
+}
+/*每个页面公共css */
+@import "@/uni_modules/uni-scss/index.scss";
+@import "@/static/css/base.css";
+
+/* #ifndef APP-NVUE */
+// 设置整个项目的背景色
+page {
+ background-color: #f5f5f5;
+}
+
+/* #endif */
+.example-info {
+ font-size: 14px;
+ color: #333;
+ padding: 10px;
+}
+
+/* 清除按钮默认样式 */
+button::after {
+ border: none;
+}
+
+@keyframes bounce {
+ 0%,
+ 20%,
+ 50%,
+ 80%,
+ 100% {
+ transform: translateY(0);
+ }
+
+ 40% {
+ transform: translateY(-20rpx);
+ }
+
+ 60% {
+ transform: translateY(-10rpx);
+ }
+}
+
+/* 音乐控制按钮动画 */
+@keyframes rotate {
+ from {
+ transform: rotate(0deg);
+ }
+
+ to {
+ transform: rotate(360deg);
+ }
+}
+
+/* 隐藏微信小程序默认音频组件 */
+#mp-audio {
+ display: none;
+}
+