web.vue 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488
  1. <template>
  2. <div>
  3. <section class="video-section">
  4. <div class="cdn-dg">
  5. <NuxtImg width="500" class="cdn-bg" src="/images/products/cdn-bg.png" alt="cdn" />
  6. </div>
  7. <!-- <NuxtImg class="cdn-dg" src="/images/products/dengg.png" alt="dengg" /> -->
  8. <div class="video-title">
  9. <p class="video-text">Intelligent routing / dynamic optimization / real-time processing</p>
  10. <h1><span>智能</span>路由/<span>动态</span>优化/<span>实时</span>处理</h1>
  11. <div class="video-subtitle">不止于快,更稳更安全,为您的业务保驾护航</div>
  12. <div class="video-btn">
  13. <span>联系我们</span>
  14. <Icon name="line-md:chevron-right" />
  15. </div>
  16. </div>
  17. <section class="perspective-grid-section">
  18. <div class="perspective-container">
  19. <div class="grid-floor">
  20. <div class="grid-lines"></div>
  21. </div>
  22. </div>
  23. </section>
  24. </section>
  25. <!-- 透视网格效果 -->
  26. <section class="cdn-container">
  27. <div class="cdn-title">
  28. <h2>
  29. 678CDN功能
  30. </h2>
  31. <p>让科技为您的业务发光发亮,CDN功能助力您的网站顺畅、高效、安全地运作,
  32. 同时提供数据防范和预防技术,让您的网站免于遭受恶意攻击</p>
  33. </div>
  34. <div class="cdn-content">
  35. <div class="cdn-item">
  36. <div class="item-text">
  37. <h3>CDN内容分发</h3>
  38. <p>
  39. 加速您的网站,最速达优化性能。CDN内容分发网络遍布五大洲,我们的CDN将使您的网站前所未有的更流畅,提升您的用户体验,而我们的数据中心则提供商业的资讯管理和保护,确保您的数据平安无误。
  40. </p>
  41. </div>
  42. <NuxtImg width="400" height="462" class="item-img" src="/images/products/cdn.png" alt="cdn分发" />
  43. </div>
  44. <div class="cdn-item">
  45. <NuxtImg width="316" height="436" class="item-img" src="/images/products/678yun.png" alt="678云盾" />
  46. <div class="item-text">
  47. <h3>网站保护</h3>
  48. <p>
  49. 使用678云盾高防CDN网站保护,网站攻击将无处遁形!我们的专业服务团队利用最佳技术和技巧为您提供安全性和可靠性保护,确保您的业务安全运营,稳步前进。
  50. </p>
  51. </div>
  52. </div>
  53. </div>
  54. </section>
  55. <!-- <section class="cdn-bg">
  56. <NuxtImg src="/images/products/web-bg.png" width="100%" height="auto" alt="背景图" />
  57. </section> -->
  58. <section class="cdn-cards">
  59. <div class="card-item" v-for="(card, index) in cards" :key="index">
  60. <div class="item-title">
  61. <img :src="card.icon" alt="icon" />
  62. <h4>{{ card.title }}</h4>
  63. </div>
  64. <div class="item-text">{{ card.text }}</div>
  65. </div>
  66. </section>
  67. <SecurityServicesSuite />
  68. <CaseCard />
  69. <!-- <div class="bg-img">
  70. <NuxtImg src="/images/products/web-bg2.png" class="bg-img" alt="bg-img" />
  71. </div> -->
  72. </div>
  73. </template>
  74. <script setup>
  75. useHead(() => ({
  76. title: 'WEB安全加速',
  77. meta: [
  78. { name: 'viewport', content: 'width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no' },
  79. { name: 'description', content: '智能路由/动态优化/实时处理' },
  80. { name: 'keywords', content: 'CDN分发|网站保护' }
  81. ]
  82. }))
  83. import icon1 from '~/assets/svg/products/web/icon.svg'
  84. import icon2 from '~/assets/svg/products/web/icon2.svg'
  85. import icon3 from '~/assets/svg/products/web/icon3.svg'
  86. import icon4 from '~/assets/svg/products/web/icon4.svg'
  87. import icon5 from '~/assets/svg/products/web/icon5.svg'
  88. import icon6 from '~/assets/svg/products/web/icon6.svg'
  89. import SecurityServicesSuite from '~/components/products/SecurityServicesSuite.vue'
  90. import CaseCard from '~/components/products/CaseCard.vue'
  91. const cards = [
  92. {
  93. icon: icon1,
  94. title: 'Anycast',
  95. text: '通过单一IP地址在全球范围内提供所有内容,并确保低延迟的访问体验。',
  96. },
  97. {
  98. icon: icon2,
  99. title: 'HTTP/2',
  100. text: '除了支持HTTP/1.0和HTTP/1.1外,还支持更加高效的HTTP/2协议,进一步提升性能。',
  101. },
  102. {
  103. icon: icon3,
  104. title: 'HTTPS',
  105. text: '提供自定义SSL/TLS证书,确保使用您选定的域名以保障内容的安全性。',
  106. },
  107. {
  108. icon: icon4,
  109. title: '失效操作',
  110. text: '缓存内容删除仅需几分钟,快速响应并更新内容。',
  111. },
  112. {
  113. icon: icon5,
  114. title: '日志记录',
  115. text: '与Stackdriver Logging集成,为您提供每次缓存命中与未命中的详细日志信息。',
  116. },
  117. {
  118. icon: icon6,
  119. title: '安全',
  120. text: '多维度拦截(国家、URL、IP)、请求和带宽限制、CC保护。',
  121. }
  122. ]
  123. </script>
  124. <style lang="scss" scoped>
  125. .video-section {
  126. position: relative;
  127. width: 100%;
  128. height: 700px;
  129. margin: 0 auto;
  130. overflow: hidden;
  131. &::before {
  132. content: '';
  133. position: absolute;
  134. left: 10%;
  135. top: 10%;
  136. width: 384px;
  137. height: 384px;
  138. border-radius: 50%;
  139. background: rgba(121, 69, 255, 0.60);
  140. filter: blur(250px);
  141. }
  142. .cdn-dg {
  143. position: absolute;
  144. top: 0;
  145. right: 12%;
  146. background: url('/images/products/dengg.png') no-repeat center center;
  147. background-size: contain;
  148. width: 800px;
  149. height: 800px;
  150. display: flex;
  151. align-items: center;
  152. justify-content: center;
  153. z-index: 1;
  154. .cdn-bg {
  155. position: relative;
  156. z-index: 1;
  157. animation: float 3s ease-in-out infinite;
  158. }
  159. }
  160. @keyframes float {
  161. 0%,
  162. 100% {
  163. transform: translateY(0);
  164. }
  165. 50% {
  166. transform: translateY(-20px);
  167. }
  168. }
  169. // .video-bg {
  170. // width: 100%;
  171. // height: auto;
  172. // display: block;
  173. // z-index: 1;
  174. // position: relative;
  175. // object-fit: cover;
  176. // clip-path: inset(0 0 9% 0);
  177. // }
  178. .video-title {
  179. position: absolute;
  180. top: 20%;
  181. left: 48%;
  182. transform: translateX(-50%);
  183. width: 100%;
  184. max-width: 1200px;
  185. z-index: 3;
  186. color: #fff;
  187. font-style: normal;
  188. display: flex;
  189. flex-direction: column;
  190. h1 {
  191. color: #D8D3FF;
  192. font-size: 45px;
  193. font-style: normal;
  194. font-weight: 500;
  195. line-height: 80px;
  196. span {
  197. color: #997DFF;
  198. }
  199. }
  200. .video-subtitle {
  201. margin-top: 20px;
  202. color: #E2D9FF;
  203. font-size: 20px;
  204. font-style: normal;
  205. font-weight: 400;
  206. line-height: 30px;
  207. }
  208. .video-text {
  209. color: #E2D9FF;
  210. font-size: 20px;
  211. font-style: normal;
  212. font-weight: 300;
  213. line-height: 30px;
  214. }
  215. .video-btn {
  216. cursor: pointer;
  217. margin-top: 112px;
  218. display: flex;
  219. box-sizing: border-box;
  220. width: 255px;
  221. height: 60px;
  222. padding: 7px 21px 7px 45px;
  223. justify-content: center;
  224. align-items: center;
  225. gap: 10px;
  226. border-radius: 10px;
  227. background: linear-gradient(91deg, #A39DFF 1.24%, #7D46FF 122.93%);
  228. }
  229. }
  230. }
  231. .cdn-container {
  232. margin-top: 10px;
  233. width: 100%;
  234. display: flex;
  235. flex-direction: column;
  236. align-items: center;
  237. .cdn-title {
  238. display: flex;
  239. flex-direction: column;
  240. align-items: center;
  241. gap: 20px;
  242. h2 {
  243. font-size: 45px;
  244. font-style: normal;
  245. font-weight: 500;
  246. line-height: 45px;
  247. background: linear-gradient(90deg, #B8AFFF 20.05%, #C597FF 101.05%);
  248. background-clip: text;
  249. -webkit-background-clip: text;
  250. -webkit-text-fill-color: transparent;
  251. }
  252. p {
  253. width: 842px;
  254. color: #E2D9FF;
  255. text-align: center;
  256. font-size: 24px;
  257. font-style: normal;
  258. font-weight: 400;
  259. line-height: 36px;
  260. }
  261. }
  262. .cdn-content {
  263. display: flex;
  264. flex-direction: column;
  265. width: 100%;
  266. max-width: 1200px;
  267. position: relative;
  268. margin: 136px auto 0;
  269. gap: 20px;
  270. &::before,
  271. &::after {
  272. content: '';
  273. position: absolute;
  274. width: 520px;
  275. height: 520px;
  276. border-radius: 50%;
  277. background: rgba(137, 87, 255, 0.50);
  278. filter: blur(250px);
  279. }
  280. &::before {
  281. top: 12%;
  282. left: -40%;
  283. }
  284. &::after {
  285. right: -12%;
  286. bottom: 20%;
  287. }
  288. .cdn-item {
  289. display: flex;
  290. align-items: center;
  291. justify-content: space-between;
  292. gap: 100px;
  293. .item-img {
  294. flex-shrink: 0;
  295. }
  296. }
  297. .item-text {
  298. flex: 1;
  299. display: flex;
  300. flex-direction: column;
  301. gap: 36px;
  302. h3 {
  303. font-size: 40px;
  304. font-style: normal;
  305. font-weight: 500;
  306. line-height: 40px;
  307. background: linear-gradient(91deg, #B8AFFF 10.8%, #C597FF 108.3%);
  308. background-clip: text;
  309. -webkit-background-clip: text;
  310. -webkit-text-fill-color: transparent;
  311. }
  312. p {
  313. width: 100%;
  314. color: #E2D9FF;
  315. font-size: 18px;
  316. font-style: normal;
  317. font-weight: 400;
  318. line-height: 36px;
  319. }
  320. }
  321. }
  322. }
  323. .cdn-cards {
  324. padding: 30px 0 50px 0;
  325. width: 100%;
  326. max-width: 1200px;
  327. margin: 0 auto;
  328. display: grid;
  329. grid-template-columns: repeat(3, 1fr);
  330. gap: 35px 30px;
  331. .card-item {
  332. display: flex;
  333. flex-direction: column;
  334. gap: 16px;
  335. padding: 35px;
  336. border-radius: 10px;
  337. border: 1px solid rgba(255, 255, 255, 0.10);
  338. background: rgba(255, 255, 255, 0.10);
  339. &:hover {
  340. border: 1px solid #9162FF;
  341. background: linear-gradient(129deg, rgba(122, 55, 255, 0.30) 16.95%, rgba(175, 70, 255, 0.30) 98.61%);
  342. }
  343. .item-title {
  344. display: flex;
  345. gap: 20px;
  346. align-items: center;
  347. img {
  348. width: 50px;
  349. height: 50px;
  350. }
  351. h4 {
  352. color: #FFF;
  353. font-size: 34px;
  354. font-style: normal;
  355. font-weight: 700;
  356. line-height: 36px;
  357. }
  358. }
  359. .item-text {
  360. width: 100%;
  361. color: rgba(255, 255, 255, 0.60);
  362. font-size: 18px;
  363. font-style: normal;
  364. font-weight: 400;
  365. line-height: 30px;
  366. }
  367. }
  368. }
  369. // 透视网格效果
  370. .perspective-grid-section {
  371. width: 100%;
  372. height: 200px;
  373. overflow: hidden;
  374. position: absolute;
  375. bottom: 0;
  376. background: transparent;
  377. perspective: 600px;
  378. z-index: 0;
  379. .perspective-container {
  380. width: 100%;
  381. height: 100%;
  382. display: flex;
  383. justify-content: center;
  384. align-items: flex-start;
  385. transform-style: preserve-3d;
  386. }
  387. .grid-floor {
  388. width: 200%;
  389. height: 400px;
  390. position: relative;
  391. transform: rotateX(60deg);
  392. transform-origin: center top;
  393. overflow: hidden;
  394. }
  395. .grid-lines {
  396. width: 100%;
  397. height: 200%;
  398. background-image:
  399. linear-gradient(rgba(22, 24, 75, 0.5) 3px, transparent 3px),
  400. linear-gradient(90deg, rgba(22, 24, 75, 0.5) 3px, transparent 3px);
  401. background-size: 100px 100px;
  402. animation: gridMove 4s linear infinite;
  403. }
  404. // 底部渐变遮罩,平滑过渡到下一个模块
  405. &::after {
  406. content: '';
  407. position: absolute;
  408. bottom: 0;
  409. left: 0;
  410. width: 100%;
  411. height: 100px;
  412. background: linear-gradient(to bottom, transparent 0%, #030014 100%);
  413. pointer-events: none;
  414. z-index: 1;
  415. }
  416. }
  417. @keyframes gridMove {
  418. 0% {
  419. transform: translateY(-50%);
  420. }
  421. 100% {
  422. transform: translateY(0);
  423. }
  424. }
  425. .bg-img {
  426. width: 100%;
  427. height: 450px;
  428. position: relative;
  429. z-index: 1;
  430. :deep(img) {
  431. width: 100%;
  432. height: auto;
  433. position: absolute;
  434. top: 0;
  435. left: 0;
  436. }
  437. }
  438. </style>