| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- .call {
- display: inline-block;
- position: relative;
- cursor: pointer;
- &-icon {
- display: flex;
- flex-direction: row;
- justify-content: center;
- align-items: center;
- .icon-down-arrow {
- margin: 12Px 1Px 0;
- }
- }
- &-main {
- position: absolute;
- z-index: 5;
- background: #ffffff;
- top: 37Px;
- left: calc(-50% + 20Px);
- border-radius: 2Px;
- display: flex;
- flex-direction: column;
- width: 80Px;
- border: 0.5Px solid #e0e0e0;
- box-shadow: 0 4Px 12Px 0 rgba(0, 0, 0, 0.06);
- &-voice,
- &-video {
- height: 34Px;
- text-align: center;
- font-size: 13Px;
- line-height: 34Px;
- align-items: center;
- }
- &-voice:hover,
- &-video:hover {
- background: #dceafd;
- }
- }
- &-main:before {
- content: '';
- position: absolute;
- bottom: 100%;
- left: calc(50% - 9Px);
- border-left: 7Px solid transparent;
- border-right: 7Px solid transparent;
- border-bottom: 7Px solid #e0e0e0;
- }
- &-main:after {
- content: '';
- position: absolute;
- bottom: 100%;
- left: calc(50% - 8Px);
- border-left: 6Px solid transparent;
- border-right: 6Px solid transparent;
- border-bottom: 6Px solid #ffffff;
- }
- .uncall-dialog {
- width: 500Px;
- height: 300Px;
- background: linear-gradient(180deg, #e9f3ff 0%, #f4f8ff 100%);
- border-radius: 20Px;
- &-body {
- a {
- font-family: PingFangSC-Regular;
- font-weight: 400;
- color: #006eff;
- letter-spacing: 0;
- }
- }
- }
- }
- .call-kit-container {
- position: fixed;
- left: calc(50% - 25rem);
- top: calc(50% - 18rem);
- width: 50rem;
- height: 36rem;
- border-radius: 16Px;
- box-shadow: rgba(0, 0, 0, 0.16) 0Px 3Px 6Px, rgba(0, 0, 0, 0.23) 0Px 3Px 6Px;
- &-left {
- left: calc(50% - 25rem + 150Px);
- }
- }
|