body{
    color: var(--text-color);
}


.case-banner .banner-title {
    color: var(--bold-color);
    text-shadow:none;
}
.case-details-btn{
    color: var(--text-color);
    border: 1px solid var(--text-color);
}


/* 解决方案列表 */
.solution-list {
    margin-bottom: 50px;
}

/* 解决方案卡片 */
.solution-card {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.solution-image {
    height: 200px;
    overflow: hidden;
}

.solution-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.solution-card:hover .solution-image img {
    transform: scale(1.05);
}

.solution-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.solution-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}
.solution-title:hover{
    color: var(--theme-color);
}
.solution-desc {
    color: #666;
    margin-bottom: 15px;
    flex-grow: 1;
}

.solution-tags {
    margin-top: auto;
}

.tag {
    display: inline-block;
    background-color: #e9ecef;
    color: #495057;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    margin-right: 5px;
    margin-bottom: 5px;
}

.tag:hover {
    background-color: #007bff;
    color: white;
}

/* 分页 */
.pagination .page-link {
    color: #007bff;
}

.pagination .page-item.active .page-link {
    background-color: #007bff;
    border-color: #007bff;
}
/*合作伙伴界面*/
.about h2{
    font-weight: 900;
    font-size: 2rem;
    color: var(--bold-color) !important;
    margin-bottom: 40px;
}
.about table th{
    background-color: white !important;
    border: none;
    position: relative;
}
.about table th img{
    position: absolute;
    top: -38px;
    width: 49px;
    height: 49px;
    left: 50%;
    transform: translateX(-50%);

}
.table>:not(caption)>*>*{
    padding: 1.2rem .5rem;
}
.about{
    margin: 80px auto;
}
.about table{
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    color: var(--text-color) !important;
    font-size: 1rem;
    border: 1px solid var(--bs-table-border-color);

}
.about table tr:first-child{
    border-bottom: 1px solid var(--bs-table-border-color);

}
.about table tr th:last-child{

}
.about table tr:nth-child(2n){
    background-color: #f9f9f9;
}
.about table tr:nth-child(2) td:first-child,.about table tr:nth-child(3)  td:first-child,.about table tr:nth-child(8)  td:first-child {
    background-color: white !important;
    border-right:  1px solid var(--bs-table-border-color);

}
.about table tr:nth-child(2),.about table tr:nth-child(7)    {
    border-bottom:  1px solid var(--bs-table-border-color);

}
.about table tr p{
    margin-bottom: 0;
}
.about table  strong{
    color: var(--theme-color);
}

/* 响应式设计 */
@media (max-width: 992px) {
    .banner {
        height: 300px;
    }
    
    .banner-title {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .banner {
        height: 250px;
    }
    
    .banner-title {
        font-size: 24px;
    }
    
    .solution-image {
        height: 180px;
    }
}

@media (max-width: 576px) {
    .banner {
        height: 200px;
    }
    
    .solution-content {
        padding: 15px;
    }
    
    .solution-title {
        font-size: 16px;
    }
}
