/* 通用样式 */
.section {
    padding: 30px 15px;
}

.section-title {
    text-align: center;
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: bold;
}

/* Banner样式 */
.about-banner {
    position: relative;
    height: 200px;
}

.about-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 公司介绍样式 */
.company-intro {
    background: #fff;
}

.intro-content {
    text-align: center;
}

.company-name {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
}

.company-desc {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}

/* 公司环境样式 */
.company-environment {
    background: #f5f5f5;
}

.environment-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.grid-item {
    position: relative;
    margin-bottom: 10px;
}

.grid-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
}

.image-desc {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.6);
    color: #fff;
    padding: 8px;
    text-align: center;
    font-size: 12px;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

/* 联系我们样式 */
.contact-content {
    display: flex;
    flex-direction: column;
}

.map-container {
    height: 200px;
    margin-bottom: 20px;
}

#company-map {
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

.contact-info {
    padding: 15px;
}

.info-item {
    margin-bottom: 15px;
    font-size: 14px;
}

.info-item i {
    margin-right: 10px;
    font-size: 18px;
    color: #1E9FFF;
}

.qrcode {
    text-align: center;
    margin-top: 20px;
}

.qrcode img {
    width: 120px;
    height: 120px;
    margin-bottom: 8px;
}

.qrcode p {
    font-size: 12px;
    color: #666;
} 