/* nav */
.supmenu {
  position: sticky;
  z-index: 10;
  top: 60px;
}

.supmenu.active {
  color: #666ba9
}

/* table */
table {
  border-radius: 20px;
  border-collapse: separate;
  overflow: hidden;
  width: 100%;
}

th,
td {
  padding: 15px 20px;
}

th {
  font-weight: unset;
}

td {
  width: 265px;
}

.row-head {
  line-height: 16px;
  width: 220px;
  padding-right: 30px;
}

.bg-purple {
  background: linear-gradient(0.25turn, #f3f3ff 0%, #d8d8ff 50%, #f3f3ff 100%);
}

.bg-light-purple {
  background-color: #f3f3ff;
}

/* card */

.card.h-100.p-4 {
  background-color: rgba(255, 255, 255, 0.5) !important;
  /* 白色，透明度設為 0.8 */
  border-radius: 10px;
}

p.mb-1 strong {
  color: #494949;

  font-size: 18px;

  line-height: 24px;
  /* 120% */
}

.card-content {
  margin-bottom: -1rem !important;
}

@media (max-width:600px) {
  table {
  overflow-x: auto;
}
}