users.wxss 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. /* pages/user/user.wxss */
  2. .bodyclass{
  3. display: flex;
  4. flex-direction: column;
  5. height: 100%;
  6. background-color: #F4F6F7;
  7. }
  8. .diyi{
  9. height: 160px;
  10. background-color:#298DF7;
  11. }
  12. .diyi_yi{
  13. padding:15px 0px 0px 10px;
  14. font-size: 30rpx;
  15. color:#fff;
  16. }
  17. .diyi_er{
  18. border-radius: 50%;width: 70px;height: 70px;
  19. }
  20. .dier{
  21. margin-top:10px;
  22. flex: 100;
  23. }
  24. .diesan{
  25. flex: 15;
  26. }
  27. .btn-class{
  28. background-color: #298DF7;
  29. color:#fff;
  30. text-align: center;
  31. width: 80%;
  32. }
  33. .grids{
  34. display: flex;
  35. flex-wrap: wrap;
  36. border-left: 1rpx solid #eee;
  37. border-bottom: 1rpx solid #eee;
  38. font-size: 30rpx;
  39. }
  40. .grids .item{
  41. background-color: #fff;
  42. display: flex;
  43. flex-direction: column;
  44. justify-content: center;
  45. align-items: center;
  46. border-right: 1rpx solid #eee;
  47. border-top: 1rpx solid #eee;
  48. box-sizing: border-box;
  49. width: 33.33333333%;
  50. height: 250rpx;
  51. }
  52. .grids .item image{
  53. width: 70rpx;
  54. height: 70rpx;
  55. }
  56. .grids .item text{
  57. margin-top: 20rpx;
  58. color:#444444;
  59. }