/* 基础样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Microsoft YaHei', '微软雅黑', Arial, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    padding: 20px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

/* 头部导航 */
header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 30px;
    text-align: center;
}

header h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    font-weight: 300;
}

nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

nav a {
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 25px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
}

nav a:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

nav a.active {
    background: rgba(255, 255, 255, 0.4);
    font-weight: bold;
}

/* 主内容区 */
main {
    padding: 30px;
    min-height: 500px;
}

/* 按钮样式 */
.btn {
    display: inline-block;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.btn-secondary {
    background: #6c757d;
    color: white;
}

.btn-secondary:hover {
    background: #5a6268;
}

.btn-danger {
    background: #dc3545;
    color: white;
}

.btn-danger:hover {
    background: #c82333;
}

.btn-small {
    padding: 5px 15px;
    font-size: 12px;
}

/* 页面标题 */
.page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 15px;
}

.page-header h2 {
    color: #333;
    font-size: 2em;
}

/* 作品卡片 */
.works-list {
    display: grid;
    gap: 20px;
}

.work-card {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    transition: all 0.3s ease;
    background: white;
}

.work-card:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.work-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    flex-wrap: wrap;
    gap: 10px;
}

.work-header h3 {
    margin: 0;
    color: #333;
}

.work-header h3 a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.work-header h3 a:hover {
    color: #667eea;
}

.badge {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 12px;
}

.badge-large {
    padding: 10px 20px;
    font-size: 14px;
}

.work-info p {
    margin: 8px 0;
    color: #666;
}

.summary {
    margin-top: 15px;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 5px;
    color: #555;
    line-height: 1.6;
}

.work-actions {
    margin-top: 15px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* 表单样式 */
.form-container {
    max-width: 700px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.required {
    color: #dc3545;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    margin-top: 30px;
}

/* 详情页 */
.work-detail {
    max-width: 800px;
    margin: 0 auto;
}

.detail-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 15px;
}

.detail-header h3 {
    font-size: 2em;
    color: #333;
}

.detail-info {
    margin-bottom: 30px;
}

.info-row {
    display: flex;
    padding: 15px 0;
    border-bottom: 1px solid #e0e0e0;
}

.info-row .label {
    font-weight: bold;
    width: 150px;
    color: #333;
}

.info-row .value {
    color: #666;
    flex: 1;
}

.detail-summary {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.detail-summary h4 {
    margin-bottom: 15px;
    color: #333;
}

.summary-content {
    line-height: 1.8;
    color: #555;
}

.detail-actions {
    display: flex;
    gap: 10px;
}

/* 搜索页面 */
.search-container {
    max-width: 800px;
    margin: 0 auto;
}

.search-form {
    margin-bottom: 30px;
}

.search-input-group {
    display: flex;
    gap: 10px;
}

.search-input {
    flex: 1;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-size: 14px;
}

.search-filter {
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    background: white;
    cursor: pointer;
}

.results-info {
    margin-bottom: 20px;
    color: #666;
    font-size: 1.1em;
}

.results-info em {
    color: #667eea;
    font-style: normal;
}

/* 统计页面 */
.statistics-container {
    max-width: 900px;
    margin: 0 auto;
}

.stats-overview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.stat-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
}

.stat-number {
    font-size: 2.5em;
    font-weight: bold;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1em;
    opacity: 0.9;
}

.stat-section {
    margin-bottom: 40px;
}

.stat-section h3 {
    margin-bottom: 20px;
    color: #333;
    font-size: 1.5em;
}

.stat-chart {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.chart-bar-wrapper {
    display: flex;
    align-items: center;
}

.chart-bar {
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 12px 20px;
    border-radius: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-width: 200px;
}

.stat-table {
    width: 100%;
    border-collapse: collapse;
}

.stat-table th,
.stat-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.stat-table th {
    background: #f8f9fa;
    font-weight: 600;
    color: #333;
}

.stat-table td.count {
    text-align: center;
    font-weight: bold;
    color: #667eea;
    font-size: 1.2em;
}

.stat-table tr:hover {
    background: #f8f9fa;
}

/* 分页 */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
    padding: 20px;
}

.pagination a {
    color: #667eea;
    text-decoration: none;
    padding: 8px 16px;
    border: 1px solid #667eea;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.pagination a:hover {
    background: #667eea;
    color: white;
}

.page-info {
    color: #666;
}

/* 提示消息 */
.alert {
    padding: 15px 20px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-danger {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* 空状态 */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: #999;
}

.empty-state p {
    font-size: 1.2em;
    margin-bottom: 20px;
}

/* 页脚 */
footer {
    background: #f8f9fa;
    color: #666;
    text-align: center;
    padding: 20px;
    font-size: 0.9em;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .work-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .page-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .search-input-group {
        flex-direction: column;
    }

    header h1 {
        font-size: 1.8em;
    }

    .stats-overview {
        grid-template-columns: 1fr;
    }
}

/* 首页表格样式 */
.header-actions {
    display: flex;
    gap: 10px;
}

.awards-table-container {
    background: white;
    border-radius: 8px;
    overflow: hidden;
}

.awards-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.awards-table thead {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.awards-table th {
    padding: 15px;
    text-align: left;
    font-weight: 600;
    font-size: 14px;
}

.awards-table tbody {
    background: white;
}

.award-row {
    border-bottom: 1px solid #e0e0e0;
    transition: background 0.2s ease;
}

.award-row:hover {
    background: #f8f9fa;
}

.award-row:last-child {
    border-bottom: none;
}

.awards-table td {
    padding: 15px;
    vertical-align: top;
}

.award-number {
    text-align: center;
}

.award-year {
    font-size: 1.1em;
    color: #333;
    font-weight: 500;
}

.award-count {
    text-align: center;
    font-weight: bold;
    color: #667eea;
    font-size: 1.2em;
}

.author-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.author-list li {
    padding: 5px 0;
    color: #555;
    border-bottom: 1px solid #f0f0f0;
}

.author-list li:last-child {
    border-bottom: none;
}

.author-link {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.author-link:hover {
    color: #764ba2;
    text-decoration: underline;
}

.works-list-inline {
    list-style: none;
    padding: 0;
    margin: 0;
}

.works-list-inline li {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}

.works-list-inline li:last-child {
    border-bottom: none;
}

.work-link {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.2s ease;
}

.work-link:hover {
    color: #764ba2;
    text-decoration: underline;
}

.work-actions-inline {
    display: inline-block;
    margin-left: 15px;
}

.action-link {
    color: #999;
    text-decoration: none;
    font-size: 12px;
    margin-left: 10px;
    transition: color 0.2s ease;
}

.action-link:hover {
    color: #667eea;
}

.action-delete:hover {
    color: #dc3545;
}

.table-footer {
    background: #f8f9fa;
    padding: 20px;
    border-top: 2px solid #e0e0e0;
}

.summary-info {
    text-align: center;
    color: #666;
    font-size: 1em;
    margin: 0;
}

.summary-info strong {
    color: #667eea;
    font-size: 1.2em;
}

/* 表格响应式 */
@media (max-width: 768px) {
    .awards-table {
        font-size: 12px;
    }

    .awards-table th,
    .awards-table td {
        padding: 10px 5px;
    }

    .header-actions {
        flex-direction: column;
        width: 100%;
    }

    .header-actions .btn {
        width: 100%;
        text-align: center;
    }
}

/* ==================== 作者页面样式 ==================== */

/* 拼音首字母筛选 */
.letter-filter {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.filter-title {
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.letter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.letter-btn {
    display: inline-block;
    padding: 8px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    text-decoration: none;
    color: #666;
    transition: all 0.3s ease;
    background: white;
}

.letter-btn:hover {
    border-color: #667eea;
    color: #667eea;
}

.letter-btn.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-color: #667eea;
    color: white;
}

/* 作者列表容器 */
.authors-container {
    background: white;
}

.letter-group {
    margin-bottom: 40px;
}

.letter-title {
    font-size: 2em;
    color: #667eea;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid #667eea;
}

.authors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.author-card {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    transition: all 0.3s ease;
    background: white;
}

.author-card:hover {
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.15);
    transform: translateY(-3px);
    border-color: #667eea;
}

.author-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    flex-wrap: wrap;
    gap: 10px;
}

.author-header h4 {
    margin: 0;
    color: #333;
}

.author-header h4 a {
    color: #333;
    text-decoration: none;
    transition: color 0.2s ease;
}

.author-header h4 a:hover {
    color: #667eea;
}

.birth-year {
    background: #f0f0f0;
    color: #666;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
}

.author-bio-preview {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 14px;
}

.author-works-count {
    color: #667eea;
    font-weight: 600;
    font-size: 14px;
}

/* 作者详情页 */
.author-detail-container {
    display: grid;
    gap: 30px;
}

.author-info-card {
    background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 30px;
}

.author-name-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 15px;
}

.author-name-section h3 {
    margin: 0;
    font-size: 2.5em;
    color: #333;
}

.author-birth-year {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
}

.author-actions {
    margin-bottom: 20px;
}

.author-biography {
    background: white;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #667eea;
}

.author-biography h4 {
    color: #333;
    margin-bottom: 15px;
}

.biography-content {
    line-height: 1.8;
    color: #555;
    text-align: justify;
}

/* 作者作品时间轴 */
.author-works-section h3 {
    margin-bottom: 25px;
    color: #333;
    font-size: 1.8em;
}

.works-timeline {
    position: relative;
    padding-left: 40px;
}

.works-timeline::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #667eea 0%, #764ba2 100%);
}

.work-timeline-item {
    position: relative;
    margin-bottom: 30px;
}

.work-year-badge {
    position: absolute;
    left: -40px;
    top: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-weight: bold;
    font-size: 14px;
}

.work-year-badge::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid #667eea;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
}

.work-timeline-content {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    transition: all 0.3s ease;
}

.work-timeline-content:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-color: #667eea;
}

.work-timeline-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    flex-wrap: wrap;
    gap: 10px;
}

.work-timeline-header h4 {
    margin: 0;
    font-size: 1.3em;
}

.work-timeline-header h4 a {
    color: #333;
    text-decoration: none;
    transition: color 0.2s ease;
}

.work-timeline-header h4 a:hover {
    color: #667eea;
}

.work-publisher {
    color: #666;
    margin: 8px 0;
    font-size: 14px;
}

.work-summary {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
    color: #555;
    line-height: 1.8;
    text-align: justify;
}

/* 茅奖作品特殊样式 */
.work-timeline-item.award-work .work-timeline-content {
    border-left: 4px solid #ffd700;
    background: linear-gradient(135deg, #fff9e6 0%, #ffffff 100%);
}

.work-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.badge-award {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #333;
    border: 1px solid #ffcc00;
}

.badge-category {
    background: #f0f0f0;
    color: #666;
    border: 1px solid #e0e0e0;
}

/* 茅盾文学奖获奖作品区域 */
.author-award-section {
    background: white;
    border: 2px solid #ffd700;
    border-radius: 10px;
    padding: 25px;
    margin-top: 30px;
}

.author-award-section h3 {
    color: #333;
    margin-bottom: 20px;
    font-size: 1.5em;
}

.award-works-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
}

.award-work-card {
    background: linear-gradient(135deg, #fff9e6 0%, #ffffff 100%);
    border: 1px solid #ffcc00;
    border-radius: 8px;
    padding: 15px;
    transition: all 0.3s ease;
}

.award-work-card:hover {
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
    transform: translateY(-2px);
}

.award-work-card h4 {
    margin: 0 0 10px 0;
    font-size: 1.1em;
}

.award-work-card h4 a {
    color: #333;
    text-decoration: none;
}

.award-work-card h4 a:hover {
    color: #667eea;
}

.empty-state-mini {
    text-align: center;
    padding: 40px 20px;
    color: #999;
}

/* 表单辅助样式 */
.form-help {
    display: block;
    margin-top: 5px;
    color: #999;
    font-size: 12px;
}

/* 作者页面响应式 */
@media (max-width: 768px) {
    .authors-grid {
        grid-template-columns: 1fr;
    }

    .letter-buttons {
        justify-content: center;
    }

    .author-name-section h3 {
        font-size: 1.8em;
    }

    .works-timeline {
        padding-left: 30px;
    }

    .work-year-badge {
        left: -30px;
        font-size: 12px;
        padding: 4px 10px;
    }

    .work-year-badge::after {
        right: -6px;
        border-left-width: 6px;
        border-top-width: 6px;
        border-bottom-width: 6px;
    }
}

/* 底部导航栏样式 */
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

/* 底部导航栏 - 优化样式 */

.footer-btn {
    padding: 15px 35px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 180px;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.footer-btn span {
    font-size: 1.3em;
    line-height: 1;
}

.footer-btn-index {
    background: linear-gradient(135deg, #4ECDC4 0%, #44A08D 100%);
    color: white;
    border: 2px solid transparent;
}

.footer-btn-index:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(78, 205, 196, 0.5);
    background: linear-gradient(135deg, #44A08D 0%, #4ECDC4 100%);
}

.footer-btn-home {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: 2px solid transparent;
}

.footer-btn-home:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.5);
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

/* 响应式 - 移动端优化 */
@media (max-width: 768px) {
    .footer-nav {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
    }
    
    .footer-btn {
        width: 100%;
        min-width: unset;
        padding: 12px 25px;
    }
}

/* 底部导航栏 - 居中优化 */
.footer-nav {
    background: white;
    padding: 25px 30px;
    border-radius: 20px;
    margin: 30px auto 0 auto;
    max-width: 600px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.footer-btn {
    padding: 15px 35px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 180px;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.footer-btn span {
    font-size: 1.3em;
    line-height: 1;
}

.footer-btn-index {
    background: linear-gradient(135deg, #4ECDC4 0%, #44A08D 100%);
    color: white;
    border: 2px solid transparent;
}

.footer-btn-index:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(78, 205, 196, 0.5);
    background: linear-gradient(135deg, #44A08D 0%, #4ECDC4 100%);
}

.footer-btn-home {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: 2px solid transparent;
}

.footer-btn-home:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.5);
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

/* 响应式 - 移动端优化 */
@media (max-width: 768px) {
    .footer-nav {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
        max-width: 100%;
    }
    
    .footer-btn {
        width: 100%;
        min-width: unset;
        padding: 12px 25px;
    }
}

/* 作品详情分区样式 */
.detail-section {
    margin-top: 25px;
    background: #f8f9fa;
    border-radius: 15px;
    padding: 25px;
    border-left: 5px solid #667eea;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.section-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e9ecef;
}

.section-title .icon {
    font-size: 1.8em;
    line-height: 1;
}

.section-title .text {
    font-size: 1.3em;
    font-weight: bold;
    color: #667eea;
}

.section-content {
    line-height: 1.8;
    color: #444;
    text-align: justify;
    padding: 0 10px;
}

/* 响应式 */
@media (max-width: 768px) {
    .detail-section {
        padding: 20px;
    }
    
    .section-title {
        flex-wrap: wrap;
    }
    
    .section-title .text {
        font-size: 1.1em;
    }
}
