/* 下载详情页样式 */

/* 侧边栏信息列表 */
.sidebar-info-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.sidebar-info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.95rem;
}

.sidebar-info-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.sidebar-info-item .info-label {
    font-weight: 500;
    color: #666;
}

.sidebar-info-item .info-value {
    font-weight: 600;
    color: #2c3e50;
}

/* 文档详情卡片 */
.doc-detail-card {
    margin-bottom: 40px;
    padding: 35px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #f5f5f5;
    position: relative;
    overflow: hidden;
}

/* 添加渐变装饰条 */
.doc-detail-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 4px;
    width: 100%;
    background: linear-gradient(90deg, #186ADC, #0467F1, #1859B4);
}

/* 章节标题 */
.section-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 30px 0 20px 0;
    position: relative;
    padding-left: 30px;
}

.section-title::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #186ADC;
    font-size: 1.8rem;
    line-height: 1;
}

/* 文档简介 */
.doc-intro {
    margin: 25px 0 35px 0;
    padding: 25px;
    background: linear-gradient(135deg, #f0f4ff 0%, #e8f0ff 100%);
    border-radius: 10px;
    border-left: 4px solid #186ADC;
}

.intro-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin: 0;
}

/* 文档内容 */
.doc-content {
    margin-bottom: 35px;
}

.content-body {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444;
}

.content-body h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 40px 0 25px 0;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.content-body h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 30px 0 20px 0;
}

.content-body p {
    margin-bottom: 20px;
    text-align: justify;
}

.content-body ul,
.content-body ol {
    margin-bottom: 25px;
    padding-left: 30px;
}

.content-body li {
    margin-bottom: 12px;
    line-height: 1.7;
}

.content-body ul li {
    position: relative;
    padding-left: 10px;
}

.content-body ul li::before {
    content: '•';
    position: absolute;
    left: -15px;
    color: #186ADC;
    font-weight: bold;
    font-size: 1.2rem;
    line-height: 1.5;
}

/* 侧边栏按钮区域 */
.sidebar-item-actions {
    margin-top: 25px;
}

/* 侧边栏下载按钮 */
.download-btn-sidebar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 12px 20px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    color: white;
    background: linear-gradient(135deg, #186ADC, #0467F1);
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(24, 106, 220, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* 侧边栏下载按钮图标 */
.download-btn-sidebar i {
    font-family: 'Material Icons' !important;
    font-style: normal;
    font-weight: normal;
    letter-spacing: normal;
    text-transform: none;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
    font-size: 1.2rem;
    line-height: 1;
}

/* 侧边栏下载按钮悬停效果 */
.download-btn-sidebar:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(24, 106, 220, 0.3);
    background: linear-gradient(135deg, #0467F1, #1859B4);
    color: white;
}

/* 侧边栏下载按钮点击效果 */
.download-btn-sidebar:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(24, 106, 220, 0.2);
}

/* 侧边栏下载按钮内部发光效果 */
.download-btn-sidebar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: all 0.5s ease;
    z-index: -1;
}

.download-btn-sidebar:hover::before {
    left: 100%;
}

/* 下载区域 */
.download-section {
    background: linear-gradient(135deg, #f0f4ff 0%, #e8f0ff 100%);
    border-radius: 12px;
    padding: 35px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 40px;
}

/* 按钮区域装饰元素 */
.download-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(24, 106, 220, 0.1) 0%, transparent 70%);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

/* 下载统计 */
.download-info {
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.download-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    min-width: 120px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.stat-item i {
    font-size: 2rem;
    color: #186ADC;
    background: linear-gradient(135deg, #186ADC, #0467F1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    width: auto;
    height: auto;
    line-height: 1;
    vertical-align: middle;
    font-family: 'Material Icons' !important;
    font-style: normal;
    font-weight: normal;
    letter-spacing: normal;
    text-transform: none;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
}

.stat-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* 主下载按钮 */
.download-btn-main {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, #186ADC, #0467F1);
    color: white;
    padding: 18px 50px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 20px rgba(24, 106, 220, 0.25);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* 主下载按钮悬停效果 */
.download-btn-main:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(24, 106, 220, 0.4);
    background: linear-gradient(135deg, #0467F1, #1859B4);
    color: white;
}

/* 主下载按钮点击效果 */
.download-btn-main:active {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(24, 106, 220, 0.3);
}

/* 主下载按钮内部发光效果 */
.download-btn-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: all 0.5s ease;
    z-index: -1;
}

.download-btn-main:hover::before {
    left: 100%;
}

/* 主下载按钮图标 */
.download-btn-main i {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
    font-family: 'Material Icons' !important;
    font-style: normal;
    font-weight: normal;
    letter-spacing: normal;
    text-transform: none;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
    line-height: 1;
}

.download-btn-main:hover i {
    transform: scale(1.2) rotate(10deg);
}

/* 主下载按钮文本 */
.download-btn-main .btn-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.download-btn-main .btn-main-text {
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1;
}

.download-btn-main .btn-sub-text {
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 500;
    margin-top: 3px;
}

/* 相关下载 */
.related-downloads {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid #f0f0f0;
}

/* 相关下载标题 */
.related-downloads .section-title {
    text-align: center;
    margin-bottom: 35px;
    padding-left: 0;
}

.related-downloads .section-title::before {
    display: none;
}

/* 相关下载描述 */
.careers-item-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
    margin: 15px 0 20px 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* 相关下载按钮 */
.download-btn-small {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    color: white;
    background: linear-gradient(135deg, #186ADC, #0467F1);
    border-radius: 6px;
    box-shadow: 0 2px 10px rgba(24, 106, 220, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* 相关下载按钮图标 */
.download-btn-small i {
    font-family: 'Material Icons' !important;
    font-style: normal;
    font-weight: normal;
    letter-spacing: normal;
    text-transform: none;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
    font-size: 1rem;
    line-height: 1;
}

/* 相关下载按钮悬停效果 */
.download-btn-small:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(24, 106, 220, 0.3);
    background: linear-gradient(135deg, #0467F1, #1859B4);
    color: white;
}

/* 相关下载按钮点击效果 */
.download-btn-small:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(24, 106, 220, 0.2);
}

/* 相关下载按钮内部发光效果 */
.download-btn-small::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: all 0.5s ease;
    z-index: -1;
}

.download-btn-small:hover::before {
    left: 100%;
}

/* 文档类型标签 */
.doc-type-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: white;
    transition: all 0.3s ease;
}

.doc-type-badge.product {
    background: linear-gradient(135deg, #DC3545, #C82333);
    box-shadow: 0 2px 8px rgba(220, 53, 69, 0.2);
}

.doc-type-badge.tech {
    background: linear-gradient(135deg, #186ADC, #0467F1);
    box-shadow: 0 2px 8px rgba(24, 106, 220, 0.2);
}

.doc-type-badge.solution {
    background: linear-gradient(135deg, #28A745, #218838);
    box-shadow: 0 2px 8px rgba(40, 167, 69, 0.2);
}

.doc-type-badge:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* 侧边栏卡片样式 */
.sidebar-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.sidebar-card:hover {
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.12);
}

/* 侧边栏标题 */
.sidebar-title {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sidebar-title::before {
    content: '';
    width: 4px;
    height: 20px;
    background: linear-gradient(135deg, #186ADC, #0467F1);
    border-radius: 2px;
}

/* 优化后的侧边栏信息列表样式 */
.sidebar-info-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.sidebar-info-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding: 0;
    border: none;
    gap: 15px;
}

.sidebar-info-item:last-child {
    margin-bottom: 0;
}

.info-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f0f4ff 0%, #e8f0ff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.sidebar-info-item:hover .info-icon {
    background: linear-gradient(135deg, #186ADC, #0467F1);
    transform: scale(1.1);
}

.info-icon i {
    font-size: 1.2rem;
    color: #186ADC;
    transition: all 0.3s ease;
    font-family: 'Material Icons' !important;
    font-style: normal;
    font-weight: normal;
    letter-spacing: normal;
    text-transform: none;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
}

.sidebar-info-item:hover .info-icon i {
    color: white;
    transform: rotate(5deg);
}

.info-content {
    flex: 1;
}

.info-label {
    display: block;
    font-size: 0.85rem;
    color: #999;
    margin-bottom: 3px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-value {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: #2c3e50;
}

/* 侧边栏导航样式 */
.sidebar-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-nav-item {
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.sidebar-nav-item:last-child {
    margin-bottom: 0;
}

.sidebar-nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    border-radius: 8px;
    color: #666;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.sidebar-nav-link:hover {
    color: #186ADC;
    background: linear-gradient(135deg, #f0f4ff 0%, #e8f0ff 100%);
    border-color: #186ADC;
    transform: translateX(5px);
}

.sidebar-nav-link i {
    font-size: 1.1rem;
    color: #999;
    transition: all 0.3s ease;
    flex-shrink: 0;
    font-family: 'Material Icons' !important;
    font-style: normal;
    font-weight: normal;
    letter-spacing: normal;
    text-transform: none;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
    line-height: 1;
}

.sidebar-nav-link:hover i {
    color: #186ADC;
    transform: rotate(5deg);
}

/* 相关下载列表样式 */
.related-downloads-list {
    margin: -10px;
}

/* 相关下载项样式 */
.related-download-item {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 20px;
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 2px solid transparent;
}

.related-download-item:hover {
    background: white;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
    border-color: #186ADC;
}

/* 相关下载标题 */
.related-download-title {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.4;
    flex-shrink: 0;
}

.related-download-link {
    color: #186ADC;
    text-decoration: none;
    transition: all 0.3s ease;
}

.related-download-link:hover {
    color: #0467F1;
    text-decoration: underline;
}

/* 全局图标样式修复 */
i.material-icons {
    font-family: 'Material Icons' !important;
    font-style: normal;
    font-weight: normal;
    letter-spacing: normal;
    text-transform: none;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
    line-height: 1;
    display: inline-block;
    width: auto;
    height: auto;
    vertical-align: middle;
}

/* 页面标题卡片样式 */
.page-header-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

/* 页面标题样式 */
.page-title {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 15px;
    line-height: 1.3;
    font-weight: 700;
}

/* 页面元信息容器 */
.page-meta {
    color: #666;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* 元信息项样式 */
.meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.meta-item i {
    color: #999;
    font-size: 0.9rem;
}

.meta-item span {
    font-size: 0.9rem;
}

/* 相关下载容器样式 */
.related-downloads {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    margin-top: 30px;
}

/* 无相关下载提示样式 */
.no-related-downloads {
    display: none;
}

.no-related-content {
    text-align: center;
    padding: 40px;
    background: #f8f9fa;
    border-radius: 8px;
    color: #999;
}

.no-related-content i {
    font-size: 3rem;
    margin-bottom: 15px;
    color: #ccc;
}

.no-related-content h3 {
    margin-bottom: 10px;
    color: #666;
    font-size: 1.2rem;
}

.no-related-content p {
    font-size: 0.95rem;
    margin: 0;
}

/* 相关下载标题样式 */
.related-downloads .section-title {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.related-downloads .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #186ADC, #0467F1);
    border-radius: 2px;
}

/* 相关下载元数据 */
.related-download-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    font-size: 0.85rem;
    color: #999;
    flex-shrink: 0;
}

.related-download-date {
    display: flex;
    align-items: center;
    gap: 5px;
}

.related-download-size {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* 相关下载元数据图标 */
.related-download-date i,
.related-download-size i {
    font-size: 0.85rem;
    color: #999;
}

/* 相关下载描述 */
.related-download-desc {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

/* 相关下载操作 */
.related-download-actions {
    margin-top: auto;
    flex-shrink: 0;
}

/* 响应式设计 */
@media (max-width: 1199px) {
    .related-downloads-list .col-md-3 {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
}

@media (max-width: 991px) {
    .doc-detail-card {
        padding: 25px;
    }
    
    .section-title {
        font-size: 1.3rem;
    }
    
    .download-stats {
        gap: 25px;
    }
    
    .related-downloads-list .col-md-3 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (max-width: 767px) {
    .doc-detail-card {
        padding: 20px;
    }
    
    .download-section {
        padding: 25px;
    }
    
    .download-btn-main {
        padding: 15px 30px;
        font-size: 1.1rem;
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .btn-content {
        align-items: center;
    }
    
    .sidebar-info-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .related-downloads-list .col-md-3,
    .related-downloads-list .col-sm-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    /* 页面标题在移动端的优化 */
    .text-center {
        text-align: left !important;
    }
    
    .text-center .doc-type-badge {
        margin-bottom: 10px;
    }
    
    .text-center div {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 10px !important;
    }
}

@media (max-width: 575px) {
    .sidebar-card {
        padding: 20px;
    }
    
    .section-title {
        font-size: 1.2rem;
        padding-left: 0;
    }
    
    .section-title::before {
        display: none;
    }
    
    .download-stats {
        gap: 15px;
    }
    
    .stat-item {
        min-width: 100px;
        padding: 15px;
    }
    
    .stat-value {
        font-size: 1.5rem;
    }
}

/* 下载中心美化样式 - 合并自downlist.css */

/* 美化文档卡片 */
.section-animate-items .careers-col {
    margin-bottom: 20px;
}

.section-animate-items .careers-item {
    display: block;
    background: #ffffff;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e8e8e8;
    height: 100%;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.section-animate-items .careers-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-color: #186ADC;
}

.section-animate-items .careers-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 4px;
    width: 100%;
    background: linear-gradient(90deg, #186ADC, #1859B4, #0467F1);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.section-animate-items .careers-item:hover::before {
    transform: scaleX(1);
}

/* 文档类型标签样式 */
.section-animate-items .careers-item-badges {
    margin-bottom: 20px;
    margin-left: -5px;
    margin-top: -5px;
}

.section-animate-items .document-type-badge {
    display: inline-block;
    font-weight: 600;
    padding: 3px 12px;
    border-radius: 18px;
    font-size: 0.75rem;
    text-transform: uppercase;
    color: white;
    transition: all 0.3s ease;
}

/* 不同类型文档标签颜色 */
.section-animate-items .document-type-badge.type-product {
    background: #DC3545;
}

.section-animate-items .document-type-badge.type-tech {
    background: #186ADC;
}

.section-animate-items .document-type-badge.type-solution {
    background: #28A745;
}

/* 文档卡片内容容器 */
.section-animate-items .careers-item-content {
    position: relative;
}

/* 文档元信息样式 */
.section-animate-items .careers-item-meta-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.section-animate-items .meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 0.9rem;
}

.section-animate-items .meta-item.meta-size {
    margin-left: auto;
}

.section-animate-items .meta-item i {
    color: #186ADC;
    font-size: 1rem;
}

/* 文档标题样式 */
.section-animate-items .careers-item-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    line-height: 1.4;
}

/* 文档格式图标 */
.section-animate-items .document-format {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #FF5722;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.section-animate-items .document-format i {
    color: #FF5722;
}

/* 文档操作按钮容器 */
.section-animate-items .careers-item-actions {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

/* 下载按钮样式 */
.section-animate-items .download-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #186ADC;
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(24, 106, 220, 0.2);
}

.section-animate-items .download-btn:hover {
    background: #0d51a0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(24, 106, 220, 0.3);
}

.section-animate-items .download-btn i {
    color: white;
    font-size: 1rem;
}

/* 下载详情容器 */
.section-animate-items .download-detail-wrapper {
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    margin-bottom: 40px;
    border: 1px solid #f5f5f5;
    position: relative;
    overflow: hidden;
}

/* 添加渐变装饰条 */
.section-animate-items .download-detail-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 4px;
    width: 100%;
    background: linear-gradient(90deg, #186ADC, #0467F1, #1859B4);
}

/* 下载详情头部 */
.section-animate-items .download-detail-header {
    margin-bottom: 35px;
    position: relative;
    text-align: center;
}

/* 下载详情标题 */
.section-animate-items .download-detail-title {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 25px;
    line-height: 1.3;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

/* 标题下划线装饰 */
.section-animate-items .download-detail-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #186ADC, #0467F1);
    border-radius: 2px;
}

/* 下载详情元信息 */
.section-animate-items .download-detail-meta {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #f0f0f0;
    flex-wrap: wrap;
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
    padding: 25px;
    border-radius: 10px;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05);
}

.section-animate-items .download-detail-meta-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #555;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 10px 20px;
    border-radius: 8px;
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.section-animate-items .download-detail-meta-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(24, 106, 220, 0.15);
    background: #f0f4ff;
}

.section-animate-items .download-detail-meta-item i {
    color: #186ADC;
    font-size: 1.3rem;
    background: linear-gradient(135deg, #186ADC, #0467F1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* 下载详情内容 */
.section-animate-items .download-detail-content {
    margin-bottom: 40px;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

/* 文档简介 */
.section-animate-items .download-detail-description {
    margin-bottom: 40px;
    padding: 25px;
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
    border-radius: 10px;
    border-left: 4px solid #186ADC;
}

.section-animate-items .download-detail-description h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-animate-items .download-detail-description h2::before {
    content: '📋';
    font-size: 1.8rem;
}

.section-animate-items .download-detail-description p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    text-align: justify;
}

/* 文档正文内容 */
.section-animate-items .download-detail-body {
    font-size: 1.05rem;
    line-height: 1.9;
    color: #444;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05);
}

.section-animate-items .download-detail-body h2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 30px 0 20px 0;
    padding-bottom: 12px;
    border-bottom: 2px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 15px;
}

.section-animate-items .download-detail-body h2::before {
    content: '📌';
    font-size: 1.4rem;
}

.section-animate-items .download-detail-body h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 25px 0 15px 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-animate-items .download-detail-body h3::before {
    content: '🔹';
    font-size: 1.2rem;
    color: #186ADC;
}

.section-animate-items .download-detail-body p {
    margin-bottom: 20px;
    text-align: justify;
    line-height: 1.8;
}

.section-animate-items .download-detail-body ul,
.section-animate-items .download-detail-body ol {
    margin-bottom: 25px;
    padding-left: 30px;
}

.section-animate-items .download-detail-body li {
    margin-bottom: 12px;
    line-height: 1.7;
    position: relative;
}

.section-animate-items .download-detail-body ul li::before {
    content: '▸';
    position: absolute;
    left: -20px;
    color: #186ADC;
    font-weight: bold;
}

/* 下载按钮区域 */
.section-animate-items .download-detail-actions {
    display: flex;
    justify-content: center;
    margin: 50px 0;
    padding: 40px;
    background: linear-gradient(135deg, #f0f4ff 0%, #e8f0ff 100%);
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(24, 106, 220, 0.1);
    position: relative;
    overflow: hidden;
}

/* 按钮区域装饰元素 */
.section-animate-items .download-detail-actions::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(24, 106, 220, 0.1) 0%, transparent 70%);
    animation: pulse 3s ease-in-out infinite;
}

/* 按钮区域脉冲动画 */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

.section-animate-items .download-btn-large {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, #186ADC, #0467F1);
    color: white;
    padding: 18px 50px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(24, 106, 220, 0.3);
    border: none;
    cursor: pointer;
    position: relative;
    z-index: 1;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    overflow: hidden;
}

/* 按钮悬停效果 */
.section-animate-items .download-btn-large:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(24, 106, 220, 0.4);
    background: linear-gradient(135deg, #0467F1, #1859B4);
    color: white;
}

/* 按钮点击效果 */
.section-animate-items .download-btn-large:active {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(24, 106, 220, 0.3);
}

/* 按钮内部发光效果 */
.section-animate-items .download-btn-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: all 0.5s ease;
    z-index: -1;
}

.section-animate-items .download-btn-large:hover::before {
    left: 100%;
}

.section-animate-items .download-btn-large i {
    color: white;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.section-animate-items .download-btn-large:hover i {
    transform: scale(1.2) rotate(10deg);
}

/* 相关下载区域 */
.section-animate-items .related-downloads {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid #f0f0f0;
    background: linear-gradient(135deg, #fafbff 0%, #ffffff 100%);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.section-animate-items .related-downloads-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 35px;
    text-align: center;
    position: relative;
    padding-bottom: 20px;
}

/* 相关下载标题装饰 */
.section-animate-items .related-downloads-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #186ADC, #0467F1, #186ADC);
    border-radius: 2px;
}

/* 相关下载项 */
.section-animate-items .related-download-item {
    background: white;
    border: 2px solid transparent;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 25px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
    background: linear-gradient(135deg, white 0%, #f8faff 100%);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

/* 相关下载项悬停效果 */
.section-animate-items .related-download-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: #186ADC;
    background: linear-gradient(135deg, white 0%, #e8f0ff 100%);
}

/* 相关下载项装饰角 */
.section-animate-items .related-download-item::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 60px 60px;
    border-color: transparent transparent #186ADC transparent;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.section-animate-items .related-download-item:hover::before {
    opacity: 0.1;
}

.section-animate-items .related-download-item-content {
    margin-bottom: auto;
}

.section-animate-items .related-download-item-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    color: #666;
    font-size: 0.95rem;
    font-weight: 500;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.section-animate-items .related-download-item-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 25px;
    line-height: 1.4;
    transition: all 0.3s ease;
}

.section-animate-items .related-download-item-title a {
    color: #2c3e50;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.section-animate-items .related-download-item-title a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #186ADC;
    transition: width 0.3s ease;
}

.section-animate-items .related-download-item:hover .related-download-item-title a {
    color: #186ADC;
}

.section-animate-items .related-download-item:hover .related-download-item-title a::after {
    width: 100%;
}

.section-animate-items .related-download-item-action {
    display: flex;
    justify-content: flex-end;
    margin-top: auto;
    margin-top: 20px;
}

/* 相关下载按钮 */
.section-animate-items .btn-outline-primary {
    color: #186ADC;
    border-color: #186ADC;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    background: transparent;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 2px 8px rgba(24, 106, 220, 0.1);
}

.section-animate-items .btn-outline-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #186ADC;
    color: white;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
    z-index: -1;
}

.section-animate-items .btn-outline-primary:hover {
    background: transparent;
    color: white;
    border-color: #186ADC;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(24, 106, 220, 0.25);
}

.section-animate-items .btn-outline-primary:hover::before {
    transform: scaleX(1);
}

/* 增强版相关下载按钮文本 */
.section-animate-items .btn-outline-primary span {
    position: relative;
    z-index: 1;
}

/* 相关下载按钮图标效果 */
.section-animate-items .btn-outline-primary i {
    margin-right: 8px;
    transition: transform 0.3s ease;
}

.section-animate-items .btn-outline-primary:hover i {
    transform: translateX(3px);
}

/* 响应式优化 */
@media (max-width: 767px) {
    .section-animate-items .careers-item {
        padding: 20px;
    }
    
    .section-animate-items .careers-item-meta-info {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
    
    .section-animate-items .careers-item-title {
        font-size: 1.15rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .section-animate-items .careers-item-actions {
        justify-content: flex-start;
        margin-top: 15px;
    }
    
    .section-animate-items .download-btn {
        width: 100%;
        justify-content: center;
    }
    
    /* 下载详情页响应式 */
    .section-animate-items .download-detail-wrapper {
        padding: 25px;
        margin-bottom: 25px;
        border-radius: 8px;
    }
    
    .section-animate-items .download-detail-title {
        font-size: 1.5rem;
        padding-bottom: 10px;
    }
    
    .section-animate-items .download-detail-title::after {
        width: 60px;
        height: 2px;
    }
    
    .section-animate-items .download-detail-meta {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
        padding: 20px;
    }
    
    .section-animate-items .download-detail-meta-item {
        justify-content: center;
    }
    
    .section-animate-items .download-detail-content {
        padding: 20px;
        margin-bottom: 30px;
    }
    
    .section-animate-items .download-detail-description {
        padding: 20px;
        margin-bottom: 30px;
    }
    
    .section-animate-items .download-detail-description h2 {
        font-size: 1.3rem;
    }
    
    .section-animate-items .download-detail-body {
        padding: 20px;
        font-size: 1rem;
    }
    
    .section-animate-items .download-detail-body h2 {
        font-size: 1.4rem;
    }
    
    .section-animate-items .download-detail-body h3 {
        font-size: 1.2rem;
    }
    
    .section-animate-items .download-detail-actions {
        margin: 30px 0;
        padding: 30px 20px;
    }
    
    .section-animate-items .download-btn-large {
        width: 100%;
        justify-content: center;
        padding: 15px 30px;
        font-size: 1rem;
    }
    
    .section-animate-items .download-btn-large i {
        font-size: 1.3rem;
    }
    
    .section-animate-items .related-downloads {
        padding: 30px 20px;
        margin-top: 40px;
    }
    
    .section-animate-items .related-downloads-title {
        font-size: 1.5rem;
        margin-bottom: 25px;
    }
    
    .section-animate-items .related-download-item {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .section-animate-items .related-download-item-title {
        font-size: 1.15rem;
    }
    
    .section-animate-items .related-download-item-action {
        justify-content: center;
    }
    
    .section-animate-items .btn-outline-primary {
        width: 100%;
        padding: 12px 20px;
        font-size: 1rem;
    }
    
    /* 调整相关下载网格布局 */
    .section-animate-items .row > .col-md-6 {
        margin-bottom: 15px;
    }
    
    /* 调整文档类型标签显示 */
    .section-animate-items .download-detail-badges {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
    }
    
    /* 调整响应式下的列表样式 */
    .section-animate-items .download-detail-body ul,
    .section-animate-items .download-detail-body ol {
        padding-left: 25px;
    }
}