1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- /* pages/my/activityInfo/activityInfo.wxss */
- page {
- width: 100%;
- height: 100%;
- background-color: #fff;
- }
- .invite-container {
- padding-top: calc(120rpx + 90rpx);
- }
- .filtrate {
- position: fixed;
- top: 0;
- left: 0;
- width: 100%;
- height: 120rpx;
- line-height: 120rpx;
- padding-left: 30rpx;
- font-size: 30rpx;
- font-family: 'PingFang SC, PingFang SC-Bold';
- font-weight: 400;
- color: #333333;
- background-color: #fff;
- box-sizing: border-box;
- }
- .filtrate .num {
- color: #808080;
- }
- .table {}
- .table .thead {
- position: fixed;
- top: 120rpx;
- left: 0;
- width: 100%;
- border-top: 1rpx solid #e6e6e6;
- }
- .table .thead,
- .table .tbody {
- display: flex;
- height: 90rpx;
- background: #fffae1;
- font-size: 28rpx;
- font-family: 'PingFang SC, PingFang SC-Bold';
- font-weight: 700;
- color: #1a1a1a;
- border-bottom: 1rpx solid #e6e6e6;
- }
- .table .thead .thead-title,
- .table .tbody .tbody-title {
- flex: 1;
- height: 100%;
- text-align: center;
- /* line-height: 90rpx; */
- border-right: 1rpx solid #e6e6e6;
- display: flex;
- align-items: center;
- word-break: break-all;
- justify-content: center;
- }
- .table .thead .thead-title:last-child {
- border: none;
- }
- .table .tbody {
- height: 80rpx;
- background-color: #fff;
- font-weight: 500;
- color: #666666;
- }
- .table .tbody .tbody-title {
- /* line-height: 80rpx; */
- font-size: 22rpx;
- display: flex;
- align-items: center;
- word-break: break-all;
- justify-content: center;
- }
- .time {
- /* padding: 0 20rpx;
- box-sizing: border-box; */
- }
|