|
@@ -72,6 +72,7 @@
|
|
|
border-radius: 50%;
|
|
|
cursor: pointer;
|
|
|
transition: all 0.3s;
|
|
|
+ margin-top: 5px;
|
|
|
|
|
|
&:hover {
|
|
|
color: var(--primary-color);
|
|
@@ -81,97 +82,83 @@
|
|
|
|
|
|
/* 搜索框容器样式 */
|
|
|
.search-bar-container {
|
|
|
- position: relative;
|
|
|
- display: flex;
|
|
|
- align-items: center;
|
|
|
- width: 100%;
|
|
|
- height: 40px;
|
|
|
- justify-content: center;
|
|
|
-
|
|
|
- }
|
|
|
-
|
|
|
- .custom-searchbar {
|
|
|
- --background: #fff;
|
|
|
- /* 背景颜色 */
|
|
|
- --placeholder-color: #999;
|
|
|
- /* 占位符颜色 */
|
|
|
- --padding-start: 40px;
|
|
|
- /* 左侧 padding */
|
|
|
- --padding-end: 40px;
|
|
|
- /* 右侧 padding */
|
|
|
- --color: #000;
|
|
|
- /* 文本颜色 */
|
|
|
- --height: 40px;
|
|
|
- /* 设置搜索框的高度 */
|
|
|
- --border-radius: 24px;
|
|
|
- /* 圆角样式 */
|
|
|
- --box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
|
|
|
- /* 阴影效果 */
|
|
|
- --cancel-button-color: var(--primary-color);
|
|
|
-
|
|
|
- /* 返回按钮颜色 */
|
|
|
- }
|
|
|
-
|
|
|
- /* 关闭按钮样式 */
|
|
|
- .close-btn {
|
|
|
position: absolute;
|
|
|
- right: 8%;
|
|
|
- /* 根据 padding 调整 */
|
|
|
- top: 50%;
|
|
|
- transform: translateY(-50%);
|
|
|
- width: 10%;
|
|
|
- height: 36px;
|
|
|
+ left: 0;
|
|
|
+ right: 0;
|
|
|
+ top: 0;
|
|
|
+ height: 56px;
|
|
|
display: flex;
|
|
|
- justify-content: center;
|
|
|
align-items: center;
|
|
|
- border-radius: 50px;
|
|
|
- /* 圆形按钮 */
|
|
|
- background-color: white;
|
|
|
- /* 背景颜色与搜索框一致 */
|
|
|
- color: #666;
|
|
|
- font-size: 16px;
|
|
|
- cursor: pointer;
|
|
|
- transition: all 0.3s ease;
|
|
|
- z-index: 10;
|
|
|
- /* 提升层级 */
|
|
|
+ padding: 0 16px;
|
|
|
+ animation: slideIn 0.3s ease-out;
|
|
|
+ background: white;
|
|
|
+ z-index: 100;
|
|
|
+ box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
|
|
|
|
|
|
+ .custom-searchbar {
|
|
|
+ margin-top: 5px;
|
|
|
+ }
|
|
|
|
|
|
+ .close-btn {
|
|
|
+ background: transparent;
|
|
|
+ border: none;
|
|
|
+ color: var(--primary-color);
|
|
|
+ font-size: 16px;
|
|
|
+ font-weight: 500;
|
|
|
+ padding: 8px 16px;
|
|
|
+ margin-left: 12px;
|
|
|
+ height: 42px;
|
|
|
+ border-radius: 12px;
|
|
|
+ transition: all 0.2s ease;
|
|
|
+ min-width: 64px;
|
|
|
+ margin-bottom: 5px;
|
|
|
+
|
|
|
+ &:active {
|
|
|
+ background: rgba(182, 77, 36, 0.1);
|
|
|
+ transform: scale(0.98);
|
|
|
+ }
|
|
|
+ }
|
|
|
}
|
|
|
+}
|
|
|
|
|
|
- .close-btn:hover {
|
|
|
- color: var(--primary-color);
|
|
|
- /* 鼠标悬停颜色 */
|
|
|
- background-color: rgba(182, 77, 36, 0.1);
|
|
|
- /* 背景颜色变化 */
|
|
|
+// 添加搜索框动画
|
|
|
+@keyframes slideIn {
|
|
|
+ from {
|
|
|
+ opacity: 0;
|
|
|
+ transform: translateY(-8px);
|
|
|
}
|
|
|
|
|
|
- /* 响应式适配 */
|
|
|
- @media (max-width: 768px) {
|
|
|
- .header-container {
|
|
|
- padding: 8px 12px;
|
|
|
- /* 减小边距适配小屏幕 */
|
|
|
- }
|
|
|
+ to {
|
|
|
+ opacity: 1;
|
|
|
+ transform: translateY(0);
|
|
|
+ }
|
|
|
+}
|
|
|
|
|
|
- .custom-searchbar {
|
|
|
- max-width: 100%;
|
|
|
- /* 小屏幕占满容器 */
|
|
|
- font-size: 14px;
|
|
|
- /* 减小字体大小 */
|
|
|
- }
|
|
|
+// 添加搜索结果为空时的提示样式
|
|
|
+.no-results {
|
|
|
+ text-align: center;
|
|
|
+ padding: 48px 24px;
|
|
|
+ color: #666;
|
|
|
+
|
|
|
+ ion-icon {
|
|
|
+ font-size: 56px;
|
|
|
+ color: #ddd;
|
|
|
+ margin-bottom: 16px;
|
|
|
+ opacity: 0.8;
|
|
|
+ }
|
|
|
|
|
|
- .close-btn {
|
|
|
- width: 48px;
|
|
|
- height: 24px;
|
|
|
- font-size: 14px;
|
|
|
- /* 调整关闭按钮大小 */
|
|
|
- }
|
|
|
+ h3 {
|
|
|
+ font-size: 18px;
|
|
|
+ margin: 12px 0;
|
|
|
+ color: #333;
|
|
|
+ font-weight: 500;
|
|
|
+ }
|
|
|
|
|
|
- .close-btn:hover {
|
|
|
- color: var(--primary-color);
|
|
|
- /* 鼠标悬停颜色 */
|
|
|
- background-color: rgba(182, 77, 36, 0.1);
|
|
|
- /* 背景颜色变化 */
|
|
|
- }
|
|
|
+ p {
|
|
|
+ font-size: 15px;
|
|
|
+ color: #999;
|
|
|
+ margin: 0;
|
|
|
+ line-height: 1.5;
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -228,7 +215,7 @@
|
|
|
transform: translateY(-2px);
|
|
|
}
|
|
|
|
|
|
- // 确保所有子元素都可以正确传递点击事件
|
|
|
+ // 确保所有子��素都以正确传递点击事件
|
|
|
* {
|
|
|
pointer-events: none;
|
|
|
}
|
|
@@ -398,4 +385,14 @@ ion-menu {
|
|
|
&:hover {
|
|
|
background-color: rgba(0, 0, 0, 0.05);
|
|
|
}
|
|
|
+}
|
|
|
+
|
|
|
+// 添加搜索时的遮罩效果
|
|
|
+.search-active {
|
|
|
+
|
|
|
+ .content-grid,
|
|
|
+ .category-nav {
|
|
|
+ opacity: 0.5;
|
|
|
+ transition: opacity 0.3s ease;
|
|
|
+ }
|
|
|
}
|