mys.wxss 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. /* pages/my/my.wxss */
  2. .nav {
  3. display: flex;
  4. justify-content: space-between;
  5. align-items: center;
  6. font-size: 36rpx;
  7. color: #000;
  8. padding: 0 5%;
  9. box-sizing: border-box;
  10. }
  11. .nav view {
  12. flex: 1;
  13. height: 89rpx;
  14. display: flex;
  15. justify-content: center;
  16. align-items: center;
  17. border-radius: 89rpx;
  18. }
  19. .slecte-nav {
  20. background: #fff;
  21. }
  22. .my-information {
  23. padding: 0 16rpx;
  24. box-sizing: border-box;
  25. }
  26. .information-item {
  27. display: flex;
  28. align-items: center;
  29. width: 100%;
  30. height: 266rpx;
  31. margin-top: 27rpx;
  32. border-radius: 20rpx;
  33. background: #fff;
  34. padding: 0 25rpx;
  35. box-sizing: border-box;
  36. }
  37. .information-item image {
  38. width: 193rpx;
  39. height: 193rpx;
  40. border-radius: 50%;
  41. background: red;
  42. margin-right: 55rpx;
  43. }
  44. .information-item .set-name {
  45. display: flex;
  46. flex-direction: column;
  47. }
  48. .information-item .set-name .name {
  49. font-size: 40rpx;
  50. color: #424242;
  51. margin-bottom: 28rpx;
  52. }
  53. .information-item .set-name text {
  54. font-size: 32rpx;
  55. }
  56. .shaiwa {
  57. display: flex;
  58. align-items: center;
  59. width: 100%;
  60. height: 116rpx;
  61. margin-top: 27rpx;
  62. border-radius: 20rpx;
  63. background: #386ca9;
  64. padding: 0 25rpx;
  65. box-sizing: border-box;
  66. color: #fff;
  67. font-size: 40rpx;
  68. font-weight: 600;
  69. }
  70. .mengwa {
  71. display: flex;
  72. align-items: center;
  73. width: 100%;
  74. height: 116rpx;
  75. margin-top: 27rpx;
  76. border-radius: 20rpx;
  77. background: #fece00;
  78. padding: 0 25rpx;
  79. box-sizing: border-box;
  80. color: #000;
  81. font-size: 40rpx;
  82. font-weight: 600;
  83. }
  84. .my-collection {
  85. padding: 0 16rpx;
  86. box-sizing: border-box;
  87. }
  88. .collection-item {
  89. width: 100%;
  90. height: 266rpx;
  91. margin-top: 27rpx;
  92. border-radius: 20rpx;
  93. background: red;
  94. }