index.scss 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159
  1. .content{
  2. .tab{
  3. height: 80upx;
  4. &::after{
  5. display: block;
  6. clear: both;
  7. content: "";
  8. }
  9. .item{
  10. float: left;
  11. width: 25%;
  12. height: 80upx;
  13. text-align: center;
  14. line-height: 80upx;
  15. text{
  16. display: inline-block;
  17. height: 100%;
  18. padding: 0 20upx;
  19. box-sizing: border-box;
  20. font-size: 28upx;
  21. color: #333;
  22. }
  23. &.active{
  24. text{
  25. border-bottom: 1px solid #007AFF;
  26. color:#007AFF ;
  27. }
  28. }
  29. }
  30. }
  31. .search{
  32. height: 100upx;
  33. display: flex;
  34. justify-content: space-between;
  35. align-items: center;
  36. padding: 0 28upx 0 60upx;
  37. .inp{
  38. display: flex;
  39. justify-content:flex-start;
  40. align-items: center;
  41. height: 60upx;
  42. .search-inp{
  43. height: 100%;
  44. margin-left: 14upx;
  45. display: inline-block;
  46. font-size: 24upx;
  47. color: #999999;
  48. &::-webkit-input-placeholder {
  49. font-size: 24upx;
  50. color: #999999;
  51. }
  52. }
  53. }
  54. .searchBt{
  55. button{
  56. width: 130upx;
  57. height: 60upx;
  58. line-height: 60upx;
  59. background-color: #3384FF;
  60. text-align: center;
  61. color: #fff;
  62. font-size: 24upx;
  63. }
  64. }
  65. }
  66. .tab-cont{
  67. &{
  68. // background-color:#F5F5F5;
  69. padding-bottom: 30upx;
  70. }
  71. .item-container{
  72. .item{
  73. position: relative;
  74. padding: 20upx;
  75. background-color: #fff;
  76. // margin-bottom: 10upx;
  77. border-bottom: 1upx solid #eaeaea;
  78. .avatar{
  79. overflow: hidden;
  80. position: absolute;
  81. left: 20upx;
  82. top: 20upx;
  83. &,.pic{
  84. width: 86upx;
  85. height: 86upx;
  86. border-radius: 50%;
  87. }
  88. }
  89. .item-info{
  90. margin-left: 120upx;
  91. line-height: 1;
  92. .doctor{
  93. display: flex;
  94. justify-content: space-between;
  95. align-items: center;
  96. .lf{
  97. &{
  98. display: flex;
  99. justify-content: flex-start;
  100. align-items: center;
  101. }
  102. .name{
  103. color: #333;
  104. font-size: 30upx;
  105. max-width: 300upx;
  106. white-space: nowrap;
  107. overflow: hidden;
  108. text-overflow: ellipsis;
  109. }
  110. .status{
  111. height: 28upx;
  112. line-height: 28upx;
  113. padding: 0 10upx;
  114. background-color: #409eff;
  115. color: #fff;
  116. margin-left: 20upx;
  117. font-size: 22upx;
  118. }
  119. }
  120. .diagnose-status{
  121. height: 50upx;
  122. color: #409eff;
  123. line-height: 50upx;
  124. }
  125. }
  126. .jobTitle-box{
  127. color: #666;
  128. font-size: 26upx;
  129. padding-top: 24upx;
  130. .jobTitle{
  131. padding-right: 20upx;
  132. }
  133. }
  134. .doctorHospital{
  135. color: #424242;
  136. padding-top: 10upx;
  137. font-size: 28upx;
  138. }
  139. .time{
  140. color: #999;
  141. font-size: 28upx;
  142. padding-top: 24upx;
  143. }
  144. }
  145. }
  146. }
  147. }
  148. .zhcx-modal{
  149. position: fixed;
  150. top: 0;
  151. left: 0;
  152. right: 0;
  153. bottom: 0;
  154. background-color: #fff;
  155. overflow-y: auto;
  156. z-index:999;
  157. }
  158. }