home.page.scss 7.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351
  1. /* 全局样式 */
  2. ion-app {
  3. background: url('/assets/images/background-image1.jpg') no-repeat center center fixed;
  4. /* 添加背景图片 */
  5. background-size: cover;
  6. /* 背景图片覆盖整个内容区域 */
  7. background-position: center;
  8. /* 背景图片居中 */
  9. height: 100vh;
  10. /* 确保背景覆盖整个视口高度 */
  11. margin: 0;
  12. /* 移除默认的外边距 */
  13. padding: 0;
  14. /* 移除默认的内边距 */
  15. }
  16. ion-content {
  17. --background: transparent;
  18. /* 设置为透明,以便背景从 ion-app 继承 */
  19. padding: 16px;
  20. }
  21. :host {
  22. --page-padding: 16px;
  23. --primary-color: #003366;
  24. /* 深蓝色 */
  25. --secondary-color: #336633;
  26. /* 墨绿色 */
  27. --background-color: #f5f5f5;
  28. --text-color: #333333;
  29. --highlight-color: #ffcc00;
  30. /* 高亮颜色 */
  31. }
  32. .floating-button {
  33. --background: transparent !important;
  34. --color: inherit !important;
  35. /* 增大按钮尺寸 */
  36. width: 64px;
  37. /* 根据需要调整 */
  38. height: 64px;
  39. /* 根据需要调整 */
  40. font-size: 24px;
  41. /* 如果有文字内容,可以调整字体大小 */
  42. position: relative;
  43. /* 添加相对定位以便伪元素定位 */
  44. cursor: pointer;
  45. /* 添加鼠标悬停效果 */
  46. img {
  47. width: 100%;
  48. /* 确保图片占满按钮 */
  49. height: 100%;
  50. /* 确保图片占满按钮 */
  51. object-fit: contain;
  52. /* 确保图片不失真 */
  53. }
  54. &:hover::after {
  55. opacity: 1 !important;
  56. /* 使用 !important 来测试 */
  57. }
  58. }
  59. /* 其他样式保持不变 */
  60. .gradient-background {
  61. background: linear-gradient(135deg, #ff7e5f, #feb47b);
  62. /* 你可以根据需要调整渐变色 */
  63. color: white;
  64. /* 确保文字颜色与背景对比明显 */
  65. border: none;
  66. /* 去掉默认边框 */
  67. }
  68. // 头部样式
  69. .brand-header {
  70. padding: 8px var(--page-padding);
  71. display: flex;
  72. justify-content: center;
  73. .brand-title {
  74. display: flex;
  75. justify-content: center;
  76. width: 100%;
  77. .title-container {
  78. display: flex;
  79. align-items: center;
  80. gap: 4px;
  81. font-family: 'Courier New', Courier, monospace;
  82. font-size: 16px;
  83. font-weight: 600;
  84. span {
  85. color: var(--primary-color);
  86. }
  87. img {
  88. height: 18px;
  89. width: 18px;
  90. margin-top: 2px;
  91. }
  92. }
  93. }
  94. }
  95. // 统计信息样式
  96. .stats-section {
  97. display: flex;
  98. justify-content: space-around;
  99. padding: 10px 0;
  100. background-color: var(--primary-color);
  101. color: white;
  102. border-radius: 8px;
  103. margin-bottom: 10px;
  104. .stat-item {
  105. text-align: center;
  106. font-size: 1.2em;
  107. .stat-value {
  108. font-size: 2em;
  109. margin-bottom: 5px;
  110. }
  111. .stat-label {
  112. font-size: 1em;
  113. }
  114. }
  115. }
  116. // 轮播图样式
  117. .banner-section {
  118. margin: 16px var(--page-padding);
  119. .banner-container {
  120. position: relative;
  121. overflow: hidden;
  122. border-radius: 12px;
  123. box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  124. background-color: white;
  125. .banner-img-container {
  126. display: flex;
  127. transition: transform 0.5s ease;
  128. }
  129. img {
  130. width: 100%;
  131. height: auto;
  132. }
  133. .banner-indicators {
  134. position: absolute;
  135. bottom: 16px;
  136. left: 50%;
  137. transform: translateX(-50%);
  138. display: flex;
  139. gap: 8px;
  140. .indicator {
  141. width: 10px;
  142. height: 10px;
  143. border-radius: 50%;
  144. background-color: rgba(0, 0, 0, 0.5);
  145. cursor: pointer;
  146. &.active {
  147. background-color: #ffcc00;
  148. }
  149. }
  150. }
  151. .banner-arrows {
  152. position: absolute;
  153. top: 50%;
  154. transform: translateY(-50%);
  155. display: flex;
  156. gap: 16px;
  157. .arrow-btn {
  158. background-color: rgba(0, 0, 0, 0.5);
  159. padding: 8px;
  160. border-radius: 50%;
  161. color: white;
  162. cursor: pointer;
  163. ion-icon {
  164. font-size: 24px;
  165. }
  166. }
  167. }
  168. }
  169. }
  170. // 功能按钮区域样式
  171. .features-section {
  172. display: flex;
  173. justify-content: space-between;
  174. padding: 16px;
  175. gap: 12px;
  176. .feature-button {
  177. flex: 1;
  178. height: 100px;
  179. margin: 0;
  180. --background: #ffffff;
  181. --background-activated: #f5f5f5;
  182. --border-radius: 20px;
  183. --box-shadow: none;
  184. .button-content {
  185. display: flex;
  186. flex-direction: column;
  187. align-items: center;
  188. width: 100%;
  189. gap: 8px;
  190. }
  191. .icon-wrapper {
  192. width: 48px;
  193. height: 48px;
  194. border-radius: 16px;
  195. display: flex;
  196. align-items: center;
  197. justify-content: center;
  198. &.light-blue {
  199. background: #e3f2fd;
  200. }
  201. &.light-pink {
  202. background: #fce4ec;
  203. }
  204. &.light-purple {
  205. background: #f3e5f5;
  206. }
  207. ion-icon {
  208. font-size: 24px;
  209. color: var(--primary-color);
  210. }
  211. }
  212. span {
  213. font-size: 14px;
  214. color: var(--primary-color);
  215. font-weight: 500;
  216. }
  217. }
  218. }
  219. .stories-section {
  220. padding: 0 16px 16px;
  221. ion-card {
  222. margin: 0;
  223. border-radius: 20px;
  224. box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  225. background-color: rgba(255, 255, 255, 0.5); // 设置背景颜色为白色,透明度为 0.5
  226. .card-header-content {
  227. display: flex;
  228. justify-content: space-between;
  229. align-items: center;
  230. padding: 16px;
  231. ion-card-title {
  232. font-size: 18px;
  233. font-weight: 600;
  234. margin: 0;
  235. color: var(--primary-color);
  236. }
  237. }
  238. }
  239. ion-list {
  240. ion-item {
  241. padding: 12px;
  242. border-bottom: 1px solid #ddd;
  243. h2 {
  244. margin: 0;
  245. font-size: 14px;
  246. font-weight: 500;
  247. color: var(--primary-color);
  248. }
  249. p {
  250. margin: 4px 0 0;
  251. font-size: 12px;
  252. color: var(--text-color);
  253. }
  254. ion-row {
  255. margin-top: 8px;
  256. }
  257. }
  258. }
  259. .empty-state {
  260. text-align: center;
  261. padding: 32px 16px;
  262. ion-icon {
  263. font-size: 48px;
  264. color: #999;
  265. margin-bottom: 16px;
  266. }
  267. h3 {
  268. margin: 0 0 8px;
  269. font-size: 16px;
  270. color: var(--primary-color);
  271. }
  272. p {
  273. margin: 0;
  274. font-size: 14px;
  275. color: var(--text-color);
  276. }
  277. }
  278. }
  279. // 响应式调整
  280. @media (max-width: 320px) {
  281. .features-section {
  282. .feature-button {
  283. height: 90px;
  284. .icon-wrapper {
  285. width: 40px;
  286. height: 40px;
  287. ion-icon {
  288. font-size: 20px;
  289. }
  290. }
  291. span {
  292. font-size: 12px;
  293. }
  294. }
  295. }
  296. }