common.scss 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147
  1. $deep-blue: #004a97;
  2. html,
  3. body,
  4. #__nuxt,
  5. #__layout {
  6. height: 100%;
  7. box-sizing: border-box;
  8. }
  9. @media screen and (min-width: 1200px) {
  10. html {
  11. // font-size: 16px;
  12. .card-wrap {
  13. grid-template-columns: repeat(5, 1fr);
  14. }
  15. }
  16. }
  17. @media screen and (max-width: 1200px) {
  18. html {
  19. // font-size: 14px;
  20. .card-wrap {
  21. grid-template-columns: repeat(4, 1fr);
  22. .card {
  23. &:nth-child(n + 9) {
  24. display: none;
  25. }
  26. }
  27. }
  28. }
  29. }
  30. html {
  31. font-family:
  32. Proxima Nova,
  33. ProximaNova-Regular,
  34. ProximaNova-Light;
  35. }
  36. @font-face {
  37. font-family: "Proxima Nova";
  38. src: url("@/assets/font/ProximaNova.ttf");
  39. font-weight: normal;
  40. font-style: normal;
  41. }
  42. @font-face {
  43. font-family: "ProximaNova-Regular";
  44. src: url("@/assets/font/ProximaNova-Regular.ttf");
  45. font-weight: normal;
  46. font-style: normal;
  47. }
  48. @font-face {
  49. font-family: "ProximaNova-Light";
  50. src: url("@/assets/font/ProximaNova-Light.ttf");
  51. font-weight: normal;
  52. font-style: normal;
  53. }
  54. body {
  55. padding-right: 0px !important;
  56. font-size: 14px;
  57. margin: 0 auto;
  58. }
  59. .com-body {
  60. height: 100%;
  61. box-sizing: border-box;
  62. padding-top: 148px;
  63. display: flex;
  64. flex-direction: column;
  65. .com-main {
  66. flex: 1;
  67. }
  68. }
  69. .com-width-1400 {
  70. max-width: 1400px;
  71. width: 100%;
  72. }
  73. .com-width-1200 {
  74. max-width: 1200px;
  75. }
  76. .com-minwidth-1024 {
  77. min-width: 1024px;
  78. }
  79. .com-fixationwidth-1400 {
  80. width: 1400px;
  81. }
  82. .com-padding {
  83. padding: 0 250px;
  84. }
  85. .com-margin-auto {
  86. margin: 0 auto;
  87. }
  88. .com-flex {
  89. display: flex;
  90. flex-direction: row;
  91. align-items: center;
  92. .com-flex-item {
  93. flex: 1;
  94. }
  95. }
  96. textarea {
  97. //font-family: Arial, Helvetica, sans-serif;
  98. //修改点[1]
  99. font-family:
  100. "Helvetica Neue",
  101. Proxima Nova,
  102. ProximaNova-Regular,
  103. ProximaNova-Light,
  104. HiraginoSansGB-W6;
  105. }
  106. .com-loading {
  107. height: 400px;
  108. }
  109. .com-singe-line {
  110. text-overflow: ellipsis;
  111. overflow: hidden;
  112. word-break: break-all;
  113. white-space: nowrap;
  114. }
  115. .com-btnblack {
  116. background-color: $deep-blue !important;
  117. border-color: $deep-blue !important;
  118. &:hover {
  119. background-color: #013269;
  120. }
  121. }
  122. body > .pac-container {
  123. // 这个是谷歌地图api的自动补全地址的样式名,
  124. // 固定z-index是为了覆盖默认的1000, 让其能在各种弹窗上正确显示.
  125. z-index: 10000 !important;
  126. }