/* Technology页面更新样式 */

/* 整体布局优化 */
.technology-intro-section {
    padding: 50px 0 30px;
}

.technology-intro-section .intro-text {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 技术支柱部分优化 */
.technology-pillars-section {
    padding: 40px 0;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.pillar-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    text-align: center;
}

.pillar-card:hover {
    transform: translateY(-5px);
}

.pillar-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.pillar-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.pillar-card p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #555;
}

/* 技术聚焦部分优化 */
.technology-spotlight-section {
    padding: 50px 0;
}

.spotlight-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
    align-items: center;
}

.spotlight-item.reverse {
    grid-template-columns: 1fr 1fr;
}

.spotlight-image img {
    width: 100%;
    max-height: 300px; /* 缩小图片高度 */
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.spotlight-text h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.spotlight-text p {
    margin-bottom: 15px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.spotlight-text ul {
    list-style: none;
    padding: 0;
}

.spotlight-text ul li {
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.spotlight-text ul li i {
    color: var(--primary-color);
    margin-right: 8px;
}

/* CTA部分优化 */
.technology-cta-section {
    padding: 40px 0;
    background-color: var(--primary-very-light);
}

.technology-cta-section h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.technology-cta-section p {
    max-width: 700px;
    margin: 0 auto 25px;
    font-size: 1rem;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .pillars-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .spotlight-item,
    .spotlight-item.reverse {
        grid-template-columns: 1fr;
    }
    
    .spotlight-image {
        order: 1;
    }
    
    .spotlight-text {
        order: 2;
    }
}

@media (max-width: 576px) {
    .pillars-grid {
        grid-template-columns: 1fr;
    }
}