/* ==========================================
   财大红主题 - 核心色值
   主色：#901C1C（财大红）
   辅助色：#F9F0F0（浅红背景）、#701616（深色红）
   中性色：#333（正文）、#666（次要文本）、#999（辅助文本）、#eee（分割线）
========================================== */

/* 全局重置与基础样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    font-family: "微软雅黑", "PingFang SC", "Helvetica Neue", Arial, sans-serif;
    background-color: #f5f5f5;
    color: #333;
    min-height: 100vh;
    line-height: 1.7;
}

/* 清除浮动 */
.clearfix::after {
    content: "";
    display: table;
    clear: both;
}

/* 基础元素样式 */
ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

a {
    text-decoration: none;
    transition: all 0.3s ease; /* 统一过渡动画 */
}

/* 核心容器样式 */
.main-container {
    width: 1200px;
    margin: 0 auto;
    position: relative;
    min-height: 900px;
    padding: 20px 0;
}

/* 主内容区 */
.main {
    width: 100%;
}

/* 面包屑导航 - 财大红主题优化 */
.main-top {
    padding: 15px 0;
    font-size: 14px;
    color: #666;
    border-bottom: 1px solid #eee;
    margin-bottom: 25px;
}

.home-link {
    color: #901C1C;
    font-weight: 500;
}

.home-link:hover {
    color: #701616;
}

.crumb-link {
    color: #666;
    margin: 0 5px;
}

.crumb-link:hover {
    color: #901C1C;
}

/* 左侧导航栏 - 财大红主题核心样式 */
.main-left {
    width: 200px;
    float: left;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(144, 28, 28, 0.08); /* 财大红浅阴影，贴合主题 */
    padding: 25px;
    margin-bottom: 30px;
    border: 1px solid #f8f8f8;
}

.left-title {
    color: #901C1C;
    font-weight: 700;
    font-size: 19px;
    padding: 10px 0;
    border-bottom: 2px solid #F9F0F0; /* 财大红浅背景作为分隔线 */
    margin-bottom: 20px;
    position: relative;
}

/* 左侧标题装饰 - 财大红小三角 */
.left-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 80px;
    height: 2px;
    background-color: #901C1C;
}

/* 左侧导航列表 */
.left-list ul {
    margin-top: 10px;
}

.left-list li {
    margin-bottom: 8px;
    border-radius: 8px;
}

.left-link {
    display: block;
    padding: 14px 18px;
    font-size: 16px;
    color: #333;
    border-radius: 8px;
}

/* 未选中状态hover - 财大红浅背景 */
.left-link:hover {
    background-color: #F9F0F0;
    color: #901C1C;
    transform: translateX(2px); /* 轻微位移，增强交互感 */
}

/* 选中状态 - 财大红主色 */
.left-list li.active {
    background-color: #901C1C;
}

.active-link {
    color: #fff !important;
    background-color: #901C1C !important;
}

/* 中间分隔区 */
.main-center {
    width: 20px;
    float: left;
}

/* 右侧内容区 - 财大红主题优化 */
.main-right {
    width: 960px;
    float: right;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(144, 28, 28, 0.08);
    padding: 35px;
    border: 1px solid #f8f8f8;
}

.right-title {
    color: #901C1C;
    font-weight: 700;
    font-size: 24px;
    padding: 15px 0;
    border-bottom: 2px solid #F9F0F0;
    margin-bottom: 30px;
    position: relative;
}

/* 右侧标题装饰 - 财大红渐变线 */
.right-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100px;
    height: 2px;
    background: linear-gradient(to right, #901C1C, #c84a4a); /* 财大红渐变，增强主题感 */
}

/* 右侧内容列表 */
.right-list {
    width: 100%;
}

.list-content li {
    padding: 15px 0;
    border-bottom: 1px dashed #eee;
}

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

/* 列表项布局 */
.list-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.list-item a {
    color: #333;
    font-size: 16px;
    max-width: 780px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* 列表标题hover - 财大红 */
.list-item a:hover {
    color: #901C1C;
    font-weight: 500;
}

.list-item span {
    color: #999;
    font-size: 14px;
    font-family: "Consolas", "Monaco", monospace; /* 时间用等宽字体，更精致 */
}

/* 响应式适配 - 适配不同屏幕 */
@media (max-width: 1220px) {
    .main-container {
        width: 95%;
    }
    
    .main-left {
        width: 180px;
        padding: 20px;
    }
    
    .main-right {
        width: calc(100% - 200px);
        padding: 25px;
    }
    
    .list-item a {
        max-width: calc(100% - 100px);
    }
}