index.css 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  1. .content .tab {
  2. height: 80upx; }
  3. .content .tab::after {
  4. display: block;
  5. clear: both;
  6. content: ""; }
  7. .content .tab .item {
  8. float: left;
  9. width: 25%;
  10. height: 80upx;
  11. text-align: center;
  12. line-height: 80upx; }
  13. .content .tab .item text {
  14. display: inline-block;
  15. height: 100%;
  16. padding: 0 20upx;
  17. box-sizing: border-box;
  18. font-size: 28upx;
  19. color: #333; }
  20. .content .tab .item.active text {
  21. border-bottom: 1px solid #007AFF;
  22. color: #007AFF; }
  23. .content .search {
  24. height: 100upx;
  25. display: flex;
  26. justify-content: space-between;
  27. align-items: center;
  28. padding: 0 28upx 0 60upx; }
  29. .content .search .inp {
  30. display: flex;
  31. justify-content: flex-start;
  32. align-items: center;
  33. height: 60upx; }
  34. .content .search .inp .search-inp {
  35. height: 100%;
  36. margin-left: 14upx;
  37. display: inline-block;
  38. font-size: 24upx;
  39. color: #999999; }
  40. .content .search .inp .search-inp::-webkit-input-placeholder {
  41. font-size: 24upx;
  42. color: #999999; }
  43. .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. .content .tab-cont {
  52. padding-bottom: 30upx; }
  53. .content .tab-cont .item-container .item {
  54. position: relative;
  55. padding: 20upx;
  56. background-color: #fff;
  57. border-bottom: 1upx solid #eaeaea; }
  58. .content .tab-cont .item-container .item .avatar {
  59. overflow: hidden;
  60. position: absolute;
  61. left: 20upx;
  62. top: 20upx; }
  63. .content .tab-cont .item-container .item .avatar, .content .tab-cont .item-container .item .avatar .pic {
  64. width: 86upx;
  65. height: 86upx;
  66. border-radius: 50%; }
  67. .content .tab-cont .item-container .item .item-info {
  68. margin-left: 120upx;
  69. line-height: 1; }
  70. .content .tab-cont .item-container .item .item-info .doctor {
  71. display: flex;
  72. justify-content: space-between;
  73. align-items: center; }
  74. .content .tab-cont .item-container .item .item-info .doctor .lf {
  75. display: flex;
  76. justify-content: flex-start;
  77. align-items: center; }
  78. .content .tab-cont .item-container .item .item-info .doctor .lf .name {
  79. color: #333;
  80. font-size: 30upx;
  81. max-width: 300upx;
  82. white-space: nowrap;
  83. overflow: hidden;
  84. text-overflow: ellipsis; }
  85. .content .tab-cont .item-container .item .item-info .doctor .lf .status {
  86. height: 28upx;
  87. line-height: 28upx;
  88. padding: 0 10upx;
  89. background-color: #409eff;
  90. color: #fff;
  91. margin-left: 20upx;
  92. font-size: 22upx; }
  93. .content .tab-cont .item-container .item .item-info .doctor .diagnose-status {
  94. height: 50upx;
  95. color: #409eff;
  96. line-height: 50upx; }
  97. .content .tab-cont .item-container .item .item-info .jobTitle-box {
  98. color: #666;
  99. font-size: 26upx;
  100. padding-top: 24upx; }
  101. .content .tab-cont .item-container .item .item-info .jobTitle-box .jobTitle {
  102. padding-right: 20upx; }
  103. .content .tab-cont .item-container .item .item-info .doctorHospital {
  104. color: #424242;
  105. padding-top: 10upx;
  106. font-size: 28upx; }
  107. .content .tab-cont .item-container .item .item-info .time {
  108. color: #999;
  109. font-size: 28upx;
  110. padding-top: 24upx; }
  111. .content .zhcx-modal {
  112. position: fixed;
  113. top: 0;
  114. left: 0;
  115. right: 0;
  116. bottom: 0;
  117. background-color: #fff;
  118. overflow-y: auto;
  119. z-index: 999; }