Browse Source

帮助与反馈

DESKTOP-SVI9JE1\muzen 2 years ago
parent
commit
09cec8dd4c
1 changed files with 9 additions and 4 deletions
  1. 9 4
      src/pages/help/index.vue

+ 9 - 4
src/pages/help/index.vue

@@ -123,9 +123,10 @@ export default {
 }
 </script>
 
-<style lang="scss">
+<style lang="scss" scoped>
 .app-container {
   background-color: #FFFFFF;
+  height: 100%;
   color: #353535;
 }
 
@@ -161,7 +162,7 @@ export default {
   margin-top: 48rpx;
   display: flex;
   flex-wrap: wrap;
-  align-content: start;
+  align-content: flex-start;
   height: calc(160rpx * 3 + 24rpx * 3);
 
   .img-list {
@@ -199,7 +200,11 @@ export default {
 }
 
 .submit {
-  margin-top: 48rpx;
+  position: absolute;
+  bottom: 32rpx;
+  left: 50%;
+  transform: translate(-50%);
+  width: 100%;
 
   button {
     width: 400rpx;
@@ -213,7 +218,7 @@ export default {
     color: #999;
     display: flex;
     justify-content: space-around;
-    margin-top: 190rpx;
+    margin-top: 208rpx;
   }
 }
 </style>