drift-bottle.component_20241224143746.scss 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. /* drift-bottle.component.scss */
  2. :host {
  3. display: block;
  4. }
  5. /* 设置页面背景色 */
  6. ion-content {
  7. --background: transparent; /* 确保内容背景透明 */
  8. position: relative;
  9. height: 100vh; /* 确保内容高度占满整个视口 */
  10. }
  11. .top-image {
  12. position: absolute;
  13. top: 0;
  14. left: 0;
  15. width: 100%;
  16. height: 80%; /* 图片占据页面的70%高度 */
  17. overflow: hidden;
  18. z-index: 0; /* 确保图片在工具栏之下 */
  19. }
  20. .top-image img {
  21. width: 100%;
  22. height: 100%;
  23. object-fit: fill; /* 使图片填充整个容器并可能被拉伸 */
  24. }
  25. ion-button {
  26. font-size: 15px; /* 增大字体大小 */
  27. margin-top: 8px; /* 上间距,仅在需要时添加 */
  28. text-transform: none; /* 按钮文字不变形 */
  29. height: 35px;
  30. }
  31. /* 其他内容的样式可以根据需要添加 */
  32. .content-container {
  33. position: relative;
  34. z-index: 1; /* 确保其他内容在图片之上 */
  35. padding: 20px;
  36. margin-top: 120%; /* 内容从图片下方开始 */
  37. }