1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- /* pages/myWork/myWork.wxss */
- page{
- padding-top: 88rpx;
- width: 100%;
- height: 100%;
- }
- .list {
- width: 92%;
- margin: 20rpx auto;
- border: 1px solid #d8d8d8;
- border-radius: 10rpx;
- padding: 20rpx;
- position: relative;
- box-shadow: 0 0 6rpx 0 rgba(216, 216, 216, 1);
- box-sizing: border-box;
- }
- .list view {
- font-size: 24rpx;
- color: #4d4d4d;
- margin-top: 15rpx;
- }
- .list .reason {
- font-size: 28rpx;
- color: #282828;
- }
- .list .type {
- width: 168rpx;
- height: 42rpx;
- color: #fff;
- font-size: 22rpx;
- text-align: center;
- position: absolute;
- top: -15rpx;
- right: 0;
- border-radius: 0 2rpx 0 20rpx;
- }
- van-sticky{
- width: 100%;
- position: fixed;
- top: 0rpx;
- left: 0rpx;
- background: white;
- z-index: 99;
- }
- .van-tab__pane--active{
- padding-bottom:120rpx;
- }
|