tab2.page.scss 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218
  1. // @import '@fortawesome/fontawesome-free/css/all.min.css'; // 字体图标
  2. // @import 'highlight.js/scss/monokai.scss'; // 代码高亮 - monokai主题
  3. .custom-toolbar {
  4. --background: rgba(255, 255, 255, 0.8); /* 使工具栏背景透明 */
  5. display: flex; /* 使用 Flexbox 布局 */
  6. justify-content: center; /* 水平居中 */
  7. align-items: center; /* 垂直居中 */
  8. padding: 0; /* 去掉默认内边距 */
  9. }
  10. .search-bar {
  11. padding: 10px;
  12. text-align: center;
  13. }
  14. .custom-searchbar {
  15. --background: #ffffff;
  16. --border-radius: 20px;
  17. box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  18. }
  19. .header {
  20. height: 80px;
  21. margin-top:-10px
  22. }
  23. .knowledge {
  24. height: 100%;
  25. width: 100%;
  26. }
  27. .content {
  28. margin-top: -5px;
  29. -height: 100%;
  30. width: 100%;
  31. }
  32. ion-card-header {
  33. font-size: 1.5em;
  34. height: auto;
  35. }
  36. ion-card {
  37. width: 100%;
  38. height: 100%;
  39. margin: 0;
  40. padding: 0;
  41. border-radius: 0;
  42. box-shadow: none;
  43. }
  44. ion-card-content {
  45. font-size: 1.2em;
  46. width: 100%;
  47. height: auto;
  48. }
  49. ion-segment-view {
  50. height: auto;
  51. width: 100%;
  52. }
  53. ion-segment-content {
  54. // display: flex;
  55. align-items: center;
  56. justify-content: center;
  57. }
  58. // ion-segment-content:nth-of-type(5) {
  59. // background: lightpink;
  60. // }
  61. // ion-segment-content:nth-of-type(2) {
  62. // background: lightblue;
  63. // }
  64. // ion-segment-content:nth-of-type(3) {
  65. // background: lightgreen;
  66. // }
  67. .share-modal{
  68. --height: 30vh;
  69. --width: 100%;
  70. --offset-y: 0; /* 确保模态窗口从底部弹出 */
  71. }
  72. // 底部弹窗(modal)样式
  73. .bottom-modal {
  74. --height: 100vh;
  75. --width: 100%;
  76. --offset-y: 0; /* 确保模态窗口从底部弹出 */
  77. .modal-content {
  78. padding-left: 20px;
  79. padding-right: 20px;
  80. }
  81. .image-container {
  82. display: flex;
  83. justify-content: center;
  84. margin-bottom: 16px;
  85. }
  86. .medicine-image {
  87. object-fit: cover;
  88. border-radius: 8px;
  89. }
  90. }
  91. // .tabs {
  92. // display: flex;
  93. // justify-content: space-around;
  94. // padding: 0px 0;
  95. // background-color: #f8f8f8;
  96. // }
  97. // .tabs ion-button {
  98. // flex: 1;
  99. // text-align: center;
  100. // // border: none;
  101. // --background: transparent;
  102. // --color-checked: #4caf50;
  103. // --indicator-color: #4caf50;
  104. // --color: #666;
  105. // --color-focused: #4caf50;
  106. // --color-hover: #4caf50;
  107. // --color-activated: #4caf50;
  108. // --color-selected: #4caf50;
  109. // }
  110. // .tab {
  111. // cursor: pointer;
  112. // padding: 0px 0px;
  113. // }
  114. // .tab.active {
  115. // color: rgb(81, 255, 0);
  116. // background-color: rgb(255, 255, 255);
  117. // }
  118. //
  119. // 轮播图区域
  120. .carousel-container {
  121. position: relative;
  122. max-width: 800px;
  123. margin: 0 auto;
  124. overflow: hidden;
  125. }
  126. .carousel {
  127. display: flex;
  128. transition: transform 0.5s ease-in-out;
  129. }
  130. .slide {
  131. min-width: 100%;
  132. }
  133. .slide img {
  134. width: 100%;
  135. height: auto;
  136. }
  137. .prev, .next {
  138. position: absolute;
  139. top: 50%;
  140. transform: translateY(-50%);
  141. background: rgba(0, 0, 0, 0.5);
  142. color: white;
  143. padding: 16px;
  144. border: none;
  145. cursor: pointer;
  146. }
  147. .prev {
  148. left: 0;
  149. }
  150. .next {
  151. right: 0;
  152. }
  153. .dots {
  154. position: absolute;
  155. bottom: 20px;
  156. left: 50%;
  157. transform: translateX(-50%);
  158. text-align: center;
  159. }
  160. .dot {
  161. display: inline-block;
  162. width: 10px;
  163. height: 10px;
  164. margin: 0 5px;
  165. background: #bbb;
  166. border-radius: 50%;
  167. cursor: pointer;
  168. }
  169. .dot.active {
  170. background: #717171;
  171. }
  172. //