/* 面包屑导航样式 */
.breadcrumb {
    padding: 10px 0;
    color: #666;
    font-size: 12px;
}

.breadcrumb a {
    color: #666;
    text-decoration: none;
}

.breadcrumb a:hover {
    color: #007bff;
}

/* 主要内容区样式 */
.about-content {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    margin: 0 auto 260px auto;
}

.about-image {
    flex: 0 0 400px;
}

.main-image {
    width: 100%;
    height: auto;
    display: block;
}

.about-text {
    flex: 1;
    margin: 0 auto;
    padding-right: 20px;
}

.about-text h1 {
    display: none;
}

.about-text p:first-child {
    text-indent: 2em;
}

.about-text p {
    line-height: 1.8;
    color: #666;
    font-size: 14px;
    text-align: justify;
}

.about-text p:last-child {
    margin-bottom: 0;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
    }

    .about-image,
    .about-text {
        flex: 0 0 100%;
        padding-right: 0;
    }
}

/* 关于我们页面样式 */
.about-banner {
    background-color: #f5f5f5;
    text-align: center;
    padding: 60px 0;
    margin-bottom: 50px;
}

.about-banner h1 {
    font-size: 36px;
    color: #333;
    margin-bottom: 20px;
}

.about-banner p {
    font-size: 16px;
    color: #666;
}



.about-section {
    margin-bottom: 40px;
}

.about-section h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #1890ff;
}

.about-section p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 15px;
    text-align: justify;
}

.about-image {
    width: 100%;
    max-width: 320px;
    margin: 20px auto;
    display: block;
    border-radius: 8px;
}

.company-info {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    margin: 40px 0;
}

.company-info h3 {
    color: #333;
    font-size: 20px;
    margin-bottom: 15px;
}

.company-info ul {
    list-style: none;
    padding: 0;
}

.company-info li {
    color: #666;
    line-height: 1.8;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.company-info li:before {
    content: "•";
    color: #1890ff;
    position: absolute;
    left: 0;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .about-banner {
        padding: 40px 0;
    }

    .about-banner h1 {
        font-size: 28px;
    }

    .about-content {
        padding: 0 15px;
    }

    .company-info {
        padding: 20px;
    }
}