html, body {
  width: 100%;
  height: 100%;
}
#t-section {
  width: 100%;
  position: absolute;
  top: 56px;
  height: calc(100% - 56px)
}

.card-panel {
  position: relative;
  font-family: 'Poppins'
}
.card-panel .card {
  flex-direction: column;
  width: 160px;
  height: 235px;
  display: inline-block;
  margin: 10px;
}
.card-panel .card .card-images {
  background: rgba(41,119,115,0.2);
  width: 100%;
  height: 160px;
}
.card-panel .card .card-images img {
  width: 100%;
  height: 100%;
}
.card-panel .card .card-category {
  padding: 0 8px;
  font-size: 11px;
}
.card-panel .card .card-title {
  height: 30px;
  line-height: 30px;
  display: block;
  overflow: hidden;
  padding: 0 8px;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin: 0;
}
.card-panel .card .card-price {
  height: 20px;
  line-height: 20px;
  display: block;
  overflow: hidden;
  padding: 0 8px;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-align: right;
  color: var(--theme-6);
  font-weight: bold
}