index.vue 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433
  1. <template>
  2. <div class="gzzd">
  3. <div class="topBg">
  4. <!-- 页面头部 -->
  5. <HomePageHead></HomePageHead>
  6. <!-- 页面导航 -->
  7. <HomePageNavigation></HomePageNavigation>
  8. </div>
  9. <!-- 面包屑导航 -->
  10. <div class="breadcrumb">
  11. <div class="inner">
  12. <span class="location">当前位置:</span>
  13. <el-breadcrumb :separator-icon="ArrowRight">
  14. <el-breadcrumb-item>
  15. <NuxtLink to="/">首页</NuxtLink>
  16. </el-breadcrumb-item>
  17. <el-breadcrumb-item>
  18. <NuxtLink to="/shenqingjiaru">申请加入</NuxtLink>
  19. </el-breadcrumb-item>
  20. </el-breadcrumb>
  21. </div>
  22. </div>
  23. <!-- 申请加入内容 -->
  24. <div class="content">
  25. <div class="contentItem">
  26. <h3>网络会员</h3>
  27. <ul>
  28. <li><a href="">调研员</a></li>
  29. </ul>
  30. </div>
  31. <div class="contentItem">
  32. <h3>专兼职人员</h3>
  33. <ul>
  34. <li><a href="">调研员</a></li>
  35. <li><a href="">法制监督员</a></li>
  36. <li><a href="">法制调解员</a></li>
  37. <li><a href="">法制宣传员</a></li>
  38. <li><a href="">舆情处理器</a></li>
  39. <li><a href="">舆情检测员</a></li>
  40. <li><a href="">法制观察员</a></li>
  41. <li><a href="">特邀编辑</a></li>
  42. <li><a href="">特约通讯员</a></li>
  43. <li><a href="">法制资讯信息员</a></li>
  44. <li><a href="">法制调研员</a></li>
  45. <li><a href="">其他工作人员</a></li>
  46. </ul>
  47. </div>
  48. <div class="contentItem">
  49. <h3>地市级中心</h3>
  50. <ul>
  51. <li><a href="">地市级法制联合中心 申请说明</a></li>
  52. </ul>
  53. </div>
  54. </div>
  55. <!-- 页面底部 -->
  56. <HomeFoot></HomeFoot>
  57. </div>
  58. </template>
  59. <script setup>
  60. import { ref, onMounted } from 'vue'
  61. import { ElBreadcrumb, ElBreadcrumbItem } from 'element-plus'
  62. import { ArrowRight } from '@element-plus/icons-vue'
  63. </script>
  64. <style lang="less" scoped>
  65. @media screen and (min-width: 1401px) {
  66. .gzzd {
  67. width: 100%;
  68. font-family: '微软雅黑', Microsoft YaHei;
  69. //导航条
  70. .breadcrumb {
  71. width: 100%;
  72. height: 30PX;
  73. line-height: 30PX;
  74. margin-top: 20PX;
  75. margin-bottom: 20PX;
  76. .inner {
  77. width: 1400PX !important;
  78. border: 1PX solid #ccc;
  79. color: #000;
  80. font-size: 16PX;
  81. margin: 0 auto;
  82. .location {
  83. margin-right: 20PX;
  84. width: 100PX;
  85. height: 22PX;
  86. font-family: Microsoft YaHei, Microsoft YaHei;
  87. font-weight: 400;
  88. font-size: 16PX;
  89. color: #000;
  90. line-height: 23PX;
  91. text-align: left;
  92. font-style: normal;
  93. text-transform: none;
  94. }
  95. }
  96. :deep(.el-breadcrumb__separator) {
  97. color: #000;
  98. font-weight: bold;
  99. margin: 0 9PX;
  100. }
  101. :deep(.el-breadcrumb) {
  102. display: inline-block;
  103. vertical-align: -4PX;
  104. }
  105. :deep(.el-breadcrumb__inner a),
  106. :deep(.el-breadcrumb__inner.is-link) {
  107. color: #000;
  108. font-weight: 400;
  109. text-decoration: none;
  110. transition: var(--el-transition-color);
  111. }
  112. :deep(.el-breadcrumb__item:last-child .el-breadcrumb__inner),
  113. :deep(.el-breadcrumb__item:last-child .el-breadcrumb__inner a),
  114. :deep(.el-breadcrumb__item:last-child .el-breadcrumb__inner a:hover),
  115. :deep(.el-breadcrumb__item:last-child .el-breadcrumb__inner:hover) {
  116. color: #000;
  117. }
  118. span {
  119. font-weight: 400;
  120. font-size: 16PX;
  121. color: #000;
  122. line-height: 23PX;
  123. text-align: left;
  124. font-style: normal;
  125. text-transform: none;
  126. }
  127. }
  128. .content {
  129. width: 1400PX;
  130. margin: 10PX auto;
  131. display: flex;
  132. justify-content: space-between;
  133. .contentItem {
  134. width: 32.33%;
  135. min-height: 550PX;
  136. overflow: hidden;
  137. padding: 10PX 20PX;
  138. background: #55b1e1;
  139. box-sizing: border-box;
  140. h3 {
  141. width: 100%;
  142. height: 40PX;
  143. line-height: 40PX;
  144. overflow: hidden;
  145. text-align: center;
  146. font-size: 18PX;
  147. font-weight: 400;
  148. color: #55b1e1;
  149. background: #fff;
  150. }
  151. ul {
  152. width: 100%;
  153. height: auto;
  154. overflow: hidden;
  155. li {
  156. width: 100%;
  157. line-height: 40PX;
  158. overflow: hidden;
  159. text-align: center;
  160. border-bottom: 1PX dashed #fff;
  161. a {
  162. font-size: 14PX;
  163. color: #fff;
  164. }
  165. }
  166. }
  167. }
  168. }
  169. }
  170. }
  171. @media screen and (min-width: 801px) and (max-width: 1400px) {
  172. .gzzd {
  173. width: 100%;
  174. font-family: '微软雅黑', Microsoft YaHei;
  175. //导航条
  176. .breadcrumb {
  177. width: 100%;
  178. height: 30PX;
  179. line-height: 30PX;
  180. margin-top: 20PX;
  181. margin-bottom: 20PX;
  182. .inner {
  183. width: 100%;
  184. border: 1PX solid #ccc;
  185. color: #000;
  186. font-size: 16PX;
  187. margin: 0 auto;
  188. padding: 0 20PX;
  189. box-sizing: border-box;
  190. .location {
  191. margin-right: 20PX;
  192. width: 100PX;
  193. height: 22PX;
  194. font-family: Microsoft YaHei, Microsoft YaHei;
  195. font-weight: 400;
  196. font-size: 16PX;
  197. color: #000;
  198. line-height: 23PX;
  199. text-align: left;
  200. font-style: normal;
  201. text-transform: none;
  202. }
  203. }
  204. :deep(.el-breadcrumb__separator) {
  205. color: #000;
  206. font-weight: bold;
  207. margin: 0 9PX;
  208. }
  209. :deep(.el-breadcrumb) {
  210. display: inline-block;
  211. vertical-align: -4PX;
  212. }
  213. :deep(.el-breadcrumb__inner a),
  214. :deep(.el-breadcrumb__inner.is-link) {
  215. color: #000;
  216. font-weight: 400;
  217. text-decoration: none;
  218. transition: var(--el-transition-color);
  219. }
  220. :deep(.el-breadcrumb__item:last-child .el-breadcrumb__inner),
  221. :deep(.el-breadcrumb__item:last-child .el-breadcrumb__inner a),
  222. :deep(.el-breadcrumb__item:last-child .el-breadcrumb__inner a:hover),
  223. :deep(.el-breadcrumb__item:last-child .el-breadcrumb__inner:hover) {
  224. color: #000;
  225. }
  226. span {
  227. font-weight: 400;
  228. font-size: 16PX;
  229. color: #000;
  230. line-height: 23PX;
  231. text-align: left;
  232. font-style: normal;
  233. text-transform: none;
  234. }
  235. }
  236. .content {
  237. width: 100%;
  238. margin: 10PX auto;
  239. display: flex;
  240. justify-content: space-between;
  241. .contentItem {
  242. width: 32.33%;
  243. min-height: 550PX;
  244. overflow: hidden;
  245. padding: 10PX 20PX;
  246. background: #55b1e1;
  247. box-sizing: border-box;
  248. h3 {
  249. width: 100%;
  250. height: 40PX;
  251. line-height: 40PX;
  252. overflow: hidden;
  253. text-align: center;
  254. font-size: 18PX;
  255. font-weight: 400;
  256. color: #55b1e1;
  257. background: #fff;
  258. }
  259. ul {
  260. width: 100%;
  261. height: auto;
  262. overflow: hidden;
  263. li {
  264. width: 100%;
  265. line-height: 40PX;
  266. overflow: hidden;
  267. text-align: center;
  268. border-bottom: 1PX dashed #fff;
  269. a {
  270. font-size: 14PX;
  271. color: #fff;
  272. }
  273. }
  274. }
  275. }
  276. }
  277. }
  278. }
  279. @media screen and (max-width: 800px) {
  280. .gzzd {
  281. width: 100%;
  282. font-family: '微软雅黑', Microsoft YaHei;
  283. //导航条
  284. .breadcrumb {
  285. width: 100%;
  286. height: 60px;
  287. line-height: 60px;
  288. margin-top: 40px;
  289. margin-bottom: 40px;
  290. .inner {
  291. width: 100%;
  292. border: 1px solid #ccc;
  293. color: #000;
  294. font-size: 32px;
  295. margin: 0 auto;
  296. .location {
  297. margin-right: 40px;
  298. width: 200px;
  299. height: 44px;
  300. font-family: Microsoft YaHei, Microsoft YaHei;
  301. font-weight: 400;
  302. font-size: 32px;
  303. color: #000;
  304. line-height: 46px;
  305. text-align: left;
  306. font-style: normal;
  307. text-transform: none;
  308. }
  309. }
  310. :deep(.el-breadcrumb__separator) {
  311. color: #000;
  312. font-weight: bold;
  313. margin: 0 18px;
  314. }
  315. :deep(.el-breadcrumb) {
  316. display: inline-block;
  317. vertical-align: -10px;
  318. }
  319. :deep(.el-breadcrumb__inner a),
  320. :deep(.el-breadcrumb__inner.is-link) {
  321. color: #000;
  322. font-weight: 400;
  323. text-decoration: none;
  324. transition: var(--el-transition-color);
  325. }
  326. :deep(.el-breadcrumb__item:last-child .el-breadcrumb__inner),
  327. :deep(.el-breadcrumb__item:last-child .el-breadcrumb__inner a),
  328. :deep(.el-breadcrumb__item:last-child .el-breadcrumb__inner a:hover),
  329. :deep(.el-breadcrumb__item:last-child .el-breadcrumb__inner:hover) {
  330. color: #000;
  331. }
  332. span {
  333. font-weight: 400;
  334. font-size: 32px;
  335. color: #000;
  336. line-height: 46px;
  337. text-align: left;
  338. font-style: normal;
  339. text-transform: none;
  340. }
  341. }
  342. .content {
  343. width: 100%;
  344. margin: 20px auto;
  345. .contentItem {
  346. width: 100%;
  347. min-height: 1000px;
  348. overflow: hidden;
  349. padding: 20px 40px;
  350. background: #55b1e1;
  351. box-sizing: border-box;
  352. h3 {
  353. width: 100%;
  354. height: 80px;
  355. line-height: 80px;
  356. overflow: hidden;
  357. text-align: center;
  358. font-size: 32px;
  359. font-weight: 400;
  360. color: #55b1e1;
  361. background: #fff;
  362. }
  363. ul {
  364. width: 100%;
  365. height: auto;
  366. overflow: hidden;
  367. li {
  368. width: 100%;
  369. line-height: 80px;
  370. overflow: hidden;
  371. text-align: center;
  372. border-bottom: 2px dashed #fff;
  373. a {
  374. font-size: 28px;
  375. color: #fff;
  376. }
  377. }
  378. }
  379. }
  380. }
  381. }
  382. }
  383. </style>