﻿
/*年度论坛区域*/
/* 内容默认隐藏，active显示 */
.picture-box .picture-content {
    display: none;
}
.picture-box .picture-content.active {
    display: block; /* 如果原本是flex，改成flex */
}

/* 可选：点击项的选中样式 */
.picture-list .item.selected {
    border: 2px solid #0088ff; /* 示例：选中边框 */
    cursor: pointer;
}
.picture-list .item {
    cursor: pointer; /* 鼠标悬浮变手型 */
}





/* 确保luntan的内容项默认不被全局样式隐藏 */
#luntan .picture-box .picture-content {
    display: none;
}
#luntan .picture-box .picture-content.active {
    display: block; /* 保持luntan原有布局 */
}

/* gjdks的内容项样式独立 */
#gjdks .bottom {
    display: none;
}
#gjdks .bottom.active {
    display: flex; /* 保持gjdks原有布局 */
}
/* 文字链接高亮样式 */
.luntan .list a {
    /* 普通样式 */
    color: white;
    text-decoration: none;
    display: inline-block; /* 方便加padding */
    padding: 4px 8px;
}
.luntan .list a.active {
    /* 高亮样式（参考你截图的橙色） */
    color: white;
    font-weight: bold;
    /*border-bottom: 2px solid #ff9900;*/
}

/* 头像项选中样式 */
.luntan .picture-list .item {
    cursor: pointer;
    transition: all 0.2s;
}
.luntan .picture-list .item.active {
    border: 2px solid #ff9900; /* 选中边框 */
    box-shadow: 0 0 4px rgba(255, 153, 0, 0.5);
}

/* 内容项显示/隐藏 */
.luntan .picture-box .picture-content {
    display: none;
}
.luntan .picture-box .picture-content.active {
    display: block; /* 如果是flex布局改成flex */
}


/* 核心：给.bottom默认设置flex布局 */
.gjdks .bottom {
    display: flex;
    align-items: flex-start; /* 保留你原有flex属性 */
    gap: 16px; /* 示例，保留你原有样式 */
}
/* 隐藏时用none，显示时自动恢复flex */
.gjdks .bottom {
    display: none;
}
.gjdks .bottom.active {
    display: flex !important; /* 强制生效，覆盖行内样式 */
}

/* 头像选中样式不变 */
.gjdks .picture-list .list-item {
    cursor: pointer;
    transition: all 0.2s ease;
}
.gjdks .picture-list .list-item.active {
    /*border: 2px solid #ff9900;*/
    /*box-shadow: 0 0 6px rgba(255, 153, 0, 0.4);*/
}

/*logo*/
.logo-list {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    /* ✅ 重点修改1：把space-between 改成 flex-start 实现左对齐，解决最后一行分散问题 */
    justify-content: flex-start;
    /* ✅ 重点修改2：用 gap 统一设置【左右+上下】间距，一行5个间距均匀，代码更简洁，推荐！ */
    gap: 15px;
    padding: 10px;
}

.logo-item {
    width: calc( (100% - 4 * 15px) / 5 );
    display: flex;
    align-items: center;
    justify-content: center;
    /*background: #fff;*/
    padding: 1%;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    cursor: pointer;
    transition: all 0.3s ease;
}

.logo-item img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.logo-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}


.row[style*="display: block;"] {
    display: flex !important;
    flex-wrap: wrap;
}

.row[style*="display: block;"] .block {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.row[style*="display: block;"] .des {
    margin-top: auto;
}
#swiper7 {
    width: 100%;
    height: 100%;
}


.person-module {
    display: flex;
    align-items: stretch;
    gap: 30px;
    margin-top: 2%;
    background-color: #39017b;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

/* 偶数人物（第2、4个）反向排列：图片在右，介绍在左 */
.person-module:nth-child(even) {
    flex-direction: row-reverse;
}

/* 人物照片容器 */
.person-img {
    width: 65%;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
}

/* 照片样式 */
.person-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.person-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #5602C4;
    border-radius: 8px;
    padding: 30px;
    color: #fff;
}
p.hurun_jieshao {
    border-bottom: 1px solid #ffffff;
    text-align: center;
}
/* 姓名样式 - 适配深色背景 */
.person-name {
    font-size: 3rem;
    font-weight: bold;
    color: #FFD956;
    margin-bottom: 8px;
}

/* 职务样式 - 适配深色背景 */
.person-position {
    font-size: 1.6rem;
    color: #f0e6ff;
    margin-bottom: 0px;
    line-height: 1.5;
}

/* 介绍文本样式 - 适配深色背景 */
.person-desc {
    font-size: 1.8rem;
    color: #ffffff;
    line-height: 1.8;
    text-align: justify;
}

/* 响应式：屏幕小于768px时，堆叠排列 */
@media (max-width: 768px) {
    .person-module {
        flex-direction: column !important; /* 强制堆叠，取消反向 */
        gap: 20px;
    }
    .person-img {
        width: 100%;
        height: 300px;
    }
    .person-info {
        padding: 20px;
    }
}