about.vue 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187
  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 class="about-a">
  33. <h3>万千攻击,1 盾尽消</h3>
  34. <p>"T级清洗能力 × 智能流量调度 × 全链路产品联防 — 这就是1盾的底气"</p>
  35. </section>
  36. <DCard />
  37. </section>
  38. </template>
  39. <script setup>
  40. import Flowchart from '~/components/about/Flowchart.vue';
  41. import MatrixCard from '~/components/about/MatrixCard.vue';
  42. import DCard from '~/components/about/DCard.vue';
  43. </script>
  44. <style lang="scss" scoped>
  45. .about {
  46. width: 100%;
  47. padding-top: 88px;
  48. position: relative;
  49. margin: 0 auto;
  50. .about-bg {
  51. position: absolute;
  52. top: 0;
  53. left: 50%;
  54. transform: translateX(-50%);
  55. width: 1430px;
  56. height: auto;
  57. }
  58. .about-content {
  59. padding-top: 180px;
  60. display: flex;
  61. flex-direction: column;
  62. align-items: center;
  63. justify-content: center;
  64. .about-title {
  65. display: flex;
  66. flex-direction: column;
  67. align-items: center;
  68. justify-content: center;
  69. color: #FFF;
  70. h1 {
  71. font-size: 45px;
  72. font-weight: 400;
  73. }
  74. p {
  75. font-size: 18px;
  76. font-weight: 400;
  77. }
  78. }
  79. .about-box {
  80. position: relative;
  81. width: 1200px;
  82. height: 487px;
  83. margin-top: 192px;
  84. border-radius: 30px;
  85. border: 1px solid rgba(13, 0, 34, 0.00);
  86. background: linear-gradient(179deg, rgba(3, 0, 20, 0.50) 1.22%, rgba(151, 87, 255, 0.10) 41.19%);
  87. box-shadow: 0 4px 4px 0 rgba(98, 0, 255, 0.30) inset;
  88. backdrop-filter: blur(25px);
  89. .about-box-text {
  90. width: 520px;
  91. height: 260px;
  92. display: flex;
  93. flex-direction: column;
  94. align-items: start;
  95. justify-content: space-between;
  96. margin: 102px 0 125px 50px;
  97. color: #FFF;
  98. font-size: 16px;
  99. font-weight: 400;
  100. }
  101. .about-box-img {
  102. position: absolute;
  103. top: 50%;
  104. right: 90px;
  105. transform: translateY(-50%);
  106. width: 400px;
  107. height: auto;
  108. }
  109. }
  110. }
  111. .about-subtitle {
  112. margin-top: 96px;
  113. display: flex;
  114. flex-direction: column;
  115. align-items: center;
  116. justify-content: center;
  117. color: #FFF;
  118. h2 {
  119. font-size: 45px;
  120. font-weight: 700;
  121. margin-bottom: 32px;
  122. }
  123. p {
  124. font-size: 16px;
  125. font-weight: 400;
  126. line-height: 36px;
  127. }
  128. }
  129. .about-matrix {
  130. display: flex;
  131. flex-direction: column;
  132. align-items: center;
  133. justify-content: center;
  134. color: #FFF;
  135. margin-top: 160px;
  136. h2 {
  137. font-size: 45px;
  138. font-weight: 700;
  139. line-height: 60px;
  140. }
  141. p {
  142. font-size: 16px;
  143. font-weight: 400;
  144. line-height: 36px;
  145. &:first-of-type {
  146. margin-top: 32px;
  147. }
  148. }
  149. }
  150. .about-a {
  151. margin-top: 160px;
  152. display: flex;
  153. flex-direction: column;
  154. align-items: center;
  155. justify-content: center;
  156. color: #FFF;
  157. gap: 20px;
  158. h3 {
  159. font-size: 45px;
  160. font-weight: 700;
  161. }
  162. p {
  163. font-size: 16px;
  164. font-weight: 400;
  165. }
  166. }
  167. }
  168. </style>