/* 对角分栏布局 */
.rd-innovation-diagonal-container {
    position: relative;
    min-height: 60vh;
    overflow: hidden;
}

/* 左侧文字区域 - 阶梯式排版 */
.text-diagonal-section {
    position: absolute;
    top: 0;
    left: 0;
    width: 40%;
    height: 100%;
    padding: 0 60px 80px 100px;
    box-sizing: border-box;
    z-index: 2;
}

.text-step {
    position: relative;
    margin-bottom: 40px;
    padding-left: 30px;
    transform: translateY(20px);
    transition: all 0.8s ease-out;
}
.text-step p {
    line-height: 1.8;
    font-size: 18px;
}

.text-diagonal-section.wow.rotateIn p:first-child {
    transition-delay: 0.3s;
}

.text-diagonal-section.wow.rotateIn p:nth-child(2) {
    transition-delay: 0.6s;
}

.text-diagonal-section.wow.rotateIn p:nth-child(3) {
    transition-delay: 0.9s;
}

.text-diagonal-section.wow.rotateIn p:nth-child(4) {
    transition-delay: 1.2s;
}

.text-step:before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #3498db;
}

.section-title {
    color: #2c3e50;
    font-size: 32px;
    margin-bottom: 30px;
    font-weight: 700;
}

.section-text {
    color: #34495e;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
}

/* 右侧图片区域 - 对角线切割效果 */
.image-diagonal-section {
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
    transform: skewX(-15deg);
    overflow: hidden;
    background: #3498db;
    z-index: 1;
}

.parallax-image-container {
    position: absolute;
    top: 0;
    left: -15%;
    width: 115%;
    height: 100%;
    transform: skewX(15deg);
}

.parallax-image {
    width: 100%;
    height: 120%;
    object-fit: cover;
    transition: transform 0.3s ease-out;
}

.image-caption {
    position: absolute;
    bottom: 30px;
    right: 50px;
    color: white;
    font-size: 18px;
    font-weight: 500;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    z-index: 3;
}

/* 响应式设计 - 与之前断点不同，采用992px */
@media (max-width: 992px) {
    .text-diagonal-section,
    .image-diagonal-section {
        position: relative;
        width: 100%;
        transform: none;
    }
    .parallax-image-container {
        transform: none;
    }
    .text-diagonal-section {
        padding: 60px 30px;
        height: auto;
    }

    .image-diagonal-section {
        height: 400px;
    }
}
