app.base.scss 540 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. // 全局css基础样式
  2. .card-shadow {
  3. box-shadow: 0rpx 0rpx 24rpx rgba(0, 0, 0, 0.08);
  4. }
  5. .bg-white {
  6. background-color: #fff;
  7. }
  8. .load-text {
  9. padding: 0 0 20rpx 0;
  10. text-align: center;
  11. color: #999;
  12. font-size: 24rpx;
  13. }
  14. .e-fixed {
  15. position: fixed;
  16. left: 0;
  17. /* #ifndef H5 */
  18. top: 0;
  19. /* #endif */
  20. /* #ifdef H5 */
  21. top: 88rpx;
  22. /* #endif */
  23. right: 0;
  24. z-index: 6;
  25. }
  26. .e-loading-icon {
  27. animation: eLoading 0.8s linear infinite;
  28. }
  29. @keyframes eLoading {
  30. 0% {
  31. transform: rotateZ(0deg);
  32. }
  33. 100% {
  34. transform: rotateZ(360deg);
  35. }
  36. }