about.vue 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161
  1. <template>
  2. <section class="about">
  3. <NuxtImg class="about-bg" src="/images/about/bg.png" alt="about" />
  4. <section class="about-content">
  5. <div class="about-title">
  6. <h1>层层设防,步步为盾,全产品矩阵协同打造零穿透安全体系</h1>
  7. <p>A collaborative approach across the entire product portfolio creates a zero-penetration security system.</p>
  8. </div>
  9. <div class="about-box">
  10. <div class="about-box-text">
  11. <p style="color: #D2AEFF;">盾网络 — 专注于企业级DDoS/CC防护与安全加速的网络安全服务商。</p>
  12. <p>我们以自研流量清洗架构为核心,构建了覆盖高防CDN、游戏盾、高防服务器、高防IP、SDK防护的全链路安全产品体系。依托全国多节点分布式防御网络,为游戏、电商、金融、直播等行业客户提供T级攻击防御与毫秒级响应保障。
  13. </p>
  14. <p>技术是我们的信仰,稳定是我们的承诺。1盾,让每一次攻击都徒劳无功。</p>
  15. </div>
  16. <NuxtImg class="about-box-img" src="/images/about/dun.png" alt="about-box" />
  17. </div>
  18. </section>
  19. <section class="about-subtitle">
  20. <h2>全维度安全防护矩阵</h2>
  21. <p>以体系化、可持续的安全能力构建覆盖全业务场景的多维联动防护框架,全面提升企业在复杂</p>
  22. <p>环境下的风险抵御与运营保障水平</p>
  23. </section>
  24. <Flowchart />
  25. <section class="about-matrix">
  26. <h2>驱动业务持续稳定运行的全域安</h2>
  27. <h2>全产品矩阵</h2>
  28. <p>以全球节点、智能调度与多层防护为底座,构建覆盖业务接入、传输、抗攻击与终端安全的全</p>
  29. <p>链路产品体系,为企业提供可扩展、可进化的稳态安全能力。</p>
  30. </section>
  31. <MatrixCard />
  32. </section>
  33. </template>
  34. <script setup>
  35. import Flowchart from '~/components/about/Flowchart.vue';
  36. import MatrixCard from '~/components/about/MatrixCard.vue';
  37. </script>
  38. <style lang="scss" scoped>
  39. .about {
  40. width: 100%;
  41. padding-top: 88px;
  42. position: relative;
  43. margin: 0 auto;
  44. .about-bg {
  45. position: absolute;
  46. top: 0;
  47. left: 50%;
  48. transform: translateX(-50%);
  49. width: 1430px;
  50. height: auto;
  51. }
  52. .about-content {
  53. padding-top: 180px;
  54. display: flex;
  55. flex-direction: column;
  56. align-items: center;
  57. justify-content: center;
  58. .about-title {
  59. display: flex;
  60. flex-direction: column;
  61. align-items: center;
  62. justify-content: center;
  63. color: #FFF;
  64. h1 {
  65. font-size: 45px;
  66. font-weight: 400;
  67. }
  68. p {
  69. font-size: 18px;
  70. font-weight: 400;
  71. }
  72. }
  73. .about-box {
  74. position: relative;
  75. width: 1200px;
  76. height: 487px;
  77. margin-top: 192px;
  78. border-radius: 30px;
  79. border: 1px solid rgba(13, 0, 34, 0.00);
  80. background: linear-gradient(179deg, rgba(3, 0, 20, 0.50) 1.22%, rgba(151, 87, 255, 0.10) 41.19%);
  81. box-shadow: 0 4px 4px 0 rgba(98, 0, 255, 0.30) inset;
  82. backdrop-filter: blur(25px);
  83. .about-box-text {
  84. width: 520px;
  85. height: 260px;
  86. display: flex;
  87. flex-direction: column;
  88. align-items: start;
  89. justify-content: space-between;
  90. margin: 102px 0 125px 50px;
  91. color: #FFF;
  92. font-size: 16px;
  93. font-weight: 400;
  94. }
  95. .about-box-img {
  96. position: absolute;
  97. top: 50%;
  98. right: 90px;
  99. transform: translateY(-50%);
  100. width: 400px;
  101. height: auto;
  102. }
  103. }
  104. }
  105. .about-subtitle {
  106. margin-top: 96px;
  107. display: flex;
  108. flex-direction: column;
  109. align-items: center;
  110. justify-content: center;
  111. color: #FFF;
  112. h2 {
  113. font-size: 45px;
  114. font-weight: 700;
  115. margin-bottom: 32px;
  116. }
  117. p {
  118. font-size: 16px;
  119. font-weight: 400;
  120. line-height: 36px;
  121. }
  122. }
  123. .about-matrix {
  124. display: flex;
  125. flex-direction: column;
  126. align-items: center;
  127. justify-content: center;
  128. color: #FFF;
  129. margin-top: 160px;
  130. h2 {
  131. font-size: 45px;
  132. font-weight: 700;
  133. line-height: 60px;
  134. }
  135. p {
  136. font-size: 16px;
  137. font-weight: 400;
  138. line-height: 36px;
  139. &:first-of-type {
  140. margin-top: 32px;
  141. }
  142. }
  143. }
  144. }
  145. </style>