1
This commit is contained in:
@@ -1,7 +1,8 @@
|
||||
.empty_state_page {
|
||||
width: 100%;
|
||||
min-height: 100vh;
|
||||
background: #3f3f3f;
|
||||
// 白色渐变背景(从设计稿参考)
|
||||
background: linear-gradient(180deg, #FFFFFF 0%, #F5F5F5 100%);
|
||||
position: relative;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
@@ -18,18 +19,15 @@
|
||||
min-height: calc(100vh - 98px);
|
||||
}
|
||||
|
||||
// 背景图片
|
||||
&__bg_image {
|
||||
// 空状态图片
|
||||
&__icon {
|
||||
position: absolute;
|
||||
top: 178px;
|
||||
left: 84px;
|
||||
left: 50%;
|
||||
transform: translateX(-50%);
|
||||
width: 221.17px;
|
||||
height: 200px;
|
||||
background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjIyIiBoZWlnaHQ9IjIwMCIgdmlld0JveD0iMCAwIDIyMiAyMDAiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxyZWN0IHdpZHRoPSIyMjIiIGhlaWdodD0iMjAwIiBmaWxsPSIjRkZGRkZGIiBmaWxsLW9wYWNpdHk9IjAuMiIvPgo8L3N2Zz4K');
|
||||
background-size: contain;
|
||||
background-repeat: no-repeat;
|
||||
background-position: center;
|
||||
opacity: 0.2;
|
||||
opacity: 0.8; // 图片透明度
|
||||
z-index: 0;
|
||||
}
|
||||
|
||||
@@ -41,7 +39,7 @@
|
||||
transform: translateX(-50%);
|
||||
z-index: 1;
|
||||
padding: 8px 16px;
|
||||
background: rgba(0, 0, 0, 0.5);
|
||||
background: rgba(0, 0, 0, 0.05); // 白色背景下使用浅色背景
|
||||
border-radius: 4px;
|
||||
white-space: nowrap;
|
||||
|
||||
@@ -50,7 +48,7 @@
|
||||
font-weight: 400;
|
||||
font-size: 15px;
|
||||
line-height: 1.6;
|
||||
color: #ffffff;
|
||||
color: rgba(0, 0, 0, 0.65); // 白色背景下使用深色文字
|
||||
text-align: center;
|
||||
}
|
||||
}
|
||||
@@ -89,8 +87,9 @@
|
||||
|
||||
// 主要按钮(去看看其他球局)
|
||||
&--primary {
|
||||
background: linear-gradient(154deg, rgba(255, 255, 255, 1) 0%, rgba(234, 234, 234, 1) 100%);
|
||||
background:#000000;
|
||||
border: 2px solid rgba(0, 0, 0, 0.06);
|
||||
color: #FFFFFF;
|
||||
}
|
||||
|
||||
// 次要按钮(返回首页)
|
||||
|
||||
Reference in New Issue
Block a user