/* 自定义样式 */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
 
}  body,html {
    padding: 0;
    margin: 0;
    font-family: -apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Fira Sans,Droid Sans,Helvetica Neue,sans-serif;
    background-color: #000;
    color: #fff
}

/* 导航栏样式 */
.navbar {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

/* 标题样式 */
.section-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #00bfff;
}

/* 卡片样式 */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 0;
    border: 0;
    background-color: white;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* 按钮样式 */
.btn {
    transition: all 0.3s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

/* 图片样式 */
.object-fit-cover {
    object-fit: cover;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .section-title {
        font-size: 20px;
    }
    
    .card-title {
        font-size: 18px;
    }
}

/* 加载动画 */
.loading {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
}

.loading::after {
    content: '';
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #00bfff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* 倒计时样式 */
.countdown-timer {
    line-height: 2rem;
    font-size: 2rem;
    color: #dc3545;
    letter-spacing: 2px;
}

@media (max-width: 768px) {
    .countdown-timer {
        font-size: 1.5rem;
    }
}
@media (min-width: 1200px) {
    .h3, h3 {
        font-size: 1.2rem;
    }
}
.table-djs .text-muted {
    font-size: 1.2rem;
}
 .table-djs td {
    padding: 0.3rem !important;
    color: #dc3545;
    background-color: rgb(255 255 255 / 0%);
}.table-djs   {
   width: auto;
   display: inline-block;
}
 