thr.vue 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682
  1. <template>
  2. <myMain>
  3. <div class="brainThr">
  4. <div class="menu_1" v-if="is_show">
  5. <div class="left">
  6. <div class="label" v-for="(item, index) in list" :key="index" @click="toView(item)">
  7. {{ item.label }}
  8. </div>
  9. </div>
  10. <div class="right" @click="is_show = false">
  11. <el-icon color="#595959"><ArrowLeftBold /></el-icon>
  12. </div>
  13. </div>
  14. <div class="menu_2" v-else @click="is_show = true">
  15. <el-icon color="#595959"><ArrowRightBold /></el-icon>
  16. </div>
  17. <div class="content">
  18. <div class="one">
  19. <span>产学研用协同创新数字化平台</span>
  20. </div>
  21. <div class="two">
  22. <div class="two_1">
  23. <div class="two_left">当前区域:</div>
  24. <div class="two_right">
  25. <el-cascader placeholder="请选择" v-model="form.area" clearable :props="{ value: 'label', label: 'label' }" :options="cityList" style="width: 14rem" :teleported="false" />
  26. </div>
  27. </div>
  28. <div class="two_1">
  29. <div class="two_left">当前产业:</div>
  30. <div class="two_right">
  31. <el-select v-model="form.industry" clearable placeholder="请选择" style="width: 14rem" :teleported="false">
  32. <el-option v-for="(item, index) in industryList" :key="index" :label="item.label" :value="item.label" />
  33. </el-select>
  34. </div>
  35. </div>
  36. <div class="two_1">
  37. <div class="two_left">产业链:</div>
  38. <div class="two_right">
  39. <el-select v-model="form.chain" clearable placeholder="请选择" style="width: 14rem" :teleported="false">
  40. <el-option v-for="(item, index) in chainList" :key="index" :label="item.label" :value="item.label" />
  41. </el-select>
  42. </div>
  43. </div>
  44. </div>
  45. <div class="thr">
  46. <div class="thr_1">
  47. <BorderBox13 class="boxall boxall_1" title="产业分布">
  48. <div class="title">
  49. <div class="titleRight">产业分布</div>
  50. <div class="titleLeft">智能网联汽车</div>
  51. </div>
  52. <div class="select">
  53. <div class="select_1">
  54. <div class="select_left">指标:</div>
  55. <div class="select_right">
  56. <el-select v-model="form.industry" clearable placeholder="请选择" style="width: 14rem" :teleported="false">
  57. <el-option v-for="(item, index) in industryList" :key="index" :label="item.label" :value="item.label" />
  58. </el-select>
  59. </div>
  60. </div>
  61. <div class="select_1">
  62. <div class="select_left">对比对象:</div>
  63. <div class="select_right">
  64. <el-cascader placeholder="请选择" v-model="form.area" :props="{ value: 'label', label: 'label' }" :options="cityList" style="width: 14rem" :teleported="false" />
  65. </div>
  66. </div>
  67. </div>
  68. <echarts1></echarts1>
  69. </BorderBox13>
  70. <BorderBox13 class="boxall boxall_2" title="区域创新资源">
  71. <div class="title center">
  72. <div class="titleRight">区域创新资源</div>
  73. </div>
  74. <div class="circles">
  75. <div class="circle" v-for="(item, index) in circleList" :key="index">
  76. {{ item }}
  77. </div>
  78. </div>
  79. </BorderBox13>
  80. </div>
  81. <div class="thr_2">
  82. <BorderBox13 class="boxall boxall_3" title="国家重点研发项目">
  83. <div class="title center">
  84. <div class="titleRight">国家重点研发项目</div>
  85. </div>
  86. <echarts3></echarts3>
  87. </BorderBox13>
  88. <BorderBox13 class="boxall boxall_4" title="全国产业化项目">
  89. <div class="title center">
  90. <div class="titleRight">全国产业化项目</div>
  91. </div>
  92. <echarts7></echarts7>
  93. </BorderBox13>
  94. <BorderBox13 class="boxall boxall_5" title="全国科技成果">
  95. <div class="title center">
  96. <div class="titleRight">全国科技成果</div>
  97. </div>
  98. <echarts2></echarts2>
  99. </BorderBox13>
  100. </div>
  101. <div class="thr_3">
  102. <BorderBox13 class="boxall boxall_6" title="区域承担研发项目">
  103. <div class="title">
  104. <div class="titleRight">区域承担研发项目</div>
  105. <div class="titleLeft">更多</div>
  106. </div>
  107. <div class="list" v-for="(item, index) in list_1" :key="index">
  108. <div class="list_1">
  109. <div class="list_left textOne">{{ item.name || '暂无' }}</div>
  110. <div class="list_right">{{ item.time || '暂无' }}</div>
  111. </div>
  112. <div class="list_2">
  113. <span>{{ item.area || '暂无' }}</span>
  114. </div>
  115. </div>
  116. </BorderBox13>
  117. <BorderBox13 class="boxall boxall_7" title="区域产业化项目">
  118. <div class="title">
  119. <div class="titleRight">区域产业化项目</div>
  120. <div class="titleLeft">更多</div>
  121. </div>
  122. <div class="list" v-for="(item, index) in list_2" :key="index">
  123. <div class="list_1">
  124. <div class="list_left textOne">{{ item.name || '暂无' }}</div>
  125. <div class="list_right">{{ item.time || '暂无' }}</div>
  126. </div>
  127. <div class="list_2">
  128. <span>{{ item.person || '暂无' }}</span>
  129. <span>{{ item.area || '暂无' }}</span>
  130. </div>
  131. </div>
  132. </BorderBox13>
  133. <BorderBox13 class="boxall boxall_8" title="区域科技成果">
  134. <div class="title">
  135. <div class="titleRight">区域科技成果</div>
  136. <div class="titleLeft">更多</div>
  137. </div>
  138. <div class="list" v-for="(item, index) in list_3" :key="index">
  139. <div class="list_1">
  140. <div class="list_left textOne">{{ item.name || '暂无' }}</div>
  141. <div class="list_right">{{ item.time || '暂无' }}</div>
  142. </div>
  143. <div class="list_3" v-if="item.brief">
  144. <span>{{ item.brief || '暂无' }}</span>
  145. </div>
  146. </div>
  147. </BorderBox13>
  148. </div>
  149. <div class="thr_4">
  150. <BorderBox13 class="boxall boxall_9" title="区域项目研发承担单位">
  151. <div class="title center">
  152. <div class="titleRight">区域项目研发承担单位</div>
  153. </div>
  154. <div class="select">
  155. <div class="select_1">
  156. <div class="select_left">TOP:</div>
  157. <div class="select_right">
  158. <el-select v-model="form.industry" clearable placeholder="请选择" style="width: 14rem" :teleported="false">
  159. <el-option v-for="(item, index) in industryList" :key="index" :label="item.label" :value="item.label" />
  160. </el-select>
  161. </div>
  162. </div>
  163. </div>
  164. <echarts4></echarts4>
  165. </BorderBox13>
  166. <BorderBox13 class="boxall boxall_10" title="区域产业化项目承担单位">
  167. <div class="title center">
  168. <div class="titleRight">区域产业化项目承担单位</div>
  169. </div>
  170. <echarts5></echarts5>
  171. </BorderBox13>
  172. <BorderBox13 class="boxall boxall_11" title="区域成果完成单位">
  173. <div class="title center">
  174. <div class="titleRight">区域成果完成单位</div>
  175. </div>
  176. <echarts6></echarts6>
  177. </BorderBox13>
  178. </div>
  179. <div class="thr_5">
  180. <BorderBox13 class="boxall boxall_12" title="重点培育企业">
  181. <div class="title">
  182. <div class="titleRight">重点培育企业</div>
  183. <div class="titleLeft">更多</div>
  184. </div>
  185. <div class="list" v-for="(item, index) in list_4" :key="index">
  186. <div class="list_4">
  187. <span>{{ item.name || '暂无' }}</span>
  188. </div>
  189. <div class="list_1">
  190. <span>上市板块:{{ item.plate || '暂无' }}</span>
  191. <span>市值:{{ item.money || '暂无' }}</span>
  192. </div>
  193. <div class="list_5">
  194. <span>重大研发项目数:{{ item.total1 || '暂无' }}</span>
  195. <span>产业化项目数:{{ item.total2 || '暂无' }}</span>
  196. <span>成果数:{{ item.total3 || '暂无' }}</span>
  197. <span>科技平台数:{{ item.total4 || '暂无' }}</span>
  198. <span>制定标准数:{{ item.total5 || '暂无' }}</span>
  199. </div>
  200. </div>
  201. </BorderBox13>
  202. <BorderBox13 class="boxall boxall_13" title="科技舆情">
  203. <div class="title">
  204. <div class="titleRight">科技舆情</div>
  205. <div class="titleLeft">更多</div>
  206. </div>
  207. <div class="list" v-for="(item, index) in list_5" :key="index">
  208. <div class="list_4 textOne">
  209. <span>{{ item.name || '暂无' }}</span>
  210. </div>
  211. <div class="list_3" v-if="item.person">
  212. <span>{{ item.person || '暂无' }}</span>
  213. </div>
  214. </div>
  215. </BorderBox13>
  216. </div>
  217. </div>
  218. </div>
  219. </div>
  220. </myMain>
  221. </template>
  222. <script setup>
  223. import { BorderBox13 } from '@kjgl77/datav-vue3'
  224. import myMain from '@/components/dataV/myMain.vue'
  225. // 组件
  226. import echarts1 from './thr/echarts1.vue'
  227. import echarts2 from './thr/echarts2.vue'
  228. import echarts3 from './thr/echarts3.vue'
  229. import echarts4 from './thr/echarts4.vue'
  230. import echarts5 from './thr/echarts5.vue'
  231. import echarts6 from './thr/echarts6.vue'
  232. import echarts7 from './thr/echarts7.vue'
  233. import { UserStore } from '@/store/user'
  234. import { getCity } from '@/utils/city'
  235. const userStore = UserStore()
  236. const user = computed(() => userStore.user)
  237. // 加载中
  238. const loading = ref(false)
  239. // 路由
  240. const router = useRouter()
  241. // 路由
  242. const is_show = ref(false)
  243. const form = ref({})
  244. const list = ref([
  245. { label: '产业大脑', route: '/brain' },
  246. { label: '产业链供应链监测', route: '/brain/one' },
  247. { label: '上市公司监测与培育', route: '/brain/two' },
  248. { label: '科技要素整合', route: '/brain/thr' },
  249. { label: '人才资源配置', route: '/brain/four' },
  250. { label: '营商环境监测', route: '/brain/five' },
  251. { label: '优质企业梯度培育', route: '/brain/six' }
  252. ])
  253. // 字典表
  254. const cityList = ref([])
  255. const industryList = ref([{ label: '智能网联汽车', value: '0' }])
  256. const chainList = ref([{ label: '新能源汽车', value: '0' }])
  257. // 区域承担研发项目
  258. const list_1 = ref([
  259. { name: '国家重点研发计划-材料基因…', time: '2024', area: '吉林大学' },
  260. { name: '国家重点研发计划-材料基因…', time: '2024', area: '吉林大学' },
  261. { name: '国家重点研发计划-材料基因…', time: '2024', area: '吉林大学' },
  262. { name: '国家重点研发计划-材料基因…', time: '2024', area: '吉林大学' }
  263. ])
  264. // 区域产业化项目
  265. const list_2 = ref([
  266. { name: '基于压膜芯片的陶瓷电容式车…', person: '陈石煤', time: '2024', area: '吉林大学' },
  267. { name: '基于压膜芯片的陶瓷电容式车…', person: '陈石煤', time: '2024', area: '吉林大学' }
  268. ])
  269. // 区域科技成果
  270. const list_3 = ref([
  271. {
  272. name: '磷酸铁锂动力电池制造及其…',
  273. brief: '长春中聚佳华电池科技有限公司,长春交通大学,教育部,比亚迪汽车工业有限公司,江苏乐能电池股份有限公司丁建民,何雨石,尹韶文,廖小珍,张子峰,杨军沈佳妮,贺益君,赵政贼,马紫峰',
  274. time: '2024',
  275. area: '吉林大学'
  276. },
  277. {
  278. name: '磷酸铁锂动力电池制造及其…',
  279. time: '2024',
  280. area: '吉林大学'
  281. }
  282. ])
  283. // 区域产业化项目
  284. const list_4 = ref([
  285. { name: '中兴通讯股份有限公司', plate: '深交所主服', money: '1134.28亿', total1: '5', total2: '1', total3: '70', total4: '1', total5: '899' },
  286. { name: '中兴通讯股份有限公司', plate: '深交所主服', money: '1134.28亿', total1: '5', total2: '1', total3: '70', total4: '1', total5: '899' },
  287. { name: '中兴通讯股份有限公司', plate: '深交所主服', money: '1134.28亿', total1: '5', total2: '1', total3: '70', total4: '1', total5: '899' }
  288. ])
  289. // 科技舆情
  290. const list_5 = ref([
  291. { name: '长春市发展改革委关于长春慧天云网新能源…', person: '长春市政策-发改委', time: '2024' },
  292. { name: '长春市发展改革委关于长春慧天云网新能源…', person: '长春市政策-发改委', time: '2024' },
  293. { name: '长春市发展改革委关于长春慧天云网新能源…', person: '长春市政策-发改委', time: '2024' },
  294. { name: '长春市发展改革委关于长春慧天云网新能源…', person: '长春市政策-发改委', time: '2024' },
  295. { name: '长春市发展改革委关于长春慧天云网新能源…', person: '长春市政策-发改委', time: '2024' }
  296. ])
  297. // 区域创新资源
  298. const circleList = ref(['专利', '科技', '创新', '技术设备', '技术人才', '科研机构', '创新资源'])
  299. // 请求
  300. onMounted(async () => {
  301. getCity().then((response) => {
  302. cityList.value = response.address
  303. })
  304. })
  305. // 查看
  306. const toView = (item) => {
  307. router.push(item.route)
  308. }
  309. </script>
  310. <style scoped lang="scss">
  311. .brainThr {
  312. width: 100%;
  313. height: 100%;
  314. position: relative;
  315. // background-color: #17171d;
  316. background: url(/images/brain/brain-bg.gif);
  317. background-size: 100% 100%;
  318. padding: 0rem;
  319. margin: 0rem;
  320. color: #ffffff;
  321. font-family: '微软雅黑';
  322. cursor: default; /* 将鼠标样式更改为箭头 */
  323. .menu_1 {
  324. display: flex;
  325. align-items: center;
  326. background: rgba(194, 209, 225, 0.2);
  327. position: absolute;
  328. padding: 1.5rem 1rem;
  329. left: 0;
  330. top: 35%;
  331. border-radius: 0 1rem 1rem 0;
  332. font-size: 1.2rem;
  333. z-index: 10000;
  334. .left {
  335. .label {
  336. text-align: center;
  337. background: rgba(5, 28, 53, 0.2);
  338. padding: 0.5rem;
  339. margin: 0 0 1rem 0;
  340. border-radius: 0.5rem;
  341. color: #595959;
  342. }
  343. .label:hover {
  344. text-align: center;
  345. background: rgba(20, 123, 233, 0.2);
  346. padding: 0.5rem;
  347. margin: 0 0 1rem 0;
  348. border-radius: 0.5rem;
  349. color: #ffffff;
  350. text-shadow:
  351. 0 0 0.5rem #fff,
  352. 0 0 1rem #fff,
  353. 0 0 1.5rem #fff,
  354. 0 0 2rem #1073ff,
  355. 0 0 3.5rem #1073ff,
  356. 0 0 4.5rem #1073ff,
  357. 0 0 5rem #1073ff,
  358. 0 0 7.5rem #1073ff;
  359. }
  360. }
  361. .right {
  362. margin: 0 0 0 1rem;
  363. }
  364. }
  365. .menu_2 {
  366. display: flex;
  367. align-items: center;
  368. justify-content: center;
  369. background: rgba(194, 209, 225, 0.2);
  370. position: absolute;
  371. left: 0;
  372. top: 35%;
  373. height: 35%;
  374. padding: 0 0.3rem;
  375. border-radius: 0 1.5rem 1.5rem 0;
  376. z-index: 10000;
  377. }
  378. .content {
  379. width: 100%;
  380. height: 100%;
  381. .one {
  382. display: flex;
  383. align-items: center;
  384. justify-content: center;
  385. width: 100%;
  386. height: 6%;
  387. background: url(/images/brain/titleBg.svg);
  388. background-size: 100% 100%;
  389. font-size: 2.4rem;
  390. color: #53befe;
  391. span {
  392. letter-spacing: 0.2em;
  393. }
  394. }
  395. .two {
  396. width: 100%;
  397. height: 5%;
  398. display: flex;
  399. align-items: center;
  400. // margin: 0.8rem 0 0 0;
  401. color: #ffffff;
  402. font-size: 1.2rem;
  403. .two_1 {
  404. display: flex;
  405. align-items: center;
  406. margin: 0 0 0 1rem;
  407. }
  408. }
  409. .thr {
  410. display: flex;
  411. width: 100%;
  412. height: 89%;
  413. .thr_1 {
  414. width: 24%;
  415. height: 100%;
  416. .boxall_1 {
  417. width: 100%;
  418. height: 60%;
  419. }
  420. .boxall_2 {
  421. width: 100%;
  422. height: 40%;
  423. }
  424. }
  425. .thr_2 {
  426. width: 20%;
  427. height: 100%;
  428. .boxall_3 {
  429. width: 100%;
  430. height: 40%;
  431. }
  432. .boxall_4 {
  433. width: 100%;
  434. height: 30%;
  435. }
  436. .boxall_5 {
  437. width: 100%;
  438. height: 30%;
  439. }
  440. }
  441. .thr_3 {
  442. width: 16%;
  443. height: 100%;
  444. .boxall_6 {
  445. width: 100%;
  446. height: 40%;
  447. }
  448. .boxall_7 {
  449. width: 100%;
  450. height: 30%;
  451. }
  452. .boxall_8 {
  453. width: 100%;
  454. height: 30%;
  455. }
  456. }
  457. .thr_4 {
  458. width: 20%;
  459. height: 100%;
  460. .boxall_9 {
  461. width: 100%;
  462. height: 40%;
  463. }
  464. .boxall_10 {
  465. width: 100%;
  466. height: 30%;
  467. }
  468. .boxall_11 {
  469. width: 100%;
  470. height: 30%;
  471. }
  472. }
  473. .thr_5 {
  474. width: 20%;
  475. height: 100%;
  476. .boxall_12 {
  477. width: 100%;
  478. height: 60%;
  479. }
  480. .boxall_13 {
  481. width: 100%;
  482. height: 40%;
  483. }
  484. }
  485. .boxall {
  486. padding: 1.5rem 1rem;
  487. .title {
  488. display: flex;
  489. justify-content: space-between;
  490. background-color: rgba($color: #18459d, $alpha: 0.3);
  491. padding: 0.4rem;
  492. font-size: 1.2rem;
  493. border-bottom: 0.3rem solid #18459d;
  494. -webkit-animation: twinkling 2s infinite ease-in-out; /*1秒钟的开始结束都慢的无限次动画*/
  495. }
  496. .center {
  497. justify-content: center !important;
  498. align-items: center;
  499. }
  500. @-webkit-keyframes twinkling {
  501. /*透明度由0到1*/
  502. 0% {
  503. border-color: #612bdf;
  504. box-shadow:
  505. 0 0 10px rgba(97, 43, 223, 0.2),
  506. inset 0 0 10px rgba(97, 43, 223, 0.1),
  507. 0 1px 0 rgb(97, 43, 223);
  508. }
  509. 100% {
  510. border-color: rgb(56, 201, 226);
  511. box-shadow:
  512. 0 0 25px rgba(56, 201, 226, 0.6),
  513. inset 0 0 15px rgba(56, 201, 226, 0.4),
  514. 0 1px 0 rgb(56, 201, 226);
  515. }
  516. }
  517. .select {
  518. margin: 0.5rem 0;
  519. .select_1 {
  520. display: flex;
  521. align-items: center;
  522. margin: 0 0 0.5rem 0;
  523. .select_left {
  524. width: 5rem;
  525. margin: 0 0.2rem 0 0;
  526. }
  527. }
  528. }
  529. .circles {
  530. position: relative;
  531. margin: 3.5rem 0 0 0;
  532. }
  533. .circle {
  534. position: absolute;
  535. width: 5rem;
  536. height: 5rem;
  537. line-height: 5rem;
  538. text-align: center;
  539. border-radius: 50%;
  540. color: #fff;
  541. box-shadow:
  542. 0 0 0.2rem #fff,
  543. /* 主边框发光 */ 0 0 0.2rem #fff inset,
  544. /* 内发光 */ 0 0.1rem 0.3rem #fff; /* 侧发光 */
  545. }
  546. .circle:nth-child(1) {
  547. top: 4rem;
  548. left: 17rem;
  549. background-color: #b886f8;
  550. }
  551. .circle:nth-child(2) {
  552. top: 8rem;
  553. left: 14rem;
  554. background-color: #4095e5;
  555. }
  556. .circle:nth-child(3) {
  557. top: -1rem;
  558. left: 15rem;
  559. background-color: #f4ce98;
  560. }
  561. .circle:nth-child(4) {
  562. top: 3rem;
  563. left: 12rem;
  564. background-color: #7728f5;
  565. }
  566. .circle:nth-child(5) {
  567. top: 7rem;
  568. left: 9rem;
  569. background-color: #b4fdff;
  570. }
  571. .circle:nth-child(6) {
  572. top: 2rem;
  573. left: 7rem;
  574. background-color: #8692c5;
  575. }
  576. .circle:nth-child(7) {
  577. top: -2rem;
  578. left: 10rem;
  579. background-color: #560c9c;
  580. }
  581. .list {
  582. margin: 0.5rem 0 0 0;
  583. padding: 0 0.5rem;
  584. width: 100%;
  585. .list_1 {
  586. display: flex;
  587. align-items: center;
  588. justify-content: space-between;
  589. .list_left {
  590. width: 80%;
  591. font-size: 1.2rem;
  592. color: #75f9fd;
  593. }
  594. .list_right {
  595. text-align: center;
  596. padding: 0.4rem;
  597. width: 20%;
  598. background-color: #54bcbd;
  599. border-radius: 0.2rem;
  600. }
  601. }
  602. .list_2 {
  603. margin: 0.8rem 0 0 0;
  604. span {
  605. padding: 0.2rem 0.5rem;
  606. border-radius: 0.2rem;
  607. margin: 0 0.5rem 0 0;
  608. background-color: rgba($color: #ffffff, $alpha: 0.1);
  609. }
  610. }
  611. .list_4 {
  612. margin: 0 0 0.5rem 0;
  613. font-size: 1.2rem;
  614. color: #75f9fd;
  615. }
  616. .list_5 {
  617. display: flex;
  618. flex-wrap: wrap;
  619. span {
  620. padding: 0.2rem 0.5rem;
  621. border-radius: 0.2rem;
  622. margin: 0.4rem 0.5rem 0.2rem 0;
  623. color: #ebc128;
  624. background-color: rgba($color: #ffffff, $alpha: 0.1);
  625. }
  626. }
  627. }
  628. }
  629. }
  630. }
  631. //select 选择器
  632. :deep(.el-select__wrapper) {
  633. background: linear-gradient(90deg, #0b3571, rgba(11, 53, 113, 0) 100%);
  634. box-shadow: 0 0 0 0 var(--el-input-border-color, var(--el-border-color)) inset;
  635. }
  636. :deep(.el-input__wrapper) {
  637. background: linear-gradient(90deg, #0b3571, rgba(11, 53, 113, 0) 100%);
  638. box-shadow: 0 0 0 0 var(--el-input-border-color, var(--el-border-color)) inset;
  639. }
  640. // 修改下拉框背景颜色
  641. :deep(.el-popper.is-light) {
  642. background: #0b3571 !important;
  643. border: 1px solid #33394d !important;
  644. }
  645. // 小三角颜色修改
  646. :deep(.el-popper.is-light .el-popper__arrow::before) {
  647. border: 1px solid #33394d !important;
  648. background: #0b3571 !important;
  649. }
  650. //下拉选项字体颜色修改
  651. :deep(.el-select-dropdown__item) {
  652. color: #6687b8 !important;
  653. }
  654. :deep(.el-select-dropdown__item.is-hovering) {
  655. background: #0b3571 !important;
  656. }
  657. :deep(.el-cascader-node:hover) {
  658. background: #4d5b87 !important;
  659. border-radius: 0.5rem !important;
  660. color: #fff !important;
  661. margin: 0 0.7vh !important;
  662. }
  663. //下拉选项---鼠标选中 字体,背景,颜色修改,圆角,间距修改
  664. :deep(.el-select-dropdown__item:hover) {
  665. background: #4d5b87 !important;
  666. border-radius: 0.5rem !important;
  667. color: #fff !important;
  668. margin: 0 0.7vh !important;
  669. }
  670. }
  671. </style>