common.css 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  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: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Segoe UI","Helvetica Neue","PingFang SC","Noto Sans","Noto Sans CJK SC","Microsoft YaHei",微软雅黑,sans-serif;
  13. -webkit-box-sizing: border-box;
  14. color: #333;
  15. background: #fff;
  16. font-size: 14px;
  17. }
  18. body.gray {
  19. background: #eeeeee;
  20. }
  21. body.fff {
  22. background: #fff;
  23. }
  24. button,
  25. input,
  26. textarea {
  27. border: none;
  28. -webkit-outline: none;
  29. outline: none;
  30. -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  31. -webkit-appearance: none;
  32. border-radius: 0;
  33. padding: 0;
  34. }
  35. .fl {
  36. float: left;
  37. }
  38. .fr {
  39. float: right;
  40. }
  41. a {
  42. color: #474747;
  43. text-decoration: none;
  44. }
  45. a:focus,
  46. a.active,
  47. a:hover {
  48. text-decoration: none;
  49. }
  50. .w1200 {
  51. max-width: 1200px;
  52. margin: 0 auto;
  53. }
  54. .cp {
  55. cursor: pointer;
  56. }
  57. .th {
  58. overflow: hidden;
  59. text-overflow:ellipsis;
  60. white-space: nowrap;
  61. }