1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- .box {
- position: fixed;
- right: 0;
- z-index: 999;
- display: flex;
- justify-content: flex-end;
- align-items: flex-end;
- flex-direction: column;
- width: 600px;
- }
- .arrow {
- width: 0;
- height: 0;
- border-width: 5px;
- border-style: solid;
- border-color: transparent transparent rgba(0, 0, 0, 0.75) transparent;
- }
- .body {
- background-color: rgba(0, 0, 0, 0.75);
- border-radius: 15px;
- display: flex;
- align-items: center;
- justify-content: center;
- height: 42px;
- padding: 10px;
- zoom: 1.5;
- }
- .tips {
- flex: 1;
- color: #fff;
- font-size: 20px;
- font-weight: 700;
- }
- .logo {
- height: 42px;
- width: 42px;
- border-radius: 8px;
- margin-right: 10px;
- }
-
- .button-view {
- color: #04b040;
- text-align: center;
- font-size: 20px;
- /* line-height: 22px; */
- display: initial;
- }
|