App.vue 779 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. <script>
  2. export default {
  3. onLaunch: function() {
  4. uni.hideTabBar()
  5. },
  6. onShow: function() {
  7. },
  8. onHide: function() {
  9. },
  10. };
  11. </script>
  12. <style>
  13. /*每个页面公共css */
  14. @import "/static/css/common.css";
  15. @import "/static/css/default-color.scss";
  16. @import "/static/css/shake.css";
  17. @import './static/css/animate.css';
  18. @import './static/css/red-color.scss';
  19. page {
  20. height: 100%;
  21. }
  22. checkbox .wx-checkbox-input {
  23. border-radius: 50% !important;
  24. }
  25. checkbox .wx-checkbox-input.wx-checkbox-input-checked {
  26. background: linear-gradient(129deg, #f0695b 0%, #ed301d 100%);
  27. border: 1px solid rgb(239, 74, 57);
  28. box-shadow: 0px 2px 3px rgba(239, 74, 57, 0.16);
  29. }
  30. uni-checkbox:not([disabled]) .uni-checkbox-input:hover {
  31. border-color: #d1d1d1;
  32. }
  33. </style>