index.less 1.3 KB

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