123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- .components.ShareToCircle {
- width: 100%;
- position: fixed;
- left: 0;
- top: 0;
- bottom: 0;
- z-index: 1000;
- background: rgba(0, 0, 0, 0.6);
- display: none;
- &.show {
- display: block;
- }
- >view {
- display: inline-block;
- position: absolute;
- right: 30px;
- width: 386px;
- font-size: 0;
- white-space: nowrap;
- background: #FF9700;
- border-radius: 8px;
- overflow: visible;
- top: 20px;
- text-align: center;
- &::after {
- content: '';
- display: block;
- position: absolute;
- right: 30px;
- top: -30px;
- width: 0;
- height: 0;
- border-color: transparent transparent #FF9700 transparent;
- border-style: solid solid dashed solid;
- border-width: 20px;
- }
- >text {
- display: inline-block;
- vertical-align: middle;
- font-size: 28px;
- color: #fff;
- line-height: 60px;
- }
- }
- }
|