web.vue 10.0 KB

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