.main-content-box {
    background-color: #F5F9FF;
}

.content_box {
    display: flex;
    margin: 20px;
    width: 1200px;
    margin: auto;
}

.sidebar {
    width: 240px;
    background-color: #fff;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    margin-right: 40px;
    align-self: flex-start;
    transform: translateY(-60px);
}

.sidebar-item {
    padding: 13px 20px;
    border-bottom: 1px solid #e0e0e0;
    cursor: pointer;
    transition: background-color 0.3s;
    font-weight: 400;
    font-size: 16px;
    color: #363636;
    line-height: 23px;
  	display:block;
    text-align: center;
}

.sidebar-item:last-child {
    border-bottom: none;
}

.sidebar-item.active {
    background-color: #DFECFC;
}

.sidebar-item:hover {
    background-color: #f0f8ff;
}

.aside_logo {
    width: 240px;
    height: 60px;
    background: #0152A8;
    border-radius: 0px 0px 0px 0px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.aside_logo img {
    width: 120px;
}

.main-content {
    flex-grow: 1;
    padding: 0.75rem 0 60px;
}

.content-card {
    margin-top: 12px;
    background: #FFFFFF;
    border-radius: 6px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    padding: 13px 28px 28px;
}

.location {
    color: #666;
    font-size: 14px;
}


.article-list {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
}

.article-item {
    display: flex;
    border-bottom: 1px solid #e5e5e5;
    padding: 15px 0 17px;
    cursor: pointer;
  	flex-wrap: nowrap;
}

.article-image {
    width: 160px;
    height: 120px;
    background-color: #090303;
    margin-right: 15px;
}

.article-image img {
    width: 160px;
    height: 120px;
    object-fit: cover;
}

.article-content {
    min-width: 0;
    flex: 1;
    margin-right: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;

}

.article-title {
    color: rgba(56, 56, 56, 1);
    font-size: 17px;
    line-height: 150%;
    text-align: left;
    font-weight: bold;
  	margin-bottom: 0px;
      
}

.article-description {
    color: rgba(128, 128, 128, 1);
    font-size: 15px;
    line-height: 150%;
    text-align: left;
    display: -webkit-box;
    /* 关键：启用 flex 盒模型 */
    -webkit-box-orient: vertical;
    /* 设置垂直方向的布局 */
    -webkit-line-clamp: 3;
    /* 限制显示 3 行 */
    overflow: hidden;
    /* 超出部分隐藏 */
    text-overflow: ellipsis;
    /* 显示省略号 */
    word-break: break-word;
    /* 避免单词溢出 */
}

.article-meta {
    color: rgba(128, 128, 128, 1);
    font-size: 13px;
    line-height: 150%;
}

.article-arrow {
    align-self: center;
    font-size: 24px;
    color: #c6c6c6;
    border: 1px solid #c6c6c6;
    border-radius: 24px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.medical-item {
    display: flex;
    border-bottom: 1px solid #e5e5e5;
    padding: 15px 0 17px;
    cursor: pointer;
}

.medical-image {
    width: 172px;
    height: 217px;
    background-color: #090303;
    margin-right: 20px;
}

.medical-image img {
    width: 172px;
    height: 217px;
  object-fit: cover;
}

.medical-content {
    min-width: 0;
    flex: 1;
    margin-right: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;

}

.medical-content-top {
    display: flex;
    align-items: end;
    margin-bottom: 2px;
}

.medical-title {
    color: rgba(80, 80, 80, 1);
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 0;
}

.medical-jobtitle {
    color: rgba(80, 80, 80, 1);
    font-size: 14px;
    margin: 0 0 0 8px;
}

.medical-description {
    color: rgba(80, 80, 80, 1);
    font-size: 14px;
}

.medical-goods {
    color: rgba(80, 80, 80, 1);
    font-size: 14px;
}

.medical-btn {
    width: 180px;
    height: 48px;
    color: rgba(56, 56, 56, 1);
    background-color: rgba(229, 229, 229, 1);
    font-size: 17px;
    text-align: center;
    border: none;
    line-height: 48px;
    margin-top: 5px;
}

.medical-item:hover .medical-btn {
    background-color: var(--primary-color);
    color: #fff;
}

.question-item {
    border-bottom: 1px solid #e5e5e5;
    padding: 15px 0 17px;
    cursor: pointer;
}

.question-title {
    display: flex;
    align-items: center;
    color: rgba(56, 56, 56, 1);
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

.question-title-icon {
    width: 32px;
    height: 32px;
    color: rgba(56, 56, 56, 1);
    background-color: rgba(255, 210, 64, 1);
    border-radius: 8px;
    font-size: 18px;
    line-height: 32px;
    text-align: center;
    font-weight: bold;
    margin-right: 10px;
}

.question-content {
    display: flex;
    color: rgba(80, 80, 80, 1);
    background-color: rgba(255, 255, 255, 1);
    font-size: 16px;
    line-height: 180%;
    text-align: left;
    margin-bottom: 10px;
}

.question-content-icon {
    width: 32px;
    height: 32px;
    color: rgba(56, 56, 56, 1);
    background-color: #e5e5e5;
    border-radius: 8px;
    font-size: 18px;
    line-height: 32px;
    text-align: center;
    font-weight: bold;
    margin-right: 10px;
}

.question-btns {
    display: flex;
    align-items: center;
    gap: 20px;
  	padding-left:42px;
}

.question-button {
    width: 232px;
    height: 48px;
    color: rgba(80, 80, 80, 1);
    background-color: rgba(238, 238, 238, 1);
    border-radius: 12px;
    font-size: 16px;
    border: 1px solid transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}

.question-button-primary {
    width: 232px;
    height: 48px;
    color: #0152a8;
    border-radius: 12px;
    font-size: 16px;
    border: 1px solid #0152a8;
    display: flex;
    align-items: center;
    justify-content: center;
}

.question-button-primary:hover {
   	color: #0152a8;
    border: 1px solid #0152a8;
}

.question-button:hover {
    background-color: #fff;
    color: #00baad;
    border:1px solid #00baad;
    
}

.pagination {
    display: flex;
    justify-content: center;
    list-style-type: none;
    padding: 0;
    margin-top: 20px;
}

.pagination li {
    margin: 0 5px;
}

.pagination a {
    padding: 5px 10px;
    border: 1px solid #ddd;
    color: #333;
    text-decoration: none;
}

.pagination li.active a {
    background-color: #007bff;
    color: white;
}