.map-container {
    height: 600px;
    background-size: cover;
    background-position: center;
    position: relative;
	background-repeat: no-repeat;
}

.info-card {
    width: 520px;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 50px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    /*border-radius: 8px;*/
    /*box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);*/
	margin: 0 300px;
    height: 600px;	
}

/* 新添加的容器样式 */
.new-container {
    padding: 30px 200px;
    box-sizing: border-box;
}

.inner-container {
    width: 100%;
}

/* 荣誉资质样式 */
.honor-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;	
    margin: 0 auto;	
}

.honor-item {
    flex: 0 0 48%;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.honor-item h3 {
    color: #333;
    margin-bottom: 15px;
	
}

.honor-item p {
    margin: 8px 0;
    color: #666;
}

.divider {
    border: none;
    height: 1px;
    background-color: #eee;
    margin: 15px 0;
}

/* 选项卡样式 */
.tab-container {
    margin: 40px auto;
    max-width: 1200px;
    padding: 0 20px;
}

.tab-buttons {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.tab-button {
    padding: 10px 20px;
    margin: 0 20px 0 0;
    background: transparent;
    border: none;
    cursor: pointer;
    color: #333;
    font-size: 16px;
    position: relative;
    transition: all 0.3s;
}

.tab-button.active {
    color: #1890ff;
}

.tab-button.active::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -11px;
    width: 100%;
    height: 2px;
    background: #1890ff;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.tab-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 20px;
}

.tab-item {
    flex: 0 0 calc(33.333% - 14px);
    margin-bottom: 30px;
    text-align: left;
    padding: 15px;
    box-sizing: border-box;
    background: #fff;
    border-radius: 8px;
}

/* 两列布局时的调整 */
@media (max-width: 1024px) {
    .tab-item {
        flex: 0 0 calc(50% - 10px);
    }
}

/* 图片悬停放大效果 */
.tab-content img {
    transition: transform 0.3s ease;
    transform-origin: center;
}

.tab-content img:hover {
    transform: scale(1.05);
    z-index: 1;
    position: relative;
}

/* 防止多图放大时重叠 */
.tab-content {
    overflow: hidden;
}

/* 移动端横向滚动布局 */
@media (max-width: 768px) {
    .tab-items {
        gap: 15px;
    }
    
    .tab-item {
        flex: 0 0 100%;
        margin-bottom: 15px;
    }
    
    .tab-buttons-container {
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 10px;
    }
    
    .tab-buttons {
        display: inline-flex;
        flex-wrap: nowrap;
        white-space: nowrap;
        /*padding: 0 0px;*/
    }
    
    .tab-button {
        margin: 0 15px 0 0;
        flex: 0 0 auto;
        min-width: 80px;
    }
    
    /* 隐藏滚动条但保持滚动功能 */
    .tab-buttons-container::-webkit-scrollbar {
        display: none;
    }
}

.tab-item img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    margin-bottom: 10px;
    border-radius: 4px;
}

.tab-item h3 {
    margin: 10px 0;
    color: #333;
    font-size: 16px;
}

.tab-item p {
    margin: 5px 0;
    color: #666;
    font-size: 14px;
}

/* 移动端适配 - 保留项目单列布局 */
@media (max-width: 768px) {
    .tab-item {
        flex: 0 0 100%;
    }
}
/* 移动端样式 */
@media (max-width: 768px) {
    .map-container {
        height: auto;
        margin: 0;
		background-position: 30% center;
    }
    
    .info-card {
        position: relative;
        width: 90%;
        margin: 20px auto;
        top: auto;
        right: auto;
        transform: none;
    }

    .new-container {
        padding: 20px 10px;
    }

    .honor-item {
        flex: 0 0 100%;
    }
}