download.component.scss 816 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. .logo {
  2. margin: 60px auto 13.333vw auto;
  3. text-align: center;
  4. .invite-title {
  5. margin: 160px auto;
  6. font-size: 14px;
  7. span {
  8. color: #fe4f55;
  9. // font-weight: 700;
  10. font-size: 18px;
  11. }
  12. }
  13. img {
  14. width: 21.333vw;
  15. height: 21.333vw;
  16. border-radius: 10px;
  17. }
  18. }
  19. .block {
  20. margin: 30px auto;
  21. display: flex;
  22. flex-direction: column;
  23. .li {
  24. width: 300px;
  25. margin: auto;
  26. display: flex;
  27. justify-content: space-between;
  28. align-items: center;
  29. border: 1px solid;
  30. margin-bottom: 20px;
  31. padding: 10px;
  32. height: 80px;
  33. .h3 {
  34. font-size: 20px;
  35. font-weight: bold;
  36. }
  37. img {
  38. width: 200px;
  39. // height: 50px;
  40. }
  41. }
  42. }
  43. .post_fxd {
  44. position: fixed;
  45. top: 0;
  46. left: 0;
  47. background: rgb(0 0 0 / 51%);
  48. height: 100%;
  49. }