.download-container {
    width: 100%;
    background: white;
    border-radius: 12px;
    overflow: hidden;
}

.software-info {
    display: flex;
	padding: 0 0 30px 0;
    border-bottom: 1px solid #eee;
}

.logo-container {
    flex-shrink: 0;
    margin-right: 25px;
}

.logo {
    width: 100px;
    height: 100px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 40px;
    font-weight: bold;
}

.info-content {
    flex: 1;
}

.intro-content p{
	font-size: 16px;
    line-height: 1.875em;
	margin-bottom: 15px;
}

.intro-content h2, .intro-content h3, .intro-content h4, .intro-content h5, .intro-content h6 {
    padding: 5px 0 5px 10px;
    border-left: 8px solid #358ff0;
    background: #f9f9f9;
	margin-bottom: 15px;
}

.software-name {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #2c3e50;
}

.software-description {
    color: #7f8c8d;
    font-size: 14px;
	line-height: 24px;
    padding-bottom: 5px;
}

.update-date {
    color: #95a5a6;
    font-size: 14px;
}


.software-intro {
    padding: 30px 0;
    border-bottom: 1px solid #eee;
}

.section-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #2c3e50;
    display: flex;
    align-items: center;
}

.section-title::before {
    content: "";
    display: inline-block;
    width: 4px;
    height: 18px;
    background: #3498db;
    margin-right: 10px;
    border-radius: 2px;
}

.feature-list {
    margin-top: 15px;
    padding-left: 20px;
}

.feature-list li {
    margin-bottom: 8px;
    position: relative;
}

.feature-list li::marker {
    color: #3498db;
}

.download-section {
    padding: 30px 0;
}

.download-options {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
}

.download-btn {
    flex: 1;
    min-width: 200px;
    background: #3498db;
    color: white;
    border: none;
    padding: 15px 25px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;

}

.download-btn:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(52, 152, 219, 0.4);
	color: #FFF;
}

.download-btn:active {
    transform: translateY(0);
}

.download-btn i {
    margin-right: 10px;
    font-size: 18px;
}

.windows {
    background: #0078d7;
}

.windows:hover {
    background: #0066b4;
}

.mac {
    background: #555;
}

.mac:hover {
    background: #444;
}

.linux {
    background: #e95420;
}

.linux:hover {
    background: #d34615;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .software-info {
        flex-direction: column;
        text-align: center;
    }
    
    .logo-container {
        margin-right: 0;
        margin-bottom: 20px;
        align-self: center;
    }
    
    .download-btn {
        min-width: 100%;
    }
}

@media (max-width: 480px) {

    
    .download-container {
        border-radius: 8px;
    }
    
    .software-info, .software-intro, .download-section {
        padding: 20px 0;
    }
    
    .logo {
        width: 80px;
        height: 80px;
    }
    
    .software-name {
        font-size: 18px;
    }
}