/* ========== 列表页特有样式（不影响导航、更多按钮） ========== */
.main .top {
    width: 100%;
    height: 40px;
    background: #EDEDED;
    margin-bottom: 32px;
}
.main .top .top_con {
    width: 1200px;
    height: 40px;
    margin: 0 auto;
    display: flex;
    align-items: center;
}
.main .top img {
    margin-right: 6px;
}
.main .top a,
.main .top span {
    font-family: PingFangSC-Regular;
    font-size: 14px;
    line-height: 22px;
    font-weight: 400;
}
.main .top a {
    color: #8C8C8C;
    text-decoration: none;
}
.main .top a:hover {
    color: #125698;
}
.main .top span {
    color: rgba(0,0,0,0.65);
    margin: 0 5px;
}
.main .main_con {
    width: 100%;
    min-height: 887px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.main .main_con .con {
    width: 1200px;
    display: flex;
    justify-content: space-between;
}
.main .main_con .con .left {
    width: 309px;
}
.main .main_con .con .left .title {
    width: 309px;
    height: 62px;
    background: url(../img/bg.png);
    text-align: center;
    line-height: 48px;
    margin-bottom: 2px;
}
.main .main_con .con .left .title span {
    font-family: PingFangSC-Medium;
    font-size: 17px;
    color: #FFFFFF;
    font-weight: 500;
}
.main .main_con .con .left .trangle {
    width: 300px;
}
.main .main_con .con .left .trangle ul li {
    width: 100%;
    height: 44px;
    line-height: 44px;
    border-bottom: 1px solid #E3E3E3;
    box-sizing: border-box;
    padding-left: 36px;
    cursor: pointer;
}
.main .main_con .con .left .trangle ul li span {
    font-family: PingFangSC-Regular;
    font-size: 16px;
    color: #333333;
    font-weight: 400;
    margin-left: 12px;
}
.main .main_con .con .left .trangle ul li.active span {
    color: #125698;
    font-weight: 700;
}
.main_con .right {
    width: 861px;
    min-height: 835px;
    background: #F9F9F9;
    box-sizing: border-box;
    padding: 0 20px;
}
.message div {
    width: 100%;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px dotted #DEDEDE;
}
.message div a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
}
.message div a span:first-child {
    flex: 1;
    font-family: PingFangSC-Regular;
    font-size: 16px;
    color: #333333;
}
.message div a span:last-child {
    font-family: PingFangSC-Regular;
    font-size: 16px;
    color: #999999;
}
.message div a::before {
    width: 2px;
    height: 2px;
    content: '';
    background: #383838;
    border-radius: 50%;
    margin-right: 10px;
}
.page-info {
    text-align: center;
    height: 50px;
    line-height: 50px;
    color: #333333;
    font-size: 14px;
}
.page-info a,
.page-info span {
    color: #333333 !important;
    text-decoration: none;
}
.page-info a:hover {
    color: #125698 !important;
}
.page-info .current {
    color: #125698 !important;
    font-weight: bold;
    padding: 2px 8px;
    border: 1px solid #125698;
    border-radius: 2px;
}
/* 学院概况子栏目：文章内容页样式 */
.article-content {
    padding: 24px 0;
}
.article-content h2 {
    font-family: PingFangSC-Medium;
    font-size: 22px;
    color: #333333;
    text-align: center;
    margin-bottom: 16px;
    line-height: 1.4;
}
.article-content .article-body {
    font-size: 16px;
    color: #333333;
    line-height: 1.8;
}
@media (max-width: 1200px) {
    .main .top .top_con, .main .main_con .con { width: 96%; }
    .main .main_con .con .left { width: 250px; }
    .main_con .right { width: calc(100% - 270px); }
}
@media (max-width: 768px) {
    .main .main_con .con { flex-direction: column; }
    .main .main_con .con .left { width: 100%; margin-bottom: 20px; }
    .main_con .right { width: 100%; }
}