index.wxss 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. /* pages/tabber/home/index.wxss */
  2. page {
  3. padding-bottom: 50rpx;
  4. width: 750rpx;
  5. min-height: 100vh;
  6. background: #F8F8F8;
  7. }
  8. .topBox {
  9. width: 750rpx;
  10. background: #FFFFFF;
  11. padding: 24rpx 30rpx 40rpx;
  12. }
  13. .topBox .user {
  14. width: 80rpx;
  15. height: 80rpx;
  16. }
  17. .topBox .name {
  18. font-size: 28rpx;
  19. font-weight: 500;
  20. color: #333333;
  21. }
  22. .topBox .work {
  23. font-size: 24rpx;
  24. color: #999999;
  25. }
  26. .topBox .lr {
  27. font-size: 28rpx;
  28. color: #666666;
  29. }
  30. .topBox .icon {
  31. width: 32rpx;
  32. height: 32rpx;
  33. }
  34. .topBox .bottom .item {
  35. width: 196rpx;
  36. height: 123rpx;
  37. background: #F8F8F8;
  38. border-radius: 8rpx;
  39. flex-direction: column;
  40. }
  41. .topBox .bottom .item .num {
  42. font-size: 40rpx;
  43. font-weight: 500;
  44. color: #333333;
  45. }
  46. .topBox .bottom .item .tips {
  47. font-size: 24rpx;
  48. color: #999999;
  49. }
  50. .contioner {
  51. width: 100%;
  52. padding: 0 40rpx;
  53. display: flex;
  54. flex-wrap: wrap;
  55. justify-content: space-between;
  56. }
  57. .contioner .items {
  58. width: 305rpx;
  59. height: 230rpx;
  60. background: #FFFFFF;
  61. border-radius: 8rpx;
  62. flex-direction: column;
  63. margin-bottom: 30rpx;
  64. }
  65. .contioner .items .icon {
  66. width: 90rpx;
  67. height: 90rpx;
  68. }
  69. .contioner .items .tit {
  70. font-size: 30rpx;
  71. color: #333333;
  72. }