myInvite.wxss 1.4 KB

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