screen.css 550 B

1234567891011121314151617181920212223242526272829303132
  1. .el-tip {
  2. position: fixed;
  3. left: 50%;
  4. top: 50%;
  5. width: 500px;
  6. padding: 8px 16px;
  7. margin: 0;
  8. margin-left: -250px;
  9. margin-top: -60px;
  10. box-sizing: border-box;
  11. border-radius: 4px;
  12. position: relative;
  13. background-color: #fff;
  14. overflow: hidden;
  15. opacity: 1;
  16. display: flex;
  17. align-items: center;
  18. transition: opacity .2s;
  19. }
  20. .el-tip--warning {
  21. background-color: #fdf6ec;
  22. color: #e6a23c;
  23. }
  24. .el-tip__title {
  25. line-height: 18px;
  26. }
  27. .el-tip_img img{
  28. width: 80px;
  29. height: 80px;
  30. }