/* 下载页面专属样式（沿用网站原有配色/风格） */
.download-page-card {
    background: linear-gradient(135deg, #f0e8d8, #e8e0c8);
    border: 1px solid rgba(168, 136, 96, 0.35);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(168, 136, 96, 0.15), 0 0 15px rgba(230, 154, 136, 0.08) inset;
    position: relative;
    overflow: hidden;
    width: 1200px;
    margin: 20px auto;
}
.download-page-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #e69a88, #f0d99c, #e87a6f);
    border-radius: 10px 10px 0 0;
}
.download-main-title {
    font-size: 24px;
    color: #e69a88;
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
    text-shadow: 0 0 8px rgba(240, 217, 156, 0.25);
}
.download-sub-title {
    font-size: 14px;
    color: #786040;
    text-align: center;
    margin-bottom: 40px;
}
.download-wrap {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.download-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px;
    background: linear-gradient(135deg, rgba(230, 154, 136, 0.08), rgba(230, 154, 136, 0.03));
    border: 1px solid rgba(168, 136, 96, 0.2);
    border-radius: 12px;
    transition: all 0.3s ease;
}
.download-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(168, 136, 96, 0.15);
    border-color: rgba(230, 154, 136, 0.35);
}
.download-info {
    flex: 1;
}
.download-title {
    font-size: 18px;
    color: #584830;
    font-weight: 600;
    margin-bottom: 12px;
}
.download-desc {
    font-size: 13px;
    color: #786040;
    line-height: 1.6;
    margin-bottom: 8px;
}
.download-meta {
    display: flex;
    gap: 20px;
    font-size: 12px;
    color: #887050;
}
.download-btn-group {
    display: flex;
    gap: 15px;
    margin-left:20px;
}
.download-btn {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, #f8b8a8, #f0d99c);
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(248, 184, 168, 0.2);
}
.download-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(248, 184, 168, 0.3);
    color: #fff;
}
.download-tips {
    margin-top: 30px;
    padding: 20px;
    background: rgba(240, 232, 216, 0.6);
    border: 1px solid rgba(168, 136, 96, 0.25);
    border-radius: 8px;
}
.tips-title {
    font-size: 16px;
    color: #e69a88;
    font-weight: 600;
    margin-bottom: 10px;
}
.tips-list {
    font-size: 13px;
    color: #584830;
    line-height: 1.8;
    padding-left: 20px;
}
.tips-list li {
    list-style: disc;
    margin-bottom: 5px;
}