| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- .LoadingVideo {
- width: 100%;
- height: 100%;
- .videoBox {
- width: 100%;
- height: 100%;
- & > video {
- width: 100%;
- height: 100%;
- object-fit: fill;
- }
- }
- }
- .loadingBox {
- position: absolute;
- z-index: 2;
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- background-image: url('../../../assets/img/loading_bg.jpg');
- background-size: 100% 100%;
- background-repeat: no-repeat;
- background-position: center center;
- display: flex;
- align-items: center;
- justify-content: center;
- flex-direction: column;
- gap: 3%;
- opacity: 1;
- transition: opacity 0.6s ease;
- .loadingLogo {
- width: 10%;
- & > img {
- width: 100%;
- object-fit: contain;
- }
- }
- .loading {
- width: 33%;
- height: 2.3%;
- margin-bottom: 4%;
- display: flex;
- align-items: center;
- justify-content: center;
- flex-direction: column;
- position: relative;
- .progress {
- width: 100%;
- height: 100%;
- border: 1px solid rgba(255, 239, 197, 1);
- border-radius: 0.5vw;
- padding: 0.2vw;
- .thumb {
- width: 0;
- height: 100%;
- border-radius: 0.5vw;
- background-color: rgba(255, 239, 197, 1);
- }
- }
- .percent {
- position: absolute;
- top: 0;
- right: -11%;
- width: 8%;
- height: 100%;
- font-size: 1vw;
- line-height: 1;
- color: rgba(255, 239, 197, 1);
- }
- }
- }
- .loadingBoxExiting {
- opacity: 0;
- pointer-events: none;
- }
|