
/* 企业简介 */
.intro-content {
    display: flex;
    gap: 40px;
    align-items: center;
}

.intro-img {
    flex: 0 0 450px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.intro-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.intro-text {
    flex: 1;
}

.intro-text h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.intro-text p {
    color: var(--medium-gray);
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 16px;
}

.intro-stats {
    display: flex;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    flex: 1;
    min-width: 120px;
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 5px;
}

.stat-label {
    color: var(--medium-gray);
    font-size: 14px;
}

/* 发展历程 */
.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background-color: var(--primary-blue);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
    box-sizing: border-box;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: white;
    border: 4px solid var(--primary-blue);
    border-radius: 50%;
    top: 15px;
    z-index: 1;
}

.timeline-left {
    left: 0;
}

.timeline-right {
    left: 50%;
}

.timeline-left::after {
    right: -12px;
}

.timeline-right::after {
    left: -12px;
}

.timeline-content {
    padding: 20px;
    background-color: white;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.timeline-year {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.timeline-desc {
    color: var(--medium-gray);
    line-height: 1.7;
}

/* 企业荣誉 */
.honor-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    text-align: center;
    margin-top: 50px;
}

.honor-item {
    background: var(--white);
    padding: 20px 10px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.honor-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.honor-img {
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.honor-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.honor-name {
    color: var(--medium-gray);
    font-size: 14px;
}

/* 企业文化区域 */
.culture-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}
.culture-card {
    padding: 40px 30px;
    background-color: var(--primary-gray);
    text-align: center;
}

.culture-icon {
    width: 80px;
    height: 80px;
    background-color: var(--light-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 32px;
    margin: 0 auto 20px;
}

.culture-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark-gray);
}

.culture-desc {
    color: var(--medium-gray);
}

/* 合作伙伴区域 */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 30px;
}

.partner-card {
    padding: 30px 20px;
    text-align: center;
}

.partner-logo {
    width: 120px;
    height: 60px;
    background-color: var(--primary-gray);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: var(--medium-gray);
    font-weight: 700;
}

.partner-name {
    font-weight: 700;
    color: var(--dark-gray);
}
/* 联系我们模块 */
.contact-section {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

/* 联系模块中的按钮样式 */
.contact-section .btn-outline {
    color: var(--white);
    border: 2px solid var(--white);
}

.contact-section .btn-outline:hover {
    background-color: var(--white);
    color: var(--primary-blue);
}

.contact-section h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-section h2:after {
    content: '';
    position: absolute;
    width: 60px;
    height: 4px;
    background-color: var(--accent-orange);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.contact-section p {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.contact-btn-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}