.container {
    width: 95%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: #F3F4F5;;
}

.tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    border-bottom: 0px solid #ddd;
}
.tab {
    padding: 10px 50px;
    font-size: 20px;
    font-weight: 500;
    cursor: pointer;
    border-bottom: 1px solid transparent;
    transition: color 0.3s ease;
}

.tab.active {
    color: #4a00e0;
    border-bottom: 2px solid #4a00e0;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.card {
    background-color: white;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    width: 250px;
    height: 350px;
}

.card:hover {
    transform: translateY(-5px);
    cursor: pointer; /* 添加此行使鼠标变为手型 */
}

.card-image-container {
    height: 230px;
    width: 250px;
    text-align: center;
    margin: 10px auto;
}

.card img {
    width: 200px;
    height: 200px;
}

.card-content {
    padding: 15px;
    line-height: 2;
    margin-top: -40px;
}

.card-title {
    font-size: 16px;
    margin: 0 0 5px;
    font-weight: bold;
}

.card-description {
    font-size: 14px;
    color: #666;
    margin: 0;
}
