style.css 688 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, code, legend, button, form, fieldset, input, textarea, p, blockquote, th, td{
  2. padding:0;
  3. margin:0;
  4. border:0;
  5. box-sizing:border-box;
  6. }
  7. body{
  8. font:16px/1.5 "Helvetica Neue", Helvetica, Arial, "Microsoft Yahei",
  9. "Hiragino Sans GB", "Heiti SC", "WenQuanYi Micro Hei", sans-serif;
  10. color:#333;
  11. }
  12. em, i{
  13. font-style:normal;
  14. }
  15. ol, ul{
  16. list-style:none;
  17. }
  18. img {
  19. vertical-align: middle;
  20. }
  21. button,input {
  22. cursor: pointer;
  23. outline: none;
  24. color: #333;
  25. }
  26. /* 左浮动 */
  27. .fl {
  28. float: left;
  29. }
  30. /* 右浮动 */
  31. .fr {
  32. float: right;
  33. }
  34. a {
  35. text-decoration: none;
  36. color: #333;
  37. }