.vc-index {
    padding: 20px;
    background-color: #f5f7fa;
    min-height: 100vh;
}

/* 欢迎头部和日期样式 */
.welcome-header {
    margin-bottom: 20px;
}

.date-info {
    display: flex;
    align-items: center;
}

.date-num {
    font-size: 48px;
    font-weight: bold;
    margin-right: 15px;
    color: #333;
}

.date-details {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.date-details div:first-child {
    font-weight: 500;
    font-size: 16px;
    color: #333;
}

.date-details div:last-child {
    font-size: 14px;
    color: #666;
}

/* 主内容区域布局 */
.main-content {
    display: flex;
    gap: 20px;
}

/* 左侧边栏样式 */
.left-sidebar {
    width: 280px;
    flex-shrink: 0;
}

.right-content {
    flex: 1;
}

/* 侧边栏模块样式 */
.sidebar-module {
    background-color: #fff;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.module-header {
    padding: 15px;
    border-bottom: 1px solid #f0f0f0;
    font-size: 15px;
    font-weight: 500;
    color: #333;
}

.module-content {
    padding: 15px;
}

/* 任务计数器样式 */
.task-counter {
    padding: 10px 0;
}

.counter-item {
    padding: 5px 0;
}

.counter-num {
    font-size: 38px;
    font-weight: 300;
    color: #333;
    line-height: 1.2;
}

.counter-label {
    font-size: 14px;
    color: #666;
    margin-top: 5px;
}

/* 消息内容样式 */
.news-content {
    min-height: 270px;
}

.empty-message {
    color: #999;
    padding: 30px 0;
    font-size: 14px;
}

.news-item {
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

.news-item:last-child {
    border-bottom: none;
}

/* 通用头部样式 */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    margin-bottom: 15px;
}

.section-header .title {
    font-size: 16px;
    font-weight: 500;
    color: #333;
}

.section-header .manage-link,
.section-header .rule-link,
.section-header .more-link {
    font-size: 14px;
    color: #1989FA;
    cursor: pointer;
}

/* 快捷入口模块样式 */
.quick-entry {
    background-color: #fff;
    border-radius: 8px;
    padding: 15px 20px;
    margin-bottom: 20px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}

.entry-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.entry-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: calc(14.28% - 10px);
    cursor: pointer;
}

.icon-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    border-radius: 8px;
    background-color: #f0f7ff;
    margin-bottom: 8px;
}

.icon-container i {
    font-size: 24px;
    color: #1989FA;
}

.icon-name {
    font-size: 14px;
    color: #333;
    text-align: center;
}

/* 智能运营小助手模块样式 */
.smart-assistant {
    background-color: #fff;
    border-radius: 8px;
    padding: 15px 20px;
    margin-bottom: 20px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}

.assistant-content {
    display: flex;
    align-items: center;
    padding: 20px 0;
}

.timer-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #e6f7ff;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
}

.timer-icon i {
    font-size: 20px;
    color: #1989FA;
}

.assistant-msg {
    flex: 1;
    color: #666;
    font-size: 14px;
}

.create-btn {
    padding: 8px 15px;
    background-color: #1989FA;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}

.create-btn:hover {
    background-color: #157ad3;
}

/* 运送执行趋势模块样式 */
.operation-trends {
    background-color: #fff;
    border-radius: 8px;
    padding: 15px 20px;
    margin-bottom: 20px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}

.chart-filters {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.filter-item {
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 14px;
    color: #666;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-item.active {
    background-color: #e6f7ff;
    color: #1989FA;
}

/* 响应式调整 */
@media screen and (max-width: 992px) {
    .main-content {
        flex-direction: column;
    }
    
    .left-sidebar {
        width: 100%;
        margin-bottom: 20px;
    }
    
    .task-counter {
        display: flex;
        justify-content: space-around;
    }
}

@media screen and (max-width: 768px) {
    .entry-item {
        width: calc(25% - 10px);
    }
    
    .assistant-content {
        flex-direction: column;
        text-align: center;
    }
    
    .timer-icon {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .assistant-msg {
        margin-bottom: 10px;
    }
    
    .date-info {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .date-num {
        margin-right: 0;
        margin-bottom: 5px;
    }
} 