| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105 |
- /* 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;
- }
- .picker{
- display: flex;
- align-items: center;
- }
- .picker .iconfont1{
- margin-left: 5rpx;
- }
|