.about-container {
    max-width: 80%;
    margin: 35px auto 0;
    height: 100%;
    background-color: #ffffff;
}

.image-gallery {
    display: flex;
    flex-direction: column;
    width: 100%;
    background-image: url('../img/org_bg.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.gallery-item {
    display: flex;
    flex-direction: column;
    width: 100%;
    background-color: #fff;
}

.gallery-item img {
    width: 50%;
    height: 50%;
    object-fit: cover;
    display: block;
}

.about-content,
.factory-content,
.services-content {
    padding: 30px;
    margin-bottom: 60px;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

.about-text,
.factory-text,
.services-content {
    flex: 1;
    min-width: 300px;
}

.about-image,
.factory-images {
    flex: 1;
    min-width: 300px;
}

.about-image img,
.factory-images img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.about-content {
    display: flex;
    align-items: center;
    margin-top: 30px;
}

.about-text {
    flex: 1;
}

.about-text h1{
    font-size: 40px;
    margin-bottom: 30px;
}


.about-text h2 {
    margin-bottom: 1.5rem; /* 在h2标签下方添加间距 */
}

.factory-text h2 {
    margin-bottom: 1.5rem; /* 在h2标签下方添加间距 */
}

.about-text p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.8;
    font-family: 'Arial', serif;
}

.about-image {
    flex: 1;
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 5px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-us-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.factory-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.transparent-image {
    flex: 1;
    position: relative;
    margin-bottom: 20px;
}

.transparent-image img {
    width: 80%;
    max-height: 378px;
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.5));
}

.factory-stats {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin: 30px 0;
    width: 100%;
}

.about-item,
.stat-item {
    flex: 1;
    min-width: 200px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.stat-item {
    padding: 20px;
    background: #f8f8f8;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.about-item i,
.stat-item i {
    font-size: 28px;
    color: #c89f63;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-content {
    display: flex;
    flex-direction: column;
}

.about-label,
.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
}

.stat-number {
    font-size: 1.8rem;
}

.stat-label {
    font-size: 1rem;
    color: #666;
}

@media (max-width: 992px) {

    .about-container{
        max-width: 100%;
    }

}