index.vue 13 KB

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