﻿﻿/* 下载页面样式 */

/* 下载区域 */
.download-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.software-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
}

.software-image {
    flex: 0 0 150px;
    background: #3498db;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
}

.software-content {
    flex: 1;
    padding: 30px;
}

.software-content h2 {
    margin-bottom: 15px;
    color: #2c3e50;
}

.software-description {
    margin-bottom: 25px;
    color: #666;
    line-height: 1.6;
}

/* 软件详情 */
.software-details {
    margin-bottom: 25px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.detail-label {
    font-weight: 600;
    color: #2c3e50;
}

.detail-value {
    color: #666;
}

/* 软件功能 */
.software-features {
    margin-bottom: 30px;
}

.software-features h3 {
    margin-bottom: 15px;
    color: #2c3e50;
}

.software-features ul {
    list-style: none;
    padding: 0;
}

.software-features li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #666;
}

.software-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

/* 下载按钮 */
.download-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* 下载说明区域 */
.download-info {
    padding: 60px 0;
}

.download-info h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #2c3e50;
}

.info-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.info-item {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
}

.info-item h3 {
    margin-bottom: 15px;
    color: #2c3e50;
}

.info-item ol,
.info-item ul {
    padding-left: 20px;
}

.info-item li {
    margin-bottom: 10px;
    color: #666;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .software-card {
        flex-direction: column;
    }
    
    .software-image {
        flex: 0 0 100px;
        width: 100%;
    }
    
    .software-content {
        padding: 20px;
    }
    
    .software-details {
        flex-direction: column;
        gap: 10px;
    }
    
    .download-buttons {
        flex-direction: column;
    }
    
    .info-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .download-section,
    .download-info {
        padding: 40px 0;
    }
    
    .software-content {
        padding: 15px;
    }
    
    .info-item {
        padding: 20px;
    }
}