appointment.css 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. .bgc-ebf4f3{
  2. background-color: #EBF4F3;
  3. }
  4. .bgc-f6f6f6{
  5. background-color: #f6f6f6;
  6. }
  7. .c-fea7a8{
  8. color: #FEA7A8;
  9. }
  10. .c-f4b87f{
  11. color: #F4B87F;
  12. }
  13. .div-table{
  14. display: table;
  15. width: 100%;
  16. border-top: 1px solid #e1e1e1;
  17. border-left: 1px solid #e1e1e1;
  18. }
  19. .table-row{
  20. display: table-row;
  21. }
  22. .table-cell{
  23. display: table-cell;
  24. border-bottom: 1px solid #e1e1e1;
  25. border-right: 1px solid #e1e1e1;
  26. padding: 15px 0 8px;
  27. text-align: center;
  28. vertical-align: middle;
  29. }
  30. .table-cell.arrow-cell{
  31. width: 54px;
  32. }
  33. .table-cell.arrow-cell.active{
  34. background-color: #0AD8C8;
  35. }
  36. .table-cell.arrow-cell.active>i{
  37. color: #fff;
  38. }
  39. .table-cell.active{
  40. border: 2px solid #0AD8C8;
  41. position: relative;
  42. }
  43. .table-cell.active:after{
  44. content: '';
  45. position: absolute;
  46. right: 0;
  47. bottom: 0;
  48. width: 25px;
  49. height: 27px;
  50. background: url(../../../images/icon_xuanzhong.png) no-repeat;
  51. background-size: 100% 100%;
  52. }
  53. .table-cell.arrow-cell.active:after{
  54. background: none;
  55. }
  56. .yy-tag{
  57. display: inline-block;
  58. background-color: #c1c1c1;
  59. color: #fff;
  60. padding: 1px 10px;
  61. border-radius: 12px;
  62. margin-top: 5px;
  63. }
  64. .yy-tag.active{
  65. background-color: #0AD8C8;
  66. }
  67. .source-tag{
  68. border: 1px solid #e1e1e1;
  69. width: calc(100% - 20px);
  70. padding: 10px 0;
  71. }
  72. .source-tag span{
  73. display: inline-block;
  74. width: 50%;
  75. text-align: center;
  76. }
  77. .source-tag span:first-child{
  78. border-right: 1px solid #e1e1e1;
  79. }
  80. .source-tag.active{
  81. border: 1px solid #0AD8C8;
  82. position: relative;
  83. }
  84. .source-tag.active:after{
  85. content: '';
  86. position: absolute;
  87. right: 0;
  88. bottom: 0;
  89. width: 25px;
  90. height: 27px;
  91. background: url(../../../images/icon_xuanzhong.png) no-repeat;
  92. background-size: 100% 100%;
  93. }
  94. .c-border-t-dashed{
  95. border-bottom: 1px dashed #e1e1e1;
  96. }
  97. .btn-white{
  98. border-color: #d1d7d4;
  99. color: #d1d7d4;
  100. }
  101. .c-border-dashed{
  102. border: 1px dashed #e1e1e1;
  103. }