moment.scss 1008 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. .new_message_bg {
  2. margin-top: 30px;
  3. margin-bottom: 30px;
  4. display: flex;
  5. align-items: center;
  6. justify-content: center;
  7. }
  8. .new_message {
  9. background-color: #000;
  10. height: 72px;
  11. border-radius: 36px;
  12. display: flex;
  13. flex-direction: row;
  14. align-items: center;
  15. }
  16. .message_avatar {
  17. width: 56px;
  18. height: 56px;
  19. border-radius: 28rpx;
  20. }
  21. .share_guide_bg {
  22. position: fixed;
  23. left: 0;
  24. top: 0;
  25. width: 100vw;
  26. height: 100vh;
  27. background-color: #00000066;
  28. display: flex;
  29. align-items: center;
  30. justify-content: center;
  31. flex-direction: column;
  32. z-index: 100;
  33. }
  34. .share_guide_card{
  35. width: 640px;
  36. height: 478px;
  37. background-color: #fff;
  38. border-radius: 24px;
  39. display: flex;
  40. flex-direction: column;
  41. align-items: center;
  42. }
  43. .share_guide_avatar{
  44. width: 200px;
  45. height: 200px;
  46. border-radius: 100px;
  47. box-sizing: border-box;
  48. border: solid 8px #fff;
  49. background-color: #fff;
  50. margin-top: -80px;
  51. }