12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- /* pages/tabber/home/index.wxss */
- page {
- padding-bottom: 50rpx;
- width: 750rpx;
- min-height: 100vh;
- background: #F8F8F8;
- }
- .topBox {
- width: 750rpx;
- background: #FFFFFF;
- padding: 24rpx 30rpx 40rpx;
- }
- .topBox .user {
- width: 80rpx;
- height: 80rpx;
- }
- .topBox .name {
- font-size: 28rpx;
- font-weight: 500;
- color: #333333;
- }
- .topBox .work {
- font-size: 24rpx;
- color: #999999;
- }
- .topBox .lr {
- font-size: 28rpx;
- color: #666666;
- }
- .topBox .icon {
- width: 32rpx;
- height: 32rpx;
- }
- .topBox .bottom .item {
- width: 196rpx;
- height: 123rpx;
- background: #F8F8F8;
- border-radius: 8rpx;
- flex-direction: column;
- }
- .topBox .bottom .item .num {
- font-size: 40rpx;
- font-weight: 500;
- color: #333333;
- }
- .topBox .bottom .item .tips {
- font-size: 24rpx;
- color: #999999;
- }
- .contioner {
- width: 100%;
- padding: 0 40rpx;
- display: flex;
- flex-wrap: wrap;
- justify-content: space-between;
- }
- .contioner .items {
- width: 305rpx;
- height: 230rpx;
- background: #FFFFFF;
- border-radius: 8rpx;
- flex-direction: column;
- margin-bottom: 30rpx;
- }
- .contioner .items .icon {
- width: 90rpx;
- height: 90rpx;
- }
- .contioner .items .tit {
- font-size: 30rpx;
- color: #333333;
- }
|