/* 产品与服务页面样式 */

/* 服务区域 */
.services-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-header h2 {
    font-size: 36px;
    color: #333;
    margin-bottom: 20px;
    font-weight: bold;
}

.services-subtitle {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

/* 服务列表网格 */
.services-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    margin-bottom: 40px;
}

/* 单个服务卡片 */
.service-card {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.service-image {
    width: 100%;
    aspect-ratio: 16/9;
    background-color: #f0f0f0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.service-iconPath {
	width: 25px;
	height: 20px;
}

.service-content {
    padding: 25px;
}

.service-content h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 15px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-content p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-link {
    display: inline-block;
    color: #0066cc;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.service-link:hover {
    color: #0052a3;
}

/* 加载更多按钮 */
.services-more {
    text-align: center;
    margin-top: 40px;
}

/* 响应式设计 - 平板 (768px) */
@media (max-width: 768px) {
    .services-header h2 {
        font-size: 28px;
    }
    
    .services-subtitle {
        font-size: 16px;
    }
    
    .services-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 0 20px;
    }
    
    .service-image {
        height: 200px;
    }
    
    .service-content h3 {
        font-size: 20px;
    }
    
    .service-content p {
        font-size: 14px;
    }
}

/* 响应式设计 - 手机 (480px) */
@media (max-width: 480px) {
    .services-section {
        padding: 40px 0;
    }
    
    .services-header {
        margin-bottom: 40px;
    }
    
    .services-header h2 {
        font-size: 24px;
    }
    
    .services-subtitle {
        font-size: 14px;
    }
    
    .services-list {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }
    
    .service-image {
        height: 180px;
    }
    
    .service-content {
        padding: 20px;
    }
    
    .service-content h3 {
        font-size: 18px;
    }
}
