/* 技术页面增强样式 - 2024 */

/* 图片悬停动画效果 */
.spotlight-image img {
    transition: all 0.4s ease;
}

.spotlight-image img:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* 优化Our Technological Edge部分排版 */
.technology-intro-section {
    padding: 40px 0 20px; /* 减少上下内边距 */
}

.technology-intro-section .intro-text {
    max-width: 900px;
}

.technology-intro-section h2 {
    margin-bottom: 15px; /* 减少标题下方间距 */
    font-size: 1.8rem; /* 稍微减小标题大小 */
}

.technology-intro-section p {
    line-height: 1.5; /* 减少行高 */
    font-size: 0.95rem; /* 稍微减小字体大小 */
    margin-bottom: 0; /* 移除底部边距 */
}

/* 响应式调整 */
@media (max-width: 768px) {
    .technology-intro-section h2 {
        font-size: 1.6rem;
    }
    
    .technology-intro-section p {
        font-size: 0.9rem;
    }
}