index.wxss 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. /* 层级定义
  2. @z-index-0: 1;
  3. @z-index-1: 100;
  4. @z-index-2: 200;
  5. @z-index-5: 500;
  6. @z-index-component: 1000; // 通用组件级别
  7. @z-index-dropdown: @z-index-component;
  8. @z-index-sticky: @z-index-component + 20;
  9. @z-index-fixed: @z-index-component + 30;
  10. @z-index-modal-backdrop:@z-index-component + 40;
  11. @z-index-modal:@z-index-component + 50;
  12. @z-index-popover:@z-index-component + 60;
  13. @z-index-tooltip:@z-index-component + 70;
  14. */
  15. /* var() css变量适配*/
  16. page {
  17. background-color: #FFFFFF;
  18. }
  19. .comments-header {
  20. display: flex;
  21. flex-wrap: wrap;
  22. padding: 32rpx 32rpx 0rpx;
  23. background-color: #fff;
  24. margin-top: -24rpx;
  25. margin-left: -24rpx;
  26. }
  27. .comments-header-tag {
  28. margin-top: 24rpx;
  29. margin-left: 24rpx;
  30. height: 56rpx !important;
  31. font-size: 24rpx !important;
  32. justify-content: center;
  33. background-color: #F5F5F5 !important;
  34. border-radius: 8rpx !important;
  35. border: 1px solid #F5F5F5 !important;
  36. }
  37. .comments-header-active {
  38. background-color: #FFECE9 !important;
  39. color: #FA4126 !important;
  40. border: 1px solid #FA4126 !important;
  41. }
  42. .no-more {
  43. padding-left: 20rpx;
  44. padding-right: 20rpx;
  45. }