/* 开发说明书列表模块样式 */
.dev-docs-section {
    padding: 80px 0;
    background-color: #fff;
}

.dev-docs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
    max-width: 600px;
    margin: 0 auto;
}

.dev-doc-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid rgba(57, 127, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.dev-doc-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(57, 127, 255, 0.15);
    border-color: rgba(57, 127, 255, 0.3);
}

.doc-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2857B3, #224B9A);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.doc-icon i {
    font-size: 24px;
    color: white;
}

.doc-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.doc-description {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
}