common.css 815 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. @charset "utf-8";
  2. * {
  3. box-sizing: border-box;
  4. }
  5. html {
  6. width: 100%;
  7. height: 100%;
  8. font-size: 62.5%!important;
  9. /* color: #474747; */
  10. }
  11. body {
  12. font-family: "PingFang SC", 'Microsoft YaHei', 'Hiragino Sans GB', 'Arail';
  13. -webkit-box-sizing: border-box;
  14. margin: 0;
  15. background: #eee;
  16. }
  17. body.gray {
  18. background: #eeeeee;
  19. }
  20. body.fff {
  21. background: #fff;
  22. }
  23. button,
  24. input,
  25. textarea {
  26. border: none;
  27. -webkit-outline: none;
  28. outline: none;
  29. -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  30. -webkit-appearance: none;
  31. border-radius: 0;
  32. padding: 0;
  33. }
  34. .fl {
  35. float: left;
  36. }
  37. .fr {
  38. float: right;
  39. }
  40. a {
  41. color: #474747;
  42. text-decoration: none;
  43. }
  44. a:focus,
  45. a.active,
  46. a:hover {
  47. text-decoration: none;
  48. }
  49. .w1200 {
  50. width: 1200px;
  51. margin: 0 auto;
  52. }