.component-card {
  border: 1px solid #EDEEF2;
  border-radius: 4px;
  padding: 0 16px;
}
.component-card .title {
  padding: 20px 0;
  border-bottom: 1px solid #EDEEF2;
  display: flex;
  justify-content: space-between;
}
.component-card .title-name {
  line-height: 21px;
  font-size: 16px;
  font-weight: bold;
  color: #15213A;
  position: relative;
}
.component-card .title-name::after {
  content: '';
  width: 100%;
  height: 4px;
  background: var(--color);
  transform: skewX(20deg);
  position: absolute;
  left: 0;
  bottom: -20px;
}
.component-card .title .more {
  line-height: 21px;
  font-size: 14px;
  color: #777E8E;
  cursor: pointer;
}
.component-card .title .more:hover {
  color: #1259F0;
}
.component-card .card-content {
  padding: 24px 0;
}
.component-card .card-content .swiper-wrapper {
  transition-timing-function: linear;
}
