index.wxss 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. .medalStore .header {
  2. width: 100%;
  3. padding: 60rpx 46rpx;
  4. box-sizing: border-box;
  5. background-color: #30C866;
  6. display: flex;
  7. justify-content: space-between;
  8. align-items: center;
  9. color: white;
  10. }
  11. .medalStore .header .left .title {
  12. font-size: 42rpx;
  13. font-weight: bold;
  14. }
  15. .medalStore .header .left .tips {
  16. margin-top: 16rpx;
  17. font-size: 24rpx;
  18. }
  19. .medalStore .header .right {
  20. font-size: 54rpx;
  21. }
  22. .medalStore .body {
  23. background-color: #F2F6FC;
  24. }
  25. .medalStore .body .medalsBox {
  26. width: 100%;
  27. margin-bottom: 22rpx;
  28. background-color: white;
  29. }
  30. .medalStore .body .medalsBox .title {
  31. padding: 25rpx 38rpx;
  32. box-sizing: border-box;
  33. font-size: 32rpx;
  34. font-weight: bold;
  35. color: #000;
  36. }
  37. .medalStore .body .medalsBox .medalList {
  38. display: flex;
  39. align-items: center;
  40. flex-wrap: wrap;
  41. }
  42. .medalStore .body .medalsBox .medalList .medal {
  43. width: 33%;
  44. margin-bottom: 30rpx;
  45. text-align: center;
  46. }
  47. .medalStore .body .medalsBox .medalList .medal .medalImg {
  48. width: 184rpx;
  49. height: 169rpx;
  50. }
  51. .medalStore .body .medalsBox .medalList .medal .name {
  52. display: inline-block;
  53. text-align: center;
  54. padding: 6rpx 40rpx;
  55. font-size: 20rpx;
  56. border-radius: 50rpx;
  57. background-color: #FDD126;
  58. }