| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 |
- /* pages/my/myInvite/myInvite.wxss */
- page {
- width: 100%;
- height: 100%;
- background-color: #fff;
- }
- #header {
- position: fixed;
- top: 0;
- background-color: #fff;
- }
- .filtrate {
- display: flex;
- padding: 50rpx 0 10rpx;
- margin: 0 60rpx 0 30rpx;
- border-bottom: 1rpx solid #e6e6e6;
- font-size: 30rpx;
- font-family: 'PingFang SC, PingFang SC-Bold';
- font-weight: 700;
- color: #1a1a1a;
- }
- .picker-box {
- color: #666666;
- }
- .info {
- display: flex;
- flex-wrap: wrap;
- padding: 20rpx 60rpx 40rpx 30rpx;
- font-size: 26rpx;
- font-family: 'PingFang SC, PingFang SC-Regular';
- font-weight: 400;
- color: #333333;
- }
- .info .label {
- width: 50%;
- margin-bottom: 8rpx;
- }
- .info .num {
- color: #808080;
- }
- .table {
-
- }
- .table .thead {
- position: fixed;
- width: 100%;
- /* border-top: 1rpx solid #e6e6e6; */
- }
- .table .thead,
- .table .tbody {
- display: flex;
- height: 90rpx;
- background: #ebf2ff;
- 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;
- }
- .table .thead .thead-title:last-child {
- border: none;
- }
- .table .tbody {
- height: 80rpx;
- /* padding-top: 90rpx; */
- background-color: #fff;
- font-weight: 500;
- color: #666666;
- }
- .table .paddingTop {
- padding-top: 90rpx;
- }
- .table .tbody .tbody-title {
- line-height: 80rpx;
- font-size: 22rpx;
- }
|