tab1.page.scss 7.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340
  1. :host {
  2. --page-padding: 16px;
  3. --primary-color: #b64d24;
  4. --background-color: #f5f5f5;
  5. }
  6. // 头部样式
  7. .brand-header {
  8. padding: 8px var(--page-padding);
  9. display: flex;
  10. justify-content: center;
  11. .brand-title {
  12. display: flex;
  13. justify-content: center;
  14. width: 100%;
  15. .title-container {
  16. display: flex;
  17. align-items: center;
  18. gap: 4px;
  19. font-family: 'Courier New', Courier, monospace;
  20. font-size: 16px;
  21. font-weight: 600;
  22. span {
  23. color: var(--primary-color);
  24. }
  25. img {
  26. height: 18px;
  27. width: 18px;
  28. margin-top: 2px;
  29. }
  30. }
  31. }
  32. }
  33. // 搜索栏部分
  34. .search-section {
  35. padding: 8px var(--page-padding);
  36. display: flex;
  37. align-items: center;
  38. gap: 12px;
  39. background: white;
  40. .custom-searchbar {
  41. flex: 1;
  42. --background: #f4f5f8;
  43. --border-radius: 8px;
  44. --box-shadow: none;
  45. --placeholder-color: #666;
  46. margin: 0;
  47. padding: 0;
  48. }
  49. .action-buttons {
  50. display: flex;
  51. align-items: center;
  52. gap: 8px;
  53. .icon-button {
  54. --padding-start: 8px;
  55. --padding-end: 8px;
  56. margin: 0;
  57. ion-icon {
  58. font-size: 24px;
  59. color: var(--primary-color);
  60. }
  61. }
  62. .sign-in-button {
  63. display: flex;
  64. align-items: center;
  65. gap: 4px;
  66. --padding-start: 8px;
  67. --padding-end: 8px;
  68. margin: 0;
  69. ion-icon {
  70. font-size: 20px;
  71. color: var(--primary-color);
  72. }
  73. span {
  74. color: var(--primary-color);
  75. font-size: 14px;
  76. }
  77. }
  78. }
  79. }
  80. // 顶部导航栏
  81. .top-nav-section {
  82. padding: 4px var(--page-padding);
  83. background: white;
  84. margin-bottom: var(--section-gap);
  85. ion-segment {
  86. --background: transparent;
  87. ion-segment-button {
  88. --color: #666;
  89. --color-checked: var(--primary-color);
  90. --indicator-color: transparent; // 移除选中指示器
  91. --indicator-height: 0; // 移除指示器高度
  92. --padding-top: 4px;
  93. --padding-bottom: 4px;
  94. min-width: 70px;
  95. min-height: 32px;
  96. font-size: 13px;
  97. text-transform: none;
  98. transition: none; // 移除过渡动画
  99. &::part(indicator) {
  100. display: none; // 彻底隐藏指示器
  101. }
  102. &::part(native) {
  103. padding: 0;
  104. margin: 0;
  105. }
  106. ion-label {
  107. margin: 0;
  108. padding: 0;
  109. }
  110. }
  111. }
  112. }
  113. // 轮播图部分
  114. .banner-section {
  115. padding: 16px var(--page-padding);
  116. background: white;
  117. .banner-container {
  118. position: relative;
  119. border-radius: 12px;
  120. overflow: hidden;
  121. height: 160px;
  122. user-select: none;
  123. touch-action: pan-y pinch-zoom;
  124. .banner-img-container {
  125. display: flex;
  126. height: 100%;
  127. transition: transform 0.3s ease-in-out;
  128. img {
  129. min-width: 100%;
  130. height: 160px;
  131. object-fit: cover;
  132. pointer-events: none;
  133. }
  134. }
  135. .banner-indicators {
  136. position: absolute;
  137. bottom: 12px;
  138. left: 50%;
  139. transform: translateX(-50%);
  140. display: flex;
  141. gap: 8px;
  142. z-index: 2;
  143. .indicator {
  144. width: 6px;
  145. height: 6px;
  146. border-radius: 50%;
  147. background: rgba(255, 255, 255, 0.5);
  148. transition: all 0.3s;
  149. cursor: pointer;
  150. &.active {
  151. width: 18px;
  152. border-radius: 3px;
  153. background: white;
  154. }
  155. }
  156. }
  157. .banner-arrows {
  158. position: absolute;
  159. top: 50%;
  160. left: 0;
  161. right: 0;
  162. transform: translateY(-50%);
  163. display: flex;
  164. justify-content: space-between;
  165. padding: 0 16px;
  166. pointer-events: none;
  167. .arrow-btn {
  168. width: 32px;
  169. height: 32px;
  170. border-radius: 50%;
  171. background: rgba(0, 0, 0, 0.3);
  172. border: none;
  173. color: white;
  174. display: flex;
  175. align-items: center;
  176. justify-content: center;
  177. cursor: pointer;
  178. pointer-events: auto;
  179. transition: all 0.3s;
  180. &:hover {
  181. background: rgba(0, 0, 0, 0.5);
  182. }
  183. ion-icon {
  184. font-size: 20px;
  185. }
  186. }
  187. }
  188. }
  189. }
  190. // 功能导航区
  191. .features-grid {
  192. padding: 16px var(--page-padding);
  193. background: white;
  194. .features-row {
  195. display: grid;
  196. grid-template-columns: repeat(5, 1fr);
  197. gap: 16px;
  198. margin-bottom: 20px;
  199. &:last-child {
  200. margin-bottom: 0;
  201. }
  202. }
  203. .feature-item {
  204. display: flex;
  205. flex-direction: column;
  206. align-items: center;
  207. gap: 8px;
  208. padding: 12px 8px;
  209. border-radius: 8px;
  210. transition: all 0.3s;
  211. &:active {
  212. background: rgba(182, 77, 36, 0.1);
  213. }
  214. ion-icon {
  215. font-size: 24px;
  216. color: var(--primary-color);
  217. }
  218. span {
  219. font-size: 12px;
  220. color: #333;
  221. }
  222. }
  223. }
  224. // 最近在学部分
  225. .recent-learning {
  226. padding: 16px var(--page-padding);
  227. background: white;
  228. margin-top: 8px;
  229. .section-header {
  230. display: flex;
  231. justify-content: space-between;
  232. align-items: center;
  233. margin-bottom: 16px;
  234. h2 {
  235. margin: 0;
  236. font-size: 18px;
  237. font-weight: 600;
  238. color: #333;
  239. }
  240. .view-all {
  241. display: flex;
  242. align-items: center;
  243. gap: 4px;
  244. color: #666;
  245. font-size: 14px;
  246. ion-icon {
  247. font-size: 16px;
  248. }
  249. }
  250. }
  251. .learning-cards {
  252. display: grid;
  253. grid-template-columns: repeat(4, 1fr);
  254. gap: 16px;
  255. overflow-x: auto;
  256. padding-bottom: 8px;
  257. .learning-card {
  258. border-radius: 8px;
  259. overflow: hidden;
  260. box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  261. transition: all 0.3s;
  262. &:hover {
  263. transform: translateY(-2px);
  264. box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  265. }
  266. img {
  267. width: 100%;
  268. height: 120px;
  269. object-fit: cover;
  270. }
  271. h3 {
  272. margin: 8px;
  273. font-size: 14px;
  274. font-weight: 500;
  275. color: #333;
  276. text-align: center;
  277. }
  278. }
  279. }
  280. }
  281. // 全局样式
  282. ion-content {
  283. --background: var(--background-color);
  284. }
  285. ion-header {
  286. background: white;
  287. ion-toolbar {
  288. --background: transparent;
  289. }
  290. }