index.wxss 793B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. .box {
  2. position: fixed;
  3. right: 0;
  4. z-index: 999;
  5. display: flex;
  6. justify-content: flex-end;
  7. align-items: flex-end;
  8. flex-direction: column;
  9. width: 600px;
  10. }
  11. .arrow {
  12. width: 0;
  13. height: 0;
  14. border-width: 5px;
  15. border-style: solid;
  16. border-color: transparent transparent rgba(0, 0, 0, 0.75) transparent;
  17. }
  18. .body {
  19. background-color: rgba(0, 0, 0, 0.75);
  20. border-radius: 15px;
  21. display: flex;
  22. align-items: center;
  23. justify-content: center;
  24. height: 42px;
  25. padding: 10px;
  26. zoom: 1.5;
  27. }
  28. .tips {
  29. flex: 1;
  30. color: #fff;
  31. font-size: 20px;
  32. font-weight: 700;
  33. }
  34. .logo {
  35. height: 42px;
  36. width: 42px;
  37. border-radius: 8px;
  38. margin-right: 10px;
  39. }
  40. .button-view {
  41. color: #04b040;
  42. text-align: center;
  43. font-size: 20px;
  44. /* line-height: 22px; */
  45. display: initial;
  46. }