community-pop.wxss 770 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. .container {
  2. display: flex;
  3. flex-direction: column;
  4. align-items: center;
  5. justify-content: center;
  6. height: 100%;
  7. }
  8. .wrapper {
  9. padding: 0 40rpx;
  10. display: flex;
  11. flex-wrap: wrap;
  12. }
  13. .letter {
  14. display: flex;
  15. flex-direction: column;
  16. align-items: center;
  17. justify-content: center;
  18. width: calc(calc(100% / 2) - 30rpx);
  19. margin: 15rpx;
  20. height: 310rpx;
  21. box-sizing: border-box;
  22. background: #FFFFFF;
  23. box-shadow: 0 0 27rpx 0 rgba(0, 0, 0, 0.35);
  24. border-radius: 30rpx;
  25. }
  26. .letter-text {
  27. font-size: 30rpx;
  28. color: #333333;
  29. }
  30. .letter-info {
  31. font-size: 24rpx;
  32. color: #999999;
  33. }
  34. .wrapper-close {
  35. margin-top: 50rpx;
  36. display: flex;
  37. align-items: center;
  38. justify-content: center;
  39. }