/* 核心技术页面样式 - 遵循项目设计规范 */
.core-technologies-container {
    width: 100%;
    padding: 2rem 0;
}

.tech-showcase {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    min-height: 60vh;
}

@media (max-width: 992px) {
    .tech-showcase {
        flex-direction: column;
    }
}

.tech-image-container {
    flex: 1;
    min-width: 300px;
    height: 450px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

@media (max-width: 768px) {
    .tech-image-container {
        height: 300px;
    }
}

.tech-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.tech-image-container:hover img {
    transform: scale(1.05);
}

.tech-content {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tech-title {
    font-size: 2.2rem;
    color: #333;
    margin-bottom: 1.5rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 0.8rem;
}

@media (max-width: 768px) {
    .tech-title {
        font-size: 1.8rem;
    }
}

.tech-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: #2c6ecb;
}

.tech-content p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.2rem;
    font-size: 1rem;
}

/* 动画效果 */
@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.tech-image-container {
    animation: fadeInLeft 0.8s ease-out forwards;
}

.tech-content {
    animation: fadeInRight 0.8s ease-out forwards;
    animation-delay: 0.2s;
}
