doctorWhoAnother.css 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. @charset "UTF-8";
  2. #content{
  3. background: #fff;
  4. }
  5. .dept-title{
  6. background: #fff;
  7. display: flex;
  8. justify-content: space-between;
  9. padding: 10px;
  10. border-bottom: 1px #ebebeb solid;
  11. margin-bottom: 10px;
  12. }
  13. .dept-title .dept-text-left{
  14. float: left;
  15. font-size: .7rem;
  16. }
  17. .dept-title .dept-text-right{
  18. float: right;
  19. color: #00a8a8;
  20. }
  21. .dept-favorite{
  22. float: right;
  23. margin-right: 10px;
  24. }
  25. .dept-favorite button{
  26. color: #00a8a8;padding: 0 10px;background: #fff;border: 1px #00a8a8 solid;
  27. }
  28. .doctor{
  29. width: 40%;
  30. margin: 0 auto;
  31. text-align: center;
  32. }
  33. .doctor img{
  34. width: 100%;
  35. border-radius: 100%;
  36. margin-bottom: 5px;
  37. }
  38. .doctor .title{
  39. color: #a9a9a9;
  40. }
  41. .context{
  42. padding: 10px;
  43. }
  44. .context p{
  45. margin-bottom: 5px;
  46. }
  47. .fixedbox{
  48. position: fixed;
  49. width: 100%;
  50. bottom: 0;
  51. }
  52. .fixedbox button{
  53. width: 100%;
  54. background: #00a8a8;
  55. border-radius: 0;
  56. color: #fff;
  57. }
  58. .lists{
  59. display: none;
  60. }
  61. .lists.active{
  62. display: block;
  63. }
  64. .lists .wrap{
  65. background: rgba(0, 0, 0, .6);
  66. width: 100%;
  67. height: 100%;
  68. position: absolute;
  69. top: 0;
  70. }
  71. .lists .subscribeList{
  72. position: fixed;
  73. width: 100%;
  74. bottom: 0;
  75. max-height: 80%;
  76. overflow: auto;
  77. }
  78. .close{
  79. font-size: 2rem;
  80. color: #00a8a8;
  81. }