/******** radius *******/
/******** 间隙 *******/
/******** fontSize *******/
/******** 组件尺寸 *******/
/******** z-index *******/
/******** borderSize *******/
/******** borderStyle *******/
/******** shadow distance *******/
/******** size *******/
/******** spacing *******/
/******** shadow *******/
/******** opacity *******/
/******** fontWeight ********/
/******** Animation *******/
/******** color *******/
/******** diff *******/
/******** icon hover *******/
/******** media *******/
/**********************************************
 * size:  small / default / large
 **********************************************/
.pd-List {
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  width: 100%;
  border-radius: 2px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--color-text-1);
  overflow-y: auto;
  border: 1px solid var(--color-fill-3);
}
.pd-List-wrapper::after {
  content: '';
  display: block;
  visibility: hidden;
  clear: both;
}
.pd-List-small > .pd-List-header {
  padding: 8px 16px;
}
.pd-List-small > .pd-List-footer,
.pd-List-small > .pd-List-content > .pd-List-item,
.pd-List-small > .pd-List-content .pd-List-row-col > .pd-List-item,
.pd-List-small > .pd-List-content.pd-List-virtual .pd-List-item {
  padding: 8px 16px;
}
.pd-List-middle > .pd-List-header {
  padding: 10px 16px;
}
.pd-List-middle > .pd-List-footer,
.pd-List-middle > .pd-List-content > .pd-List-item,
.pd-List-middle > .pd-List-content .pd-List-row-col > .pd-List-item,
.pd-List-middle > .pd-List-content.pd-List-virtual .pd-List-item {
  padding: 12px 16px;
}
.pd-List-large > .pd-List-header {
  padding: 16px 16px;
}
.pd-List-large > .pd-List-footer,
.pd-List-large > .pd-List-content > .pd-List-item,
.pd-List-large > .pd-List-content .pd-List-row-col > .pd-List-item,
.pd-List-large > .pd-List-content.pd-List-virtual .pd-List-item {
  padding: 16px 16px;
}
.pd-List-header,
.pd-List-item:not(:last-child) {
  border-bottom: 1px solid var(--color-fill-3);
}
.pd-List-footer {
  border-top: 1px solid var(--color-fill-3);
}
.pd-List-no-border {
  border: none;
}
.pd-List-no-split .pd-List-header,
.pd-List-no-split .pd-List-footer,
.pd-List-no-split .pd-List-item {
  border: none;
}
.pd-List-header {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--color-text-1);
}
.pd-List-item {
  display: flex;
  justify-content: space-between;
  box-sizing: border-box;
  width: 100%;
  overflow: hidden;
}
.pd-List-item-main {
  flex: 1;
  overflow: hidden;
}
.pd-List-item-main .pd-List-item-action:not(:first-child) {
  margin-top: 4px;
}
.pd-List-item-meta {
  display: flex;
  align-items: center;
  padding: 4px 0;
}
.pd-List-item-meta-avatar {
  display: flex;
}
.pd-List-item-meta-avatar:not(:last-child) {
  margin-right: 16px;
}
.pd-List-item-meta-title {
  font-weight: 500;
  color: var(--color-text-1);
}
.pd-List-item-meta-title:not(:last-child) {
  margin-bottom: 2px;
}
.pd-List-item-meta-description {
  color: var(--color-text-2);
}
.pd-List-item-action {
  display: flex;
  flex-wrap: nowrap;
  align-self: center;
  list-style: none;
}
.pd-List-item-action > li {
  display: inline-block;
  cursor: pointer;
}
.pd-List-item-action > li:not(:last-child) {
  margin-right: 4px;
}
.pd-List-hoverable .pd-List-item:hover {
  background-color: var(--color-fill-1);
}
.pd-List-pagination {
  float: right;
  margin-top: 24px;
}
.pd-List-pagination::after {
  display: block;
  clear: both;
  height: 0;
  content: '';
  visibility: hidden;
  overflow: hidden;
}
.pd-List-scroll-loading {
  display: flex;
  align-items: center;
  justify-content: center;
}
.pd-List-content {
  flex: 1;
}
.pd-List-content .pd-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
