activityInfo.wxss 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. /* pages/my/activityInfo/activityInfo.wxss */
  2. page {
  3. width: 100%;
  4. height: 100%;
  5. background-color: #fff;
  6. }
  7. .invite-container {
  8. padding-top: calc(120rpx + 90rpx);
  9. }
  10. .filtrate {
  11. position: fixed;
  12. top: 0;
  13. left: 0;
  14. width: 100%;
  15. height: 120rpx;
  16. line-height: 120rpx;
  17. padding-left: 30rpx;
  18. font-size: 30rpx;
  19. font-family: 'PingFang SC, PingFang SC-Bold';
  20. font-weight: 400;
  21. color: #333333;
  22. background-color: #fff;
  23. box-sizing: border-box;
  24. }
  25. .filtrate .num {
  26. color: #808080;
  27. }
  28. .table {}
  29. .table .thead {
  30. position: fixed;
  31. top: 120rpx;
  32. left: 0;
  33. width: 100%;
  34. border-top: 1rpx solid #e6e6e6;
  35. }
  36. .table .thead,
  37. .table .tbody {
  38. display: flex;
  39. height: 90rpx;
  40. background: #fffae1;
  41. font-size: 28rpx;
  42. font-family: 'PingFang SC, PingFang SC-Bold';
  43. font-weight: 700;
  44. color: #1a1a1a;
  45. border-bottom: 1rpx solid #e6e6e6;
  46. }
  47. .table .thead .thead-title,
  48. .table .tbody .tbody-title {
  49. flex: 1;
  50. height: 100%;
  51. text-align: center;
  52. /* line-height: 90rpx; */
  53. border-right: 1rpx solid #e6e6e6;
  54. display: flex;
  55. align-items: center;
  56. word-break: break-all;
  57. justify-content: center;
  58. }
  59. .table .thead .thead-title:last-child {
  60. border: none;
  61. }
  62. .table .tbody {
  63. height: 80rpx;
  64. background-color: #fff;
  65. font-weight: 500;
  66. color: #666666;
  67. }
  68. .table .tbody .tbody-title {
  69. /* line-height: 80rpx; */
  70. font-size: 22rpx;
  71. display: flex;
  72. align-items: center;
  73. word-break: break-all;
  74. justify-content: center;
  75. }
  76. .time {
  77. /* padding: 0 20rpx;
  78. box-sizing: border-box; */
  79. }