* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Microsoft YaHei', Arial, sans-serif;
}
body {
    background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 20px;
}

.qiye_wenhua_header {
    text-align: center;
    margin-bottom: 60px;
}

.qiye_wenhua_header h1 {
    text-align: center;
    font-size: 30px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.qiye_wenhua_header h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    border-radius: 2px;
}
 /* 添加一些基础样式 */
 .qiye_wenhua_header h1, .qiye_wenhua_header p {
    opacity: 0;
    transition: opacity 1.2s ease, transform 1.2s ease;
}
.qiye_wenhua_header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.qiye_wenhua_container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    width: 100%;
}

.qiye_wenhua_card {
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    background: white;
    border-radius: 15px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transform: translateY(50px) scale(0.8); /* 初始状态：透明且缩小 */
    box-shadow: 0 20px 30px -10px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    height: 400px;
    opacity: 0;
    margin-bottom: 20px;
    transition: opacity 1.2s ease, transform 1.2s ease;
}

.qiye_wenhua_card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #ff7e5f, #feb47b);
}

.qiye_wenhua_card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 40px -15px rgba(0, 0, 0, 0.2);
}

.qiye_wenhua_logo {
    width: 100px;
    height: 100px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #cfe4cf 0%, #e4e8f0 100%);
    border-radius: 50%;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.qiye_wenhua_logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.qiye_wenhua_card h2 {
    font-size: 1.8rem;
    color: #676565;
    margin-bottom: 15px;
    position: relative;
}

.qiye_wenhua_card h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
}

.qiye_wenhua_card p {
    color: #666;
    line-height: 1.7;
    font-size: 1rem;
    margin-top: 15px;
}
.qiye_wenhua_card.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}
@media (max-width: 768px) {
    .qiye_wenhua_container {
        /* flex-direction: column; */
        align-items: center;
 display: flex;
    }
    
    .qiye_wenhua_card {
        max-width: 50%;
    }
    
    .qiye_wenhua_header h1 {
        font-size: 2.2rem;
    }
}
@media (max-width: 768px) {
    /* 调整页面整体布局 */
    body {
        padding: 20px 10px; /* 减小页面内边距 */
    }

    /* 调整标题样式 */
    .qiye_wenhua_header h1 {
        font-size: 24px; /* 减小标题字体大小 */
        margin-bottom: 15px; /* 减小标题与副标题的间距 */
    }

    /* 调整副标题样式 */
    .qiye_wenhua_header p {
        font-size: 1rem; /* 减小副标题字体大小 */
        line-height: 1.4; /* 调整行高 */
    }

    /* 调整卡片容器样式 */
    .qiye_wenhua_container {
        flex-direction: column; /* 卡片改为垂直排列 */
        align-items: center; /* 居中对齐 */
        gap: 20px; /* 减小卡片间距 */
    }

    /* 调整卡片样式 */
    .qiye_wenhua_card {
        max-width: 80%; /* 卡片宽度占满整个屏幕 */
        min-width: auto; /* 移除最小宽度限制 */
        height: auto; /* 自动调整高度 */
        padding: 20px; /* 减小卡片内边距 */
        margin-bottom: 15px; /* 减小卡片间距 */
    }

    /* 调整卡片内的标题样式 */
    .qiye_wenhua_card h2 {
        font-size: 1.6rem; /* 减小标题字体大小 */
        margin-bottom: 10px; /* 减小标题与内容的间距 */
    }

    /* 调整卡片内的内容样式 */
    .qiye_wenhua_card p {
        font-size: 0.9rem; /* 减小内容字体大小 */
        line-height: 1.5; /* 调整行高 */
    }

    /* 调整卡片内的图标样式 */
    .qiye_wenhua_logo {
        width: 80px; /* 减小图标大小 */
        height: 80px; /* 减小图标大小 */
        margin-bottom: 15px; /* 减小图标与标题的间距 */
    }
}