about.vue 7.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316
  1. <template>
  2. <section class="mb-about">
  3. <NuxtImg class="mb-about-bg" src="/images/about/bg.png" alt="about" />
  4. <section class="mb-about-content">
  5. <div class="mb-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="mb-about-box">
  10. <div class="mb-about-box-text">
  11. <p><span style="color: #D2AEFF;">盾网络 — 专注于企业级DDoS/CC防护与安全加速的网络安全服务商。
  12. </span>我们以自研流量清洗架构为核心,构建了覆盖高防CDN、游戏盾、高防服务器、高防IP、SDK防护的全链路安全产品体系。依托全国多节点分布式防御网络,为游戏、电商、金融、直播等行业客户提供T级攻击防御与毫秒级响应保障。技术是我们的信仰,稳定是我们的承诺。1盾,让每一次攻击都徒劳无功。
  13. </p>
  14. </div>
  15. </div>
  16. </section>
  17. <section class="mb-about-subtitle">
  18. <h2>全维度安全防护矩阵</h2>
  19. <p>体系化安全能力,全场景多维联动防护,筑牢企业风</p>
  20. <p>险抵御与运营保障</p>
  21. </section>
  22. <Flowchart />
  23. <section class="mb-about-matrix">
  24. <h2>驱动业务持续稳定运行的全域安全产品矩阵</h2>
  25. <p>以全球节点、智能调度与多层防护为底座,构建覆盖业务接入、传</p>
  26. <p>输、抗攻击与终端安全的全链路产品体系,为企业提供可扩展、可</p>
  27. <p>进化的稳态安全能力。</p>
  28. </section>
  29. <section class="mb-matrix-card">
  30. <div v-for="(item, index) in accordionItems" :key="item.title" class="mb-card-item"
  31. :class="{ 'mb-is-open': openIndices.includes(index) }" @click="togglecard(index)">
  32. <div class="mb-card-header">
  33. <div class="mb-card-left">
  34. <img :src="item.icon" alt="icon">
  35. <span class="mb-card-title">{{ item.title }}</span>
  36. </div>
  37. <Icon name="line-md:chevron-right" class="mb-card-icon" />
  38. </div>
  39. <Transition name="mb-card-expand">
  40. <div v-show="openIndices.includes(index)" class="mb-card-body">
  41. <p class="mb-card-text">{{ item.text }}</p>
  42. <p :style="{ color: item.color }" class="mb-card-text">{{ item.desc }}</p>
  43. </div>
  44. </Transition>
  45. </div>
  46. </section>
  47. <section class="mb-about-text">
  48. <h2>万千攻击,1盾尽消</h2>
  49. <p>"T级清洗能力×智能流量调度×全链路产品联防—这就是1盾的底气"</p>
  50. </section>
  51. <DCard />
  52. </section>
  53. </template>
  54. <script setup>
  55. import Flowchart from '~/components/mobile/about/Flowchart.vue';
  56. import DCard from '~/components/mobile/about/DCard.vue';
  57. import cardIcon1 from '@/assets/svg/about/card-icon1.svg'
  58. import cardIcon2 from '@/assets/svg/about/card-icon2.svg'
  59. import cardIcon3 from '@/assets/svg/about/card-icon3.svg'
  60. import cardIcon4 from '@/assets/svg/about/card-icon4.svg'
  61. import cardIcon5 from '@/assets/svg/about/card-icon5.svg'
  62. const accordionItems = [
  63. {
  64. title: 'CDN加速',
  65. icon: cardIcon1,
  66. text: '球加速节点分发,降低延迟提升用户访问体验。',
  67. desc: '全球200+节点',
  68. color: '#A39DFF'
  69. },
  70. {
  71. title: '游戏盾',
  72. icon: cardIcon2,
  73. text: '专为游戏业务定制,智能调度抗DDoS,隐藏源站。',
  74. desc: 'T级防御能力',
  75. color: '#4696FF'
  76. },
  77. {
  78. title: '高防服务器',
  79. icon: cardIcon3,
  80. text: '物理级高防机房,大带宽大防御,稳定业务运行。',
  81. desc: '单节点500G+',
  82. color: '#B546FF'
  83. },
  84. {
  85. title: '高防IP',
  86. icon: cardIcon4,
  87. text: '弹性IP防护,精准流量清洗,零影响转发正常业务。',
  88. desc: '弹性扩展1T+',
  89. color: '#616EFF'
  90. },
  91. {
  92. title: 'SDK防护',
  93. icon: cardIcon5,
  94. text: '端侧安全加固,链路加密通信,防篡改防抓包。',
  95. desc: '端到端加密',
  96. color: '#46ECFF'
  97. }
  98. ]
  99. const openIndices = ref([0])
  100. const togglecard = (index) => {
  101. const i = openIndices.value.indexOf(index)
  102. if (i > -1) {
  103. openIndices.value.splice(i, 1)
  104. } else {
  105. openIndices.value.push(index)
  106. }
  107. }
  108. </script>
  109. <style scoped lang="scss">
  110. .mb-about {
  111. width: 100%;
  112. position: relative;
  113. .mb-about-bg {
  114. position: absolute;
  115. top: 0;
  116. left: 50%;
  117. transform: translateX(-50%);
  118. width: 375px;
  119. height: auto;
  120. z-index: 1;
  121. }
  122. .mb-about-content {
  123. padding-top: 40px;
  124. display: flex;
  125. flex-direction: column;
  126. align-items: center;
  127. justify-content: center;
  128. .mb-about-title {
  129. position: relative;
  130. z-index: 2;
  131. display: flex;
  132. flex-direction: column;
  133. align-items: center;
  134. justify-content: center;
  135. color: #FFF;
  136. gap: 6px;
  137. h1 {
  138. font-size: 12px;
  139. font-weight: 400;
  140. }
  141. p {
  142. font-size: 6px;
  143. font-weight: 400;
  144. }
  145. }
  146. .mb-about-box {
  147. position: relative;
  148. margin-top: 72px;
  149. border-radius: 10px;
  150. border: 1px solid rgba(13, 0, 34, 0.00);
  151. background: linear-gradient(179deg, rgba(3, 0, 20, 0.50) 1.22%, rgba(151, 87, 255, 0.10) 41.19%);
  152. box-shadow: 0 4px 4px 0 rgba(98, 0, 255, 0.30) inset;
  153. backdrop-filter: blur(7px);
  154. padding: 16px;
  155. .mb-about-box-text {
  156. color: #FFF;
  157. font-size: 12px;
  158. font-weight: 400;
  159. line-height: 20px;
  160. }
  161. }
  162. }
  163. .mb-about-subtitle {
  164. margin-top: 34px;
  165. display: flex;
  166. flex-direction: column;
  167. align-items: center;
  168. justify-content: center;
  169. color: #FFF;
  170. h2 {
  171. font-size: 16px;
  172. font-weight: 700;
  173. margin-bottom: 12px;
  174. }
  175. p {
  176. font-size: 12px;
  177. font-weight: 400;
  178. line-height: 20px;
  179. }
  180. }
  181. .mb-about-matrix {
  182. display: flex;
  183. flex-direction: column;
  184. align-items: center;
  185. justify-content: center;
  186. color: #FFF;
  187. margin-top: 56px;
  188. gap: 10px;
  189. h2 {
  190. font-size: 16px;
  191. font-weight: 700;
  192. }
  193. p {
  194. font-size: 10px;
  195. font-weight: 400;
  196. line-height: 14px;
  197. }
  198. }
  199. .mb-matrix-card {
  200. margin-top: 14px;
  201. display: flex;
  202. flex-direction: column;
  203. gap: 10px;
  204. .mb-card-item {
  205. padding: 20px;
  206. border-radius: 10px;
  207. border: 1px solid rgba(255, 255, 255, 0.10);
  208. background: #1C192B;
  209. backdrop-filter: blur(9px);
  210. transition: border-color 0.2s ease, background 0.2s ease;
  211. }
  212. .mb-card-header {
  213. display: flex;
  214. align-items: center;
  215. justify-content: space-between;
  216. }
  217. .mb-card-left {
  218. display: flex;
  219. align-items: start;
  220. img {
  221. width: 30px;
  222. height: 30px;
  223. }
  224. }
  225. .mb-card-title {
  226. color: #FFF;
  227. font-size: 14px;
  228. font-weight: 500;
  229. }
  230. .mb-card-icon {
  231. color: #fff;
  232. font-size: 20px;
  233. transition: transform 0.2s ease;
  234. }
  235. .mb-card-item.mb-is-open .mb-card-icon {
  236. transform: rotate(90deg);
  237. }
  238. .mb-card-body {
  239. margin-top: 10px;
  240. }
  241. .mb-card-text {
  242. color: rgba(255, 255, 255, 0.50);
  243. font-size: 12px;
  244. font-weight: 400;
  245. line-height: 20px;
  246. }
  247. .mb-card-expand-enter-active,
  248. .mb-card-expand-leave-active {
  249. transition: all 0.2s ease;
  250. overflow: hidden;
  251. }
  252. .mb-accordion-expand-enter-from,
  253. .mb-accordion-expand-leave-to {
  254. opacity: 0;
  255. max-height: 0;
  256. }
  257. .mb-accordion-expand-enter-to,
  258. .mb-accordion-expand-leave-from {
  259. opacity: 1;
  260. max-height: 200px;
  261. }
  262. }
  263. .mb-about-text {
  264. margin-top: 40px;
  265. display: flex;
  266. flex-direction: column;
  267. align-items: center;
  268. justify-content: center;
  269. gap: 10px;
  270. color: #fff;
  271. h2 {
  272. font-size: 16px;
  273. font-weight: 700;
  274. }
  275. p {
  276. font-size: 10px;
  277. font-weight: 400;
  278. }
  279. }
  280. }
  281. </style>