#
whycq
2024-03-30 9ab6b38c098f857f2ce0772693142c930e4f9b6d
App.vue
@@ -14,4 +14,42 @@
<style>
   /*每个页面公共css */
</style>
   body {
      background-color: #f8fafb;
      font-family:  Helvetica, sans-serif,'my-font';
   }
   @font-face {
      font-family: my-font;
      src: url('./static/font/NotoSansCJK-Light-3.otf');
   }
   .z-floor {
      height: 100rpx;
      line-height: 100rpx;
      width: 100%;
      background-color: #fff;
      /* box-shadow:  0px -4px 4px #e2e2e2; */
      border-top: 1px solid #e2e2e2;
      position: fixed;
      bottom: 0;
      left: 0;
      display: flex;
      align-items: center;
      text-align: center;
      letter-spacing: 10rpx;
   }
   .z-default {
      flex: 2;
   }
   .z-default:active {
      background-color: #eff0f1;
   }
   .z-primary {
      flex: 3;
      background-color: #0084ff;
      color: #fff;
   }
   .z-primary:active {
      background-color: #007dea;
   }
</style>