flash-notice.css 470 B

12345678910111213141516171819202122232425262728293031
  1. @charset "utf-8";
  2. .flash-notice {
  3. display:table;
  4. }
  5. .flash-notice > * {
  6. display:table-cell;
  7. vertical-align:middle;
  8. }
  9. .flash-notice > a:first-child {
  10. float:left;
  11. margin-right:8px;
  12. }
  13. .flash-btn {
  14. width:72px;
  15. height:72px;
  16. text-align:center;
  17. background-color:#db2e23;
  18. border-radius:4px;
  19. outline:none;
  20. }
  21. .flash-btn:hover {
  22. background-color:#ed573f;
  23. }
  24. .flash-btn:active {
  25. background-color:#a72218;
  26. }
  27. .flash-btn > img {
  28. width:48px;
  29. height:60px;
  30. margin-top:6px;
  31. }