123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275 |
-
-
-
-
-
-
-
-
-
- .marquee-container {
- width: 100%;
- height: 100px;
- overflow: hidden;
- position: relative;
- background-color: #fff;
- border: 1px solid #ccc;
- }
- .marquee {
- display: flex;
- animation: scroll 15s linear infinite;
- }
- .card {
- min-width: 150px;
- height: 80px;
- margin: 10px;
- background-color: #4CAF50;
- color: white;
- display: flex;
- align-items: center;
- justify-content: center;
- border-radius: 5px;
- box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
- }
- @keyframes scroll {
- 0% {
- transform: translateX(0);
- }
- 100% {
- transform: translateX(-100%);
- }
- }
- ion-button {
- --background: #000;
- --background-hover: #9ce0be;
- --background-activated: #88f4be;
- --background-focused: #88f4be;
- --color: #ecc422;
- --border-radius: 15px;
- --border-color: #000;
- --border-style: solid;
- --border-width: 1px;
- --box-shadow: 0 2px 6px 0 rgb(0, 0, 0, 0.25);
- --ripple-color: deeppink;
- --padding-top: 10px;
- --padding-bottom: 10px;
- }
- .searchbar-container {
- display: flex;
- align-items: center;
- gap: 2px;
- }
- .searchbar-container ion-searchbar {
- flex: 1;
- }
- .searchbar-container ion-button {
- flex-shrink: 0;
- padding: 0 16px;
- font-size: 16px;
- }
- .inquery{
- width:100%;
- height:100px;
-
- padding: 5px 0px;
- box-sizing: border-box;
- margin: 0px 0px;
- ion-button{
- width: 100%;
- height: 100%;
- display: inline-block;
- }
- }
- .inquery-ai{
- height: 100%;
- width: 48%;
- display: inline-block;
- margin: 0;
- padding: 0;
- }
- .inquery-ai img{
- width:50%;
- height: 100%;
- margin: 0;
- padding: 0;
- border-radius: 10px;
- box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
- }
- .inquery-human{
- height: 100%;
- width: 48%;
- display: inline-block;
- margin-left: 2%;
- padding: 0;
- }
- .inquery-human img{
- width:50%;
- height: 100%;
- margin: 0;
- padding: 0;
- border-radius: 10px;
- box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
- }
- ion-item {
- margin-bottom: 12px;
- padding: 12px;
- border-radius: 8px;
- box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
- background-color: #ffffff;
- }
- ion-thumbnail {
- width: 60px;
- height: 60px;
- border-radius: 50%;
- }
- .doctor-info {
- margin-left: 12px;
- display: flex;
- flex-direction: column;
- justify-content: center;
- }
- .doctor-info h3 {
- margin: 0;
- font-size: 16px;
- font-weight: bold;
- }
- .doctor-info p {
- margin: 4px 0;
- font-size: 14px;
- color: #666;
- }
- .function-area {
- margin: 16px 0;
- padding: 0 16px;
- background: white;
- border-radius: 10px;
- box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
- width: 100%;
- max-width: 960px;
- }
-
- .function-row {
- display: flex;
- justify-content: space-between;
- align-items: center;
- overflow-x: auto;
- scroll-snap-type: x mandatory;
- -webkit-overflow-scrolling: touch;
- padding: 16px 0;
-
- .function-item {
- flex: 1 0 20%;
- min-width: 0;
- display: flex;
- flex-direction: column;
- align-items: center;
- text-align: center;
- scroll-snap-align: start;
-
- .icon {
- font-size: 24px;
- margin-bottom: 8px;
- }
-
- .label {
- font-size: 14px;
- color: #333;
- }
- }
- }
- ion-col{
- display: flex;
- justify-content: center;
- align-items: center;
- }
- ion-card {
- border-radius: 15px;
- background-color: #f9f9f9;
- box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
- border: 1px solid #e0e0e0;
- }
- ion-card:hover {
- transform: scale(1.02);
- transition: transform 0.2s;
- }
|