index.css 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  1. .doctor-index-content {
  2. position: relative; }
  3. .doctor-index-content .tab {
  4. height: 80upx; }
  5. .doctor-index-content .tab::after {
  6. display: block;
  7. clear: both;
  8. content: ""; }
  9. .doctor-index-content .tab .item {
  10. float: left;
  11. width: 50%;
  12. height: 80upx;
  13. text-align: center;
  14. line-height: 80upx; }
  15. .doctor-index-content .tab .item text {
  16. display: inline-block;
  17. height: 100%;
  18. padding: 0 20upx;
  19. box-sizing: border-box; }
  20. .doctor-index-content .tab .item.active text {
  21. border-bottom: 1px solid #007AFF; }
  22. .doctor-index-content .search {
  23. height: 100upx;
  24. display: flex;
  25. justify-content: space-between;
  26. align-items: center;
  27. padding: 0 28upx 0 60upx; }
  28. .doctor-index-content .search .inp {
  29. width: 350upx;
  30. display: flex;
  31. justify-content: flex-start;
  32. align-items: center;
  33. height: 60upx; }
  34. .doctor-index-content .search .inp input {
  35. height: 100%;
  36. margin-left: 14upx;
  37. display: inline-block;
  38. font-size: 24upx;
  39. color: #999999; }
  40. .doctor-index-content .search .inp input::-webkit-input-placeholder {
  41. font-size: 24upx;
  42. color: #999999; }
  43. .doctor-index-content .search .searchBt button {
  44. width: 130upx;
  45. height: 60upx;
  46. line-height: 60upx;
  47. background-color: #3384FF;
  48. text-align: center;
  49. color: #fff;
  50. font-size: 24upx; }
  51. .doctor-index-content .more-filter {
  52. padding: 20upx;
  53. border-top: 1px solid #eaeaea; }
  54. .doctor-index-content .more-filter .filterBt {
  55. padding-left: 20upx; }
  56. .doctor-index-content .more-filter .filterBt .zhcx-iconfont {
  57. font-size: 16upx;
  58. padding-left: 10upx; }
  59. .doctor-index-content .more-filter .uni-input {
  60. border: 1px solid #ccc;
  61. display: inline-block;
  62. padding: 10upx 20upx; }
  63. .doctor-index-content .tab-cont {
  64. background-color: #fff;
  65. padding-bottom: 30upx; }
  66. .doctor-index-content .tab-cont .item-container {
  67. margin-top: 65upx; }
  68. .doctor-index-content .tab-cont .item-container .item {
  69. position: relative;
  70. padding: 20upx;
  71. background-color: #fff;
  72. border-bottom: 1upx solid #eaeaea; }
  73. .doctor-index-content .tab-cont .item-container .item .avatar {
  74. overflow: hidden;
  75. position: absolute;
  76. left: 20upx;
  77. top: 20upx; }
  78. .doctor-index-content .tab-cont .item-container .item .avatar, .doctor-index-content .tab-cont .item-container .item .avatar .pic {
  79. width: 86upx;
  80. height: 86upx;
  81. border-radius: 50%; }
  82. .doctor-index-content .tab-cont .item-container .item .item-info {
  83. margin-left: 120upx;
  84. line-height: 1; }
  85. .doctor-index-content .tab-cont .item-container .item .item-info .user {
  86. display: flex;
  87. justify-content: flex-start;
  88. align-items: center; }
  89. .doctor-index-content .tab-cont .item-container .item .item-info .user .name {
  90. color: #333;
  91. font-size: 30upx;
  92. width: 300upx;
  93. white-space: nowrap;
  94. overflow: hidden;
  95. text-overflow: ellipsis; }
  96. .doctor-index-content .tab-cont .item-container .item .item-info .user .gender {
  97. position: relative;
  98. padding: 0 30upx; }
  99. .doctor-index-content .tab-cont .item-container .item .item-info .user .gender::after {
  100. width: 16upx;
  101. height: 16upx;
  102. border-radius: 50%;
  103. position: absolute;
  104. left: 10upx;
  105. top: 50%;
  106. transform: translateY(-50%);
  107. background-color: #1890FF;
  108. display: block;
  109. content: ""; }
  110. .doctor-index-content .tab-cont .item-container .item .item-info .user .gender.woman::after {
  111. background-color: red; }
  112. .doctor-index-content .tab-cont .item-container .item .item-info .illnessType {
  113. padding-top: 24upx;
  114. color: #424242;
  115. font-size: 28upx; }
  116. .doctor-index-content .tab-cont .item-container .item .item-info .time {
  117. color: #999;
  118. font-size: 28upx;
  119. padding-top: 24upx; }
  120. .doctor-index-content .zhcx-modal {
  121. position: fixed;
  122. top: 0;
  123. left: 0;
  124. right: 0;
  125. bottom: 0;
  126. background-color: #fff;
  127. overflow-y: auto;
  128. z-index: 999; }