common.wxss 995 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. .text-color-money {
  2. color: #E22020;
  3. font-size: 26rpx;
  4. font-weight: bold;
  5. }
  6. .text-link {
  7. text-decoration: underline;
  8. }
  9. .text-right {
  10. text-align: right;
  11. }
  12. /* 分享悬浮 */
  13. .share {
  14. position: absolute;
  15. right: 0;
  16. top: 79rpx;
  17. z-index: 99;
  18. }
  19. .share button {
  20. background-color: rgba(51, 51, 51, 0.58);
  21. height: 68rpx;
  22. width: 140rpx;
  23. display: flex;
  24. align-items: center;
  25. padding-left: 26rpx;
  26. border-top-left-radius: 100rpx;
  27. border-bottom-left-radius: 100rpx;
  28. }
  29. .share button image {
  30. width: 37rpx;
  31. height: 37rpx;
  32. }
  33. .share button text {
  34. font-size: 30rpx;
  35. color: #fff;
  36. margin-left: 8rpx;
  37. }
  38. /* 空数据 */
  39. .empty {
  40. height: 85rpx;
  41. font-size: 26rpx;
  42. display: flex;
  43. align-items: center;
  44. justify-content: center;
  45. color: #999;
  46. }
  47. .empty::after {
  48. content: '';
  49. width: 74rpx;
  50. margin-left: 14rpx;
  51. background: #d8d8d8;
  52. height: 2rpx;
  53. }
  54. .empty::before {
  55. content: '';
  56. width: 74rpx;
  57. margin-right: 14rpx;
  58. background: #d8d8d8;
  59. height: 2rpx;
  60. }