/* 主容器样式 */
.tech-container {
    position: relative;
    overflow: hidden;
    padding: 60px 0;
    padding: 10vh 20vw;
    background: #f8f9fa;
}

/* 内容卡片样式 */
.tech-card {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    padding: 40px;
    margin-bottom: 30px;
    transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.tech-card p {
    font-size: 18px;
    line-height: 1.8;
}

/* 倾斜文本块 */
.tech-card.tilted {
    transform: rotate(-2deg) translateX(50px);
}

/* 标题样式 */
.tech-title {
    color: #e67e22;
    font-size: 2.2rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.tech-title::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 4px;
    background: #d35400;
}

/* 内容文本样式 */
.tech-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 25px;
}

/* 主图片样式 */
.tech-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 30px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 0.2s;
}

/* 动画触发类 */
.tech-card.animate-in {
    transform: translateX(0);
    opacity: 1;
}

.tech-card.tilted.animate-in {
    transform: rotate(-2deg) translateX(0);
}

.tech-image.animate-in {
    transform: translateY(0);
    opacity: 1;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .tech-container {
        padding: 40px 0;
    }

    .tech-card {
        padding: 25px;
    }

    .tech-title {
        font-size: 1.8rem;
    }
}
