1234567891011121314151617181920212223242526272829303132 |
- .resourceBox {
- padding-bottom: calc(140rpx + env(safe-area-inset-bottom)) !important;
- }
- .firstClassify {
- padding: 26rpx 0rpx 24rpx;
- width: 100%;
- margin: 0 auto 30rpx;
- left: 0;
- right: 0;
- overflow: hidden;
- white-space: nowrap;
- background-color: white;
- .firstBox {
- text-align: center;
- display: inline-block;
- width: 98rpx;
- padding: 0rpx 20rpx;
- font-size: 0;
- .icon {
- width: 84rpx;
- height: 84rpx;
- }
- .name {
- font-weight: bold;
- font-size: 28rpx;
- }
- }
- }
|