123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. .components.ShareToCircle {
  2. width: 100%;
  3. position: fixed;
  4. left: 0;
  5. top: 0;
  6. bottom: 0;
  7. z-index: 1000;
  8. background: rgba(0, 0, 0, 0.6);
  9. display: none;
  10. &.show {
  11. display: block;
  12. }
  13. >view {
  14. display: inline-block;
  15. position: absolute;
  16. right: 30px;
  17. width: 386px;
  18. font-size: 0;
  19. white-space: nowrap;
  20. background: #FF9700;
  21. border-radius: 8px;
  22. overflow: visible;
  23. top: 20px;
  24. text-align: center;
  25. &::after {
  26. content: '';
  27. display: block;
  28. position: absolute;
  29. right: 30px;
  30. top: -30px;
  31. width: 0;
  32. height: 0;
  33. border-color: transparent transparent #FF9700 transparent;
  34. border-style: solid solid dashed solid;
  35. border-width: 20px;
  36. }
  37. >text {
  38. display: inline-block;
  39. vertical-align: middle;
  40. font-size: 28px;
  41. color: #fff;
  42. line-height: 60px;
  43. }
  44. }
  45. }