/* 基础布局 - 固定1200px宽度 */
.main-layout {
    width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
}

.left-main-column {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* SEO面包屑导航样式（暖调主题适配） */
.breadcrumb {
    font-size: 14px;
    /* 替换：中木纹文字（原淡紫色） */
    color: #786040;
    margin-bottom: 15px;
    padding: 8px 15px;
    /* 替换：浅杏色半透背景（原紫色半透） */
    background: rgba(230, 154, 136, 0.05);
    border-radius: 4px;
}

.breadcrumb a {
    /* 替换：浅杏色链接（原紫色） */
    color: #e69a88;
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    /* 替换：珊瑚红hover（原深紫色） */
    color: #e87a6f;
    text-decoration: underline;
}

.breadcrumb span {
    margin: 0 8px;
    /* 替换：深木纹分隔符（原淡紫色） */
    color: #584830;
}

.breadcrumb .current {
    /* 替换：浅杏色当前页（原淡紫粉色） */
    color: #e69a88;
    font-weight: 500;
}

/* 任务表格样式（暖调主题适配） */
.task-table-wrap {
    margin-bottom: 25px;
}

.task-info-table {
    width: 100%;
    border-collapse: collapse;
    /* 替换：深木纹文字（原淡紫色） */
    color: #584830;
    font-size: 15px;
    /* 替换：奶油木色背景（原暗黑） */
    background: #f0e8d8;
    border-radius: 8px;
    overflow: hidden;
}

.task-info-table tr {
    /* 替换：浅木色边框（原紫色） */
    border: 1px solid rgba(168, 136, 96, 0.3);
}

.task-info-table td {
    padding: 10px 15px;
    /* 替换：浅木色边框（原紫色） */
    border: 1px solid rgba(168, 136, 96, 0.3);
    transition: all 0.3s ease;
}

.task-info-table .table-label {
    width: 15%;
    /* 替换：浅杏色半透背景（原紫色半透） */
    background: rgba(230, 154, 136, 0.05);
}

.task-info-table tr:hover td {
    /* 替换：浅杏色hover背景（原紫色半透） */
    background: rgba(230, 154, 136, 0.1);
}

/* 任务详情内容样式（暖调主题适配） */
.task-detail-content {
    /* 替换：深木纹文字（原淡紫色） */
    color: #584830;
    font-size: 15px;
    line-height: 1.8;
}

.task-content-wrap {
    /* 替换：浅木色分隔线（原紫色） */
    border-top: 1px solid rgba(168, 136, 96, 0.3);
    padding-top: 20px;
}

.content-title {
    /* 替换：浅杏色标题（原淡紫粉色） */
    color: #e69a88;
    margin-bottom: 15px;
    font-size: 18px;
    position: relative;
    padding-left: 15px;
    margin-top: 25px;
    font-weight: 600;
}

.content-title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 18px;
    /* 替换：暖调渐变装饰线（原紫色渐变） */
    background: linear-gradient(180deg, #e69a88, #f0d99c);
    border-radius: 3px;
}

.task-detail-content p {
    text-indent: 2em;
    margin-bottom: 12px;
}

/* 上一个/下一个任务导航样式（暖调主题适配） */
.task-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    padding: 15px 20px;
    /* 替换：浅杏色半透背景（原紫色半透） */
    background: rgba(230, 154, 136, 0.08);
    border-radius: 8px;
    /* 替换：浅木色边框（原紫色） */
    border: 1px solid rgba(168, 136, 96, 0.2);
}

.task-nav a {
    /* 替换：深木纹文字（原淡紫粉色） */
    color: #584830;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    border-radius: 4px;
    transition: all 0.3s;
}

.task-nav a:hover {
    /* 替换：浅杏色hover背景（原紫色半透） */
    background: rgba(230, 154, 136, 0.2);
    /* 替换：珊瑚红hover文字（原白色，更适配暖调） */
    color: #e87a6f;
}

.task-nav .icon {
    font-size: 16px;
    font-weight: bold;
}