Flowchart.vue 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469
  1. <template>
  2. <section class="flowchart-container">
  3. <div class="flowchart-users">
  4. <User text="正常访客" :src="user1Icon" class="user1" />
  5. <User text="DDos" :src="user2Icon" :tail-src="user2Tail" class="user2" />
  6. <User text="异常访客" :src="user3Icon" :tail-src="user3Tail" class="user3" />
  7. <User text="... ..." :src="user4Icon" :tail-src="user4Tail" class="user4" />
  8. </div>
  9. <div class="flowchart-arrow">
  10. <img class="arrow1" src="~/assets/svg/home/arrow.svg" alt="arrow" />
  11. <div class="text1 text-box">浏览器域名</div>
  12. <div class="text2 text-box">DNS引流</div>
  13. <div class="text3 text-box">SDK引流</div>
  14. <div class="text4 text-box">移动端/PC/客户端APP(Android、ios、Windows)</div>
  15. </div>
  16. <div class="flowchart-block">
  17. <div class="block-ads">
  18. <div class="block-title">
  19. 清洗系统(ADS)集群
  20. </div>
  21. <div class="ads-contnet">
  22. <div class="ads-text">近源清洗</div>
  23. <div class="ads-text">BGP调度</div>
  24. <div class="ads-text">SYN\ UDP\ACK......</div>
  25. </div>
  26. </div>
  27. <div class="block-arrow1">
  28. <img src="~/assets/svg/home/arrow1.svg" alt="arrow1">
  29. </div>
  30. <div class="block-yun">
  31. <div class="block-title">
  32. 云端纵深防御平台
  33. </div>
  34. <div class="yun-contnet">
  35. <div class="yun-item">
  36. <div class="yun-item-title">WAF</div>
  37. <div class="yun-item-desc">防漏洞、防入侵、防爬虫、<br>防盗链Web蜜网、敏感词替换......</div>
  38. </div>
  39. <div class="yun-item">
  40. <div class="yun-item-title">CC防护</div>
  41. <div class="yun-item-desc">经典防御策略模式,精准访问控制(DIY)</div>
  42. </div>
  43. <div class="yun-item">
  44. <div class="yun-item-title">DDoS防护</div>
  45. <div class="yun-item-desc">节点调度网络(Web、TCP、SDK)</div>
  46. </div>
  47. <div class="yun-item">
  48. <div class="yun-item-title">性能优化</div>
  49. <div class="yun-item-desc">页面压缩、异步加载、移动端跳转全<br>链路优化、Web自适应、高级缓存</div>
  50. </div>
  51. </div>
  52. </div>
  53. </div>
  54. <div class="flowchart-footer">
  55. <div class="footer-left">
  56. <div class="left-top">
  57. <div class="footer-text left-text">安全联动</div>
  58. <img class="top-img" src="~/assets/svg/home/arrow2.svg" alt="arrow2" />
  59. </div>
  60. <div class="left-content">
  61. <div class="block-title">
  62. 大数据安全运营分析中心
  63. </div>
  64. <div class="center-content">
  65. <div class="center-row">
  66. <div class="center-item half">
  67. <div class="item-title">AI实时决策引擎</div>
  68. <div class="item-desc">日志管理、漏洞扫描</div>
  69. </div>
  70. <div class="center-item half">
  71. <div class="item-title">语义语法分析引擎</div>
  72. <div class="item-desc">运营分析、安全值守</div>
  73. </div>
  74. </div>
  75. <div class="center-row">
  76. <div class="center-item half">
  77. <div class="item-title">规则监测引擎</div>
  78. <div class="item-desc">威胁情报、安全重保</div>
  79. </div>
  80. <div class="center-item half">
  81. <div class="item-title">威胁情报</div>
  82. <div class="item-desc">渗透测试、大屏展示</div>
  83. </div>
  84. </div>
  85. <div class="center-item full">
  86. <div class="item-title">安全分析统计</div>
  87. <div class="item-desc">cc攻击分析、漏洞入侵分析、BOT面板、实时态势......</div>
  88. </div>
  89. <div class="center-item full">
  90. <div class="item-title">业务访问分析统计</div>
  91. <div class="item-desc">访问分析、热点URL、热点子域名、请求分布、状态码、流量宽带......</div>
  92. </div>
  93. </div>
  94. </div>
  95. </div>
  96. <div class="footer-right">
  97. <div class="right-top">
  98. <div class="footer-text right-text">洁净流量</div>
  99. <img class="right-img" src="~/assets/svg/home/arrow3.svg" alt="arrow3 " />
  100. </div>
  101. <div class="right-server">
  102. <img class="server-img" src="~/assets/svg/home/server.svg" alt="server" />
  103. <img class="arrow4" src="~/assets/svg/home/arrow4.svg" alt="arrow4">
  104. </div>
  105. <div class="server-text">
  106. 源服务器
  107. </div>
  108. </div>
  109. </div>
  110. </section>
  111. </template>
  112. <script setup>
  113. import User from './User.vue'
  114. import user1Icon from '~/assets/svg/home/user1.svg'
  115. import user2Icon from '~/assets/svg/home/user2.svg'
  116. import user3Icon from '~/assets/svg/home/user3.svg'
  117. import user4Icon from '~/assets/svg/home/user4.svg'
  118. import user2Tail from '~/assets/svg/home/user2-tail.svg'
  119. import user3Tail from '~/assets/svg/home/user3-tail.svg'
  120. import user4Tail from '~/assets/svg/home/user4-tail.svg'
  121. </script>
  122. <style lang="scss" scoped>
  123. .flowchart-container {
  124. width: 1200px;
  125. position: relative;
  126. margin: 0 auto;
  127. .flowchart-users {
  128. position: relative;
  129. .user1 {
  130. position: absolute;
  131. top: 0;
  132. left: 286px;
  133. }
  134. .user2 {
  135. position: absolute;
  136. top: 0;
  137. right: 394px;
  138. }
  139. .user3 {
  140. position: absolute;
  141. top: 0;
  142. right: 197px;
  143. }
  144. .user4 {
  145. position: absolute;
  146. top: 0;
  147. right: 0;
  148. }
  149. }
  150. .flowchart-arrow {
  151. position: relative;
  152. color: #FFF;
  153. font-size: 20px;
  154. font-weight: 400;
  155. line-height: 20px;
  156. .arrow1 {
  157. position: absolute;
  158. top: 120px;
  159. left: 106px;
  160. z-index: 0;
  161. }
  162. .text-box {
  163. position: absolute;
  164. display: flex;
  165. justify-content: center;
  166. align-items: center;
  167. border-radius: 10px;
  168. border: 2px solid #8457FF;
  169. background: #3F327D;
  170. }
  171. .text1 {
  172. left: 0;
  173. top: 270px;
  174. width: 308px;
  175. height: 74px;
  176. }
  177. .text2 {
  178. left: 70px;
  179. top: 370px;
  180. width: 122px;
  181. height: 54px;
  182. }
  183. .text3 {
  184. left: 540px;
  185. top: 370px;
  186. width: 122px;
  187. height: 54px;
  188. }
  189. .text4 {
  190. left: 644px;
  191. top: 270px;
  192. width: 556px;
  193. height: 74px;
  194. }
  195. }
  196. .block-title {
  197. width: 100%;
  198. height: 70px;
  199. background: rgba(128, 119, 255, 0.50);
  200. display: flex;
  201. justify-content: center;
  202. align-items: center;
  203. font-size: 24px;
  204. color: #FFF;
  205. font-weight: 400;
  206. line-height: 20px;
  207. }
  208. .flowchart-block {
  209. width: 100%;
  210. padding-top: 475px;
  211. .block-ads {
  212. width: 100%;
  213. border-radius: 10px;
  214. border: 2px solid #8B74FF;
  215. background: rgba(63, 51, 125, 0.30);
  216. color: #FFF;
  217. font-weight: 400;
  218. line-height: 20px;
  219. .ads-contnet {
  220. font-size: 20px;
  221. height: 134px;
  222. display: flex;
  223. align-items: center;
  224. justify-content: space-around;
  225. // gap: 76px;
  226. .ads-text {
  227. display: flex;
  228. width: 261px;
  229. height: 51px;
  230. justify-content: center;
  231. align-items: center;
  232. border-radius: 10px;
  233. background: rgba(139, 116, 255, 0.50);
  234. }
  235. }
  236. }
  237. .block-yun {
  238. width: 1200px;
  239. border-radius: 10px;
  240. border: 2px solid #8077FF;
  241. background: rgba(63, 51, 125, 0.30);
  242. }
  243. .yun-contnet {
  244. display: flex;
  245. flex-wrap: wrap;
  246. justify-content: center;
  247. gap: 30px;
  248. padding: 35px 0;
  249. position: relative;
  250. .yun-item {
  251. border-radius: 10px;
  252. background: rgba(139, 116, 255, 0.50);
  253. display: flex;
  254. width: 440px;
  255. height: 82px;
  256. align-items: center;
  257. padding: 15px 24px;
  258. box-sizing: border-box;
  259. position: relative;
  260. gap: 36px;
  261. z-index: 1;
  262. .yun-item-title {
  263. color: #FFF;
  264. font-size: 20px;
  265. font-weight: 700;
  266. line-height: 20px;
  267. }
  268. .yun-item-desc {
  269. color: #FFF;
  270. font-size: 16px;
  271. font-weight: 400;
  272. line-height: 24px;
  273. text-align: left;
  274. flex: 1;
  275. }
  276. }
  277. }
  278. .block-arrow1 {
  279. display: flex;
  280. justify-content: center;
  281. }
  282. }
  283. .flowchart-footer {
  284. width: 100%;
  285. display: flex;
  286. box-sizing: border-box;
  287. .footer-text {
  288. position: absolute;
  289. display: flex;
  290. width: 122px;
  291. height: 54px;
  292. justify-content: center;
  293. align-items: center;
  294. border-radius: 10px;
  295. border: 2px solid #CBC9FF;
  296. background: #3F337D;
  297. box-shadow: 0 5.5px 10px 0 rgba(181, 179, 227, 0.30);
  298. color: #FFF;
  299. font-size: 20px;
  300. font-weight: 400;
  301. line-height: 20px;
  302. z-index: 1;
  303. }
  304. .left-text {
  305. top: 20px;
  306. left: 542px;
  307. }
  308. .right-text {
  309. top: 81px;
  310. left: 131px;
  311. }
  312. }
  313. .footer-left {
  314. width: 900px;
  315. .left-top {
  316. position: relative;
  317. .top-img {
  318. position: relative;
  319. left: 575px;
  320. }
  321. }
  322. .left-content {
  323. width: 100%;
  324. border-radius: 10px;
  325. border: 2px solid #8077FF;
  326. background: rgba(63, 51, 125, 0.30);
  327. display: flex;
  328. flex-direction: column;
  329. .center-content {
  330. flex: 1;
  331. padding: 55px 40px;
  332. display: flex;
  333. flex-direction: column;
  334. justify-content: space-between;
  335. gap: 20px;
  336. .center-row {
  337. display: flex;
  338. justify-content: space-between;
  339. gap: 20px;
  340. width: 100%;
  341. }
  342. .center-item {
  343. display: flex;
  344. width: 380px;
  345. height: 56px;
  346. background: rgba(139, 116, 255, 0.50);
  347. border-radius: 10px;
  348. align-items: center;
  349. box-sizing: border-box;
  350. gap: 26px;
  351. padding-left: 24px;
  352. &.half {
  353. width: calc(50% - 10px);
  354. }
  355. &.full {
  356. width: 100%;
  357. }
  358. .item-title {
  359. color: #FFF;
  360. font-size: 20px;
  361. font-weight: 700;
  362. line-height: 20px;
  363. }
  364. .item-desc {
  365. color: #FFF;
  366. font-size: 16px;
  367. font-weight: 400;
  368. line-height: 16px;
  369. }
  370. }
  371. }
  372. }
  373. }
  374. .footer-right {
  375. width: 300px;
  376. .right-top {
  377. position: relative;
  378. }
  379. .right-img {
  380. position: relative;
  381. left: 174px;
  382. }
  383. .right-server {
  384. position: relative;
  385. }
  386. .arrow4 {
  387. position: absolute;
  388. left: 8px;
  389. top: 80px;
  390. }
  391. .server-img {
  392. position: relative;
  393. left: 48px;
  394. z-index: 1;
  395. }
  396. .server-text {
  397. display: flex;
  398. width: 182px;
  399. height: 75px;
  400. justify-content: center;
  401. align-items: center;
  402. border-radius: 10px;
  403. border: 2px solid #CBC9FF;
  404. background: #3F337D;
  405. box-shadow: 0 5.5px 10px 0 rgba(181, 179, 227, 0.30);
  406. color: #FFF;
  407. font-size: 20px;
  408. font-weight: 400;
  409. line-height: 20px;
  410. margin: 30px 0 0 84px;
  411. }
  412. }
  413. }
  414. </style>