/* 公司简介部分 */
.company-intro {
    padding: 80px 0;
    background: url('../images/图片资料/关于/背景图.png');
    background-size: cover;
    background-position: center;
    /* background-attachment: fixed; */
    color: #fff;
    position: relative;
}

.company-intro h1 {
    font-size: 42px;
    margin-bottom: 40px;
    text-align: left;  /* 修改为左对齐 */
}

.intro-content {
    max-width: 800px;
    margin: 0;  /* 移除auto margin使其左对齐 */
    line-height: 1.8;
}

.intro-content p {
    margin-bottom: 20px;
    font-size: 16px;
    opacity: 0.9;
    text-align: left;  /* 确保段落文字左对齐 */
}

/* 添加一个渐变遮罩效果增强文字可读性 */
.company-intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.3), transparent);
    pointer-events: none;
}

.company-intro .container {
    position: relative;  /* 确保内容在遮罩层之上 */
    z-index: 1;
}

/* 企业版图部分 */
.company-map {
    padding: 80px 0;
    background: #f8f9fc;
}

.map-content {
    margin-top: 40px;
}

.map-image {
    margin-bottom: 40px;
}

.map-image img {
    width: 100%;
    height: auto;
}
/* 响应式适配 */
@media (max-width: 768px) {
    .company-intro {
        padding: 60px 0;
    }

    .company-intro h1 {
        font-size: 32px;
    }
}


/* 联系我们部分样式 */
.contact-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.contact-section h1 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 36px;
    color: #333;
}

.contact-content {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

/* 左侧联系图片 */
.contact-image {
    flex: 0.8;  /* 减小图片所占比例 */
    max-width: 40%;  /* 限制最大宽度 */
}

.contact-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* 右侧联系信息 */
.contact-info {
    flex: 1.2;  /* 增加文字内容所占比例 */
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-item img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.contact-item p {
    margin: 0;
    color: #666;
    font-size: 16px;
    line-height: 1.6;
}

/* 响应式布局 */
@media (max-width: 768px) {
    .contact-content {
        flex-direction: column;
        gap: 30px;
    }

    .contact-image {
        max-width: 80%;  /* 移动端下的图片宽度 */
        margin: 0 auto;  /* 居中显示 */
    }

    .contact-info {
        padding: 0 20px;
    }

    .contact-section h1 {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .contact-item {
        gap: 10px;
    }

    .contact-item img {
        width: 20px;
        height: 20px;
    }
}
