12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- /* 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: #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;
- }
- .table .thead .thead-title:last-child {
- border: none;
- }
- .table .tbody {
- height: 80rpx;
- padding-top: 90rpx;
- background-color: #fff;
- font-weight: 500;
- color: #666666;
- }
- .table .tbody .tbody-title {
- line-height: 80rpx;
- font-size: 22rpx;
- }
|