stats.wxss 1011 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. page {
  2. padding: 0;
  3. }
  4. .box {
  5. display: flex;
  6. flex-direction: column;
  7. min-height: 100vh;
  8. }
  9. .tabs {
  10. width: 100vw;
  11. height: 102rpx;
  12. background-color: #ffffff;
  13. margin-bottom: 10rpx;
  14. flex-shrink: 0;
  15. padding-top: 27rpx;
  16. padding-left: 40rpx;
  17. box-sizing: border-box;
  18. }
  19. .contents {
  20. flex: 1;
  21. width: 100vw;
  22. background-color: #ffffff;
  23. }
  24. .contents .title {
  25. height: 44rpx;
  26. font-size: 32rpx;
  27. color: #000000;
  28. line-height: 44rpx;
  29. box-sizing: border-box;
  30. margin: 30rpx 0 30rpx 40rpx;
  31. }
  32. /* 列表 */
  33. .list {
  34. width: 100vw;
  35. padding-left: 60rpx;
  36. box-sizing: border-box;
  37. }
  38. .list .item {
  39. display: flex;
  40. align-items: center;
  41. height: 70rpx;
  42. margin-bottom: 30rpx;
  43. font-size: 32rpx;
  44. color: rgba(0, 0, 0, .7);
  45. }
  46. .list .item image {
  47. width: 70rpx;
  48. height: 70rpx;
  49. border-radius: 50%;
  50. margin-right: 20rpx;
  51. }
  52. .list .item text {
  53. display: inline-block;
  54. max-width: 400rpx;
  55. margin-right: 15rpx;
  56. }