| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- * {
- padding: 0;
- margin: 0;
- }
- .loadinggif {
- width: 50px;
- height: 50px;
- position: fixed;
- left: 50%;
- bottom: 50%;
- margin-left: -25px;
- margin-top: -25px;
- z-index: 99;
- }
- .Bvideo {
- display: flex;
- width: 100%;
- height: auto;
- left: 0;
- top: 0;
- z-index: 1;
- }
- .Svideo {
- position: fixed;
- flex-direction: row;
- width: 30%;
- height: auto;
- left: auto;
- right: 0;
- bottom: 0;
- z-index: 99;
- }
- .bottomView{
- position: fixed;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- width: 100%;
- height: 100px;
- top: auto;
- bottom: 0;
- z-index: 999;
- background-color: rgba(100, 100, 100, 0.5); /* 黑色,50% 透明度 */
- }
- .contentInRowC{
- display: flex;
- flex-direction: row;
- justify-content: center;
- align-items: center;
- }
- .contentColumnC{
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- }
- .iconImg{
- width: 120px;
- height: 120px;
- border-radius: 6px;
- }
- .guadanImg{
- width: 54px;
- height: 54px;
- }
- .calling{
- width: 26px;
- height: 26px;
- }
|