index.vue 36 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087
  1. <template>
  2. <div class="clcx">
  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="/">车辆查询</NuxtLink>
  17. </el-breadcrumb-item>
  18. </el-breadcrumb>
  19. </div>
  20. </div>
  21. <!-- 人员查询内容 -->
  22. <div class="rycxContent">
  23. <div class="contentLeft">
  24. <div class="conLeft">
  25. <div class="topTitle">
  26. <img src="../../public/index/search.png" alt="">
  27. 查询相关工作车辆或车牌号
  28. </div>
  29. <div class="con_text">车牌号/车型(注:车型支持模糊查询)</div>
  30. <el-form :model="form" label-width="auto" style="max-width: 375px">
  31. <el-form-item label="车牌:">
  32. <el-input v-model="form.name" placeholder="请输入车牌" />
  33. </el-form-item>
  34. <el-form-item label="车型:">
  35. <el-input v-model="form.cardID" placeholder="请输入车型" />
  36. </el-form-item>
  37. </el-form>
  38. <div class="submit">
  39. <button class="submitBtn">查询</button>
  40. </div>
  41. </div>
  42. <div class="conRight">
  43. <img src="../../public/index/index.png" alt="">
  44. <div>手机扫描查询</div>
  45. </div>
  46. </div>
  47. <div class="contentRight">
  48. <div class="right_part1">
  49. <div class="part1Title">人员查询</div>
  50. <div class="part1Text">查询相关工作人员或外聘人员</div>
  51. <p class="concent_List">
  52. 人员类型:
  53. <select name="" id="">
  54. <option value="shanghai">不限</option>
  55. <option value="beijing">工作人员</option>
  56. <option value="guangzhou">外聘人员</option>
  57. </select>
  58. </p>
  59. <p class="concent_List">
  60. 人员姓名:
  61. <input type="text" name="" id="" placeholder="请输入人员姓名">
  62. </p>
  63. <p class="concent_List">
  64. 证件编号:
  65. <input type="text" name="" id="" placeholder="请输入证件编号">
  66. </p>
  67. <div class="btnBox1">
  68. <button class="cxbtn">提交</button>
  69. </div>
  70. </div>
  71. <div class="right_part1">
  72. <div class="part1Title">选题查询</div>
  73. <div class="part1Text">请输入你想要查询的选题</div>
  74. <div class="selectBox">
  75. <span>地区:</span>
  76. <select name="" id="">
  77. <option value="shanghai">--</option>
  78. <option value="beijing">地区1</option>
  79. <option value="guangzhou">地区2</option>
  80. </select>
  81. <select name="" id="">
  82. <option value="shanghai">--</option>
  83. <option value="beijing">地区1</option>
  84. <option value="guangzhou">地区2</option>
  85. </select>
  86. <select name="" id="">
  87. <option value="shanghai">--</option>
  88. <option value="beijing">地区1</option>
  89. <option value="guangzhou">地区2</option>
  90. </select>
  91. </div>
  92. <input type="text" name="" id="" placeholder="选题名称">
  93. <div class="btnBox">
  94. <button class="cxbtn">查询</button>
  95. <button class="rebtn">重置</button>
  96. </div>
  97. </div>
  98. </div>
  99. </div>
  100. <!-- 页面底部 -->
  101. <HomeFoot></HomeFoot>
  102. </div>
  103. </template>
  104. <script setup>
  105. import { ref, onMounted } from 'vue'
  106. import { ElBreadcrumb, ElBreadcrumbItem, ElForm, ElFormItem, ElInput, ElSelect, ElOption, ElButton } from 'element-plus'
  107. import { ArrowRight } from '@element-plus/icons-vue'
  108. const form = ref({
  109. name: '',
  110. region: '',
  111. cardID: '',
  112. })
  113. </script>
  114. <style lang="less" scoped>
  115. @media screen and (min-width: 1401px) {
  116. .clcx {
  117. font-family: '微软雅黑', Microsoft YaHei;
  118. //导航条
  119. .breadcrumb {
  120. width: 100%;
  121. height: 30PX;
  122. line-height: 30PX;
  123. margin-top: 20PX;
  124. margin-bottom: 20PX;
  125. .inner {
  126. width: 1400PX;
  127. border: 1PX solid #ccc;
  128. color: #000;
  129. font-size: 16PX;
  130. margin: 0 auto;
  131. .location {
  132. margin-right: 20PX;
  133. width: 100PX;
  134. height: 22PX;
  135. font-family: Microsoft YaHei, Microsoft YaHei;
  136. font-weight: 400;
  137. font-size: 16PX;
  138. color: #000;
  139. line-height: 23PX;
  140. text-align: left;
  141. font-style: normal;
  142. text-transform: none;
  143. }
  144. }
  145. :deep(.el-breadcrumb__separator) {
  146. color: #000;
  147. font-weight: bold;
  148. margin: 0 9PX;
  149. }
  150. :deep(.el-breadcrumb) {
  151. display: inline-block;
  152. vertical-align: -4PX;
  153. }
  154. :deep(.el-breadcrumb__inner a),
  155. :deep(.el-breadcrumb__inner.is-link) {
  156. color: #000;
  157. font-weight: 400;
  158. text-decoration: none;
  159. transition: var(--el-transition-color);
  160. }
  161. :deep(.el-breadcrumb__item:last-child .el-breadcrumb__inner),
  162. :deep(.el-breadcrumb__item:last-child .el-breadcrumb__inner a),
  163. :deep(.el-breadcrumb__item:last-child .el-breadcrumb__inner a:hover),
  164. :deep(.el-breadcrumb__item:last-child .el-breadcrumb__inner:hover) {
  165. color: #000;
  166. }
  167. span {
  168. font-weight: 400;
  169. font-size: 16PX;
  170. color: #000;
  171. line-height: 23PX;
  172. text-align: left;
  173. font-style: normal;
  174. text-transform: none;
  175. }
  176. }
  177. .rycxContent {
  178. width: 1400PX;
  179. margin: 20PX auto;
  180. display: flex;
  181. justify-content: space-between;
  182. .contentLeft {
  183. display: flex;
  184. width: 60%;
  185. height: 405PX;
  186. // height: auto;
  187. overflow: hidden;
  188. border: 1PX solid #333;
  189. padding: 20PX;
  190. box-sizing: border-box;
  191. .conLeft {
  192. width: 60%;
  193. .topTitle {
  194. font-size: 19PX;
  195. color: #000;
  196. img {
  197. width: 24PX;
  198. height: 24PX;
  199. margin-right: 10PX;
  200. vertical-align: -4PX;
  201. }
  202. }
  203. .con_text {
  204. // width: 100%;
  205. height: auto;
  206. line-height: 30PX;
  207. margin: 20PX 0;
  208. font-size: 16PX;
  209. color: #333;
  210. }
  211. .submit {
  212. width: 100%;
  213. margin-top: 20PX;
  214. text-align: center;
  215. .submitBtn {
  216. width: 100PX;
  217. height: 40PX;
  218. line-height: 40PX;
  219. text-align: center;
  220. font-size: 16PX;
  221. color: #fff;
  222. background-color: #027dc3;
  223. border: none;
  224. }
  225. }
  226. :deep(.el-form-item__label) {
  227. font-size: 16PX;
  228. color: #333;
  229. line-height: 40PX;
  230. }
  231. :deep(.el-select__wrapper) {
  232. min-height: 40PX;
  233. }
  234. :deep(.el-input__inner) {
  235. height: 38PX;
  236. }
  237. // :deep(.el-input) {
  238. // --el-input-border-color: #333;
  239. // --el-input-hover-border-color: #333;
  240. // --el-input-clear-hover-color: #333;
  241. // --el-input-focus-border-color: #333;
  242. // }
  243. }
  244. .conRight {
  245. width: 38%;
  246. height: auto;
  247. float: right;
  248. overflow: hidden;
  249. margin-top: 30PX;
  250. margin-left: 20PX;
  251. img {
  252. width: 100%;
  253. }
  254. div {
  255. width: 100%;
  256. text-align: center;
  257. font-size: 16PX;
  258. color: #333;
  259. line-height: 30PX;
  260. }
  261. }
  262. }
  263. .contentRight {
  264. width: 38%;
  265. .right_part1 {
  266. .part1Title {
  267. width: 100%;
  268. height: auto;
  269. overflow: hidden;
  270. line-height: 40PX;
  271. font-size: 18PX;
  272. color: #000;
  273. }
  274. .part1Text {
  275. display: block;
  276. width: 100%;
  277. height: 70PX;
  278. line-height: 70PX;
  279. text-align: center;
  280. font-size: 16PX;
  281. color: #333;
  282. }
  283. .concent_List {
  284. width: 100%;
  285. height: auto;
  286. line-height: 38PX;
  287. overflow: hidden;
  288. margin-bottom: 20PX;
  289. font-size: 16PX;
  290. display: flex;
  291. select {
  292. width: 63%;
  293. height: 42PX;
  294. line-height: 42PX;
  295. font-size: 16PX;
  296. color: #333;
  297. outline: none;
  298. }
  299. input {
  300. width: 60%;
  301. height: 38PX;
  302. line-height: 38PX;
  303. margin-bottom: 0;
  304. font-size: 16PX;
  305. color: #333;
  306. outline: none;
  307. }
  308. }
  309. .selectBox {
  310. width: 100%;
  311. height: 70PX;
  312. line-height: 70PX;
  313. text-align: center;
  314. font-size: 16PX;
  315. color: #333;
  316. span {
  317. font-weight: 700;
  318. margin-right: 10PX;
  319. }
  320. select {
  321. min-width: 90PX;
  322. height: 34PX;
  323. line-height: 34PX;
  324. padding: 0 10PX;
  325. box-sizing: border-box;
  326. margin-right: 10PX;
  327. outline: none;
  328. border-radius: 4PX;
  329. border-color: #ccc;
  330. }
  331. }
  332. input {
  333. width: 90%;
  334. height: 40PX;
  335. line-height: 40PX;
  336. font-size: 16PX;
  337. color: #333;
  338. padding-left: 10PX;
  339. outline: none;
  340. margin-bottom: 20PX;
  341. }
  342. .btnBox {
  343. width: 220PX;
  344. height: auto;
  345. overflow: hidden;
  346. margin: 20PX auto;
  347. .cxbtn {
  348. float: left;
  349. display: block;
  350. width: 90PX;
  351. height: 40PX;
  352. line-height: 40PX;
  353. text-align: center;
  354. font-size: 16PX;
  355. color: #fff;
  356. background: #027dc3;
  357. outline: none;
  358. border: none;
  359. }
  360. .rebtn {
  361. background: #ccc;
  362. border: 1PX solid #027dc3;
  363. color: #027dc3;
  364. float: right;
  365. display: block;
  366. width: 90PX;
  367. height: 40PX;
  368. line-height: 40PX;
  369. text-align: center;
  370. font-size: 16PX;
  371. }
  372. }
  373. .btnBox1 {
  374. width: 100%;
  375. height: auto;
  376. overflow: hidden;
  377. margin: 20PX auto;
  378. text-align: center;
  379. .cxbtn {
  380. width: 90PX;
  381. height: 40PX;
  382. line-height: 40PX;
  383. text-align: center;
  384. font-size: 16PX;
  385. color: #fff;
  386. background: #027dc3;
  387. outline: none;
  388. border: none;
  389. }
  390. }
  391. }
  392. }
  393. }
  394. }
  395. }
  396. @media screen and (min-width: 801px) and (max-width: 1400px) {
  397. .clcx {
  398. font-family: '微软雅黑', Microsoft YaHei;
  399. //导航条
  400. .breadcrumb {
  401. width: 100%;
  402. height: 30px;
  403. line-height: 30px;
  404. margin-top: 20px;
  405. margin-bottom: 20px;
  406. .inner {
  407. width: 1400px;
  408. border: 1px solid #ccc;
  409. color: #000;
  410. font-size: 16px;
  411. margin: 0 auto;
  412. .location {
  413. margin-right: 20px;
  414. width: 100px;
  415. height: 22px;
  416. font-family: Microsoft YaHei, Microsoft YaHei;
  417. font-weight: 400;
  418. font-size: 16px;
  419. color: #000;
  420. line-height: 23px;
  421. text-align: left;
  422. font-style: normal;
  423. text-transform: none;
  424. }
  425. }
  426. :deep(.el-breadcrumb__separator) {
  427. color: #000;
  428. font-weight: bold;
  429. margin: 0 9px;
  430. }
  431. :deep(.el-breadcrumb) {
  432. display: inline-block;
  433. vertical-align: -4px;
  434. }
  435. :deep(.el-breadcrumb__inner a),
  436. :deep(.el-breadcrumb__inner.is-link) {
  437. color: #000;
  438. font-weight: 400;
  439. text-decoration: none;
  440. transition: var(--el-transition-color);
  441. }
  442. :deep(.el-breadcrumb__item:last-child .el-breadcrumb__inner),
  443. :deep(.el-breadcrumb__item:last-child .el-breadcrumb__inner a),
  444. :deep(.el-breadcrumb__item:last-child .el-breadcrumb__inner a:hover),
  445. :deep(.el-breadcrumb__item:last-child .el-breadcrumb__inner:hover) {
  446. color: #000;
  447. }
  448. span {
  449. font-weight: 400;
  450. font-size: 16px;
  451. color: #000;
  452. line-height: 23px;
  453. text-align: left;
  454. font-style: normal;
  455. text-transform: none;
  456. }
  457. }
  458. .rycxContent {
  459. width: 1400px;
  460. margin: 20px auto;
  461. display: flex;
  462. justify-content: space-between;
  463. .contentLeft {
  464. display: flex;
  465. width: 60%;
  466. height: 405px;
  467. // height: auto;
  468. overflow: hidden;
  469. border: 1px solid #333;
  470. padding: 20px;
  471. box-sizing: border-box;
  472. .conLeft {
  473. width: 60%;
  474. .topTitle {
  475. font-size: 19px;
  476. color: #000;
  477. img {
  478. width: 24px;
  479. height: 24px;
  480. margin-right: 10px;
  481. vertical-align: -4px;
  482. }
  483. }
  484. .con_text {
  485. // width: 100%;
  486. height: auto;
  487. line-height: 30px;
  488. margin: 20px 0;
  489. font-size: 16px;
  490. color: #333;
  491. }
  492. .submit {
  493. width: 100%;
  494. margin-top: 20px;
  495. text-align: center;
  496. .submitBtn {
  497. width: 100px;
  498. height: 40px;
  499. line-height: 40px;
  500. text-align: center;
  501. font-size: 16px;
  502. color: #fff;
  503. background-color: #027dc3;
  504. border: none;
  505. }
  506. }
  507. :deep(.el-form-item__label) {
  508. font-size: 16px;
  509. color: #333;
  510. line-height: 40px;
  511. }
  512. :deep(.el-select__wrapper) {
  513. min-height: 40px;
  514. }
  515. :deep(.el-input__inner) {
  516. height: 38px;
  517. }
  518. // :deep(.el-input) {
  519. // --el-input-border-color: #333;
  520. // --el-input-hover-border-color: #333;
  521. // --el-input-clear-hover-color: #333;
  522. // --el-input-focus-border-color: #333;
  523. // }
  524. }
  525. .conRight {
  526. width: 38%;
  527. height: auto;
  528. float: right;
  529. overflow: hidden;
  530. margin-top: 30px;
  531. margin-left: 20px;
  532. img {
  533. width: 100%;
  534. }
  535. div {
  536. width: 100%;
  537. text-align: center;
  538. font-size: 16px;
  539. color: #333;
  540. line-height: 30px;
  541. }
  542. }
  543. }
  544. .contentRight {
  545. width: 38%;
  546. .right_part1 {
  547. .part1Title {
  548. width: 100%;
  549. height: auto;
  550. overflow: hidden;
  551. line-height: 40px;
  552. font-size: 18px;
  553. color: #000;
  554. }
  555. .part1Text {
  556. display: block;
  557. width: 100%;
  558. height: 70px;
  559. line-height: 70px;
  560. text-align: center;
  561. font-size: 16px;
  562. color: #333;
  563. }
  564. .concent_List {
  565. width: 100%;
  566. height: auto;
  567. line-height: 38px;
  568. overflow: hidden;
  569. margin-bottom: 20px;
  570. font-size: 16px;
  571. display: flex;
  572. select {
  573. width: 63%;
  574. height: 42px;
  575. line-height: 42px;
  576. font-size: 16px;
  577. color: #333;
  578. outline: none;
  579. }
  580. input {
  581. width: 60%;
  582. height: 38px;
  583. line-height: 38px;
  584. margin-bottom: 0;
  585. font-size: 16px;
  586. color: #333;
  587. outline: none;
  588. }
  589. }
  590. .selectBox {
  591. width: 100%;
  592. height: 70px;
  593. line-height: 70px;
  594. text-align: center;
  595. font-size: 16px;
  596. color: #333;
  597. span {
  598. font-weight: 700;
  599. margin-right: 10px;
  600. }
  601. select {
  602. min-width: 90px;
  603. height: 34px;
  604. line-height: 34px;
  605. padding: 0 10px;
  606. box-sizing: border-box;
  607. margin-right: 10px;
  608. outline: none;
  609. border-radius: 4px;
  610. border-color: #ccc;
  611. }
  612. }
  613. input {
  614. width: 90%;
  615. height: 40px;
  616. line-height: 40px;
  617. font-size: 16px;
  618. color: #333;
  619. padding-left: 10px;
  620. outline: none;
  621. margin-bottom: 20px;
  622. }
  623. .btnBox {
  624. width: 220px;
  625. height: auto;
  626. overflow: hidden;
  627. margin: 20px auto;
  628. .cxbtn {
  629. float: left;
  630. display: block;
  631. width: 90px;
  632. height: 40px;
  633. line-height: 40px;
  634. text-align: center;
  635. font-size: 16px;
  636. color: #fff;
  637. background: #027dc3;
  638. outline: none;
  639. border: none;
  640. }
  641. .rebtn {
  642. background: #ccc;
  643. border: 1px solid #027dc3;
  644. color: #027dc3;
  645. float: right;
  646. display: block;
  647. width: 90px;
  648. height: 40px;
  649. line-height: 40px;
  650. text-align: center;
  651. font-size: 16px;
  652. }
  653. }
  654. .btnBox1 {
  655. width: 100%;
  656. height: auto;
  657. overflow: hidden;
  658. margin: 20px auto;
  659. text-align: center;
  660. .cxbtn {
  661. width: 90px;
  662. height: 40px;
  663. line-height: 40px;
  664. text-align: center;
  665. font-size: 16px;
  666. color: #fff;
  667. background: #027dc3;
  668. outline: none;
  669. border: none;
  670. }
  671. }
  672. }
  673. }
  674. }
  675. }
  676. }
  677. @media screen and (max-width: 800px) {
  678. .clcx {
  679. font-family: '微软雅黑', Microsoft YaHei;
  680. //导航条
  681. .breadcrumb {
  682. width: 100%;
  683. height: 30px;
  684. line-height: 30px;
  685. margin-top: 20px;
  686. margin-bottom: 20px;
  687. .inner {
  688. width: 1400px;
  689. border: 1px solid #ccc;
  690. color: #000;
  691. font-size: 16px;
  692. margin: 0 auto;
  693. .location {
  694. margin-right: 20px;
  695. width: 100px;
  696. height: 22px;
  697. font-family: Microsoft YaHei, Microsoft YaHei;
  698. font-weight: 400;
  699. font-size: 16px;
  700. color: #000;
  701. line-height: 23px;
  702. text-align: left;
  703. font-style: normal;
  704. text-transform: none;
  705. }
  706. }
  707. :deep(.el-breadcrumb__separator) {
  708. color: #000;
  709. font-weight: bold;
  710. margin: 0 9px;
  711. }
  712. :deep(.el-breadcrumb) {
  713. display: inline-block;
  714. vertical-align: -4px;
  715. }
  716. :deep(.el-breadcrumb__inner a),
  717. :deep(.el-breadcrumb__inner.is-link) {
  718. color: #000;
  719. font-weight: 400;
  720. text-decoration: none;
  721. transition: var(--el-transition-color);
  722. }
  723. :deep(.el-breadcrumb__item:last-child .el-breadcrumb__inner),
  724. :deep(.el-breadcrumb__item:last-child .el-breadcrumb__inner a),
  725. :deep(.el-breadcrumb__item:last-child .el-breadcrumb__inner a:hover),
  726. :deep(.el-breadcrumb__item:last-child .el-breadcrumb__inner:hover) {
  727. color: #000;
  728. }
  729. span {
  730. font-weight: 400;
  731. font-size: 16px;
  732. color: #000;
  733. line-height: 23px;
  734. text-align: left;
  735. font-style: normal;
  736. text-transform: none;
  737. }
  738. }
  739. .rycxContent {
  740. width: 1400px;
  741. margin: 20px auto;
  742. display: flex;
  743. justify-content: space-between;
  744. .contentLeft {
  745. display: flex;
  746. width: 60%;
  747. height: 405px;
  748. // height: auto;
  749. overflow: hidden;
  750. border: 1px solid #333;
  751. padding: 20px;
  752. box-sizing: border-box;
  753. .conLeft {
  754. width: 60%;
  755. .topTitle {
  756. font-size: 19px;
  757. color: #000;
  758. img {
  759. width: 24px;
  760. height: 24px;
  761. margin-right: 10px;
  762. vertical-align: -4px;
  763. }
  764. }
  765. .con_text {
  766. // width: 100%;
  767. height: auto;
  768. line-height: 30px;
  769. margin: 20px 0;
  770. font-size: 16px;
  771. color: #333;
  772. }
  773. .submit {
  774. width: 100%;
  775. margin-top: 20px;
  776. text-align: center;
  777. .submitBtn {
  778. width: 100px;
  779. height: 40px;
  780. line-height: 40px;
  781. text-align: center;
  782. font-size: 16px;
  783. color: #fff;
  784. background-color: #027dc3;
  785. border: none;
  786. }
  787. }
  788. :deep(.el-form-item__label) {
  789. font-size: 16px;
  790. color: #333;
  791. line-height: 40px;
  792. }
  793. :deep(.el-select__wrapper) {
  794. min-height: 40px;
  795. }
  796. :deep(.el-input__inner) {
  797. height: 38px;
  798. }
  799. // :deep(.el-input) {
  800. // --el-input-border-color: #333;
  801. // --el-input-hover-border-color: #333;
  802. // --el-input-clear-hover-color: #333;
  803. // --el-input-focus-border-color: #333;
  804. // }
  805. }
  806. .conRight {
  807. width: 38%;
  808. height: auto;
  809. float: right;
  810. overflow: hidden;
  811. margin-top: 30px;
  812. margin-left: 20px;
  813. img {
  814. width: 100%;
  815. }
  816. div {
  817. width: 100%;
  818. text-align: center;
  819. font-size: 16px;
  820. color: #333;
  821. line-height: 30px;
  822. }
  823. }
  824. }
  825. .contentRight {
  826. width: 38%;
  827. .right_part1 {
  828. .part1Title {
  829. width: 100%;
  830. height: auto;
  831. overflow: hidden;
  832. line-height: 40px;
  833. font-size: 18px;
  834. color: #000;
  835. }
  836. .part1Text {
  837. display: block;
  838. width: 100%;
  839. height: 70px;
  840. line-height: 70px;
  841. text-align: center;
  842. font-size: 16px;
  843. color: #333;
  844. }
  845. .concent_List {
  846. width: 100%;
  847. height: auto;
  848. line-height: 38px;
  849. overflow: hidden;
  850. margin-bottom: 20px;
  851. font-size: 16px;
  852. display: flex;
  853. select {
  854. width: 63%;
  855. height: 42px;
  856. line-height: 42px;
  857. font-size: 16px;
  858. color: #333;
  859. outline: none;
  860. }
  861. input {
  862. width: 60%;
  863. height: 38px;
  864. line-height: 38px;
  865. margin-bottom: 0;
  866. font-size: 16px;
  867. color: #333;
  868. outline: none;
  869. }
  870. }
  871. .selectBox {
  872. width: 100%;
  873. height: 70px;
  874. line-height: 70px;
  875. text-align: center;
  876. font-size: 16px;
  877. color: #333;
  878. span {
  879. font-weight: 700;
  880. margin-right: 10px;
  881. }
  882. select {
  883. min-width: 90px;
  884. height: 34px;
  885. line-height: 34px;
  886. padding: 0 10px;
  887. box-sizing: border-box;
  888. margin-right: 10px;
  889. outline: none;
  890. border-radius: 4px;
  891. border-color: #ccc;
  892. }
  893. }
  894. input {
  895. width: 90%;
  896. height: 40px;
  897. line-height: 40px;
  898. font-size: 16px;
  899. color: #333;
  900. padding-left: 10px;
  901. outline: none;
  902. margin-bottom: 20px;
  903. }
  904. .btnBox {
  905. width: 220px;
  906. height: auto;
  907. overflow: hidden;
  908. margin: 20px auto;
  909. .cxbtn {
  910. float: left;
  911. display: block;
  912. width: 90px;
  913. height: 40px;
  914. line-height: 40px;
  915. text-align: center;
  916. font-size: 16px;
  917. color: #fff;
  918. background: #027dc3;
  919. outline: none;
  920. border: none;
  921. }
  922. .rebtn {
  923. background: #ccc;
  924. border: 1px solid #027dc3;
  925. color: #027dc3;
  926. float: right;
  927. display: block;
  928. width: 90px;
  929. height: 40px;
  930. line-height: 40px;
  931. text-align: center;
  932. font-size: 16px;
  933. }
  934. }
  935. .btnBox1 {
  936. width: 100%;
  937. height: auto;
  938. overflow: hidden;
  939. margin: 20px auto;
  940. text-align: center;
  941. .cxbtn {
  942. width: 90px;
  943. height: 40px;
  944. line-height: 40px;
  945. text-align: center;
  946. font-size: 16px;
  947. color: #fff;
  948. background: #027dc3;
  949. outline: none;
  950. border: none;
  951. }
  952. }
  953. }
  954. }
  955. }
  956. }
  957. }
  958. </style>