table.scss 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. .lable-title {
  2. font-size: 28rpx;
  3. font-family: PingFang SC, PingFang SC-Bold;
  4. font-weight: 700;
  5. color: #1a1a1a;
  6. padding: 30rpx $pages-padding 11rpx;
  7. border-bottom: 1px solid #e6e6e6;
  8. }
  9. .table-box{
  10. ::v-deep .uni-table-tr{
  11. width: 100%;
  12. word-break: break-all;
  13. white-space: pre-wrap;
  14. display: flex;
  15. .uni-table-th , .uni-table-td{
  16. border: none;
  17. flex-shrink: 0;
  18. padding-left: 20rpx;
  19. padding-right: 20rpx;
  20. &:last-child{
  21. padding-right: 0;
  22. }
  23. &:first-child{
  24. padding-left: 0;
  25. }
  26. }
  27. .uni-table-th{
  28. padding-top: 30rpx;
  29. padding-bottom: 28rpx;
  30. font-size: 24rpx;
  31. font-family: PingFang SC, PingFang SC-Regular;
  32. font-weight: 400;
  33. color: #999999;
  34. line-height: 33rpx;
  35. }
  36. .uni-table-td{
  37. padding-top: 20rpx;
  38. padding-bottom: 20rpx;
  39. font-size: 24rpx;
  40. font-family: PingFang SC, PingFang SC-Bold;
  41. font-weight: 700;
  42. text-align: left;
  43. color: #1a1a1a;
  44. line-height: 1.2;
  45. &:last-child,&:first-child{
  46. padding-right: 0;
  47. padding-left: 0;
  48. }
  49. }
  50. }
  51. }