.com-cover {
    height: 250px;
    background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
    color: white;
}

.glass {
    display: inline-block;
    padding: 35px;

    border: 1px solid rgba(255, 255, 255, 0.25);
    background-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.3);

    backdrop-filter: blur(15px);
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.multiline-ellipsis {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;

  padding: 15px 50px;

  line-clamp: 3;
  -webkit-line-clamp: 3; /* 设置显示的行数 */
  line-height: 30px; /* 设置行高 */
  height: 105px; /* 根据行高和行数设置容器高度 */
}


.nav-tabs { border-bottom: 1px solid #003366; }
.nav-tabs a { color: black; }
.nav-tabs .nav-link.active { background-color: #003366; color: white; border: 1px solid #003366; }

.tab-content { min-height: 500px; }

.table { font-size: 14px; }

#myTable {
    font-size: 12px;
    width: 100%;
    box-sizing: border-box;
}

#myTable th, #myTable td {
    padding: 0.75em;
}

#myTable_wrapper {
    font-size: 12px;
}