| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202 |
- <template>
- <section class="mb-web">
- <section class="video-section">
- <div class="cdn-dg">
- <NuxtImg class="cdn-bg" src="/images/products/cdn-bg.png" alt="cdn" />
- </div>
- <div class="video-title">
- <p class="video-text">Intelligent routing / dynamic optimization / real-time processing</p>
- <h1><span>智能</span>路由/<span>动态</span>优化/<span>实时</span>处理</h1>
- <div class="video-subtitle">不止于快,更稳更安全,为您的业务保驾护航</div>
- <div class="video-btn">
- <span>联系我们</span>
- <Icon name="line-md:chevron-right" />
- </div>
- </div>
- <section class="perspective-grid-section">
- <div class="perspective-container">
- <div class="grid-floor">
- <div class="grid-lines"></div>
- </div>
- </div>
- </section>
- </section>
- </section>
- </template>
- <script setup>
- useHead(() => ({
- title: 'Web安全加速 - 移动端',
- meta: [
- { name: 'viewport', content: 'width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no' }
- ]
- }))
- </script>
- <style scoped lang="scss">
- .mb-web {
- .video-section {
- position: relative;
- width: 100%;
- height: 200px;
- margin: 0 auto;
- overflow: hidden;
- .cdn-dg {
- position: absolute;
- top: 0;
- right: -26px;
- background: url('/images/products/dengg.png') no-repeat center center;
- background-size: contain;
- width: 212px;
- height: 200px;
- display: flex;
- align-items: center;
- justify-content: center;
- z-index: 1;
- .cdn-bg {
- position: relative;
- z-index: 1;
- animation: float 3s ease-in-out infinite;
- }
- :deep(img) {
- width: 140px;
- height: auto;
- }
- }
- @keyframes float {
- 0%,
- 100% {
- transform: translateY(0);
- }
- 50% {
- transform: translateY(-10px);
- }
- }
- .video-title {
- position: relative;
- padding-top: 30px;
- width: 100%;
- z-index: 3;
- color: #fff;
- font-style: normal;
- display: flex;
- flex-direction: column;
- h1 {
- color: #D8D3FF;
- font-size: 15px;
- font-weight: 500;
- line-height: 16px;
- span {
- color: #997DFF;
- }
- }
- .video-subtitle {
- margin-top: 10px;
- width: 140px;
- color: #E2D9FF;
- font-size: 10px;
- font-weight: 400;
- line-height: 14px;
- }
- .video-text {
- color: #E2D9FF;
- font-size: 8px;
- font-weight: 300;
- line-height: 8px;
- }
- .video-btn {
- cursor: pointer;
- margin-top: 20px;
- display: flex;
- box-sizing: border-box;
- width: 85px;
- height: 24px;
- justify-content: center;
- align-items: center;
- gap: 10px;
- border-radius: 4px;
- color: #FFF;
- font-size: 10px;
- font-weight: 400;
- line-height: 14px;
- background: linear-gradient(91deg, #A39DFF 1.24%, #7D46FF 122.93%);
- }
- }
- }
- .perspective-grid-section {
- width: 100%;
- height: 100px;
- overflow: hidden;
- position: absolute;
- bottom: 0;
- background: transparent;
- perspective: 400px;
- z-index: 0;
- .perspective-container {
- width: 100%;
- height: 100%;
- display: flex;
- justify-content: center;
- align-items: flex-start;
- transform-style: preserve-3d;
- }
- .grid-floor {
- width: 200%;
- height: 400px;
- position: relative;
- transform: rotateX(60deg);
- transform-origin: center top;
- overflow: hidden;
- }
- .grid-lines {
- width: 100%;
- height: 200%;
- background-image:
- linear-gradient(rgba(22, 24, 75, 0.5) 1px, transparent 1px),
- linear-gradient(90deg, rgba(22, 24, 75, 0.5) 1px, transparent 1px);
- background-size: 50px 50px;
- animation: gridMove 4s linear infinite;
- }
- &::after {
- content: '';
- position: absolute;
- bottom: 0;
- left: 0;
- width: 100%;
- height: 100px;
- background: linear-gradient(to bottom, transparent 0%, #030014 100%);
- pointer-events: none;
- z-index: 1;
- }
- }
- @keyframes gridMove {
- 0% {
- transform: translateY(-50%);
- }
- 100% {
- transform: translateY(0);
- }
- }
- }
- </style>
|