Compare commits
No commits in common. "a53faecc29b7fd923e213422445a1ba82b9f3424" and "44a382a551c8998a17db5f1cacd9994cb8984aff" have entirely different histories.
a53faecc29
...
44a382a551
|
|
@ -73,13 +73,13 @@
|
|||
align-items: center;
|
||||
justify-content: center;
|
||||
gap: 24px;
|
||||
margin-bottom: 48px;
|
||||
margin-bottom: 64px;
|
||||
}
|
||||
|
||||
/* 下载按钮 - 大按钮 */
|
||||
.download-btn {
|
||||
width: 480px;
|
||||
height: 96px;
|
||||
height: 80px;
|
||||
background: #1D1F22;
|
||||
border-radius: 28px;
|
||||
display: flex;
|
||||
|
|
@ -93,7 +93,7 @@
|
|||
/* 查看按钮 - 小按钮 */
|
||||
.view-btn {
|
||||
flex: 1;
|
||||
height: 96px;
|
||||
height: 80px;
|
||||
border: 1px solid #1d1f22;
|
||||
border-radius: 28px;
|
||||
display: flex;
|
||||
|
|
@ -123,7 +123,6 @@
|
|||
height: 100vh;
|
||||
padding: 60px 32px;
|
||||
box-sizing: border-box;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
/* 进度容器 */
|
||||
|
|
@ -134,9 +133,9 @@
|
|||
|
||||
/* 进度方框 */
|
||||
.progress-circle {
|
||||
width: 316px;
|
||||
height: 316px;
|
||||
border-radius: 48px;
|
||||
width: 280px;
|
||||
height: 280px;
|
||||
border-radius: 30px;
|
||||
position: relative;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
|
|
@ -148,7 +147,7 @@
|
|||
.progress-fill {
|
||||
position: absolute;
|
||||
inset: -10px;
|
||||
border-radius: 48px;
|
||||
border-radius: 35px;
|
||||
background: conic-gradient(#FFCF5F 0deg, #FFCF5F 0deg, transparent 0deg, transparent 360deg);
|
||||
padding: 10px;
|
||||
z-index: 1;
|
||||
|
|
@ -157,7 +156,7 @@
|
|||
.progress-inner {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
border-radius: 48px;
|
||||
border-radius: 30px;
|
||||
background: white;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
|
|
@ -179,7 +178,7 @@
|
|||
inset: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
border-radius: 48px;
|
||||
border-radius: 30px;
|
||||
z-index: 3;
|
||||
}
|
||||
|
||||
|
|
@ -189,7 +188,7 @@
|
|||
inset: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
border-radius: 48px;
|
||||
border-radius: 30px;
|
||||
background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
|
||||
display: flex;
|
||||
align-items: center;
|
||||
|
|
@ -201,7 +200,7 @@
|
|||
.progress-overlay {
|
||||
position: absolute;
|
||||
inset: 0;
|
||||
border-radius: 48px;
|
||||
border-radius: 30px;
|
||||
background: linear-gradient(
|
||||
135deg,
|
||||
rgb(0 0 0 / 20%) 0%,
|
||||
|
|
@ -216,7 +215,7 @@
|
|||
.scan-light {
|
||||
position: absolute;
|
||||
inset: 0;
|
||||
border-radius: 48px;
|
||||
border-radius: 30px;
|
||||
background: linear-gradient(
|
||||
90deg,
|
||||
transparent 0%,
|
||||
|
|
@ -310,11 +309,6 @@
|
|||
/* 提示区域 */
|
||||
.tips-section {
|
||||
text-align: center;
|
||||
position: absolute;
|
||||
bottom: 150px;
|
||||
left: 50%;
|
||||
transform: translateX(-50%);
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.tips-label {
|
||||
|
|
|
|||
Loading…
Reference in New Issue