|
@@ -1,170 +1,168 @@
|
|
|
<template>
|
|
<template>
|
|
|
- <div class="container">
|
|
|
|
|
- <section class="main-content">
|
|
|
|
|
- <!-- 标题区域和视频背景 -->
|
|
|
|
|
- <section class="hero-section">
|
|
|
|
|
- <!-- 视频背景 -->
|
|
|
|
|
- <video ref="videoRef" class="hero-video-bg" src="~/assets/video/home.webm" autoplay loop muted playsinline
|
|
|
|
|
- @loadedmetadata="onVideoLoaded"></video>
|
|
|
|
|
- <!-- Canvas动画组件 -->
|
|
|
|
|
- <ParticlesCanvas class="canvas-overlay" />
|
|
|
|
|
- <!-- 内容 -->
|
|
|
|
|
- <div class="hero-content">
|
|
|
|
|
- <h2 class="hero-title">您专注业务,我们守护安全 再强的攻击,也有攻不破的防线
|
|
|
|
|
- </h2>
|
|
|
|
|
- <div class="hero-subtitle">
|
|
|
|
|
- <p>高防服务器 | 高防DNS | 游戏盾SDK | 高防CDN 全方位守护您的业务</p>
|
|
|
|
|
- </div>
|
|
|
|
|
|
|
+ <section>
|
|
|
|
|
+ <!-- 标题区域和视频背景 -->
|
|
|
|
|
+ <section class="hero-section">
|
|
|
|
|
+ <!-- 视频背景 -->
|
|
|
|
|
+ <video ref="videoRef" class="hero-video-bg" preload="auto" :src="homeVideo" autoplay loop muted playsinline
|
|
|
|
|
+ @loadedmetadata="onVideoLoaded"></video>
|
|
|
|
|
+ <!-- Canvas动画组件 -->
|
|
|
|
|
+ <ParticlesCanvas class="canvas-overlay" />
|
|
|
|
|
+ <!-- 内容 -->
|
|
|
|
|
+ <div class="hero-content">
|
|
|
|
|
+ <h2 class="hero-title">您专注业务,我们守护安全 再强的攻击,也有攻不破的防线
|
|
|
|
|
+ </h2>
|
|
|
|
|
+ <div class="hero-subtitle">
|
|
|
|
|
+ <p>高防服务器 | 高防DNS | 游戏盾SDK | 高防CDN 全方位守护您的业务</p>
|
|
|
</div>
|
|
</div>
|
|
|
- </section>
|
|
|
|
|
|
|
+ </div>
|
|
|
|
|
+ </section>
|
|
|
|
|
|
|
|
- <ProductTabs />
|
|
|
|
|
|
|
+ <ProductTabs />
|
|
|
|
|
|
|
|
- <!-- 安全洞见标题 -->
|
|
|
|
|
- <section class="insight-header">
|
|
|
|
|
- <h2 class="insight-title">安全洞见 全网感知</h2>
|
|
|
|
|
- <p class="insight-subtitle">实时攻防态势数据</p>
|
|
|
|
|
- </section>
|
|
|
|
|
|
|
+ <!-- 安全洞见标题 -->
|
|
|
|
|
+ <section class="insight-header">
|
|
|
|
|
+ <h2 class="insight-title">安全洞见 全网感知</h2>
|
|
|
|
|
+ <p class="insight-subtitle">实时攻防态势数据</p>
|
|
|
|
|
+ </section>
|
|
|
|
|
|
|
|
- <!-- 数据展示区域 -->
|
|
|
|
|
- <StatsSection />
|
|
|
|
|
|
|
+ <!-- 数据展示区域 -->
|
|
|
|
|
+ <StatsSection />
|
|
|
|
|
+
|
|
|
|
|
+ <!-- 安全运营与方案模块 -->
|
|
|
|
|
+ <PlansSection style="margin-top: 120px;" />
|
|
|
|
|
+
|
|
|
|
|
+ <!-- 安全漏洞 / 全景技术架构上方模块 -->
|
|
|
|
|
+ <section class="security-arch-section">
|
|
|
|
|
+ <NuxtImg alt="安全架构" src="/images/home/home-bg2.png" class="security-arch-img" />
|
|
|
|
|
+ <div class="security-arch-animate">
|
|
|
|
|
+ <SecurityParticles />
|
|
|
|
|
+ </div>
|
|
|
|
|
+ <div class="security-arch-desc">
|
|
|
|
|
+ <h3 class="security-arch-title">
|
|
|
|
|
+ 全景技术架构,让技术成为增长引擎
|
|
|
|
|
+ </h3>
|
|
|
|
|
+ <div class="security-arch-subtitle">
|
|
|
|
|
+ <p>
|
|
|
|
|
+ 从基础设施、数据引擎、服务中台到业务应用,层层协同,将算力、数据与能力统一管理,
|
|
|
|
|
+ </p>
|
|
|
|
|
+ <p>
|
|
|
|
|
+ 保证系统在高并发、高复杂度场景下依然稳定运行。
|
|
|
|
|
+ </p>
|
|
|
|
|
+ </div>
|
|
|
|
|
+ </div>
|
|
|
|
|
+ </section>
|
|
|
|
|
+ <!-- TODO 正常访客等... -->
|
|
|
|
|
|
|
|
- <!-- 安全运营与方案模块 -->
|
|
|
|
|
- <PlansSection style="margin-top: 120px;" />
|
|
|
|
|
|
|
+ <section class="security-flowchart">
|
|
|
|
|
+ <NuxtPicture src="/images/home/flowchart.png" alt="流程" />
|
|
|
|
|
+ </section>
|
|
|
|
|
|
|
|
- <!-- 安全漏洞 / 全景技术架构上方模块 -->
|
|
|
|
|
- <section class="security-arch-section">
|
|
|
|
|
- <NuxtImg alt="安全架构" src="/images/home/home-bg2.png" class="security-arch-img" />
|
|
|
|
|
- <div class="security-arch-animate">
|
|
|
|
|
- <SecurityParticles />
|
|
|
|
|
|
|
+ <!-- 助力各行业客户成功 -->
|
|
|
|
|
+ <section class="cain-section">
|
|
|
|
|
+ <NuxtImg alt="助力各行业客户成功" src="/images/home/home-bg3.png" class="cain-section-img" />
|
|
|
|
|
+ <div class="cain-section-animate">
|
|
|
|
|
+ <SecurityParticles />
|
|
|
|
|
+ </div>
|
|
|
|
|
+ <div class="cain-section-desc">
|
|
|
|
|
+ <h3 class="cain-section-title">
|
|
|
|
|
+ 助力各行业客户成功
|
|
|
|
|
+ </h3>
|
|
|
|
|
+ </div>
|
|
|
|
|
+ </section>
|
|
|
|
|
+ <section class="industry">
|
|
|
|
|
+ <div class="industry-content">
|
|
|
|
|
+ <div class="industry-item">
|
|
|
|
|
+ <div class="industry-text">金融</div>
|
|
|
|
|
+ <NuxtImg src="/images/home/icon.png" alt="金融" class="industry-icon" />
|
|
|
</div>
|
|
</div>
|
|
|
- <div class="security-arch-desc">
|
|
|
|
|
- <h3 class="security-arch-title">
|
|
|
|
|
- 全景技术架构,让技术成为增长引擎
|
|
|
|
|
- </h3>
|
|
|
|
|
- <div class="security-arch-subtitle">
|
|
|
|
|
- <p>
|
|
|
|
|
- 从基础设施、数据引擎、服务中台到业务应用,层层协同,将算力、数据与能力统一管理,
|
|
|
|
|
- </p>
|
|
|
|
|
- <p>
|
|
|
|
|
- 保证系统在高并发、高复杂度场景下依然稳定运行。
|
|
|
|
|
- </p>
|
|
|
|
|
- </div>
|
|
|
|
|
|
|
+ <div class="industry-item">
|
|
|
|
|
+ <div class="industry-text">互联网</div>
|
|
|
|
|
+ <NuxtImg src="/images/home/icon2.png" alt="互联网" class="industry-icon" />
|
|
|
</div>
|
|
</div>
|
|
|
- </section>
|
|
|
|
|
- <!-- TODO 正常访客等... -->
|
|
|
|
|
-
|
|
|
|
|
- <section class="security-flowchart">
|
|
|
|
|
- <NuxtPicture src="/images/home/flowchart.png" alt="流程" />
|
|
|
|
|
- </section>
|
|
|
|
|
-
|
|
|
|
|
- <!-- 助力各行业客户成功 -->
|
|
|
|
|
- <section class="cain-section">
|
|
|
|
|
- <NuxtImg alt="助力各行业客户成功" src="/images/home/home-bg3.png" class="cain-section-img" />
|
|
|
|
|
- <div class="cain-section-animate">
|
|
|
|
|
- <SecurityParticles />
|
|
|
|
|
|
|
+ <div class="industry-item">
|
|
|
|
|
+ <div class="industry-text">医疗健康</div>
|
|
|
|
|
+ <NuxtImg src="/images/home/icon3.png" alt="医疗健康" class="industry-icon" />
|
|
|
</div>
|
|
</div>
|
|
|
- <div class="cain-section-desc">
|
|
|
|
|
- <h3 class="cain-section-title">
|
|
|
|
|
- 助力各行业客户成功
|
|
|
|
|
- </h3>
|
|
|
|
|
|
|
+ <div class="industry-item">
|
|
|
|
|
+ <div class="industry-text">制造</div>
|
|
|
|
|
+ <NuxtImg src="/images/home/icon4.png" alt="制造" class="industry-icon" />
|
|
|
</div>
|
|
</div>
|
|
|
- </section>
|
|
|
|
|
- <section class="industry">
|
|
|
|
|
- <div class="industry-content">
|
|
|
|
|
- <div class="industry-item">
|
|
|
|
|
- <div class="industry-text">金融</div>
|
|
|
|
|
- <NuxtImg src="/images/home/icon.png" alt="金融" class="industry-icon" />
|
|
|
|
|
- </div>
|
|
|
|
|
- <div class="industry-item">
|
|
|
|
|
- <div class="industry-text">互联网</div>
|
|
|
|
|
- <NuxtImg src="/images/home/icon2.png" alt="互联网" class="industry-icon" />
|
|
|
|
|
- </div>
|
|
|
|
|
- <div class="industry-item">
|
|
|
|
|
- <div class="industry-text">医疗健康</div>
|
|
|
|
|
- <NuxtImg src="/images/home/icon3.png" alt="医疗健康" class="industry-icon" />
|
|
|
|
|
- </div>
|
|
|
|
|
- <div class="industry-item">
|
|
|
|
|
- <div class="industry-text">制造</div>
|
|
|
|
|
- <NuxtImg src="/images/home/icon4.png" alt="制造" class="industry-icon" />
|
|
|
|
|
- </div>
|
|
|
|
|
- <div class="industry-item">
|
|
|
|
|
- <div class="industry-text">教育</div>
|
|
|
|
|
- <NuxtImg src="/images/home/icon5.png" alt="教育" class="industry-icon" />
|
|
|
|
|
- </div>
|
|
|
|
|
|
|
+ <div class="industry-item">
|
|
|
|
|
+ <div class="industry-text">教育</div>
|
|
|
|
|
+ <NuxtImg src="/images/home/icon5.png" alt="教育" class="industry-icon" />
|
|
|
</div>
|
|
</div>
|
|
|
- <div class="industry-other">
|
|
|
|
|
- <div class="other-item">
|
|
|
|
|
- <NuxtPicture src="/images/home/icon6.png" alt="卓越教育" />
|
|
|
|
|
- </div>
|
|
|
|
|
- <div class="other-item">
|
|
|
|
|
- <NuxtPicture src="/images/home/icon7.png" alt="华福证券" />
|
|
|
|
|
- </div>
|
|
|
|
|
- <div class="other-item">
|
|
|
|
|
- <NuxtPicture src="/images/home/icon8.png" alt="汉王" />
|
|
|
|
|
- </div>
|
|
|
|
|
- <div class="other-item">
|
|
|
|
|
- <NuxtPicture src="/images/home/icon9.png" alt="隧道股份" />
|
|
|
|
|
- </div>
|
|
|
|
|
- <div class="other-item">
|
|
|
|
|
- <NuxtPicture src="/images/home/icon10.png" alt="岳阳医院" />
|
|
|
|
|
- </div>
|
|
|
|
|
- <div class="other-item">
|
|
|
|
|
- <NuxtPicture src="/images/home/icon11.png" alt="杉德" />
|
|
|
|
|
- </div>
|
|
|
|
|
- <div class="other-item">
|
|
|
|
|
- <NuxtPicture src="/images/home/icon12.png" alt="易班" />
|
|
|
|
|
- </div>
|
|
|
|
|
- <div class="other-item">
|
|
|
|
|
- <NuxtPicture src="/images/home/icon13.png" alt="银联商务" />
|
|
|
|
|
- </div>
|
|
|
|
|
- <div class="other-item">
|
|
|
|
|
- <NuxtPicture src="/images/home/icon14.png" alt="长海医院" />
|
|
|
|
|
- </div>
|
|
|
|
|
- <div class="other-item">
|
|
|
|
|
- <NuxtPicture src="/images/home/icon15.png" alt="斗象科技" />
|
|
|
|
|
- </div>
|
|
|
|
|
- <div class="other-item">
|
|
|
|
|
- <NuxtPicture src="/images/home/icon16.png" alt="瑞金" />
|
|
|
|
|
- </div>
|
|
|
|
|
- <div class="other-item">
|
|
|
|
|
- <NuxtPicture src="/images/home/icon17.png" alt="3L" />
|
|
|
|
|
- </div>
|
|
|
|
|
- <div class="other-item">
|
|
|
|
|
- <NuxtPicture src="/images/home/icon18.png" alt="宝付" />
|
|
|
|
|
- </div>
|
|
|
|
|
- <div class="other-item">
|
|
|
|
|
- <NuxtPicture src="/images/home/icon19.png" alt="新华医院" />
|
|
|
|
|
- </div>
|
|
|
|
|
- <div class="other-item">
|
|
|
|
|
- <NuxtPicture src="/images/home/icon20.png" alt="中船重工物贸集团" />
|
|
|
|
|
- </div>
|
|
|
|
|
|
|
+ </div>
|
|
|
|
|
+ <div class="industry-other">
|
|
|
|
|
+ <div class="other-item">
|
|
|
|
|
+ <NuxtPicture src="/images/home/icon6.png" alt="卓越教育" />
|
|
|
</div>
|
|
</div>
|
|
|
- <div class="industry-box">
|
|
|
|
|
- <div class="industry-radar">
|
|
|
|
|
- <NuxtImg src="/images/home/home-bg4.png" alt="radar" class="radar-bg-img" />
|
|
|
|
|
- <div class="radar-dots">
|
|
|
|
|
- <span class="radar-dot radar-dot-1" />
|
|
|
|
|
- <span class="radar-dot radar-dot-2" />
|
|
|
|
|
- <span class="radar-dot radar-dot-3" />
|
|
|
|
|
- <span class="radar-dot radar-dot-4" />
|
|
|
|
|
- </div>
|
|
|
|
|
- </div>
|
|
|
|
|
|
|
+ <div class="other-item">
|
|
|
|
|
+ <NuxtPicture src="/images/home/icon7.png" alt="华福证券" />
|
|
|
|
|
+ </div>
|
|
|
|
|
+ <div class="other-item">
|
|
|
|
|
+ <NuxtPicture src="/images/home/icon8.png" alt="汉王" />
|
|
|
|
|
+ </div>
|
|
|
|
|
+ <div class="other-item">
|
|
|
|
|
+ <NuxtPicture src="/images/home/icon9.png" alt="隧道股份" />
|
|
|
|
|
+ </div>
|
|
|
|
|
+ <div class="other-item">
|
|
|
|
|
+ <NuxtPicture src="/images/home/icon10.png" alt="岳阳医院" />
|
|
|
|
|
+ </div>
|
|
|
|
|
+ <div class="other-item">
|
|
|
|
|
+ <NuxtPicture src="/images/home/icon11.png" alt="杉德" />
|
|
|
|
|
+ </div>
|
|
|
|
|
+ <div class="other-item">
|
|
|
|
|
+ <NuxtPicture src="/images/home/icon12.png" alt="易班" />
|
|
|
|
|
+ </div>
|
|
|
|
|
+ <div class="other-item">
|
|
|
|
|
+ <NuxtPicture src="/images/home/icon13.png" alt="银联商务" />
|
|
|
|
|
+ </div>
|
|
|
|
|
+ <div class="other-item">
|
|
|
|
|
+ <NuxtPicture src="/images/home/icon14.png" alt="长海医院" />
|
|
|
|
|
+ </div>
|
|
|
|
|
+ <div class="other-item">
|
|
|
|
|
+ <NuxtPicture src="/images/home/icon15.png" alt="斗象科技" />
|
|
|
|
|
+ </div>
|
|
|
|
|
+ <div class="other-item">
|
|
|
|
|
+ <NuxtPicture src="/images/home/icon16.png" alt="瑞金" />
|
|
|
|
|
+ </div>
|
|
|
|
|
+ <div class="other-item">
|
|
|
|
|
+ <NuxtPicture src="/images/home/icon17.png" alt="3L" />
|
|
|
|
|
+ </div>
|
|
|
|
|
+ <div class="other-item">
|
|
|
|
|
+ <NuxtPicture src="/images/home/icon18.png" alt="宝付" />
|
|
|
|
|
+ </div>
|
|
|
|
|
+ <div class="other-item">
|
|
|
|
|
+ <NuxtPicture src="/images/home/icon19.png" alt="新华医院" />
|
|
|
</div>
|
|
</div>
|
|
|
- <div class="industry-title">
|
|
|
|
|
- <h3><span>立即加入</span> <span>安全之旅</span></h3>
|
|
|
|
|
- <div class="industry-subtitle">完成注册,即可免费体验 DDoS防护、CC防护、DNS解析等多款安全产品</div>
|
|
|
|
|
|
|
+ <div class="other-item">
|
|
|
|
|
+ <NuxtPicture src="/images/home/icon20.png" alt="中船重工物贸集团" />
|
|
|
</div>
|
|
</div>
|
|
|
- </section>
|
|
|
|
|
- <section class="hero-section">
|
|
|
|
|
- <!-- 视频背景 -->
|
|
|
|
|
- <video ref="videoRef" class="hero-video-bg" src="~/assets/video/home.webm" autoplay loop muted playsinline
|
|
|
|
|
- @loadedmetadata="onVideoLoaded"></video>
|
|
|
|
|
- <!-- Canvas动画组件 -->
|
|
|
|
|
- <ParticlesCanvas class="canvas-overlay" />
|
|
|
|
|
- </section>
|
|
|
|
|
|
|
+ </div>
|
|
|
|
|
+ <div class="industry-box">
|
|
|
|
|
+ <div class="industry-radar">
|
|
|
|
|
+ <NuxtImg src="/images/home/home-bg4.png" alt="radar" class="radar-bg-img" />
|
|
|
|
|
+ <div class="radar-dots">
|
|
|
|
|
+ <span class="radar-dot radar-dot-1" />
|
|
|
|
|
+ <span class="radar-dot radar-dot-2" />
|
|
|
|
|
+ <span class="radar-dot radar-dot-3" />
|
|
|
|
|
+ <span class="radar-dot radar-dot-4" />
|
|
|
|
|
+ </div>
|
|
|
|
|
+ </div>
|
|
|
|
|
+ </div>
|
|
|
|
|
+ <div class="industry-title">
|
|
|
|
|
+ <h3><span>立即加入</span> <span>安全之旅</span></h3>
|
|
|
|
|
+ <div class="industry-subtitle">完成注册,即可免费体验 DDoS防护、CC防护、DNS解析等多款安全产品</div>
|
|
|
|
|
+ </div>
|
|
|
</section>
|
|
</section>
|
|
|
- </div>
|
|
|
|
|
|
|
+ <section class="hero-section" style="margin-top: 0;">
|
|
|
|
|
+ <!-- 视频背景 -->
|
|
|
|
|
+ <video ref="videoRef" style="clip-path: inset(0 0 50% 0);" class="hero-video-bg" src="~/assets/video/home.webm" autoplay loop muted playsinline
|
|
|
|
|
+ @loadedmetadata="onVideoLoaded"></video>
|
|
|
|
|
+ <!-- Canvas动画组件 -->
|
|
|
|
|
+ <ParticlesCanvas class="canvas-overlay" />
|
|
|
|
|
+ </section>
|
|
|
|
|
+ </section>
|
|
|
</template>
|
|
</template>
|
|
|
|
|
|
|
|
<script setup>
|
|
<script setup>
|
|
@@ -178,7 +176,7 @@ import ProductTabs from '~/components/home/ProductTabs.vue'
|
|
|
import PlansSection from '~/components/PlansSection.vue'
|
|
import PlansSection from '~/components/PlansSection.vue'
|
|
|
import ParticlesCanvas from '~/components/ParticlesCanvas.vue'
|
|
import ParticlesCanvas from '~/components/ParticlesCanvas.vue'
|
|
|
import SecurityParticles from '~/components/SecurityParticles.vue'
|
|
import SecurityParticles from '~/components/SecurityParticles.vue'
|
|
|
-
|
|
|
|
|
|
|
+import homeVideo from '~/assets/video/home.webm'
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@@ -194,12 +192,13 @@ const onVideoLoaded = () => {
|
|
|
useHead(() => ({
|
|
useHead(() => ({
|
|
|
title: 'DDAC',
|
|
title: 'DDAC',
|
|
|
meta: [
|
|
meta: [
|
|
|
- { name: 'viewport', content: 'width=device-width, initial-scale=1' },
|
|
|
|
|
|
|
+ { name: 'viewport', content: 'width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no' },
|
|
|
{ name: 'description', content: 'DDAC - 游戏盾防御' },
|
|
{ name: 'description', content: 'DDAC - 游戏盾防御' },
|
|
|
{ name: 'keywords', content: '高防服务器 | 高防DNS | 游戏盾SDK | 高防CDN' }
|
|
{ name: 'keywords', content: '高防服务器 | 高防DNS | 游戏盾SDK | 高防CDN' }
|
|
|
],
|
|
],
|
|
|
link: [
|
|
link: [
|
|
|
- { rel: 'icon', href: '/favicon.ico' }
|
|
|
|
|
|
|
+ { rel: 'icon', href: '/favicon.ico' },
|
|
|
|
|
+ // { rel: 'preload', as: 'video', href: homeVideo }
|
|
|
],
|
|
],
|
|
|
htmlAttrs: {
|
|
htmlAttrs: {
|
|
|
lang: 'en'
|
|
lang: 'en'
|
|
@@ -208,13 +207,6 @@ useHead(() => ({
|
|
|
</script>
|
|
</script>
|
|
|
|
|
|
|
|
<style scoped lang="scss">
|
|
<style scoped lang="scss">
|
|
|
-.container {
|
|
|
|
|
- width: 100%;
|
|
|
|
|
- height: 100%;
|
|
|
|
|
- overflow: hidden;
|
|
|
|
|
- box-sizing: border-box;
|
|
|
|
|
-}
|
|
|
|
|
-
|
|
|
|
|
.main-content {
|
|
.main-content {
|
|
|
width: 100%;
|
|
width: 100%;
|
|
|
max-width: 1920px;
|
|
max-width: 1920px;
|
|
@@ -230,17 +222,17 @@ useHead(() => ({
|
|
|
display: flex;
|
|
display: flex;
|
|
|
align-items: center;
|
|
align-items: center;
|
|
|
justify-content: center;
|
|
justify-content: center;
|
|
|
- padding: 81px 0 0;
|
|
|
|
|
|
|
+ margin-top: 182px;
|
|
|
box-sizing: border-box;
|
|
box-sizing: border-box;
|
|
|
- overflow: hidden;
|
|
|
|
|
|
|
|
|
|
.hero-video-bg {
|
|
.hero-video-bg {
|
|
|
position: absolute;
|
|
position: absolute;
|
|
|
- top: -3%;
|
|
|
|
|
- left: 0;
|
|
|
|
|
- width: 100%;
|
|
|
|
|
|
|
+ top: 32%;
|
|
|
|
|
+ left: 50%;
|
|
|
|
|
+ width: 1200px;
|
|
|
|
|
+ transform: translate(-50%);
|
|
|
object-fit: cover;
|
|
object-fit: cover;
|
|
|
- clip-path: inset(0 0 50% 0);
|
|
|
|
|
|
|
+ clip-path: inset(0 0 40% 0);
|
|
|
z-index: 0;
|
|
z-index: 0;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
@@ -503,7 +495,7 @@ $Diameter :890px;
|
|
|
align-items: center;
|
|
align-items: center;
|
|
|
width: 240px;
|
|
width: 240px;
|
|
|
height: 100px;
|
|
height: 100px;
|
|
|
- border-radius: 20px;
|
|
|
|
|
|
|
+ border-radius: 10px;
|
|
|
border: 1px solid #B2A1FF;
|
|
border: 1px solid #B2A1FF;
|
|
|
background: #1C192B;
|
|
background: #1C192B;
|
|
|
}
|
|
}
|