1234567891011121314151617181920212223242526272829 |
- /* pages/myMeeting/index/index.wxss */
- .card-area {
- min-height: 1380rpx ;
- background-color: #f3f4f6;
- }
- .scroll-area {
- height: 100%;
- padding: 28rpx 24rpx;
- box-sizing: border-box;
- }
- .tab {
- position: sticky;
- width: 100%;
- height: 88rpx;
- background-color: #FFFFFF;
- display: flex;
- }
- .item {
- width: 50%;
- display: flex;
- justify-content: center;
- align-items: center;
- }
- .item>text {
- margin-left: 10rpx;
- font-size: 32rpx;
- }
|