index.wxss 330 B

1234567891011121314151617
  1. .zan-toast {
  2. position: fixed;
  3. top: 35%;
  4. left: 20%;
  5. transform: translateZ(0) translateY(-100%);
  6. background: rgba(0, 0, 0, 0.7);
  7. color: #fff;
  8. font-size: 14px;
  9. width: 60%;
  10. line-height: 1.5em;
  11. margin: 0 auto;
  12. box-sizing: border-box;
  13. padding: 10px;
  14. text-align: center;
  15. border-radius: 4px;
  16. z-index: 100;
  17. }