/* 关于我们页面的Hero区域 */
.about-hero {
    background: linear-gradient(rgba(42, 95, 204, 0.8), rgba(42, 95, 204, 0.8));
    padding: 100px 0;
    text-align: center;
    color: white;
    margin-top: 80px;
}

.about-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.about-hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

/* 公司发展历程 */
.company-history {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.company-history .container h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2rem;
    color: #2A5FCC;
}

/* 企业荣誉资质 */
.company-honors {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0f8ff 0%, #e6f3ff 100%);
}

.company-honors .container h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 2rem;
    color: #2A5FCC;
}

.honors-description {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.honors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.honor-item {
    background: white;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(42, 95, 204, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 400px;
    display: flex;
    flex-direction: column;
}

.honor-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(42, 95, 204, 0.2);
}

.honor-image-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.honor-item img {
    max-width: 180px;
    max-height: 180px;
    width: auto;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    object-fit: contain;
}

.honor-content {
    margin-top: auto;
    padding-top: 10px;
}

.honor-item h3 {
    font-size: 1.2rem;
    color: #2A5FCC;
    margin-bottom: 10px;
    font-weight: 600;
}

.honor-item p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 15px;
    line-height: 1.5;
}

.honor-badge {
    display: inline-block;
    background: linear-gradient(45deg, #2A5FCC, #4A7FDC);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    position: relative;
    overflow: hidden;
}

.honor-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.honor-item:hover .honor-badge::before {
    left: 100%;
}

/* 团队与工厂 */
.team-factory {
    padding: 80px 0;
}

.team-factory .container h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2rem;
    color: #2A5FCC;
}

.team-factory-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.team-factory-content img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.team-factory-text {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    background: rgba(42, 95, 204, 0.05);
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid #2A5FCC;
}

/* 企业愿景与使命 */
.vision-mission {
    padding: 80px 0;
    background-color: #f0f5ff;
}

.vision-mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.vision, .mission {
    text-align: center;
}

.vision h2, .mission h2 {
    color: #2A5FCC;
    margin-bottom: 20px;
}