.contact-us-container {
    display: flex;
    width: 100%;
    min-height: 600px;
    font-family: 'Arial', sans-serif;
    color: white;
}

/* 左侧图片区域 */
.contact-us-image-section {
    flex: 1.5;
    min-height: 600px;
    overflow: hidden;
    background-image: url('https://yuqian.su.bcebos.com/sources/imgs/companyIntroduce/global.png');
    background-size: contain;
    background-repeat: no-repeat; 
    background-position: center;
}

/* 右侧联系信息区域 */
.contact-us-section {
    flex: 1;
    /* 占据1/4宽度 */
    background-color: #22c55e;
    /* 绿色背景 */
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.contact-us-info {
    margin-bottom: auto;
}

.contact-us-item {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.contact-us-item:last-child {
    border-bottom: none;
}

.contact-us-item .icon {
    margin-right: 10px;
    vertical-align: middle;
}

.contact-us-item h3 {
    font-size: 16px;
    margin-bottom: 8px;
    font-weight: 600;
}

.contact-us-item p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.9;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .contact-us-container {
        flex-direction: column;
    }

    .contact-us-image-section {
        flex: 1;
        min-height: 300px;
    }

    .contact-us-section {
        flex: 1;
    }

    .bottom-icons {
        flex-direction: row;
        justify-content: space-around;
        margin-top: 30px;
        align-items: center;
    }
}