Flowchart.vue 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498
  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" class="user2" />
  6. <User text="异常访客" :src="user3Icon" class="user3" />
  7. <User text="... ..." :src="user4Icon" 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. </script>
  119. <style lang="scss" scoped>
  120. .flowchart-container {
  121. width: 1200px;
  122. position: relative;
  123. margin: 0 auto;
  124. .flowchart-users {
  125. position: relative;
  126. .user1 {
  127. position: absolute;
  128. top: 0;
  129. left: 286px;
  130. }
  131. .user2 {
  132. position: absolute;
  133. top: 0;
  134. right: 394px;
  135. &::after {
  136. content: "";
  137. position: absolute;
  138. width: 14px;
  139. height: 151px;
  140. top: 100%;
  141. right: 40%;
  142. background: linear-gradient(#979797, #E6E6E6);
  143. transform: translateX(-50%);
  144. }
  145. }
  146. .user3 {
  147. position: absolute;
  148. top: 0;
  149. right: 197px;
  150. &::after {
  151. content: "";
  152. position: absolute;
  153. width: 14px;
  154. height: 151px;
  155. top: 100%;
  156. right: 40%;
  157. background: linear-gradient(#FF5852, #fff);
  158. transform: translateX(-50%);
  159. }
  160. }
  161. .user4 {
  162. position: absolute;
  163. top: 0;
  164. right: 0;
  165. &::after {
  166. content: "";
  167. position: absolute;
  168. width: 14px;
  169. height: 151px;
  170. top: 100%;
  171. right: 40%;
  172. background: linear-gradient(#ccc, #fff);
  173. transform: translateX(-50%);
  174. }
  175. }
  176. }
  177. .flowchart-arrow {
  178. position: relative;
  179. color: #FFF;
  180. font-size: 20px;
  181. font-weight: 400;
  182. line-height: 20px;
  183. .arrow1 {
  184. position: absolute;
  185. top: 122px;
  186. left: 106px;
  187. }
  188. .text-box {
  189. position: absolute;
  190. display: flex;
  191. justify-content: center;
  192. align-items: center;
  193. border-radius: 10px;
  194. border: 2px solid #8457FF;
  195. background: #3F327D;
  196. }
  197. .text1 {
  198. left: 0;
  199. top: 270px;
  200. width: 308px;
  201. height: 74px;
  202. }
  203. .text2 {
  204. left: 70px;
  205. top: 370px;
  206. width: 122px;
  207. height: 54px;
  208. }
  209. .text3 {
  210. left: 540px;
  211. top: 370px;
  212. width: 122px;
  213. height: 54px;
  214. }
  215. .text4 {
  216. left: 644px;
  217. top: 270px;
  218. width: 556px;
  219. height: 74px;
  220. }
  221. }
  222. .block-title {
  223. width: 100%;
  224. height: 70px;
  225. background: rgba(128, 119, 255, 0.50);
  226. display: flex;
  227. justify-content: center;
  228. align-items: center;
  229. font-size: 24px;
  230. color: #FFF;
  231. font-weight: 400;
  232. line-height: 20px;
  233. }
  234. .flowchart-block {
  235. width: 100%;
  236. padding-top: 475px;
  237. .block-ads {
  238. width: 100%;
  239. border-radius: 10px;
  240. border: 2px solid #8B74FF;
  241. background: rgba(63, 51, 125, 0.30);
  242. color: #FFF;
  243. font-weight: 400;
  244. line-height: 20px;
  245. .ads-contnet {
  246. font-size: 20px;
  247. height: 134px;
  248. display: flex;
  249. align-items: center;
  250. justify-content: space-around;
  251. // gap: 76px;
  252. .ads-text {
  253. display: flex;
  254. width: 261px;
  255. height: 51px;
  256. justify-content: center;
  257. align-items: center;
  258. border-radius: 10px;
  259. background: rgba(139, 116, 255, 0.50);
  260. }
  261. }
  262. }
  263. .block-yun {
  264. width: 1200px;
  265. border-radius: 10px;
  266. border: 2px solid #8077FF;
  267. background: rgba(63, 51, 125, 0.30);
  268. }
  269. .yun-contnet {
  270. display: flex;
  271. flex-wrap: wrap;
  272. justify-content: center;
  273. gap: 30px;
  274. padding: 35px 0;
  275. position: relative;
  276. .yun-item {
  277. border-radius: 10px;
  278. background: rgba(139, 116, 255, 0.50);
  279. display: flex;
  280. width: 440px;
  281. height: 82px;
  282. align-items: center;
  283. padding: 15px 24px;
  284. box-sizing: border-box;
  285. position: relative;
  286. gap: 36px;
  287. z-index: 1;
  288. .yun-item-title {
  289. color: #FFF;
  290. font-size: 20px;
  291. font-weight: 700;
  292. line-height: 20px;
  293. }
  294. .yun-item-desc {
  295. color: #FFF;
  296. font-size: 16px;
  297. font-weight: 400;
  298. line-height: 24px;
  299. text-align: left;
  300. flex: 1;
  301. }
  302. }
  303. }
  304. .block-arrow1 {
  305. display: flex;
  306. justify-content: center;
  307. }
  308. }
  309. .flowchart-footer {
  310. width: 100%;
  311. display: flex;
  312. box-sizing: border-box;
  313. .footer-text {
  314. position: absolute;
  315. display: flex;
  316. width: 122px;
  317. height: 54px;
  318. justify-content: center;
  319. align-items: center;
  320. border-radius: 10px;
  321. border: 2px solid #CBC9FF;
  322. background: #3F337D;
  323. box-shadow: 0 5.5px 10px 0 rgba(181, 179, 227, 0.30);
  324. color: #FFF;
  325. font-size: 20px;
  326. font-weight: 400;
  327. line-height: 20px;
  328. z-index: 1;
  329. }
  330. .left-text {
  331. top: 20px;
  332. left: 542px;
  333. }
  334. .right-text {
  335. top: 81px;
  336. left: 131px;
  337. }
  338. }
  339. .footer-left {
  340. width: 900px;
  341. .left-top {
  342. position: relative;
  343. .top-img {
  344. position: relative;
  345. left: 575px;
  346. }
  347. }
  348. .left-content {
  349. width: 100%;
  350. border-radius: 10px;
  351. border: 2px solid #8077FF;
  352. background: rgba(63, 51, 125, 0.30);
  353. display: flex;
  354. flex-direction: column;
  355. .center-content {
  356. flex: 1;
  357. padding: 55px 40px;
  358. display: flex;
  359. flex-direction: column;
  360. justify-content: space-between;
  361. gap: 20px;
  362. .center-row {
  363. display: flex;
  364. justify-content: space-between;
  365. gap: 20px;
  366. width: 100%;
  367. }
  368. .center-item {
  369. display: flex;
  370. width: 380px;
  371. height: 56px;
  372. background: rgba(139, 116, 255, 0.50);
  373. border-radius: 10px;
  374. align-items: center;
  375. box-sizing: border-box;
  376. gap: 26px;
  377. padding-left: 24px;
  378. &.half {
  379. width: calc(50% - 10px);
  380. }
  381. &.full {
  382. width: 100%;
  383. }
  384. .item-title {
  385. color: #FFF;
  386. font-size: 20px;
  387. font-weight: 700;
  388. line-height: 20px;
  389. }
  390. .item-desc {
  391. color: #FFF;
  392. font-size: 16px;
  393. font-weight: 400;
  394. line-height: 16px;
  395. }
  396. }
  397. }
  398. }
  399. }
  400. .footer-right {
  401. width: 300px;
  402. .right-top {
  403. position: relative;
  404. }
  405. .right-img {
  406. position: relative;
  407. left: 174px;
  408. }
  409. .right-server {
  410. position: relative;
  411. }
  412. .arrow4 {
  413. position: absolute;
  414. left: 8px;
  415. top: 80px;
  416. }
  417. .server-img {
  418. position: relative;
  419. left: 48px;
  420. z-index: 1;
  421. }
  422. .server-text {
  423. display: flex;
  424. width: 182px;
  425. height: 75px;
  426. justify-content: center;
  427. align-items: center;
  428. border-radius: 10px;
  429. border: 2px solid #CBC9FF;
  430. background: #3F337D;
  431. box-shadow: 0 5.5px 10px 0 rgba(181, 179, 227, 0.30);
  432. color: #FFF;
  433. font-size: 20px;
  434. font-weight: 400;
  435. line-height: 20px;
  436. margin: 30px 0 0 84px;
  437. }
  438. }
  439. }
  440. </style>