common.css 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. @charset "utf-8";
  2. * {
  3. box-sizing: border-box;
  4. }
  5. html {
  6. width: 100%;
  7. height: 100%;
  8. /* font-size: 19.2px; */
  9. font-size: 62.5%!important;
  10. /* color: #474747; */
  11. }
  12. body {
  13. font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Segoe UI","Helvetica Neue","PingFang SC","Noto Sans","Noto Sans CJK SC",sans-serif;
  14. -webkit-box-sizing: border-box;
  15. color: #333;
  16. background: #fff;
  17. font-size: 14px;
  18. }
  19. body.gray {
  20. background: #eeeeee;
  21. }
  22. body.fff {
  23. background: #fff;
  24. }
  25. button,
  26. input,
  27. textarea {
  28. border: none;
  29. -webkit-outline: none;
  30. outline: none;
  31. -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  32. -webkit-appearance: none;
  33. border-radius: 0;
  34. padding: 0;
  35. }
  36. .fl {
  37. float: left;
  38. }
  39. .fr {
  40. float: right;
  41. }
  42. a {
  43. color: #474747;
  44. text-decoration: none;
  45. }
  46. a:focus,
  47. a.active,
  48. a:hover {
  49. text-decoration: none;
  50. }
  51. .w1200 {
  52. max-width: 1200px;
  53. margin: 0 auto;
  54. }
  55. .cp {
  56. cursor: pointer;
  57. }
  58. .th {
  59. overflow: hidden;
  60. text-overflow:ellipsis;
  61. white-space: nowrap;
  62. }
  63. .bgF8 {
  64. background-color: #F8FBFF;
  65. }
  66. @font-face {
  67. font-family: Archivo-Bold;
  68. src: url('./Archivo-Bold.ttf');
  69. }
  70. @font-face {
  71. font-family: Nunito-Black;
  72. src: url('./Nunito-Black.ttf');
  73. }
  74. @media only screen and (max-width: 1366px) {
  75. html{
  76. font-size: 13.66px;
  77. }
  78. }