common.css 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  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. 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. max-width: 1200px;
  51. margin: 0 auto;
  52. }
  53. .cp {
  54. cursor: pointer;
  55. }
  56. .th {
  57. overflow: hidden;
  58. text-overflow:ellipsis;
  59. white-space: nowrap;
  60. }