/* 信息公开二级页面样式 */
.info-container {
    margin: 10px auto;
    
}

/* 信息公开图标区域 - 顶部导航 */
.info-icons {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.info-icon-item {
    width: 33%;
    height: 90px;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s;
}

.info-icon-item .icon {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
}

.info-icon-item .icon img {
    width: 30px;
    height: 30px;
}

.info-icon-item.decision {
    background-color: #00b3a4;
}

.info-icon-item.management {
    background-color: #4caf50;
}

.info-icon-item.service {
    background-color: #2196f3;
}

.info-icon-item.finance {
    background-color: #ff7043;
}

/* 下部分内容区域 - 左右两栏布局 */
.info-content-wrapper {
    display: flex;
    margin-top: 20px;
    align-items: stretch; /* 确保左右两栏高度一致 */
}

/* 左侧单位信息 */
.info-left {
    width: 24%;
    margin-right: 20px;
    display: flex; /* 使用flex布局 */
    flex-direction: column;
}

.unit-info-box {
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    flex: 1; /* 占满父容器高度 */
    display: flex;
    flex-direction: column;
}

.unit-info-header {
    background-color: #f5f5f5;
    padding: 15px;
    border-bottom: 1px solid #eee;
    flex-shrink: 0; /* 防止头部被压缩 */
}

.unit-info-title {
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: bold;
    color: #333;
}

.unit-info-title .icon {
    width: 24px;
    height: 24px;
    background-color: #0066cc;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
}

.unit-info-title .icon img {
    width: 14px;
    height: 14px;
    filter: brightness(0) invert(1);
}

.unit-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background-color: #eee;
    flex: 1; /* 占满剩余空间 */
    align-content: stretch; /* 改为stretch，让网格项目填充满可用空间 */
    grid-template-rows: 1fr 1fr 1fr; /* 明确定义3行，每行等高 */
}

.unit-info-item {
    background-color: #fff;
    text-align: center;
    padding: 20px 10px; /* 增加垂直内边距，减少水平内边距 */
    display: flex;
    align-items: center;
    justify-content: center;
    /* 移除min-height，让网格自动分配高度 */
}

.unit-info-item a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #333;
    width: 100%;
    height: 100%;
    transition: all 0.3s ease; /* 添加过渡效果 */
}

.unit-info-item a:hover {
    color: #0066cc;
    transform: translateY(-2px); /* 悬停时轻微上移 */
}

.unit-info-icon {
    width: 36px; /* 稍微减小图标尺寸 */
    height: 36px;
    margin-bottom: 8px;
    transition: transform 0.3s ease; /* 图标过渡效果 */
}

.unit-info-icon img {
    width: 100%;
    height: 100%;
}

.unit-info-item a:hover .unit-info-icon {
    transform: scale(1.1); /* 悬停时图标放大 */
}

/* 右侧最新公开 */
.info-right {
    flex: 1;
    display: flex; /* 使用flex布局 */
    flex-direction: column;
}

.info-section {
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    flex: 1; /* 占满父容器高度 */
    display: flex;
    flex-direction: column;
}

.info-section-header {
    display: flex;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid #eee;
    flex-shrink: 0; /* 防止头部被压缩 */
}

.info-section-title {
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: bold;
    color: #333;
}

.info-section-title .icon {
    width: 24px;
    height: 24px;
    background-color: #0066cc;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
}

.info-section-title .icon img {
    width: 14px;
    height: 14px;
    filter: brightness(0) invert(1);
}

.info-list {
    list-style: none;
    padding: 0 15px;
    margin: 0;
    flex: 1; /* 占满剩余空间 */
    overflow-y: auto; /* 如果内容过多，允许滚动 */
}

.info-list li {
    display: flex;
    font-size: 16px;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px dashed #e0e0e0;
    position: relative;
    padding-left: 15px;
}

.info-list li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 20px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #0066cc;
}

.info-list li:last-child {
    border-bottom: none;
}

.info-list li a {
    flex: 1;
    color: #333;
    text-decoration: none;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.info-list li a:hover {
    color: #0066cc;
}

.info-list li span {
    color: #999;
    font-size: 16px;
    margin-left: 15px;
    white-space: nowrap;
}

/* 响应式调整 */
@media (max-width: 992px) {
    .info-content-wrapper {
        flex-direction: column;
    }
    
    .info-left {
        width: 100%;
        margin-right: 0;
        margin-bottom: 20px;
    }
    
    .unit-info-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .info-icon-item {
        width: 49%;
        margin-bottom: 10px;
    }
    
    .unit-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

info-mian-item{
    
}
/* 添加下拉菜单样式 */
.info-icons {
    position: relative;
    /* z-index: 100; */
}

/* 下拉菜单样式 */
.info-icon-item {
    position: relative;
}

.info-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #fff;
    border-radius: 0 0 5px 5px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    /* z-index: 999; */
    display: none;
}

.info-dropdown-item {
    display: block;
    padding: 10px 15px;
    color: #333;
    text-decoration: none;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14px;
    text-align: center;
    transition: all 0.3s;
}

.info-dropdown-item:hover {
    background-color: #f5f5f5;
    color: #0066cc;
}

.info-dropdown-item:last-child {
    border-bottom: none;
}