Flowchart.vue 8.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362
  1. <template>
  2. <section class="about-flow">
  3. <div class="flow-title">
  4. <div class="flow-title-text">
  5. 全线产品自主研发
  6. </div>
  7. <div class="flow-title-subtext">
  8. 全线产品自主研发,从高防IP、CDN到游戏盾SDK,核心技术完全自控,安全能力不受制于人,防护效果快人一步。
  9. </div>
  10. </div>
  11. <div class="flow-content">
  12. <div class="flow-content-left">
  13. <div class="left-user">
  14. <NuxtImg class="flow-icon" src="/images/about/icon-user.png" alt="icon" />
  15. <div class="flow-text">用户</div>
  16. </div>
  17. <div class="left-sdk">
  18. <NuxtImg class="flow-icon" src="/images/about/icon-sdk.png" alt="icon" />
  19. <div class="flow-text">终端设备/SDK</div>
  20. </div>
  21. </div>
  22. <div class="flow-content-con">
  23. <div class="con-item">高仿IP</div>
  24. <div class="con-item">CDN</div>
  25. <div class="con-item">游戏盾</div>
  26. </div>
  27. <div class="flow-content-right">
  28. <div class="right-item">扛攻击,让业务稳如山。</div>
  29. <div class="right-item">就近分发内容,让用户访问快人一步。</div>
  30. <div class="right-item">端上智能调度+加密隧道/大陆加速:</div>
  31. </div>
  32. </div>
  33. <div class="flow-bottom">
  34. <div class="btm-left">高防服务器</div>
  35. <div class="btm-con">
  36. <span>互联网基础设施</span><span>高防DNSSSL节点池</span>
  37. </div>
  38. <div class="btm-right">源站服务器</div>
  39. </div>
  40. </section>
  41. </template>
  42. <script setup>
  43. </script>
  44. <style lang="scss" scoped>
  45. .about-flow {
  46. width: 1200px;
  47. margin: 72px auto 0;
  48. box-sizing: border-box;
  49. .flow-title {
  50. position: relative;
  51. border-radius: 10px;
  52. border: 2px solid #8B74FF;
  53. background: rgba(63, 51, 125, 0.30);
  54. color: #FFF;
  55. .flow-title-text {
  56. display: flex;
  57. align-items: center;
  58. justify-content: center;
  59. width: 100%;
  60. height: 70px;
  61. font-size: 30px;
  62. font-weight: 400;
  63. background: rgba(128, 119, 255, .5);
  64. }
  65. .flow-title-subtext {
  66. padding: 16px 36px 22px;
  67. font-size: 24px;
  68. font-weight: 400;
  69. }
  70. &::before {
  71. content: '';
  72. position: absolute;
  73. bottom: -75px;
  74. left: 50%;
  75. transform: translateX(-50%);
  76. width: 2px;
  77. height: 75px;
  78. background: #8B74FF;
  79. }
  80. &::after {
  81. content: '';
  82. position: absolute;
  83. bottom: -77px;
  84. left: 50%;
  85. transform: translateX(-50%);
  86. width: 0;
  87. height: 0;
  88. border-left: 8px solid transparent;
  89. border-right: 8px solid transparent;
  90. border-top: 12px solid #8B74FF;
  91. }
  92. }
  93. .flow-content {
  94. width: 100%;
  95. box-sizing: border-box;
  96. display: flex;
  97. align-items: center;
  98. .flow-content-left {
  99. display: flex;
  100. gap: 30px;
  101. }
  102. .left-user,
  103. .left-sdk {
  104. display: flex;
  105. flex-direction: column;
  106. align-items: center;
  107. justify-content: center;
  108. color: #FFF;
  109. .flow-text {
  110. position: relative;
  111. box-sizing: border-box;
  112. width: 162px;
  113. height: 55px;
  114. display: flex;
  115. justify-content: center;
  116. align-items: center;
  117. border-radius: 8px;
  118. border: 1px solid #A39DFF;
  119. background: #3F337D;
  120. &::before {
  121. content: '';
  122. position: absolute;
  123. right: -30px;
  124. top: 50%;
  125. transform: translateY(-50%);
  126. width: 30px;
  127. height: 1px;
  128. background: #8B74FF;
  129. }
  130. &::after {
  131. content: '';
  132. position: absolute;
  133. right: -32px;
  134. top: 50%;
  135. transform: translateY(-50%);
  136. width: 0;
  137. height: 0;
  138. border-top: 8px solid transparent;
  139. border-bottom: 8px solid transparent;
  140. border-left: 12px solid #8B74FF;
  141. }
  142. }
  143. }
  144. .left-sdk {
  145. .flow-text {
  146. &::before {
  147. right: -56px;
  148. width: 56px;
  149. }
  150. &::after {
  151. right: -56px;
  152. }
  153. }
  154. }
  155. .flow-content-con {
  156. position: relative;
  157. display: flex;
  158. flex-direction: column;
  159. align-items: center;
  160. justify-content: center;
  161. gap: 58px;
  162. width: 376px;
  163. height: 345px;
  164. box-sizing: border-box;
  165. border-radius: 10px;
  166. border: 2px solid #8B74FF;
  167. margin: 77px 80px 47px 56px;
  168. background: rgba(63, 51, 125, 0.30);
  169. &::before {
  170. content: '';
  171. position: absolute;
  172. left: 50%;
  173. bottom: -47px;
  174. transform: translateX(-50%);
  175. width: 1px;
  176. height: 47px;
  177. background: #8B74FF;
  178. }
  179. &::after {
  180. content: '';
  181. position: absolute;
  182. left: 50%;
  183. bottom: -47px;
  184. transform: translateX(-50%);
  185. width: 0;
  186. height: 0;
  187. border-left: 8px solid transparent;
  188. border-right: 8px solid transparent;
  189. border-top: 12px solid #8B74FF;
  190. }
  191. .con-item {
  192. color: #FFF;
  193. font-size: 20px;
  194. font-weight: 400;
  195. display: flex;
  196. height: 55px;
  197. width: 217px;
  198. justify-content: center;
  199. align-items: center;
  200. border-radius: 8px;
  201. border: 1px solid #A39DFF;
  202. background: #3F337D;
  203. }
  204. }
  205. .flow-content-right {
  206. display: flex;
  207. flex-direction: column;
  208. gap: 32px;
  209. align-items: center;
  210. .right-item {
  211. position: relative;
  212. display: flex;
  213. align-items: center;
  214. justify-content: center;
  215. padding: 0 20px;
  216. box-sizing: border-box;
  217. width: 332px;
  218. height: 89px;
  219. border-radius: 16px;
  220. border: 1px solid #A39DFF;
  221. background: #3F337D;
  222. color: #FFF;
  223. font-size: 20px;
  224. font-weight: 400;
  225. &::before {
  226. content: '';
  227. position: absolute;
  228. left: -65px;
  229. top: 50%;
  230. transform: translateY(-50%);
  231. width: 65px;
  232. height: 1px;
  233. background: #8B74FF;
  234. }
  235. &::after {
  236. content: '';
  237. position: absolute;
  238. left: -65px;
  239. top: 50%;
  240. transform: translateY(-50%);
  241. width: 0;
  242. height: 0;
  243. border-top: 8px solid transparent;
  244. border-bottom: 8px solid transparent;
  245. border-right: 12px solid #8B74FF;
  246. }
  247. }
  248. }
  249. }
  250. .flow-bottom {
  251. display: flex;
  252. gap: 80px;
  253. color: #FFF;
  254. font-size: 20px;
  255. .btm-left,
  256. .btm-con,
  257. .btm-right {
  258. border: 1px solid #A39DFF;
  259. background: #3F337D;
  260. display: flex;
  261. justify-content: center;
  262. align-items: center;
  263. border-radius: 16px;
  264. }
  265. .btm-left {
  266. position: relative;
  267. margin-left: 84px;
  268. width: 243px;
  269. height: 89px;
  270. &::before {
  271. content: '';
  272. position: absolute;
  273. right: -80px;
  274. top: 50%;
  275. transform: translateY(-50%);
  276. width: 65px;
  277. height: 1px;
  278. background: #8B74FF;
  279. }
  280. &::after {
  281. content: '';
  282. position: absolute;
  283. right: -22px;
  284. top: 50%;
  285. transform: translateY(-50%);
  286. width: 0;
  287. height: 0;
  288. border-top: 8px solid transparent;
  289. border-bottom: 8px solid transparent;
  290. border-right: 12px solid #8B74FF;
  291. }
  292. }
  293. .btm-con {
  294. width: 376px;
  295. height: 89px;
  296. gap: 12px;
  297. }
  298. .btm-right {
  299. position: relative;
  300. width: 332px;
  301. height: 89px;
  302. &::before {
  303. content: '';
  304. position: absolute;
  305. left: -80px;
  306. top: 50%;
  307. transform: translateY(-50%);
  308. width: 65px;
  309. height: 1px;
  310. background: #8B74FF;
  311. }
  312. &::after {
  313. content: '';
  314. position: absolute;
  315. left: -22px;
  316. top: 50%;
  317. transform: translateY(-50%);
  318. width: 0;
  319. height: 0;
  320. border-top: 8px solid transparent;
  321. border-bottom: 8px solid transparent;
  322. border-left: 12px solid #8B74FF;
  323. }
  324. }
  325. }
  326. }
  327. </style>