index.scss 3.1 KB

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