.dashboard-welcome{background-color:#fdfdfd;border-radius:10px;padding:20px;margin-bottom:20px;border:1px solid #f0f0f0;}.welcome-header{display:flex;align-items:center;}.welcome-icon{width:48px;height:48px;border-radius:50%;background-color:#F2F7F4;display:flex;align-items:center;justify-content:center;margin-right:15px;color:#5D9968;font-size:24px;}.welcome-text h2{font-size:18px;font-weight:500;margin:0 0 5px 0;display:flex;align-items:center;}.author-level{font-size:12px;padding:2px 6px;border-radius:10px;background-color:#EEE6FF;color:#7E57C2;margin-left:10px;font-weight:normal;}.welcome-text p{font-size:14px;color:#888;margin:0;}.dashboard-stats{display:flex;gap:20px;margin-bottom:20px;}.stats-card{background-color:#fff;border-radius:8px;padding:15px 20px;flex:1;box-shadow:0 1px 3px rgba(0,0,0,0.05);border:1px solid #f0f0f0;}.stats-title{font-size:14px;color:#666;margin-bottom:10px;}.stats-value{font-size:24px;font-weight:500;color:#333;}.create-new-container h3{font-size:16px;font-weight:500;margin-bottom:15px;display:flex;justify-content:space-between;align-items:center;}.view-all{font-size:14px;color:#999;text-decoration:none;display:flex;align-items:center;}.view-all:hover{color:#5D9968;}.view-all i{margin-left:5px;}.content-tabs{margin-top:20px;}.tab-header{display:flex;align-items:center;margin-bottom:15px;border-bottom:1px solid #eee;position:relative;}.tab{padding:8px 15px;font-size:14px;font-weight:500;cursor:pointer;color:#666;border-bottom:2px solid transparent;margin-right:20px;}.tab.active{color:#5D9968;border-bottom-color:#5D9968;}.tab-badge{position:relative;top:-10px;font-size:12px;padding:2px 6px;border-radius:10px;background-color:#5D9968;color:white;margin-left:-10px;}.tab-content{padding:15px 0;}.period-selector select{border:1px solid #ddd;border-radius:4px;padding:6px 10px;font-size:14px;color:#666;background-color:#f8f8f8;cursor:pointer;}.data-overview{background-color:#fff;border-radius:8px;box-shadow:0 1px 3px rgba(0,0,0,0.05);padding:20px;margin-bottom:20px;border:1px solid #f0f0f0;}.data-stats-row{display:flex;gap:20px;margin-bottom:20px;flex-wrap:wrap;}.data-stat-card{flex:1;min-width:150px;padding:15px;background-color:#f9f9f9;border-radius:6px;border:1px solid #f0f0f0;}.stat-label{font-size:14px;color:#666;margin-bottom:10px;}.stat-value{font-size:24px;font-weight:500;color:#333;}.stat-trend{font-size:12px;margin-top:5px;}.trend-up{color:#4CAF50;}.trend-down{color:#F44336;}.no-change{color:#999;}.chart-container{height:300px;border:1px solid #f0f0f0;border-radius:6px;overflow:hidden;}.empty-chart{width:100%;height:100%;display:flex;flex-direction:column;align-items:center;justify-content:center;color:#ccc;background-color:#f9f9f9;}.empty-chart i{font-size:48px;margin-bottom:10px;}.empty-chart p{font-size:14px;}.data-columns{display:flex;gap:20px;flex-wrap:wrap;}.data-column{flex:1;min-width:250px;}.column-title{font-size:14px;font-weight:500;margin:0 0 15px 0;color:#333;}.empty-data{min-height:150px;display:flex;flex-direction:column;align-items:center;justify-content:center;color:#ccc;background-color:#f9f9f9;border-radius:6px;}.empty-data i{font-size:32px;margin-bottom:10px;}.empty-data p{font-size:14px;}.creation-steps{display:flex;align-items:center;justify-content:space-between;padding:15px;background-color:#f9f9f9;border-radius:8px;margin-top:20px;}.step{display:flex;flex-direction:column;align-items:center;text-align:center;}.step-icon{width:40px;height:40px;border-radius:50%;background-color:#fff;display:flex;align-items:center;justify-content:center;margin-bottom:5px;color:#999;border:1px solid #eee;}.step-text{font-size:12px;color:#666;}.step-arrow{color:#ccc;font-size:14px;}/* 企业级统计趋势样式 */
.stats-trend {
    font-size: 12px;
    margin-top: 5px;
    padding: 2px 6px;
    border-radius: 4px;
    display: inline-block;
}

.stats-trend.positive {
    color: #4CAF50;
    background-color: rgba(76, 175, 80, 0.1);
}

.stats-trend.negative {
    color: #F44336;
    background-color: rgba(244, 67, 54, 0.1);
}

.stats-trend:not(.positive):not(.negative) {
    color: #999;
    background-color: rgba(153, 153, 153, 0.1);
}

/* 工作台书籍列表样式 */
.dashboard-books-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* 创建新书提示样式 */
.create-new-prompt {
    background-color: #f9f9f9;
    border: 2px dashed #ddd;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.create-new-prompt:hover {
    border-color: #5D9968;
    background-color: #f5f9f6;
}

.create-book-link {
    text-decoration: none;
    color: #666;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.prompt-icon {
    font-size: 48px;
    color: #5D9968;
}

.prompt-content h4 {
    margin: 0 0 8px 0;
    font-size: 18px;
    color: #333;
}

.prompt-desc {
    font-size: 14px;
    color: #666;
}

/* 工作台书籍卡片样式（继承novels-list的样式） */
.dashboard-books-list .novel-card.dashboard-book {
    display: flex;
    background-color: transparent;
    border: 1px solid #f0f0f0;
    border-radius: 8px;
    padding: 0;
    margin-bottom: 0;
    box-shadow: none;
    transition: all 0.3s ease;
    min-height: 160px;
    overflow: hidden;
}

.dashboard-books-list .novel-card.dashboard-book:hover {
    background-color: #fafafa;
    border-color: #ddd;
    transform: translateY(-1px);
}

/* 封面样式 */
.dashboard-books-list .novel-cover {
    width: 120px;
    min-width: 120px;
    height: 100%;
    margin-right: 0;
    border-radius: 8px 0 0 8px;
    overflow: hidden;
    background-color: #f5f5f5;
    position: relative;
    flex-shrink: 0;
    align-self: stretch;
}

.dashboard-books-list .cover-placeholder {
    width: 100%;
    height: 100%;
    background-color: #f5f5f5;
    color: #999;
    overflow: hidden;
    position: relative;
}

.dashboard-books-list .cover-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* 内容区域样式 */
.dashboard-books-list .novel-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 15px 20px;
    justify-content: center;
    min-height: 160px;
}

.dashboard-books-list .novel-title {
    margin: 0 0 8px 0;
    font-size: 20px;
    font-weight: 600;
    color: #333;
    line-height: 1.3;
}

.dashboard-books-list .update-status {
    color: #666;
    font-size: 14px;
    margin-bottom: 8px;
    line-height: 1.4;
}

.dashboard-books-list .novel-stats {
    color: #888;
    font-size: 13px;
    line-height: 1.4;
    flex-shrink: 0;
}

/* 操作按钮区域样式 */
.dashboard-books-list .novel-actions {
    min-width: 200px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    border-left: 1px solid #eee;
    padding: 15px;
    margin-left: 0;
    justify-content: center;
    align-items: stretch;
    flex-shrink: 0;
    min-height: 160px;
}

.dashboard-books-list .novel-action {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 15px;
    border-radius: 6px;
    text-decoration: none;
    color: #666;
    background-color: #f8f8f8;
    transition: all 0.3s ease;
    font-size: 14px;
    gap: 8px;
    border: 1px solid #e8e8e8;
    font-weight: 500;
}

.dashboard-books-list .novel-action:hover {
    background-color: #e8e8e8;
    color: #333;
}

.dashboard-books-list .novel-action.create-chapter {
    background-color: #5D9968;
    color: white;
    border: 1px solid #5D9968;
}

.dashboard-books-list .novel-action.create-chapter:hover {
    background-color: #4C8055;
    color: white;
    border-color: #4C8055;
}

@media (max-width:768px){.dashboard-stats,.data-stats-row{flex-direction:column;gap:10px;}}