.trends-container {
    position: relative;
    overflow: hidden;
    max-width: 1600px;
    margin: 0 auto;
}

.trends-visual {
    position: absolute;
    top: 0;
    left: 0;
    width: 45%;
    height: 100%;
    z-index: 1;
}

.slant-box {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #3498db;
    transform: skewX(-12deg) translateX(-15%);
    opacity: 0.15;
}

.trends-img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 85%;
    height: auto;
    transform: translate(-40%, -50%) rotate(-3deg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-radius: 4px;
}

.trends-content {
    position: relative;
    z-index: 2;
    margin-left: 50%;
    padding: 2rem 0 2rem 5%;
}

.trends-title {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 1.8rem;
    position: relative;
}

.trends-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 1.2rem;
    padding: 0 5%;
}

.trends-text p:last-child {
    margin-bottom: 0;
}

/* 动画定义 */
@keyframes pathAnimation {
    0% {
        visibility: hidden;
        opacity: 0;
        transform: translate(-100%, -30%) rotate(10deg) scale(0.8);
    }
    100% {
        visibility: visible;
        opacity: 1;
        transform: translate(-40%, -50%) rotate(-3deg) scale(1);
    }
}

@keyframes slideUp {
    0% {
        visibility: hidden;
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes staggeredSlide {
    0% {
        visibility: hidden;
        opacity: 0;
        transform: translateX(30px);
    }
    100% {
        visibility: visible;
        opacity: 1;
        transform: translateX(0);
    }
}

/* 滚动触发动画 */
.trends-img.animate {
    animation: pathAnimation 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.trends-title.animate {
    animation: slideUp 0.8s ease forwards 0.3s;
}

.trends-text p:nth-child(1).animate {
    animation: staggeredSlide 0.7s ease forwards 0.6s;
}

.trends-text p:nth-child(2).animate {
    animation: staggeredSlide 0.7s ease forwards 0.8s;
}

.trends-text p:nth-child(3).animate {
    animation: staggeredSlide 0.7s ease forwards 1s;
}

.trends-text p:nth-child(4).animate {
    animation: staggeredSlide 0.7s ease forwards 1.2s;
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .trends-visual {
        width: 45%;
    }
    .trends-content {
        margin-left: 40%;
        padding-left: 5%;
    }
}

@media (max-width: 768px) {
    .trends-visual {
        position: relative;
        width: 100%;
        height: 300px;
        margin-bottom: 2rem;
    }
    .trends-img {
        width: 80%;
        transform: translate(-50%, -50%) rotate(0);
    }
    .trends-content {
        margin-left: 0;
        padding: 0;
    }
    @keyframes pathAnimation {
        0% {
            visibility: hidden;
            opacity: 0;
            transform: translate(-50%, -100%) scale(0.8);
        }
        100% {
            visibility: visible;
            opacity: 1;
            transform: translate(-50%, -50%) scale(1);
        }
    }
}
