.combined-slide .combined-content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 30px;
}

.combined-slide .content-section {
    margin-top: 5vw;
    flex: 1;
    min-width: 0; /* 允许内容区域收缩 */
    padding: 1.5vw;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.25);
    /*box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);*/
    transition: all 0.3s ease;
}

.combined-slide .content-section:hover {
    transform: translateY(-8px);
    /*box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);*/
    background: rgba(255, 255, 255, 0.15);
}

.combined-slide .section-icon {
    display: block;
    width: 40px;
    height: 40px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    border-radius: 50%;
}

.combined-slide p {
    font-size: 2vh;
    margin: 15px 0;
    line-height: 1.7;
}

.combined-slide a {
    color: #64b5f6;
    text-decoration: none;
    transition: all 0.3s;
}

.combined-slide a:hover {
    color: #42a5f5;
    text-decoration: underline;
}

.combined-slide .section-title {
    font-size: 50px;
}

.btn .section-btn{
    padding: 3vh 4vh;
}

/* 超小屏幕优化 */
@media (max-width: 700px) {
    .combined-slide .combined-content {
        flex-direction: column;
        padding: 12px;
        gap: 20px;
    }
    
    .combined-slide .content-section {
        padding: 2px;
        margin-top: 0px;
    }
    
    .combined-slide .content-section:nth-child(1) {
        padding: 2px;
        margin-top: 15vh;
    }
    
    .combined-slide .section-title {
        font-size: 5vh;
    }
    
    .combined-slide .section-icon {
        width: 0px;
        height: 0px;
    }
    
    .combined-slide p {
        font-size: 2vh;
        margin: 0px 0;
        line-height: 0;
    }
    
    .btn .section-btn {
        padding: 1vw 2vw;
    }
}