123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- .c-popup {
- position: fixed;
- top: 0;
- left: 0;
- right: 0;
- bottom: 0;
- background: no-repeat center / cover;
- background-color: white;
- animation: fadeIn 0.2s;
- z-index: 9999;
- }
- .c-popup__border {
- position: absolute;
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- }
- .c-popup-alert {
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- position: absolute;
- top: 30vh;
- left: 50%;
- width: 263rpx;
- height: 263rpx;
- background: rgba(183, 138, 45, 0.3);
- box-shadow: 0px 7rpx 7rpx 0px rgba(0, 0, 0, 0.3);
- border-radius: 7rpx;
- font-size: 28rpx;
- font-weight: bold;
- color: white;
- transform: translateX(-50%);
- }
- .c-popup-alert image {
- margin-bottom: 25rpx;
- width: 80rpx;
- height: 80rpx;
- }
- .c-popup__recording {
- position: absolute;
- top: 80rpx;
- left: 80rpx;
- width: 188rpx;
- }
- @keyframes fadeIn {
- 0% {
- opacity: 0;
- }
- 100% {
- opacity: 1;
- }
- }
|