web.vue 9.7 KB

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