capta1n commited on
Commit
f942494
·
verified ·
1 Parent(s): a0af603

创建一个中间模块指向右侧的箭头 - Follow Up Deployment

Browse files
Files changed (1) hide show
  1. index.html +13 -4
index.html CHANGED
@@ -11,12 +11,21 @@
11
  position: relative;
12
  }
13
  .arrow:after {
14
- content: "";
15
  position: absolute;
16
- right: -20px;
17
  top: 50%;
18
  transform: translateY(-50%);
19
- color: #4b5563;
 
 
 
 
 
 
 
 
 
20
  }
21
  .center-circle {
22
  position: relative;
@@ -101,7 +110,7 @@
101
  <!-- 主体内容 -->
102
  <div class="flex flex-col md:flex-row items-center justify-between">
103
  <!-- 左侧模块 -->
104
- <div class="w-full md:w-1/4 mb-8 md:mb-0">
105
  <div class="bg-purple-50 rounded-lg p-4 shadow-md module-item arrow">
106
  <h3 class="font-semibold text-purple-700 text-center mb-3"></h3>
107
 
 
11
  position: relative;
12
  }
13
  .arrow:after {
14
+ content: "";
15
  position: absolute;
16
+ right: -30px;
17
  top: 50%;
18
  transform: translateY(-50%);
19
+ color: #3b82f6;
20
+ font-size: 24px;
21
+ font-weight: bold;
22
+ text-shadow: 0 0 5px rgba(59, 130, 246, 0.5);
23
+ animation: pulse 1.5s infinite;
24
+ }
25
+ @keyframes pulse {
26
+ 0% { opacity: 0.7; }
27
+ 50% { opacity: 1; }
28
+ 100% { opacity: 0.7; }
29
  }
30
  .center-circle {
31
  position: relative;
 
110
  <!-- 主体内容 -->
111
  <div class="flex flex-col md:flex-row items-center justify-between">
112
  <!-- 左侧模块 -->
113
+ <div class="w-full md:w-1/4 mb-8 md:mb-0 pr-4">
114
  <div class="bg-purple-50 rounded-lg p-4 shadow-md module-item arrow">
115
  <h3 class="font-semibold text-purple-700 text-center mb-3"></h3>
116