navigation.vue 27 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775
  1. <template>
  2. <div class="main_container">
  3. <div style="background-color: #F5F7FB;overflow: hidden;">
  4. <div class="top">
  5. <div class="top_one">
  6. <div class="top_one left">
  7. <span>会助理平台</span>
  8. </div>
  9. <div class="top_one middle">
  10. <el-input popper-class="my-autocomplete" v-model="queryWord" style="width: 81.25%;"
  11. placeholder="搜索关键信息">
  12. <i class="el-icon-search" slot="suffix" @click="handleQuery()"
  13. style="width:6%; height: 100%; display: flex;align-items: center;cursor: pointer;margin-right: 1vh;">
  14. </i>
  15. </el-input>
  16. </div>
  17. <div class="top_one right">
  18. <div style="display: flex;width: 15vh;justify-content: flex-end;align-items: center;font-weight: 400;
  19. font-size: 14px; text-overflow: ellipsis;">
  20. <el-avatar size="medium"
  21. src="https://hzl.willalp.com/static/img/profile.b87e3d56.jpg"></el-avatar>
  22. <span style="margin-left: 10%;cursor: pointer">用户名</span>
  23. </div>
  24. <div style="margin-left: 10%;margin-right: 8%">
  25. <span style="cursor: pointer" @click="logout">注销</span>
  26. </div>
  27. </div>
  28. </div>
  29. <div class="top_two">
  30. <div class="top_two left">
  31. <img :src="thisTenant.agencyLogo" alt="" style="width: 4vh;">
  32. <span style="margin-left: 2%;">{{ thisTenant.agencyName }}</span>
  33. </div>
  34. <div class="top_two middle">
  35. <el-menu default-active="1" class="top_two_menu" mode="horizontal" @select="handleSelect">
  36. <el-menu-item index="1">首页</el-menu-item>
  37. <el-menu-item index="2">操作台</el-menu-item>
  38. <el-menu-item index="3">个人中心</el-menu-item>
  39. </el-menu>
  40. </div>
  41. </div>
  42. </div>
  43. <div class="left">
  44. <div class="left_top">
  45. <div class="left_top left">
  46. <div class="block" style="height:100%;width: 100%;">
  47. <el-carousel height="29.5vh">
  48. <el-carousel-item v-for="(item, index) in leftTopPics" :key="index">
  49. <img :src="item.icon" alt="" style="width: 100%;height: 100%;">
  50. </el-carousel-item>
  51. </el-carousel>
  52. </div>
  53. </div>
  54. <div class="left_top right">
  55. <a class="moreMessage" @click="leftTopMore">更多</a>
  56. <el-tabs v-model="leftTopRight" @tab-click="" style="width: 98%; margin: 0px auto">
  57. <el-tab-pane label="机构资讯" name="1">
  58. <div style="overflow-y: auto;height: 20vh;">
  59. <el-row v-for="(item, index) of leftTopOne" :key="index">
  60. <div style="margin-bottom: 1.3vh;cursor: pointer;"
  61. @click="leftTopOneDetail(index)">
  62. <el-row style="border-bottom: 1px solid #F2F2F2;">
  63. <el-col :span="16">
  64. <span class="leftContent"> {{ item.text }}</span>
  65. </el-col>
  66. <el-col :span="8">
  67. <span class="rightContent">{{ parseTime(item.updateTime) }}</span>
  68. </el-col>
  69. </el-row>
  70. </div>
  71. </el-row>
  72. </div>
  73. </el-tab-pane>
  74. <el-tab-pane label="公司要闻" name="2"></el-tab-pane>
  75. <el-tab-pane label="通知公告" name="3"></el-tab-pane>
  76. </el-tabs>
  77. </div>
  78. </div>
  79. <div class="left_middle">
  80. <a class="moreMessage" @click="">更多</a>
  81. <el-tabs v-model="leftMiddle" @tab-click="" style="width: 98%; margin: 0px auto">
  82. <el-tab-pane label="专栏" name="1">
  83. <div style="overflow-y: auto;height: 30vh;">
  84. <el-row v-for="(item, index) of dataList2" :key="index">
  85. <div style="margin-bottom: 1.3vh;">
  86. <el-row style="border-bottom: 1px solid #F2F2F2;">
  87. <div style="margin-bottom: 5px;">
  88. <el-col :span="3">
  89. <div class="leftContentPrefix">[ {{ item.tag }} ]</div>
  90. </el-col>
  91. <el-col :span="16">
  92. <span class="leftContent"> {{ item.title }}</span>
  93. </el-col>
  94. <el-col :span="5">
  95. <span class="rightContent">{{ parseTime(item.createTime) }}</span>
  96. </el-col>
  97. </div>
  98. </el-row>
  99. </div>
  100. </el-row>
  101. </div>
  102. </el-tab-pane>
  103. <el-tab-pane label="党建" name="2"></el-tab-pane>
  104. <el-tab-pane label="团建" name="3"></el-tab-pane>
  105. <el-tab-pane label="工会" name="4"></el-tab-pane>
  106. <el-tab-pane label="政策" name="5"></el-tab-pane>
  107. </el-tabs>
  108. </div>
  109. <div class="left_bottom">
  110. <a class="moreMessage" @click="leftBottomMore">更多</a>
  111. <el-tabs v-model="leftBottom" @tab-click="" style="width: 98%; margin: 0px auto">
  112. <el-tab-pane label="平台资讯" name="">
  113. <div class="sys_card" v-for="item in leftBottomList">
  114. <img :src="item.coverPic"
  115. style="width: 100%;height: 100%;border-radius: 4px;cursor: pointer;"
  116. @click="leftBottomDetail(item.id)"></img>
  117. <div class="sys_card_title">
  118. <div style="width: 98%;">
  119. <el-row>
  120. <span class="sys_card_title_font"
  121. style="color: #fff;font-size: 13px;font-weight: bold;margin-left: 1vh;margin-top: 1vh; ">
  122. {{ item.title }}
  123. </span>
  124. </el-row>
  125. <el-row>
  126. <span class="sys_card_title_font"
  127. style="color: #fff;font-size: 12px;margin-left: 1vh;">
  128. {{ item.sketch }}
  129. </span>
  130. </el-row>
  131. </div>
  132. </div>
  133. </div>
  134. </el-tab-pane>
  135. </el-tabs>
  136. </div>
  137. </div>
  138. <div class="right">
  139. <div class="right_top">
  140. <!-- <a class="moreMessage" @click="">更多</a> -->
  141. <el-tabs @tab-click="" style="width: 98%; margin: 0px auto">
  142. <el-tab-pane label="跳转模块" name="">
  143. <div v-for="(item, index) of rightTopLink" :key="index" style="display: inline">
  144. <div class="listItem" @click="goPage(item.path)" style="cursor: pointer">
  145. <div>
  146. <div class="menuImg">
  147. <img class="imgSty" :src="item.icon" />
  148. </div>
  149. <div class="titleSty">
  150. <span>{{ item.name }}</span>
  151. </div>
  152. </div>
  153. </div>
  154. </div>
  155. </el-tab-pane>
  156. </el-tabs>
  157. </div>
  158. <div class="right_middle">
  159. <a class="moreMessage" @click="">更多</a>
  160. <el-tabs v-model="rightMiddle" @tab-click="" style="width: 98%; margin: 0px auto">
  161. <el-tab-pane label="规章制度" name="">
  162. <div style="overflow-y: auto;height: 30vh;">
  163. <el-row v-for="(item, index) of dataList2" :key="index">
  164. <div style="margin-bottom: 1.3vh;">
  165. <el-row style="border-bottom: 1px solid #F2F2F2;">
  166. <div style="margin-bottom: 5px;">
  167. <el-col :span="18">
  168. <span class="leftContent"> {{ item.title }}</span>
  169. </el-col>
  170. <el-col :span="6">
  171. <span class="rightContent">{{ parseTime(item.createTime) }}</span>
  172. </el-col>
  173. <!-- <div class="leftContentPrefix">[ {{ item.tag }} ]</div> -->
  174. </div>
  175. </el-row>
  176. </div>
  177. </el-row>
  178. </div>
  179. </el-tab-pane>
  180. </el-tabs>
  181. </div>
  182. <div class="right_bottom">
  183. <a class="moreMessage" @click="">更多</a>
  184. <el-tabs v-model="rightBottom" @tab-click="" style="width: 98%; margin: 0px auto">
  185. <el-tab-pane label="文件下载" name="">
  186. <div style="overflow-y: auto;height: 20vh;">
  187. <el-row v-for="(item, index) of dataList2" :key="index">
  188. <div>
  189. <el-row style="border-bottom: 1px solid #F2F2F2;">
  190. <div style="margin-bottom: 5px;">
  191. <!-- <div class="leftContentPrefix">[ {{ item.tag }} ]</div> -->
  192. <div style="display: inline-block;">
  193. <div class="leftContent">{{ item.title }}</div>
  194. <div style="width: 20vh;">{{ item.createTime }}</div>
  195. </div>
  196. <div style="float: right;">
  197. <el-button class="rightBottomButter">下载</el-button>
  198. </div>
  199. </div>
  200. </el-row>
  201. </div>
  202. </el-row>
  203. </div>
  204. </el-tab-pane>
  205. </el-tabs>
  206. </div>
  207. </div>
  208. <div class="bottom">
  209. </div>
  210. <el-dialog :title="detailTitle1" :visible.sync="openDetail1" width="800px" v-dialogDrag append-to-body>
  211. <div style="padding: 5rpx;width: 700px" v-html="detail1">
  212. </div>
  213. </el-dialog>
  214. </div>
  215. </div>
  216. </template>
  217. <script>
  218. import {
  219. getEnableList,
  220. getEnableListPic,
  221. } from "@/api/system/moduleConfig";
  222. import {
  223. getHomePlatFormForWeb,
  224. getXGZXForWeb,
  225. getPlatformInfo,
  226. } from "@/api/content/platformInfo";
  227. import { getThisAgencyInfo } from "@/api/content/agencyInfo";
  228. import { getPath } from "@/utils/ruoyi";
  229. import defaultLogo1 from '@/assets/logo/defaultLogo1.png'
  230. export default {
  231. name: "Navigation",
  232. components: {
  233. },
  234. data() {
  235. return {
  236. detailTitle1: "",
  237. openDetail1: false,
  238. detail1: undefined,
  239. //当前机构
  240. thisTenant: { agencyLogo: defaultLogo1, },
  241. //左上轮播图
  242. leftTopPics: [],
  243. //右上跳转模块
  244. rightTopLink: [
  245. { name: "市场1", icon: "https://hzl.willalp.com:9000/willalpbucket/2.png" },
  246. { name: "市场2", icon: "https://hzl.willalp.com:9000/willalpbucket/2.png" },
  247. { name: "市场3", icon: "https://hzl.willalp.com:9000/willalpbucket/2.png" },
  248. { name: "市场4", icon: "https://hzl.willalp.com:9000/willalpbucket/2.png" },
  249. { name: "市场5", icon: "https://hzl.willalp.com:9000/willalpbucket/2.png" },
  250. { name: "市场6", icon: "https://hzl.willalp.com:9000/willalpbucket/2.png" },
  251. { name: "市场7", icon: "https://hzl.willalp.com:9000/willalpbucket/2.png" },
  252. { name: "市场8", icon: "https://hzl.willalp.com:9000/willalpbucket/2.png" },
  253. { name: "市场9", icon: "https://hzl.willalp.com:9000/willalpbucket/2.png" },
  254. { name: "市场10", icon: "https://hzl.willalp.com:9000/willalpbucket/2.png" },
  255. ],
  256. //左上机构咨询
  257. leftTopOne: [],
  258. //左下角平台咨询
  259. leftBottomList: [],
  260. queryWord: undefined,
  261. leftTopRight: '1',
  262. leftMiddle: '1',
  263. rightMiddle: undefined,
  264. leftBottom: undefined,
  265. rightBottom: undefined,
  266. // dataList: [
  267. // { title: "这是标题这是标题", createTime: "2024-09-07 15:23:22" },
  268. // { title: "这是标题这是标题", createTime: "2024-09-07 15:23:22" },
  269. // { title: "这是标题这是标题", createTime: "2024-09-07 15:23:22" },
  270. // { title: "这是标题这是标题", createTime: "2024-09-07 15:23:22" },
  271. // ],
  272. dataList2: [
  273. { tag: "党政要闻", title: "这是标题这是标题", createTime: "2024-09-07 15:23:22" },
  274. { tag: "党政要闻", title: "这是标题这是标题", createTime: "2024-09-07 15:23:22" },
  275. { tag: "党政要闻", title: "这是标题这是标题", createTime: "2024-09-07 15:23:22" },
  276. { tag: "党政要闻", title: "这是标题这是标题", createTime: "2024-09-07 15:23:22" },
  277. { tag: "党政要闻", title: "这是标题这是标题", createTime: "2024-09-07 15:23:22" },
  278. { tag: "党政要闻", title: "这是标题这是标题", createTime: "2024-09-07 15:23:22" },
  279. ],
  280. ptzxList: [
  281. { coverPic: "https://ts.willalp.com:9002/willalpbucket/微信图片_2024032809233720240328092531.png", title: "清明放假通知", sketch: "放假时间:4月4-6日放假,共3天。4月7日(星期日)上班。" },
  282. { coverPic: "https://ts.willalp.com:9002/willalpbucket/微信图片_2024032809233720240328092531.png", title: "清明放假通知", sketch: "放假时间:4月4-6日放假,共3天。4月7日(星期日)上班。" },
  283. { coverPic: "https://ts.willalp.com:9002/willalpbucket/微信图片_2024032809233720240328092531.png", title: "清明放假通知", sketch: "放假时间:4月4-6日放假,共3天。4月7日(星期日)上班。" }
  284. ],
  285. };
  286. },
  287. beforeCreate() {
  288. },
  289. created() {
  290. this.getTemplate();
  291. },
  292. methods: {
  293. //页面初始化数据获取
  294. getTemplate() {
  295. //获得当前机构信息
  296. getThisAgencyInfo().then(res => {
  297. this.thisTenant = res.data;
  298. if (res.data.agencyLogo) {
  299. this.thisTenant.agencyLogo = JSON.parse(res.data.agencyLogo)[0].url;
  300. }
  301. })
  302. //获得左上轮播图
  303. getEnableListPic().then(res => {
  304. this.leftTopPics = res.data;
  305. });
  306. //获得右上跳转模块
  307. getEnableList().then(res => {
  308. this.rightTopLink = res.data;
  309. });
  310. //平台资讯
  311. getHomePlatFormForWeb().then(res => {
  312. this.leftBottomList = res.data;
  313. });
  314. //相关资讯
  315. getXGZXForWeb().then(res => {
  316. if (res.data.size < 5) {
  317. this.leftTopOne = res.data;
  318. } else {
  319. this.leftTopOne = res.data.slice(0, 4);
  320. }
  321. });
  322. },
  323. /** 注销 */
  324. async logout() {
  325. this.$modal
  326. .confirm("确定注销并退出系统吗?", "提示")
  327. .then(() => {
  328. this.$store.dispatch("LogOut").then(() => {
  329. location.href = getPath("/navigation");
  330. });
  331. })
  332. .catch(() => { });
  333. },
  334. /** 处理搜索 */
  335. handleQuery() {
  336. console.log(this.queryWord)
  337. },
  338. /** 处理跳转 */
  339. goPage(path) {
  340. this.$router.push(path);
  341. },
  342. //导航栏跳转
  343. handleSelect(key, keyPath) {
  344. if (key == 2) {
  345. this.$router.push("/index");
  346. }
  347. if (key == 3) {
  348. this.$router.push("/user/profile");
  349. }
  350. },
  351. /** 左上更多按钮跳转 */
  352. leftTopMore() {
  353. if (this.leftTopRight == '1') {
  354. this.$router.push("/xzUnit/news");
  355. } else if (this.leftTopRight == '2') {
  356. } else if (this.leftTopRight == '3') {
  357. }
  358. },
  359. leftTopOneDetail(index) {
  360. this.detail1 = undefined;
  361. this.detailTitle1 = "机构资讯详情";
  362. this.detail1 = this.leftTopOne[index].link;
  363. this.detail1 = this.detail1.replace('<img', '<img style="max-width:100%;height:100%"');
  364. this.openDetail1 = true;
  365. },
  366. /** 左中更多按钮跳转 */
  367. leftMiddleMore() {
  368. },
  369. /** 左下更多按钮跳转 */
  370. leftBottomMore() {
  371. this.$router.push("/xzUnit/platformInfo");
  372. },
  373. leftBottomDetail(id) {
  374. this.detail1 = undefined;
  375. this.detailTitle1 = "平台资讯详情";
  376. getPlatformInfo(id).then(res => {
  377. this.detail1 = res.data.content;
  378. this.detail1 = this.detail1.replace('<img', '<img style="max-width:100%;height:100%"');
  379. this.openDetail1 = true;
  380. })
  381. },
  382. /** 右上更多按钮跳转 */
  383. rightTopMore() {
  384. },
  385. /** 右中更多按钮跳转 */
  386. rightMiddleMore() {
  387. },
  388. /** 右下更多按钮跳转 */
  389. rightBottomMore() {
  390. },
  391. },
  392. };
  393. </script>
  394. <style scoped>
  395. ::v-deep .el-tabs__item {
  396. color: #6F6F6F;
  397. }
  398. ::v-deep .el-tabs__item.is-active {
  399. color: #333333;
  400. }
  401. ::v-deep .el-input--medium .el-input__inner {
  402. border-radius: 47px 47px 47px 47px;
  403. border: 2px solid #FFFFFF;
  404. }
  405. ::v-deep .el-menu--horizontal > .el-menu-item {
  406. display: flex;
  407. height: 85%;
  408. align-items: center;
  409. line-height: 100%;
  410. }
  411. .rightBottomButter {
  412. background: #FF9736;
  413. border-radius: 4px 4px 4px 4px;
  414. border: 1px solid #FF9736;
  415. font-family: Inter, Inter;
  416. font-weight: 400;
  417. font-size: 14px;
  418. color: #FFFFFF;
  419. line-height: 16px;
  420. text-align: left;
  421. font-style: normal;
  422. text-transform: none;
  423. margin-top: 6%;
  424. }
  425. .sys_card_title_font {
  426. display: block;
  427. overflow: hidden;
  428. white-space: nowrap;
  429. text-overflow: ellipsis;
  430. -o-text-overflow: ellipsis;
  431. }
  432. .sys_card_title {
  433. position: absolute;
  434. width: 100%;
  435. height: 35%;
  436. background-color: rgba(0, 0, 0, 0.3);
  437. border-bottom-left-radius: 4px;
  438. border-bottom-right-radius: 4px;
  439. bottom: 0;
  440. display: block;
  441. white-space: nowrap;
  442. text-overflow: ellipsis;
  443. -o-text-overflow: ellipsis;
  444. }
  445. .sys_card {
  446. width: 31%;
  447. height: 19vh;
  448. border-radius: 4px;
  449. border: 1px solid #f2f2f2;
  450. margin: auto 1%;
  451. position: relative;
  452. float: left;
  453. }
  454. .titleSty {
  455. margin-top: 10px;
  456. margin-bottom: 5px;
  457. text-align: center;
  458. }
  459. .imgSty {
  460. width: 100%;
  461. height: 100%;
  462. }
  463. .menuImg {
  464. width: 5vh;
  465. height: 5vh;
  466. /* margin: 1vh auto 0 auto; */
  467. margin: 1vh auto 0 auto;
  468. }
  469. .listItem {
  470. width: 20%;
  471. /* height: 14vh; */
  472. display: inline-block;
  473. }
  474. .rightContent {
  475. display: block;
  476. /* float: right; */
  477. margin-right: 25px;
  478. font-family: Microsoft YaHei, Microsoft YaHei;
  479. font-weight: 400;
  480. font-size: 12px;
  481. color: #6F6F6F;
  482. line-height: 25px;
  483. text-align: right;
  484. font-style: normal;
  485. text-transform: none;
  486. overflow: hidden;
  487. white-space: nowrap;
  488. text-overflow: ellipsis;
  489. -o-text-overflow: ellipsis;
  490. }
  491. .leftContentPrefix {
  492. display: block;
  493. font-family: Microsoft YaHei, Microsoft YaHei;
  494. font-weight: 400;
  495. font-size: 16px;
  496. color: #3B71DD;
  497. text-align: left;
  498. font-style: normal;
  499. text-transform: none;
  500. margin-right: 1%;
  501. overflow: hidden;
  502. white-space: nowrap;
  503. text-overflow: ellipsis;
  504. -o-text-overflow: ellipsis;
  505. }
  506. .leftContent {
  507. display: block;
  508. font-family: Microsoft YaHei, Microsoft YaHei;
  509. font-weight: 400;
  510. font-size: 16px;
  511. color: #333333;
  512. text-align: left;
  513. font-style: normal;
  514. overflow: hidden;
  515. white-space: nowrap;
  516. text-overflow: ellipsis;
  517. -o-text-overflow: ellipsis;
  518. }
  519. .moreMessage {
  520. position: absolute;
  521. right: 20px;
  522. top: 12px;
  523. z-index: 9;
  524. }
  525. .left_bottom .left {
  526. height: 100vh;
  527. width: 49.5%;
  528. /* background-color: #fff; */
  529. border-radius: 6px;
  530. position: relative;
  531. }
  532. .el-carousel__item h3 {
  533. color: #475669;
  534. font-size: 14px;
  535. opacity: 0.75;
  536. line-height: 150px;
  537. margin: 0;
  538. }
  539. .el-carousel__item:nth-child(2n) {
  540. background-color: #99a9bf;
  541. }
  542. .el-carousel__item:nth-child(2n+1) {
  543. background-color: #d3dce6;
  544. }
  545. .top {
  546. height: 13vh;
  547. width: 100%;
  548. margin-bottom: 10px;
  549. /* background-color: red; */
  550. }
  551. .top_one {
  552. height: 7.5vh;
  553. width: 100%;
  554. background-color: #1890FF;
  555. display: flex;
  556. align-items: center;
  557. }
  558. .top_one .left {
  559. width: 33.33%;
  560. height: 85%;
  561. display: flex;
  562. justify-content: flex-start;
  563. span {
  564. font-family: Microsoft YaHei, Microsoft YaHei;
  565. font-weight: bold;
  566. font-size: 24px;
  567. color: #FFFFFF;
  568. /* line-height: 28px; */
  569. letter-spacing: 8px;
  570. font-style: normal;
  571. text-transform: none;
  572. /* margin-left: 40px; */
  573. text-align: left;
  574. }
  575. }
  576. .top_one .middle {
  577. width: 33.33%;
  578. }
  579. .top_one .right {
  580. justify-content: flex-end;
  581. width: 33.33%;
  582. height: 85%;
  583. span {
  584. font-family: Microsoft YaHei, Microsoft YaHei;
  585. font-weight: 400;
  586. font-size: 14px;
  587. color: #FFFFFF;
  588. line-height: 16px;
  589. text-align: left;
  590. font-style: normal;
  591. text-transform: none;
  592. }
  593. }
  594. .top_two {
  595. height: 6.5vh;
  596. width: 100%;
  597. background-color: #FFFFFF;
  598. display: flex;
  599. align-items: center;
  600. }
  601. .top_two .left {
  602. width: 20%;
  603. height: 85%;
  604. display: flex;
  605. margin-top: 0;
  606. align-items: center;
  607. justify-content: flex-start;
  608. span {
  609. font-family: Microsoft YaHei, Microsoft YaHei;
  610. font-weight: 400;
  611. font-size: 24px;
  612. letter-spacing: 3px;
  613. line-height: 28px;
  614. text-align: left;
  615. font-style: normal;
  616. text-transform: none;
  617. }
  618. }
  619. .top_two .middle {
  620. width: 60%;
  621. }
  622. .top_two_menu {
  623. height: 100%;
  624. display: flex;
  625. align-items: center;
  626. justify-content: center;
  627. width: 100%;
  628. font-family: Inter, Inter;
  629. font-weight: 400;
  630. font-size: 24px;
  631. color: #6F6F6F;
  632. line-height: 28px;
  633. text-align: center;
  634. font-style: normal;
  635. text-transform: none;
  636. }
  637. .el-menu-item {
  638. margin: 0 6%;
  639. }
  640. .left {
  641. height: 100vh;
  642. width: 54.25%;
  643. margin-left: 1.5%;
  644. margin-top: 1vh;
  645. float: left;
  646. /* background-color: blue; */
  647. }
  648. .left_top {
  649. margin-top: 0;
  650. height: 29.5vh;
  651. background-color: #FFFFFF;
  652. display: flex;
  653. }
  654. .left_top .left {
  655. display: flex;
  656. width: 42%;
  657. height: 100%;
  658. /* background-color: rgb(255, 0, 0); */
  659. }
  660. .left_top .right {
  661. margin-top: 0;
  662. display: flex;
  663. width: 58%;
  664. height: 100%;
  665. /* background-color: rgb(255, 0, 191); */
  666. /* height: 100vh; */
  667. /* width: 49.5%; */
  668. position: relative;
  669. }
  670. .left_middle {
  671. height: 37vh;
  672. margin-top: 2vh;
  673. background-color: #FFFFFF;
  674. position: relative;
  675. }
  676. .left_bottom {
  677. height: 28.5vh;
  678. margin-top: 2vh;
  679. background-color: #FFFFFF;
  680. position: relative;
  681. }
  682. .right {
  683. height: 100vh;
  684. width: 41.25%;
  685. margin-left: 1.5%;
  686. margin-top: 1vh;
  687. float: left;
  688. /* background-color: green; */
  689. }
  690. .right_top {
  691. height: 29.5vh;
  692. background-color: #FFFFFF;
  693. ;
  694. position: relative;
  695. }
  696. .right_middle {
  697. height: 37vh;
  698. margin-top: 2vh;
  699. background-color: #FFFFFF;
  700. position: relative;
  701. }
  702. .right_bottom {
  703. height: 28.5vh;
  704. margin-top: 2vh;
  705. background-color: #FFFFFF;
  706. position: relative;
  707. }
  708. .bottom {
  709. height: 5vh;
  710. width: 100%;
  711. margin-top: 2vh;
  712. float: left;
  713. /* background-color: rgb(1, 7, 1); */
  714. }
  715. </style>