/* card.css Date:2020-03-23 13:42:08 */

.lg-card-bd:after,
.lg-card-bd:before,
.lg-card-hd:after,
.lg-card-hd:before {
  content: "";
  display: block;
  clear: both;
}

.lg-card-bd {
  word-break: break-all;
  word-wrap: break-word;
}

.lg-card {
  border-radius: 4px;
  border: 1px solid rgba(0, 0, 0, 0.09);
  background-color: #FFF;
  margin-bottom: 8px;
}

.lg-card-hd {
  padding: 12px 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.09);
}

.lg-card-title {
  color: #434343;
  font-size: 16px;
  font-weight: 400;
  float: left;
}

.lg-card-extra {
  float: right;
}

.lg-card-bd {
  padding: 24px;
  width: 100%;
}

.lg-card-fd {
  text-align: center;
  border-top: 1px solid rgba(0, 0, 0, 0.09);
  height: 32px;
  line-height: 32px;
}

.lg-card-fd [class^=lg-icon]:hover {
  color: #0083FF;
  cursor: pointer;
}

.lg-card-fd [class^=lg-col]:not(:first-child) {
  position: relative;
}

.lg-card-fd [class^=lg-col]:not(:first-child):after {
  content: '';
  position: absolute;
  width: 1px;
  display: block;
  left: 0;
  top: 50%;
  margin-top: -8px;
  background-color: rgba(0, 0, 0, 0.09);
  height: 16px;
}

.lg-card-s .lg-card-bd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.lg-card-s .lg-card-img {
  margin-right: 24px;
  overflow: hidden;
  width: 80px;
}

.lg-card-content {
  overflow: hidden;
  padding-top: 16px;
}

.lg-card-content-title {
  width: 100%;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  margin-bottom: 8px;
  color: #262626;
}

.lg-card-content-sub {
  color: #616161;
  font-weight: 400;
}

.lg-card-m .lg-card-fd {
  height: 48px;
  line-height: 48px;
}

.lg-card-m .lg-card-img {
  margin: -24px -24px 0;
}

.lg-card-m .lg-card-img .is-block {
  width: 100%;
}

.has-shadow,
.has-shadow-hover:hover {
  border-color: transparent;
  box-shadow: 2px 2px 10px 0 rgba(0, 0, 0, 0.1);
}

.has-shadow-hover {
  -webkit-transition: box-shadow 300ms;
  transition: box-shadow 300ms;
  box-shadow: 2px 2px 10px 0 rgba(0, 0, 0, 0);
}