tab3.page.scss 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271
  1. :host {
  2. --page-padding: 16px;
  3. --primary-color: #b64d24;
  4. --card-border-radius: 12px;
  5. --card-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  6. }
  7. // 头部导航样式
  8. .header-container {
  9. padding: 8px var(--page-padding);
  10. display: flex;
  11. align-items: center;
  12. justify-content: space-between;
  13. background: white;
  14. .menu-icon {
  15. font-size: 24px;
  16. color: #333;
  17. padding: 8px;
  18. border-radius: 50%;
  19. cursor: pointer;
  20. transition: background-color 0.3s;
  21. &:hover {
  22. background-color: rgba(0, 0, 0, 0.05);
  23. }
  24. }
  25. .nav-links {
  26. display: flex;
  27. gap: 32px;
  28. .nav-item {
  29. font-size: 15px;
  30. color: #666;
  31. padding: 6px 2px;
  32. cursor: pointer;
  33. position: relative;
  34. transition: color 0.3s;
  35. &[underline="true"] {
  36. color: var(--primary-color);
  37. font-weight: 500;
  38. &::after {
  39. content: '';
  40. position: absolute;
  41. bottom: 0;
  42. left: 0;
  43. width: 100%;
  44. height: 3px;
  45. background: var(--primary-color);
  46. border-radius: 2px;
  47. }
  48. }
  49. }
  50. }
  51. .search-icon {
  52. font-size: 22px;
  53. color: #666;
  54. padding: 8px;
  55. border-radius: 50%;
  56. cursor: pointer;
  57. transition: all 0.3s;
  58. &:hover {
  59. color: var(--primary-color);
  60. background-color: rgba(182, 77, 36, 0.1);
  61. }
  62. }
  63. }
  64. // 分类导航样式
  65. .category-nav {
  66. background: white;
  67. border-bottom: 1px solid #f5f5f5;
  68. margin-bottom: 8px;
  69. ion-tab-bar {
  70. --background: transparent;
  71. --border-color: transparent;
  72. padding: 0 var(--page-padding);
  73. ion-tab-button {
  74. --color: #666;
  75. --color-selected: var(--primary-color);
  76. --padding-top: 8px;
  77. --padding-bottom: 8px;
  78. ion-label {
  79. font-size: 14px;
  80. font-weight: 500;
  81. }
  82. &.tab-selected::after {
  83. content: '';
  84. position: absolute;
  85. bottom: 0;
  86. left: 50%;
  87. transform: translateX(-50%);
  88. width: 20px;
  89. height: 3px;
  90. background: var(--primary-color);
  91. border-radius: 1.5px;
  92. }
  93. }
  94. }
  95. }
  96. // 内容网格样式
  97. .content-grid {
  98. display: grid;
  99. grid-template-columns: repeat(2, 1fr);
  100. gap: 12px;
  101. padding: 12px;
  102. .content-card {
  103. background: white;
  104. border-radius: var(--card-border-radius);
  105. box-shadow: var(--card-shadow);
  106. overflow: hidden;
  107. .card-image {
  108. width: 100%;
  109. height: 200px;
  110. object-fit: cover;
  111. }
  112. .card-content {
  113. padding: 12px;
  114. .title {
  115. font-size: 14px;
  116. color: #333;
  117. margin-bottom: 12px;
  118. line-height: 1.4;
  119. display: -webkit-box;
  120. -webkit-line-clamp: 2;
  121. -webkit-box-orient: vertical;
  122. overflow: hidden;
  123. }
  124. .user-info {
  125. display: flex;
  126. align-items: center;
  127. justify-content: space-between;
  128. .user {
  129. display: flex;
  130. align-items: center;
  131. gap: 8px;
  132. .avatar {
  133. width: 28px;
  134. height: 28px;
  135. border-radius: 50%;
  136. object-fit: cover;
  137. }
  138. .info {
  139. display: flex;
  140. flex-direction: column;
  141. .name {
  142. font-size: 13px;
  143. color: #333;
  144. font-weight: 500;
  145. }
  146. .date {
  147. font-size: 12px;
  148. color: #999;
  149. }
  150. }
  151. }
  152. .likes {
  153. display: flex;
  154. align-items: center;
  155. gap: 4px;
  156. color: #666;
  157. font-size: 13px;
  158. ion-icon {
  159. font-size: 16px;
  160. color: #999;
  161. transition: all 0.3s;
  162. cursor: pointer;
  163. &:hover {
  164. color: #ff4b4b;
  165. transform: scale(1.1);
  166. }
  167. }
  168. }
  169. }
  170. }
  171. }
  172. }
  173. // 侧边菜单样式
  174. ion-menu {
  175. --width: 280px;
  176. --background: white;
  177. .menu-content {
  178. --background: white;
  179. .menu-header {
  180. padding: 24px 20px;
  181. background: linear-gradient(135deg, var(--primary-color), #ff6b4a);
  182. h2 {
  183. color: white;
  184. margin: 0;
  185. font-size: 20px;
  186. font-weight: 600;
  187. }
  188. }
  189. ion-list {
  190. padding: 12px 0;
  191. ion-item {
  192. --padding-start: 20px;
  193. --padding-end: 16px;
  194. --min-height: 50px;
  195. --background: transparent;
  196. --background-hover: rgba(182, 77, 36, 0.05);
  197. --ripple-color: rgba(182, 77, 36, 0.1);
  198. ion-icon {
  199. color: #666;
  200. font-size: 20px;
  201. margin-right: 12px;
  202. }
  203. ion-label {
  204. font-size: 15px;
  205. font-weight: 500;
  206. color: #333;
  207. }
  208. &:hover {
  209. ion-icon {
  210. color: var(--primary-color);
  211. }
  212. ion-label {
  213. color: var(--primary-color);
  214. }
  215. }
  216. }
  217. }
  218. }
  219. }
  220. // 修改菜单按钮样式
  221. .menu-icon {
  222. font-size: 24px;
  223. padding: 8px;
  224. border-radius: 50%;
  225. cursor: pointer;
  226. color: #333;
  227. transition: background-color 0.3s;
  228. &:hover {
  229. background-color: rgba(0, 0, 0, 0.05);
  230. }
  231. }