/* 1. 整体布局容器：控制页面中央区域宽度并居中 */
.container-box {
    width: 98%;
    max-width: 1200px;
    margin: 30px auto; 
    box-sizing: border-box;
}

/* 2. 行容器：利用 Flex 让左右两列并排 */
.ant-row-flex {
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
}

/* 3. 左侧详情列：占据 75% 宽度 */
.ant-col-left {
    flex: 0 0 75%;
    max-width: 80%;
    padding: 0 15px;
    box-sizing: border-box;
	float: left;
}

/* 4. 右侧侧边栏列：占据 25% 宽度 */
.ant-col-right {
    flex: 0 0 25%;
    max-width: 25%;
    padding: 0 15px;
    box-sizing: border-box;
	float: right;
}

/* --- 内部表格样式 --- */
.ant-descriptions-view {
    width: 100%;
    overflow: hidden;
    border-radius: 4px;
}

.ant-descriptions-view table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #f0f0f0;
    background-color: #fff;
    table-layout: fixed; /* 保证文字换行 */
}

.ant-descriptions-row th, 
.ant-descriptions-row td {
    padding: 12px 16px;
    border: 1px solid #f0f0f0;
    font-size: 14px;
    line-height: 1.6;
    text-align: left;
    word-wrap: break-word;
    white-space: normal;
}

.ant-descriptions-item-label {
    background-color: #fafafa;
    color: rgba(0, 0, 0, 0.85);
    font-weight: 400;
    width: 130px; 
    white-space: nowrap;
}

.ant-descriptions-item-content {
    color: rgba(0, 0, 0, 0.65);
    word-break: break-all;
}

/* --- 适用产业标签样式 --- */
.industry-wrapper {
    display: flex;
    flex-wrap: wrap;
    margin: -4px;
}

.ant-col-8 {
    flex: 0 0 33.333%;
    max-width: 33.333%;
    padding: 4px;
    box-sizing: border-box;
}

.text-overflow {
    color: #1890ff;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

/* --- 右侧侧边栏样式 --- */
.right-sidebar {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05); /* 淡淡的投影更具现代感 */
}

.lib-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 35px 10px;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lib-info:last-child {
    border-bottom: none;
}

.lib-info:hover {
    background-color: #f0f7ff;
    transform: translateY(-2px); /* 悬停微动特效 */
}

.lib-info i {
    font-size: 32px;
    color: #1890ff;
    margin-bottom: 12px;
}

.lib-text {
    font-size: 15px;
    color: rgba(0, 0, 0, 0.85);
    text-align: center;
    font-weight: 500;
    line-height: 50px;
	height: 85px;
}
.lib-text img{

}
.jigouxiangqing-zhongxin{
	display: flex;
	    align-items: center;      /* 垂直居中 */
	    justify-content: center;   /* 如果也需要水平居中，加上这一行 */
	    height: 50px;             /* 必须有高度 */
}


/* --- 机构图片样式 --- */
.u-image {
    display: block;
    max-width: 100%;
    height: auto;
    border-radius: 2px;
    border: 1px solid #eee;
}

/* --- 移动端适配 --- */
@media (max-width: 992px) {
    .ant-col-left, .ant-col-right {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .ant-col-right {
        margin-top: 20px;
    }
    .lib-info {
        padding: 20px 10px;
    }
}