        /* 除首页外css代码 */
 
        /* 整体容器 */
        .container-cont {
            display: flex;
            width: 100%;
            max-width: 1200px;
            margin: 20px auto;
            padding: 20px 0;			
        }
        /* 左侧导航栏 */
        .sidebar {
            width: 280px;
            flex-shrink: 0;
        }

        /* 导航栏头部 */
        .sidebar-header {
            background-color: #990000;
            color: #fff;
            font-size: 18px;
            font-weight: bold;
            text-align: center;
            padding: 20px 0;
        }

        /* 导航列表 */
        .sidebar-menu {
            list-style: none;
        }

        /* 导航项 */
        .sidebar-menu li {
            height: 50px;
            line-height: 50px;
            font-size: 16px;
            border-bottom: 1px solid #eee;
        }

        /* 导航链接：默认样式（硕士学位授权点） */
        .sidebar-menu li a {
            display: block;
            text-decoration: none;
            color: #333;
            padding-left: 30px;
            cursor: pointer;
            /* 平滑过渡 */
            transition: all 0.25s ease;
        }

        /* 鼠标悬停：超链接效果 */
        .sidebar-menu li a:hover {
          color: #990000;
          text-decoration: none;
     	  background-color: #f5f5f5;
          border-top: 2px solid #ffffff;
          border-left: 4px solid #990000;
          font-weight: bold;
        }

        /* 当前激活的导航项（本科专业） */
        .sidebar-menu li.active {
            background-color: #f5f5f5;
        }
        .sidebar-menu li.active a {
            color: #990000;
            font-weight: bold;
            border-left: 4px solid #990000;
            text-decoration: none;
        }

        /* 右侧内容区 —— 顶部对齐 */
        .main-content {
            flex: 1;
            padding: 0px 40px 20px 40px;
        }

        /* 面包屑导航 */
        .breadcrumb {
            text-align: right;
            font-size: 16px;
			font-weight: normal;
            color: #999;
            margin-bottom: 10px; /* 减少间距，往上提 */
        }

        /* 内容标题 —— 核心调整：与左侧导航下划线对齐 */
        .content-title {
            font-size: 20px;
            font-weight: bold;
            color: #222;
            height: 60px;          /* 和左侧菜单高度一样 */
            line-height: 60px;     /* 垂直居中 */
            padding-bottom: 0;     /* 取消内边距 */
            margin-bottom: 20px;
        }
	a.cont_t:link,a.cont_t:visited {
  color: #990000 !important;
  text-decoration: none;
}
        a.cont_t:hover {
  color: #990000 !important;
  text-decoration: underline;
}

        /* 专业列表 */
        .major-list {
            list-style: none;
        }
        .major-list li {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 16px;
            padding: 15px 0;
            border-bottom: 1px dashed #ccc;
        }
		
	.major-list li a {
          color: #000000;
          text-decoration: none;
          font-weight: normal;
        }		

        .major-list li a:hover {
          color: #990000;
          text-decoration: none;
        }		
        .major-list li:last-child {
            border-bottom: none;
        }
        .major-list .date {
            color: #999;
        }
		
/* --------------   正文样式 */		
		/* 标题样式 */
        .page-title {
            font-size: 26px;
            text-align: center;
            font-weight: bold;
            color: #555;
            margin: 30px 0;
			font-family: "Microsoft YaHei", sans-serif;
        }

        /* 发布信息栏 */
        .info-bar {
            display: flex;
            justify-content: center;
            gap: 60px;
            background-color: #f5f5f5;
            padding: 10px 0;
            font-size: 16px;
            margin-bottom: 15px;
        }

        /* 分割线 */
        .divider2 {
            border-bottom: 1px dashed #ccc;
            margin-bottom: 30px;
        }

        /* 正文内容区 */
        .viewcontent {
	    font-family: "Microsoft YaHei", sans-serif; 
            padding: 0 20px;
            line-height: 2;
            font-size: 16px;
            text-indent: 2em;
        }
	