* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: "Inter", system-ui, -apple-system, sans-serif;
background-color: #000000;
color: white;
overflow-x: hidden;
}
/* Three.js 画布 */
#webgl {
position: fixed;
inset: 0;
width: 100%;
height: 100%;
display: block;
z-index: 10;
pointer-events: none;
}
/* 首屏 */
.header-section {
position: relative;
width: 100%;
height: 120vh;
min-height: 800px;
background: radial-gradient(circle at center, #1a1a1a 0%, #000000 100%);
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
border-bottom: 1px solid #333;
z-index: 1;
}
/* 下面滚动区域 */
.scroll-content {
position: relative;
z-index: 1;
}
.panel {
height: 140vh;
border-top: 1px solid rgba(255,255,255,0.06);
}
/* ==================== panel-1 Spline 查看器样式 ==================== */
.panel-1 {
background: linear-gradient(to bottom, #FFF800, #0935FF);
position: relative;
overflow: hidden;
}
/* Spline Viewer 容器 - 修复滚动缩放问题并放大模型 */
.panel-1 spline-viewer {
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
/* 固定缩放比例，防止随滚动改变大小 */
transform: scale(1.3);
transform-origin: center center;
/* 禁用指针事件防止交互影响 */
pointer-events: none;
}
/* 确保 Spline Viewer 内部 canvas 不受影响 */
.panel-1 spline-viewer canvas {
width: 100% !important;
height: 100% !important;
}
/* ==================== content1 和 content2 布局 ==================== */
.content1 {
position: fixed;
top: 0%;
left: 0%;
height: 100%;
width: 100%;
box-sizing: border-box;
padding: 10% 8%;
z-index: 100;
flex-direction: column;
justify-content: center;
opacity: 0;
gap: 10%;
visibility: hidden;
transition: opacity 0.5s ease, visibility 0.5s ease;
pointer-events: none;
}
.content1.visible {
background-color: #b7211c;
opacity: 1;
visibility: visible;
}
.content1 .left-top {
font-size: 72px;
font-weight: 700;
letter-spacing: 8px;
color: #ffffff;
text-transform: uppercase;
line-height: 1.1;
text-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
}
.content1 .left-bot {
margin-top:1.5%;
font-size: 18px;
font-weight: 300;
letter-spacing: 3px;
color: rgba(255, 255, 255, 0.6);
text-transform: uppercase;
line-height: 1.8;
max-width: 400px;
}
.content2 {
position: fixed;
top: 55%;
right: 6%;
height: auto;
width: 50%;
padding: 0% 0%;
z-index: 100;
display: flex;
flex-direction: column;
justify-content: center;
align-items: flex-end;
gap: 20px;
opacity: 0;
visibility: hidden;
transition: opacity 0.5s ease, visibility 0.5s ease;
pointer-events: none;
}
.content2.visible {
opacity: 1;
visibility: visible;
}
.content2 .right-top {
font-size: 72px;
font-weight: 700;
letter-spacing: 8px;
color: #ffffff;
text-transform: uppercase;
line-height: 1.1;
text-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
text-align: right;
}
.content2 .right-bot {
font-size: 18px;
font-weight: 300;
letter-spacing: 3px;
color: rgba(255, 255, 255, 0.6);
text-transform: uppercase;
line-height: 1.8;
max-width: 400px;
text-align: right;
}
/* ==================== content3 和 content4 布局 ==================== */
.panel-2 {
background: linear-gradient(to bottom, #0a0a0a, #050505);
position: relative;
}
.content3 {
position: fixed;
top: 0%;
left: 0%;
height: 100%;
width: 100%;
box-sizing: border-box;
padding: 25% 60%;
z-index: 100;
display: flex;
flex-direction: column;
justify-content: center;
gap: 10px;
opacity: 0;
visibility: hidden;
transition: opacity 0.5s ease, visibility 0.5s ease;
pointer-events: none;
}
.content3.visible {
background-color: blue;
opacity: 1;
visibility: visible;
}
.content3 .left-top {
top: 30%;
left:80%;
font-size: 72px;
font-weight: 700;
letter-spacing: 8px;
color: #ffffff;
text-transform: uppercase;
line-height: 1.1;
text-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
}
.content3 .left-bot {
font-size: 18px;
font-weight: 300;
letter-spacing: 3px;
color: rgba(255, 255, 255, 0.6);
text-transform: uppercase;
line-height: 1.8;
max-width: 400px;
}
.content4 {
position: fixed;
top: 0%;
left: 0%;
height: 100%;
width: 100%;
box-sizing: border-box;
padding: 20% 20%;
z-index: 100;
display: flex;
flex-direction: column;
justify-content: center;
gap: 10px;
opacity: 0;
visibility: hidden;
transition: opacity 0.5s ease, visibility 0.5s ease;
pointer-events: none;
}
.content4.visible {
background-color: rgb(128, 2, 174);
opacity: 1;
visibility: visible;
}
.content4 .right-top {
font-size: 72px;
font-weight: 700;
letter-spacing: 8px;
color: #ffffff;
text-transform: uppercase;
line-height: 1.1;
text-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
}
.content4 .right-bot {
font-size: 18px;
font-weight: 300;
letter-spacing: 3px;
color: rgba(255, 255, 255, 0.6);
text-transform: uppercase;
line-height: 1.8;
max-width: 400px;
text-align: right;
}
/* ==================== content5 指引按钮样式 ==================== */
.content5 {
position: fixed;
bottom: 20%;
left: 51%;
transform: translateX(-50%);
height: 80px;
width: 80px;
z-index: 100;
display: flex;
opacity: 0;
visibility: hidden;
transition: opacity 0.5s ease, visibility 0.5s ease;
pointer-events: none;
}
.content5.visible {
opacity: 1;
visibility: visible;
pointer-events: auto;
}
.scroll-btn {
width: 70px;
height: 70px;
border: 2px solid #ffffff;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
background: transparent;
cursor: pointer;
animation: floatBounce 2s ease-in-out infinite;
transition: all 0.3s ease;
}
.scroll-btn:hover {
border-color: #4fc3f7;
box-shadow: 0 0 30px rgba(79, 195, 247, 0.5);
transform: scale(1.1);
}
.arrow-icon {
width: 32px;
height: 32px;
animation: arrowPulse 2s ease-in-out infinite;
}

.glitch-text {
position: relative;
display: inline-block;
}
.glitch-text::before,
.glitch-text::after {
content: attr(data-text);
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
.glitch-text::before {
left: 2px;
text-shadow: -2px 0 #ff00c1;
clip: rect(44px, 450px, 56px, 0);
animation: glitch-anim 5s infinite linear alternate-reverse;
}
.glitch-text::after {
left: -2px;
text-shadow: -2px 0 #00fff9;
clip: rect(44px, 450px, 56px, 0);
animation: glitch-anim2 5s infinite linear alternate-reverse;
}
@keyframes glitch-anim {
0% { clip: rect(38px, 9999px, 84px, 0); }
5% { clip: rect(66px, 9999px, 19px, 0); }
10% { clip: rect(2px, 9999px, 83px, 0); }
15% { clip: rect(90px, 9999px, 6px, 0); }
20% { clip: rect(10px, 9999px, 53px, 0); }
25% { clip: rect(78px, 9999px, 36px, 0); }
30% { clip: rect(32px, 9999px, 71px, 0); }
35% { clip: rect(54px, 9999px, 2px, 0); }
40% { clip: rect(16px, 9999px, 97px, 0); }
45% { clip: rect(69px, 9999px, 48px, 0); }
50% { clip: rect(8px, 9999px, 62px, 0); }
55% { clip: rect(43px, 9999px, 15px, 0); }
60% { clip: rect(91px, 9999px, 39px, 0); }
65% { clip: rect(27px, 9999px, 86px, 0); }
70% { clip: rect(5px, 9999px, 51px, 0); }
75% { clip: rect(73px, 9999px, 24px, 0); }
80% { clip: rect(36px, 9999px, 68px, 0); }
85% { clip: rect(12px, 9999px, 93px, 0); }
90% { clip: rect(58px, 9999px, 7px, 0); }
95% { clip: rect(82px, 9999px, 42px, 0); }
100% { clip: rect(21px, 9999px, 79px, 0); }
}
@keyframes glitch-anim2 {
0% { clip: rect(65px, 9999px, 99px, 0); }
5% { clip: rect(12px, 9999px, 4px, 0); }
10% { clip: rect(87px, 9999px, 56px, 0); }
15% { clip: rect(3px, 9999px, 78px, 0); }
20% { clip: rect(54px, 9999px, 21px, 0); }
25% { clip: rect(96px, 9999px, 67px, 0); }
30% { clip: rect(29px, 9999px, 13px, 0); }
35% { clip: rect(71px, 9999px, 89px, 0); }
40% { clip: rect(8px, 9999px, 45px, 0); }
45% { clip: rect(42px, 9999px, 92px, 0); }
50% { clip: rect(17px, 9999px, 31px, 0); }
55% { clip: rect(83px, 9999px, 5px, 0); }
60% { clip: rect(35px, 9999px, 74px, 0); }
65% { clip: rect(61px, 9999px, 18px, 0); }
70% { clip: rect(9px, 9999px, 52px, 0); }
75% { clip: rect(48px, 9999px, 97px, 0); }
80% { clip: rect(23px, 9999px, 36px, 0); }
85% { clip: rect(76px, 9999px, 64px, 0); }
90% { clip: rect(4px, 9999px, 81px, 0); }
95% { clip: rect(59px, 9999px, 11px, 0); }
100% { clip: rect(93px, 9999px, 47px, 0); }
}

@keyframes floatBounce {
0%, 100% {
transform: translateY(0);
}
50% {
transform: translateY(-12px);
}
}
@keyframes arrowPulse {
0%, 100% {
opacity: 0.6;
transform: translateY(0);
}
50% {
opacity: 1;
transform: translateY(-3px);
}
}
.panel-3 {
background: linear-gradient(to bottom, #000000, #000000);
}
/* 模型展示区域 */
.model-section {
position: relative;
width: 100%;
height: 100vh;
min-height: 800px;
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
border-top: 1px solid rgba(255,255,255,0.06);
}
.model-section-1 {
background: linear-gradient(to bottom, #000000, #0a0a0a);
}
.model-section-2 {
background: linear-gradient(to bottom, #0a0a0a, #000000);
}
.model-container {
position: relative;
width: 100%;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
}
.model-label {
position: absolute;
bottom: 50px;
left: 50%;
transform: translateX(-50%);
font-size: 24px;
font-weight: 300;
letter-spacing: 4px;
color: rgba(255, 255, 255, 0.7);
text-transform: uppercase;
z-index: 20;
}
/* 网格背景层 */
.grid-overlay {
position: absolute;
inset: 0;
background-image:
linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
background-size: 60px 60px;
z-index: 1;
pointer-events: none;
}
/* 6.png 图片容器 */
.image-container {
position: absolute;
top: 50%;
left: 88%;
transform: translate(-50%, -50%);
z-index: 8;
display: flex;
align-items: center;
justify-content: center;
pointer-events: none;
scale: 7;
}
/* 6.png 图片样式 */
.center-image {
max-width: 200px;
max-height: 200px;
object-fit: contain;
}
/* 核心图形容器 - 最高层级 */
.circle-container {
position: relative;
z-index: 6;
display: flex;
align-items: center;
justify-content: center;
}
/* 蓝色实心圆 */
.blue-circle {
width: 280px;
height: 280px;
background-color: #0022ff;
border-radius: 50%;
box-shadow: 0 0 60px rgba(0, 34, 255, 0.5);
z-index: 6;
animation: pulse-animation 4s ease-in-out infinite;
}
/* 外部细圆环 */
.outer-ring {
position: absolute;
width: 360px;
height: 360px;
border: 1px solid rgba(255, 255, 255, 0.3);
border-radius: 50%;
z-index: 5;
animation: pulse-ring 4s ease-in-out infinite;
}
/* ==================== 装饰层 - 固定在首屏内 ==================== */
.decor-layer {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
pointer-events: none;
z-index: 3;
overflow: hidden;
}
/* 大型几何图形 - 左侧大圆环 */
.geo-ring-large {
position: absolute;
top: -15%;
left: -8%;
width: 500px;
height: 500px;
border: 3px solid rgba(0, 34, 255, 0.5);
border-radius: 50%;
animation: geo-rotate-slow 20s linear infinite;
}
.geo-ring-large::before {
content: '';
position: absolute;
top: 40px;
left: 40px;
right: 40px;
bottom: 40px;
border: 2px solid rgba(255, 246, 96, 0.4);
border-radius: 50%;
animation: geo-rotate-reverse 25s linear infinite;
}
/* 右侧大三角 */
.geo-triangle-large {
position: absolute;
top: 15%;
right: -5%;
width: 400px;
height: 400px;
animation: geo-float 8s ease-in-out infinite;
}
.geo-triangle-large::before {
content: '';
position: absolute;
top: 0;
left: 50%;
width: 0;
height: 0;
border-left: 200px solid transparent;
border-right: 200px solid transparent;
border-bottom: 346px solid rgba(0, 34, 255, 0.35);
filter: drop-shadow(0 0 30px rgba(0, 34, 255, 0.5));
}
.geo-triangle-large::after {
content: '';
position: absolute;
top: 50px;
left: 50%;
transform: translateX(-50%);
width: 0;
height: 0;
border-left: 150px solid transparent;
border-right: 150px solid transparent;
border-bottom: 260px solid rgba(255, 246, 96, 0.3);
}
/* 底部大六边形 */
.geo-hexagon-large {
position: absolute;
bottom: -10%;
left: 15%;
width: 350px;
height: 400px;
animation: geo-rotate-slow 30s linear infinite, geo-pulse 6s ease-in-out infinite;
}
.geo-hexagon-large::before {
content: '';
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 300px;
height: 346px;
background:
linear-gradient(30deg, transparent 48%, rgba(0, 34, 255, 0.4) 49%, rgba(0, 34, 255, 0.4) 51%, transparent 52%),
linear-gradient(-30deg, transparent 48%, rgba(0, 34, 255, 0.4) 49%, rgba(0, 34, 255, 0.4) 51%, transparent 52%),
linear-gradient(90deg, transparent 48%, rgba(255, 246, 96, 0.35) 49%, rgba(255, 246, 96, 0.35) 51%, transparent 52%),
linear-gradient(0deg, transparent 48%, rgba(255, 246, 96, 0.35) 49%, rgba(255, 246, 96, 0.35) 51%, transparent 52%);
clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}
/* 右侧中方块 */
.geo-square-medium {
position: absolute;
top: 45%;
right: 8%;
width: 200px;
height: 200px;
animation: geo-rotate-medium 15s linear infinite;
}
.geo-square-medium::before {
content: '';
position: absolute;
top: 20px;
left: 20px;
right: 20px;
bottom: 20px;
border: 3px solid rgba(255, 246, 96, 0.6);
transform: rotate(45deg);
}
.geo-square-medium::after {
content: '';
position: absolute;
top: 50px;
left: 50px;
right: 50px;
bottom: 50px;
border: 2px solid rgba(0, 34, 255, 0.7);
transform: rotate(45deg);
}
/* 左侧中圆 */
.geo-circle-medium {
position: absolute;
top: 55%;
left: 5%;
width: 180px;
height: 180px;
animation: geo-pulse 5s ease-in-out infinite;
}
.geo-circle-medium::before {
content: '';
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 140px;
height: 140px;
border: 4px solid rgba(0, 34, 255, 0.6);
border-radius: 50%;
border-left-color: transparent;
border-right-color: transparent;
animation: geo-rotate-medium 10s linear infinite;
}
/* 右上小菱形 */
.geo-diamond-small {
position: absolute;
top: 8%;
right: 25%;
width: 100px;
height: 100px;
animation: geo-float 6s ease-in-out infinite;
}
.geo-diamond-small::before {
content: '';
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%) rotate(45deg);
width: 70px;
height: 70px;
border: 3px solid rgba(255, 246, 96, 0.7);
}
/* 左下弧形 */
.geo-arc-large {
position: absolute;
bottom: 20%;
left: -5%;
width: 300px;
height: 300px;
animation: geo-rotate-slow 25s linear infinite;
}
.geo-arc-large::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 300px;
height: 300px;
border: 5px solid rgba(0, 34, 255, 0.45);
border-radius: 50%;
border-top-color: transparent;
border-left-color: transparent;
}
.geo-arc-large::after {
content: '';
position: absolute;
top: 30px;
left: 30px;
width: 240px;
height: 240px;
border: 3px solid rgba(255, 246, 96, 0.35);
border-radius: 50%;
border-bottom-color: transparent;
border-right-color: transparent;
animation: geo-rotate-reverse 20s linear infinite;
}
/* 中心装饰环 - 在蓝色圆圈后面 */
.geo-center-ring {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 500px;
height: 500px;
z-index: 2;
}
.geo-center-ring::before {
content: '';
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 450px;
height: 450px;
border: 2px dashed rgba(0, 34, 255, 0.4);
border-radius: 50%;
animation: geo-rotate-slow 40s linear infinite;
}
.geo-center-ring::after {
content: '';
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 380px;
height: 380px;
border: 1px dotted rgba(255, 246, 96, 0.5);
border-radius: 50%;
animation: geo-rotate-reverse 35s linear infinite;
}
/* 大型放射线 */
.geo-rays {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 700px;
height: 700px;
z-index: 1;
}
.geo-rays::before {
content: '';
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 600px;
height: 600px;
background:
repeating-conic-gradient(
from 0deg,
transparent 0deg,
transparent 28deg,
rgba(0, 34, 255, 0.2) 29deg,
transparent 30deg
);
border-radius: 50%;
animation: geo-rotate-slow 50s linear infinite;
}
/* 漂浮粒子 */
.geo-particle {
position: absolute;
width: 15px;
height: 15px;
background: rgba(255, 246, 96, 0.8);
clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
animation: geo-particle-float 8s ease-in-out infinite;
filter: drop-shadow(0 0 10px rgba(255, 246, 96, 0.6));
}
.geo-particle-1 { top: 25%; left: 12%; }
.geo-particle-2 { top: 35%; left: 8%; animation-delay: 1s; }
.geo-particle-3 { top: 65%; left: 10%; animation-delay: 2s; }
.geo-particle-4 { top: 75%; left: 15%; animation-delay: 3s; }
.geo-particle-5 { top: 20%; right: 15%; animation-delay: 0.5s; }
.geo-particle-6 { top: 40%; right: 10%; animation-delay: 1.5s; }
.geo-particle-7 { top: 70%; right: 12%; animation-delay: 2.5s; }
.geo-particle-8 { top: 80%; right: 18%; animation-delay: 3.5s; }
/* 大型装饰带 */
.geo-band {
position: absolute;
width: 400px;
height: 60px;
background: linear-gradient(90deg,
transparent,
rgba(0, 34, 255, 0.3),
rgba(255, 246, 96, 0.2),
rgba(0, 34, 255, 0.3),
transparent);
animation: geo-band-pulse 4s ease-in-out infinite;
}
.geo-band-1 {
top: 30%;
left: -10%;
transform: rotate(-15deg);
}
.geo-band-2 {
bottom: 35%;
right: -8%;
transform: rotate(15deg);
animation-delay: 1s;
}
/* ==================== 动画定义 ==================== */
@keyframes geo-rotate-slow {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
@keyframes geo-rotate-reverse {
0% { transform: rotate(360deg); }
100% { transform: rotate(0deg); }
}
@keyframes geo-rotate-medium {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
@keyframes geo-float {
0%, 100% { transform: translateY(0); }
50% { transform: translateY(-30px); }
}
@keyframes geo-pulse {
0%, 100% {
transform: scale(1);
opacity: 0.7;
}
50% {
transform: scale(1.08);
opacity: 1;
}
}
@keyframes geo-particle-float {
0%, 100% {
transform: translateY(0) rotate(0deg);
opacity: 0.5;
}
50% {
transform: translateY(-40px) rotate(180deg);
opacity: 1;
}
}
@keyframes geo-band-pulse {
0%, 100% {
opacity: 0.5;
filter: blur(0px);
}
50% {
opacity: 0.9;
filter: blur(2px);
}
}
@keyframes pulse-animation {
0% {
transform: scale(1);
opacity: 0.9;
}
50% {
transform: scale(1.25);
opacity: 1;
box-shadow: 0 0 80px rgba(0, 34, 255, 0.7);
}
100% {
transform: scale(1);
opacity: 0.9;
}
}
@keyframes pulse-ring {
0% {
transform: scale(1);
opacity: 0.5;
border-color: rgba(255, 255, 255, 0.3);
}
50% {
transform: scale(1.15);
opacity: 0.8;
border-color: rgba(255, 255, 255, 0.6);
}
100% {
transform: scale(1);
opacity: 0.5;
border-color: rgba(255, 255, 255, 0.3);
}
}
/* ==================== 文字淡入动画 ==================== */
.content1 .left-top,
.content1 .left-bot,
.content2 .right-top,
.content2 .right-bot,
.content3 .left-top,
.content3 .left-bot,
.content4 .right-top,
.content4 .right-bot {
opacity: 0;
animation: textFadeIn 1s ease forwards;
}
.content1.visible .left-top { animation-delay: 0.2s; }
.content1.visible .left-bot { animation-delay: 0.4s; }
.content2.visible .right-top { animation-delay: 0.3s; }
.content2.visible .right-bot { animation-delay: 0.5s; }
.content3.visible .left-top { animation-delay: 0.2s; }
.content3.visible .left-bot { animation-delay: 0.4s; }
.content4.visible .right-top { animation-delay: 0.3s; }
.content4.visible .right-bot { animation-delay: 0.5s; }
@keyframes textFadeIn {
from {
opacity: 0;
transform: translateY(30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
/* 响应式调整 */
@media (max-width: 1024px) {
.geo-ring-large { width: 350px; height: 350px; }
.geo-triangle-large { width: 280px; height: 280px; }
.geo-hexagon-large { width: 250px; height: 290px; }
.geo-square-medium { width: 150px; height: 150px; }
.geo-circle-medium { width: 130px; height: 130px; }
.geo-center-ring { width: 350px; height: 350px; }
.geo-rays { width: 500px; height: 500px; }
.geo-arc-large { width: 220px; height: 220px; }
.content1 .left-top,
.content2 .right-top,
.content3 .left-top,
.content4 .right-top {
font-size: 56px;
letter-spacing: 6px;
}
.content1 .left-bot,
.content2 .right-bot,
.content3 .left-bot,
.content4 .right-bot {
font-size: 16px;
}
.content1,
.content2,
.content3,
.content4 {
padding: 30px 40px;
}
}
@media (max-width: 768px) {
.geo-ring-large { width: 250px; height: 250px; left: -5%; }
.geo-triangle-large { width: 200px; height: 200px; right: -3%; }
.geo-hexagon-large { width: 180px; height: 210px; }
.geo-square-medium { width: 100px; height: 100px; }
.geo-circle-medium { width: 90px; height: 90px; }
.geo-center-ring { width: 280px; height: 280px; }
.geo-rays { width: 380px; height: 380px; }
.geo-arc-large { width: 160px; height: 160px; }
.geo-diamond-small { width: 60px; height: 60px; }
.content1,
.content2,
.content3,
.content4 {
position: fixed;
top: auto;
left: 0;
right: 0;
transform: none;
width: 100%;
padding: 30px 20px;
align-items: center;
text-align: center;
}
.content1 {
top: 30%;
}
.content2 {
top: 55%;
}
.content3 {
top: 30%;
}
.content4 {
top: 55%;
}
.content1 .left-top,
.content2 .right-top,
.content3 .left-top,
.content4 .right-top {
font-size: 42px;
letter-spacing: 4px;
text-align: center;
}
.content1 .left-bot,
.content2 .right-bot,
.content3 .left-bot,
.content4 .right-bot {
font-size: 14px;
text-align: center;
}
.panel-1,
.panel-2 {
display: flex;
flex-direction: column;
justify-content: center;
}
.content5 {
bottom: 5%;
}
.scroll-btn {
width: 60px;
height: 60px;
}
.arrow-icon {
width: 28px;
height: 28px;
}
}

