/* 核心特性部分样式 */
.core-features-section {
    /* padding: 80px 0; */
    background: #fff;
}

/* pocter页面专用特性部分样式 */
.pocter-features-section {
    /* padding: 80px 0; */
    background: #fff;
}

/* 核心架构部分 */
.core-architecture {
    margin-bottom: 60px;
}

/* 核心优势部分 */
.core-advantages {
    margin-bottom: 60px;
}

/* 核心特性项目通用样式 */
.core-feature-item {
    display: flex;
    align-items: center;
    gap: 40px; /* 减小左右间距 */
    padding: 40px 0; /* 增加上下内边距 */
}

/* 核心优势部分 - 左文右图布局 */
.core-advantages .core-feature-item {
    flex-direction: row;
}

.core-advantages .feature-content {
    order: 1;
}

.core-advantages .feature-image {
    order: 2;
}

/* pocter页面专用 - 核心架构部分 */
.pocter-architecture {
    /* margin-bottom: 60px; */
    background-color: #f7f7f7;
    /* padding: 50px 0; */
    /* 背景色延伸到满屏 */
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    position: relative;
}



/* pocter页面专用 - 核心特性项目通用样式 */
.pocter-feature-item {
    display: flex;
    align-items: center;
    gap: 50px; /* 增加左右间距，使布局更平衡 */
    padding: 50px 0; /* 增加上下内边距 */
}

/* pocter页面专用 - 核心优势部分 - 左文右图布局 */
.pocter-advantages .pocter-feature-item {
    flex-direction: row;
}

.pocter-advantages .feature-content {
    order: 1;
}

.pocter-advantages .feature-image {
    order: 2;
}

.pocter-advantages .features-image {
    order: 2;
}

/* 特性图片样式 */
.feature-image {
    flex: 1;
    text-align: center;
    max-width: 45%; /* 限制图片区域宽度 */
}

.feature-image img {
    max-width: 100%;
    height: auto;
    /* border-radius: 8px; */
    max-height: 300px; /* 限制图片最大高度 */
    object-fit: contain; /* 保持图片比例 */
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* 特性内容样式 */
.feature-content {
    flex: 1;
    max-width: 45%; /* 调整文字内容区域宽度，给图片更多空间 */
}

.feature-content h3 {
    font-size: 2rem;
    color: #bfb59f;
    margin-bottom: 20px;
    font-weight: 600;
}

.feature-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin: 0 0 20px 0;
}

/* 标签容器样式 */
.feature-content .tags-container {
    display: flex;
    flex-wrap: wrap;
    column-gap: 66px;
    margin-top: 20px;
    max-width: 423px;
}

/* 响应式设计 */
@media (max-width: 992px) {
    .core-feature-item {
        flex-direction: column;
        gap: 30px;
    }
    
    .feature-image,
    .feature-content {
        flex: none;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .core-features-section {
        padding: 50px 0;
    }
    
    .feature-content h3 {
        font-size: 1.6rem;
    }
    
    .feature-content p {
        font-size: 1rem;
    }
}

.features-image {
    flex: 1;
    text-align: center;
    max-width: 50%; /* 增加图片区域宽度 */
    display: flex;
    align-items: center;
    justify-content: center;
}

.features-image img {
    max-width: 100%;
    height: auto;

    max-height: 350px; /* 增加图片最大高度 */
    object-fit: contain; /* 保持图片比例 */
  
}

/* pocter-architecture专用标签样式 */
.architecture-tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 25px;
}

.architecture-tag {
    width: 130px;
    height: 50px;
    border: 2px solid #aa763a;
    background: transparent;
    color: #666;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    min-width: 120px;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-sizing: border-box;
    text-align: center;
    line-height: 1.2;
    word-break: break-word;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 5px;
}

.pocter-architecture .architecture-tag:hover {
    background-color: #aa763a;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(170, 118, 58, 0.3);
}

/* 医疗物流机器人标签容器样式 */
.pocter-architecture .architecture-tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: flex-start;
    /* max-width: 300px; */
}

/* 医疗物流机器人标签样式 */
.pocter-architecture .medical-tag {
    width: 140px;
    height: 50px;
    border: none;
    border-radius: 8px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    background-color: transparent;
    min-width: 130px;
    transition: all 0.3s ease;
    cursor: pointer;
    padding: 5px 10px;
    box-sizing: border-box;
    gap: 8px;
    flex: 0 0 calc(50% - 7.5px);
}

.pocter-architecture .medical-tag .tag-icon {
    font-size: 16px;
    line-height: 1;
    flex-shrink: 0;
}

.pocter-architecture .medical-tag .tag-icon img{
    width: 35px;
}


.pocter-architecture .medical-tag .tag-name {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100px;
}

/* 移除悬停效果 */

/* 响应式设计 - 小屏幕优化 */
@media (max-width: 480px) {
    .architecture-tag {
        width: 110px;
        min-width: 100px;
        font-size: 12px;
        height: 45px;
    }
    
    .pocter-architecture .medical-tag {
        width: 120px;
        min-width: 110px;
        height: 45px;
    }
    
    .pocter-architecture .medical-tag .tag-name {
        font-size: 12px;
        max-width: 80px;
    }
}

/* 全息沙盘标签容器样式 - 与医疗物流机器人保持一致 */
.pocter-advantages .architecture-tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: flex-start;
    max-width: 300px;
}

/* 全息沙盘标签样式 - 与医疗物流机器人保持一致 */
.pocter-advantages .medical-tag {
    width: 140px;
    height: 50px;
    border: none;
    border-radius: 8px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    background-color: transparent;
    transition: all 0.3s ease;
    cursor: pointer;
    padding: 5px 10px;
    box-sizing: border-box;
    gap: 8px;
    flex: 0 0 calc(50% - 7.5px);
}

.pocter-advantages .medical-tag .tag-icon {
    font-size: 16px;
    line-height: 1;
    flex-shrink: 0;
}

.pocter-advantages .medical-tag .tag-icon img{
    width: 35px;
}

.pocter-advantages .medical-tag .tag-name {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    line-height: 1.2;
    white-space: nowrap;
}
