123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218 |
- // @import '@fortawesome/fontawesome-free/css/all.min.css'; // 字体图标
- // @import 'highlight.js/scss/monokai.scss'; // 代码高亮 - monokai主题
- .custom-toolbar {
- --background: rgba(255, 255, 255, 0.8); /* 使工具栏背景透明 */
- display: flex; /* 使用 Flexbox 布局 */
- justify-content: center; /* 水平居中 */
- align-items: center; /* 垂直居中 */
- padding: 0; /* 去掉默认内边距 */
- }
- .search-bar {
- padding: 10px;
- text-align: center;
- }
-
- .custom-searchbar {
- --background: #ffffff;
- --border-radius: 20px;
- box-shadow: 0 2px 6px rgba(0,0,0,0.1);
- }
- .header {
- height: 80px;
- margin-top:-10px
- }
- .knowledge {
- height: 100%;
- width: 100%;
- }
- .content {
- margin-top: -5px;
- -height: 100%;
- width: 100%;
- }
- ion-card-header {
- font-size: 1.5em;
- height: auto;
- }
- ion-card {
- width: 100%;
- height: 100%;
- margin: 0;
- padding: 0;
- border-radius: 0;
- box-shadow: none;
- }
- ion-card-content {
- font-size: 1.2em;
- width: 100%;
- height: auto;
- }
- ion-segment-view {
- height: auto;
- width: 100%;
- }
- ion-segment-content {
- // display: flex;
- align-items: center;
- justify-content: center;
- }
- // ion-segment-content:nth-of-type(5) {
- // background: lightpink;
- // }
- // ion-segment-content:nth-of-type(2) {
- // background: lightblue;
- // }
- // ion-segment-content:nth-of-type(3) {
- // background: lightgreen;
- // }
- .share-modal{
- --height: 30vh;
- --width: 100%;
- --offset-y: 0; /* 确保模态窗口从底部弹出 */
- }
- // 底部弹窗(modal)样式
- .bottom-modal {
- --height: 100vh;
- --width: 100%;
- --offset-y: 0; /* 确保模态窗口从底部弹出 */
-
- .modal-content {
- padding-left: 20px;
- padding-right: 20px;
- }
-
- .image-container {
- display: flex;
- justify-content: center;
- margin-bottom: 16px;
- }
-
- .medicine-image {
- object-fit: cover;
- border-radius: 8px;
- }
- }
- // .tabs {
- // display: flex;
- // justify-content: space-around;
- // padding: 0px 0;
- // background-color: #f8f8f8;
- // }
- // .tabs ion-button {
- // flex: 1;
- // text-align: center;
- // // border: none;
- // --background: transparent;
- // --color-checked: #4caf50;
- // --indicator-color: #4caf50;
- // --color: #666;
- // --color-focused: #4caf50;
- // --color-hover: #4caf50;
- // --color-activated: #4caf50;
- // --color-selected: #4caf50;
- // }
- // .tab {
- // cursor: pointer;
- // padding: 0px 0px;
- // }
- // .tab.active {
- // color: rgb(81, 255, 0);
- // background-color: rgb(255, 255, 255);
- // }
- //
- // 轮播图区域
- .carousel-container {
- position: relative;
- max-width: 800px;
- margin: 0 auto;
- overflow: hidden;
- }
- .carousel {
- display: flex;
- transition: transform 0.5s ease-in-out;
- }
- .slide {
- min-width: 100%;
- }
- .slide img {
- width: 100%;
- height: auto;
- }
- .prev, .next {
- position: absolute;
- top: 50%;
- transform: translateY(-50%);
- background: rgba(0, 0, 0, 0.5);
- color: white;
- padding: 16px;
- border: none;
- cursor: pointer;
- }
- .prev {
- left: 0;
- }
- .next {
- right: 0;
- }
- .dots {
- position: absolute;
- bottom: 20px;
- left: 50%;
- transform: translateX(-50%);
- text-align: center;
- }
- .dot {
- display: inline-block;
- width: 10px;
- height: 10px;
- margin: 0 5px;
- background: #bbb;
- border-radius: 50%;
- cursor: pointer;
- }
- .dot.active {
- background: #717171;
- }
- //
|