index.less 2.32 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
.field {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  max-height: 20rem;
  overflow-y: scroll;
  .ant-card {
    width: 80%;
    margin-left: 4rem;
  }
  .ant-card-head-title {
    flex: none;
  }
  .ant-card-extra {
    margin-left: 0.2rem;
  }
  .ant-card-body {
    // padding: 0 ;
    height: 15rem;
21
    overflow-y: scroll;
22 23 24 25
  }
  .ant-drawer-body {
    overflow: hidden;
  }
26
}
shaoan123's avatar
shaoan123 committed
27
.containerBox {
28 29 30
  width: 100%;
  // height: calc(100vh - 90px);
  height: 100%;
31
  overflow: hidden;
32
  background: #ffffff;
33 34 35 36 37 38 39 40 41
  .ant-table-wrapper {
    height: calc(100% - 56px);
  }
  .ant-table {
    height: 100%;
  }
  .ant-table-container {
    height: 100%;
  }
42 43 44 45 46 47 48 49 50 51 52 53 54
  .ant-table.ant-table-small .ant-table-tbody .ant-table-wrapper:only-child .ant-table {
    margin-left: 0;
  }
  .ant-table.ant-table-bordered > .ant-table-container {
    border: none;
  }
  .clickRowStyle {
    background: #cfe7fd;
  }
  .ant-table-thead tr th {
    font-weight: 600;
    color: rgba(0, 0, 0, 0.85);
  }
shaoan123's avatar
shaoan123 committed
55
}
56

57 58 59 60
.paneTitle {
  font-weight: bold;
  font-size: 18px;
  margin: 0 0 0.5rem 4rem;
61
}
62 63
.listEvent {
  display: flex;
64
}
65 66 67 68
.cardList {
  .ant-card-body {
    overflow-y: none !important;
  }
69
}
70 71 72 73
.unit {
  display: flex;
  margin-left: 1.1rem;
  align-items: center;
74
}
75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90
.listCard {
  display: flex;
  .cardItem {
    width: 50%;
    padding: 0.5rem;
  }
  .cardContent {
    height: 25rem;
    overflow-y: scroll;
    width: 19.5rem;
  }
  .cardItemData {
    padding: 1rem;
    border: 1px solid #b5b8c8;
    margin-bottom: 1rem;
  }
91 92
}
.sortable-ghost {
93 94 95 96 97 98 99 100 101 102 103 104 105 106 107
  border-bottom: 2px dashed #1890ff;
}

.doctorTable {
  margin-bottom: 16px;
  table {
    width: 100%;
    td {
      padding: 6px;
      border: 1px solid #e8e8e8;
    }
    thead {
      tr {
        font-weight: 600;
        background: #fafafa;
108
      }
109 110 111 112
    }
    tbody {
      tr:hover {
        background-color: #ededed;
113 114 115
      }
    }
  }
116 117 118 119 120 121 122 123 124 125
}
.config {
  display: flex;
  padding: 1rem 0 0.5rem 0.5rem;
  justify-content: space-between;
  width: calc(100% - 10px);
  .title {
    font-size: 18px;
    color: rgba(0, 114, 255, 1);
    font-weight: bold;
126
  }
127 128
  .btn {
    display: flex;
皮倩雯's avatar
皮倩雯 committed
129
    justify-content: flex-end;
130
    width: 25rem;
131 132 133 134 135 136
  }
  .ant-btn {
    display: flex;
    align-items: center;
  }
}
137 138 139 140 141 142 143
.PerviewParse{
  .ant-modal-wrap{
    overflow: hidden;
  }
  .ant-radio-wrapper {
    margin-bottom: 2px;
  }
144
}
145