/* 网页顶部标题样式 */
.page-title {
    text-align: center;
    font-size: 36px;
    font-weight: bold;
    color: #333;
    padding: 20px 0;
    background-color: #f0f0f0;
    margin: 0;
    border-bottom: 1px solid #ccc;
}

/* 整体容器样式 */
.main-container {
    width: 1200px;
    margin: 0 auto;
    display: flex;
    height: calc(100vh - 76px);
    font-family: Arial, sans-serif;
	
}

/* 左侧侧边栏样式 */
.sidebar {
    width: 20%;
    background-color: #f4f4f4;
    border-right: 1px solid #ccc;
    padding: 15px;
    overflow-y: auto;
}

.menu-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.menu-list li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    cursor: pointer;
    padding: 10px;
    border-radius: 5px;
	height:60px;
	font-size:25px;
}

.menu-list li:hover {
    background-color: #e0e0e0;
}

.menu-list li.active {
    background-color: #d0d0d0;
}

.menu-list li img {
    width: 30px;
    height: 30px;
    margin-right: 10px;
	margin-top: 2px;
}

/* 右侧详情展示区域样式 */
.detail-area {
    width: 80%;
    padding: 20px;
    overflow-y: auto;
}

.detail-section {
    margin-bottom: 30px;
    border-bottom: 1px solid #ccc;
    padding-bottom: 20px;
}

.section-title {
    font-size: 24px;
    margin-bottom: 10px;
}

.detail-row {
    display: flex;
    flex-wrap: wrap;
    margin: -10px;
}

.detail-item {
     width: 280px;
    height: 70px;
    margin: 10px;
    display: flex;
    border: 1px solid #ccc;
    border-radius: 8px;
    /* padding: 10px; */
    box-sizing: border-box;
}

.image-container {
  width: 74px;
    height: 60px;
    margin-left: 10px;
    margin-top: 5px;
}

.image-container img {
    width: 100%;
    height: 100%;
    border-radius: 5px;
    object-fit: cover; /* 确保图片填充容器 */
}

.text-container {
        flex: 1;
    height: 60px;
    margin-left: 20px;
    margin-top: -5px;
}

.item-title {
    font-size: 23px;
    margin-bottom: 10px;
}

.item-desc {
    margin: 0;
}