about.vue 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191
  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. useHead({
  44. title: 'DDAC - 了解我们',
  45. })
  46. </script>
  47. <style lang="scss" scoped>
  48. .about {
  49. width: 100%;
  50. padding-top: 88px;
  51. position: relative;
  52. margin: 0 auto;
  53. .about-bg {
  54. position: absolute;
  55. top: 0;
  56. left: 50%;
  57. transform: translateX(-50%);
  58. width: 1430px;
  59. height: auto;
  60. }
  61. .about-content {
  62. padding-top: 180px;
  63. display: flex;
  64. flex-direction: column;
  65. align-items: center;
  66. justify-content: center;
  67. .about-title {
  68. display: flex;
  69. flex-direction: column;
  70. align-items: center;
  71. justify-content: center;
  72. color: #FFF;
  73. h1 {
  74. font-size: 45px;
  75. font-weight: 400;
  76. }
  77. p {
  78. font-size: 18px;
  79. font-weight: 400;
  80. }
  81. }
  82. .about-box {
  83. position: relative;
  84. width: 1200px;
  85. height: 487px;
  86. margin-top: 192px;
  87. border-radius: 30px;
  88. border: 1px solid rgba(13, 0, 34, 0.00);
  89. background: linear-gradient(179deg, rgba(3, 0, 20, 0.50) 1.22%, rgba(151, 87, 255, 0.10) 41.19%);
  90. box-shadow: 0 4px 4px 0 rgba(98, 0, 255, 0.30) inset;
  91. backdrop-filter: blur(25px);
  92. .about-box-text {
  93. width: 520px;
  94. height: 260px;
  95. display: flex;
  96. flex-direction: column;
  97. align-items: start;
  98. justify-content: space-between;
  99. margin: 102px 0 125px 50px;
  100. color: #FFF;
  101. font-size: 16px;
  102. font-weight: 400;
  103. }
  104. .about-box-img {
  105. position: absolute;
  106. top: 50%;
  107. right: 90px;
  108. transform: translateY(-50%);
  109. width: 400px;
  110. height: auto;
  111. }
  112. }
  113. }
  114. .about-subtitle {
  115. margin-top: 96px;
  116. display: flex;
  117. flex-direction: column;
  118. align-items: center;
  119. justify-content: center;
  120. color: #FFF;
  121. h2 {
  122. font-size: 45px;
  123. font-weight: 700;
  124. margin-bottom: 32px;
  125. }
  126. p {
  127. font-size: 16px;
  128. font-weight: 400;
  129. line-height: 36px;
  130. }
  131. }
  132. .about-matrix {
  133. display: flex;
  134. flex-direction: column;
  135. align-items: center;
  136. justify-content: center;
  137. color: #FFF;
  138. margin-top: 160px;
  139. h2 {
  140. font-size: 45px;
  141. font-weight: 700;
  142. line-height: 60px;
  143. }
  144. p {
  145. font-size: 16px;
  146. font-weight: 400;
  147. line-height: 36px;
  148. &:first-of-type {
  149. margin-top: 32px;
  150. }
  151. }
  152. }
  153. .about-a {
  154. margin-top: 160px;
  155. display: flex;
  156. flex-direction: column;
  157. align-items: center;
  158. justify-content: center;
  159. color: #FFF;
  160. gap: 20px;
  161. h3 {
  162. font-size: 45px;
  163. font-weight: 700;
  164. }
  165. p {
  166. font-size: 16px;
  167. font-weight: 400;
  168. }
  169. }
  170. }
  171. </style>