navigation.css 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370
  1. body,
  2. h1,
  3. h2,
  4. h3,
  5. h4,
  6. h5,
  7. h6,
  8. div,
  9. p,
  10. dl,
  11. dt,
  12. dd,
  13. ol,
  14. ul,
  15. li,
  16. form,
  17. table,
  18. th,
  19. td,
  20. a,
  21. img,
  22. span,
  23. strong,
  24. var,
  25. em,
  26. input,
  27. textarea,
  28. select,
  29. option {
  30. margin: 0;
  31. padding: 0;
  32. }
  33. body {
  34. width: 100%;
  35. height: 100%;
  36. background: #EFEFEF;
  37. }
  38. html {
  39. width: 100%;
  40. height: 100%;
  41. }
  42. ul,
  43. ol,
  44. li {
  45. list-style: none;
  46. }
  47. .flot {
  48. width: 24px;
  49. height: 19px;
  50. }
  51. .line {
  52. width: 100%;
  53. height: 2px;
  54. border: 1px solid #666666;
  55. opacity: 0.2;
  56. margin-top: 20px;
  57. background-color: #666666;
  58. }
  59. .icon {
  60. width: 20px;
  61. height: 20px;
  62. }
  63. .deploiement {
  64. overflow: hidden;
  65. white-space: nowrap;
  66. text-overflow: ellipsis;
  67. }
  68. .content {
  69. background-color: #EBF0F3;
  70. font-weight: 400;
  71. display: flex;
  72. justify-content: center;
  73. }
  74. .center {
  75. position: absolute;
  76. width: 750px;
  77. background-color: #ffffff;
  78. }
  79. .nav {
  80. width: 200px;
  81. padding: 0 23px;
  82. }
  83. .nav p {
  84. width: 200px;
  85. height: 40px;
  86. font-size: 42px;
  87. font-family: PingFang SC;
  88. font-weight: bold;
  89. color: #1D498E;
  90. line-height: 60px;
  91. }
  92. .nav .nav-line {
  93. width: 89px;
  94. height: 8px;
  95. background: #1D498E;
  96. margin: 18px 0 0 40px;
  97. }
  98. .hqdh {
  99. margin-top: 37px;
  100. padding: 0 23px;
  101. }
  102. .hqdh .hqdh-nav {
  103. display: flex;
  104. justify-content: space-between;
  105. align-items: center;
  106. }
  107. .hqdh .hqdh-nav .hqdh-title {
  108. font-size: 26px;
  109. font-family: PingFang SC;
  110. font-weight: 400;
  111. color: #333333;
  112. line-height: 60px;
  113. }
  114. .hqdh .hqdh-nav .hqdh-fold span {
  115. font-size: 26px;
  116. font-family: PingFang SC;
  117. font-weight: 400;
  118. color: #666666;
  119. line-height: 60px;
  120. cursor: pointer;
  121. }
  122. .hqdh .hqdh-content {
  123. display: flex;
  124. flex-wrap: wrap;
  125. justify-content: flex-start;
  126. }
  127. .hqdh .hqdh-content.up {
  128. height: 80px;
  129. overflow: hidden;
  130. }
  131. .hqdh .hqdh-content .type-item {
  132. margin-right: 15px;
  133. margin-bottom: 20px;
  134. }
  135. .hqdh .hqdh-content .type-item p {
  136. margin-right: 39px;
  137. font-size: 24px;
  138. font-family: PingFang SC;
  139. font-weight: 400;
  140. line-height: 60px;
  141. cursor: pointer;
  142. }
  143. .active {
  144. color: #1D498E;
  145. border-bottom: 2px solid #1D498E;
  146. }
  147. .deActive {
  148. color: #333333;
  149. }
  150. .hqsx-title {
  151. display: flex;
  152. justify-content: space-between;
  153. align-items: center;
  154. background: #EFEFEF;
  155. }
  156. .hqsx-title-left {
  157. font-size: 22px;
  158. font-family: PingFang SC;
  159. font-weight: 400;
  160. color: #333333;
  161. line-height: 60px;
  162. }
  163. .hqsx-title-left span {
  164. color: red;
  165. }
  166. .hqsx-title-right {
  167. font-size: 26px;
  168. font-family: PingFang SC;
  169. font-weight: 400;
  170. color: #333333;
  171. line-height: 60px;
  172. }
  173. .hqsx-title-right label {
  174. margin-right: 10px;
  175. position: relative;
  176. display: inline-block;
  177. padding: 7px;
  178. background-color: #fff;
  179. border-radius: 2px;
  180. border: 1px solid #e4e4e4;
  181. }
  182. .hqsx-title-right label.on {
  183. border: 1px solid #004a93;
  184. }
  185. .hqsx-title-right label.on:after {
  186. content: '\2714';
  187. position: absolute;
  188. font-size: 16px;
  189. top: -3px;
  190. left: 0px;
  191. color: #004a93;
  192. font-weight: bold;
  193. line-height: 20px;
  194. }
  195. .hqsx-title-right input {
  196. display: none;
  197. }
  198. .hqsx {
  199. padding: 20px 23px;
  200. }
  201. .hqsx dl {
  202. margin-bottom: 39px;
  203. }
  204. .hqsx dl.on {
  205. border: 1px solid #004a93;
  206. border-radius: 4px;
  207. }
  208. .hqsx dl dt {
  209. background: #FFFFFF;
  210. border: 1px solid #E0E0E0;
  211. border-radius: 4px;
  212. display: flex;
  213. justify-content: space-between;
  214. align-items: center;
  215. padding: 0 20px;
  216. cursor: pointer;
  217. }
  218. .hqsx dl dt.on {
  219. background: #004a93;
  220. border: hidden;
  221. }
  222. .hqsx dl dt p {
  223. width: 80%;
  224. font-size: 28px;
  225. font-family: PingFang SC;
  226. font-weight: 400;
  227. color: #333333;
  228. line-height: 60px;
  229. }
  230. .hqsx dl dt p.on {
  231. color: #ffffff;
  232. }
  233. .hqsx dl dt img {
  234. width: 18px;
  235. height: 29px;
  236. }
  237. .hqsx dl dd {
  238. padding: 10px 20px 20px 20px;
  239. display: none;
  240. }
  241. .hqsx dl dd div {
  242. margin-top: 20px;
  243. display: flex;
  244. justify-content: start;
  245. }
  246. .hqsx dl dd div p {
  247. display: flex;
  248. justify-content: space-between;
  249. align-items: center;
  250. margin-right: 45px;
  251. }
  252. .hqsx dl dd div p img {
  253. margin-right: 12px;
  254. }
  255. .hqsx dl dd div p span {
  256. font-size: 22px;
  257. font-family: PingFang SC;
  258. font-weight: 400;
  259. color: #333333;
  260. line-height: 60px;
  261. }
  262. .hqsx dl dd>p {
  263. font-size: 26px;
  264. font-family: PingFang SC;
  265. font-weight: 400;
  266. color: #999999;
  267. margin-top: 20px;
  268. }
  269. .footer {
  270. padding: 0 23px;
  271. display: flex;
  272. justify-content: space-between;
  273. }
  274. .footer button{
  275. width: 165px;
  276. line-height: 65px;
  277. background: #FFFFFF;
  278. border: 1px solid #E0E0E0;
  279. border-radius: 10px;
  280. text-align: center;
  281. margin-right: 19px;
  282. cursor: pointer;
  283. font-size: 26px;
  284. font-family: PingFang SC;
  285. font-weight: 400;
  286. color: #333333;
  287. }
  288. .footer>div:nth-child(2) {
  289. /* display: flex;
  290. justify-content: space-around;
  291. cursor: pointer; */
  292. line-height: 65px;
  293. font-size: 26px;
  294. font-family: PingFang SC;
  295. font-weight: 400;
  296. color: #333333;
  297. }
  298. .footer>div:nth-child(2) p {
  299. width: 98px;
  300. line-height: 65px;
  301. background: #FFFFFF;
  302. border: 1px solid #E0E0E0;
  303. border-radius: 10px;
  304. text-align: center;
  305. margin-right: 19px;
  306. cursor: pointer;
  307. }
  308. /* .footer>div:nth-child(3) {
  309. width: 165px;
  310. line-height: 65px;
  311. background: #FFFFFF;
  312. border: 1px solid #E0E0E0;
  313. border-radius: 10px;
  314. text-align: center;
  315. cursor: pointer;
  316. font-size: 26px;
  317. font-family: PingFang SC;
  318. font-weight: 400;
  319. color: #333333;
  320. } */