+ 这是首页
+
+
+
+
+ >
+ );
+}
export default Index;
diff --git a/src/style/global.scss b/src/style/global.scss
index 729ee12..aa857d8 100644
--- a/src/style/global.scss
+++ b/src/style/global.scss
@@ -1,5 +1,3 @@
-@import '@feewee/h5app-common/dist/es/styles/custom_theme.css';
-
@tailwind base;
@tailwind components;
@tailwind utilities;
diff --git a/src/style/loading.module.scss b/src/style/loading.module.scss
deleted file mode 100644
index 371491b..0000000
--- a/src/style/loading.module.scss
+++ /dev/null
@@ -1,23 +0,0 @@
-.loading-progress {
- width: 120px;
- height: 22px;
- border-radius: 20px;
- color: var(--color-loading-bar, #514b82);
- border: 2px solid;
- position: relative;
-}
-.loading-progress::before {
- content: '';
- position: absolute;
- margin: 2px;
- inset: 0 100% 0 0;
- border-radius: inherit;
- background: var(--color-loading-bar, #514b82);
- animation: p6 2s infinite;
-}
-
-@keyframes p6 {
- 100% {
- inset: 0;
- }
-}