/**
 * 绿鸟软件 - 关于我们页面专用样式
 * 
 * 本文件包含所有与关于我们页面相关的特定样式：
 * - 公司简介区域
 * - 企业文化展示
 * - 公司统计数据
 * - 联系信息样式
 * - 响应式设计调整
 */

/* 全局变量 */
:root {
    --primary-color: #2ecc71;
    --secondary-color: #27ae60;
    --dark-color: #2c3e50;
    --light-color: #ecf0f1;
    --text-color: #333;
    --gray-color: #95a5a6;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

/* 公司简介区域 */
.about-intro {
    padding: 120px 0 80px;
    background-color: #fff;
}

.about-content {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 60px;
}

.about-text p.highlight {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--primary-color);
    line-height: 1.8;
    margin-bottom: 25px;
    padding-left: 20px;
    border-left: 4px solid var(--primary-color);
}

.about-text p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--gray-color);
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

/* 公司统计数据 */
.company-stats {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.stat-item {
    flex: 1;
    min-width: 200px;
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-10px);
    background-color: var(--primary-color);
}

.stat-item:hover .stat-number,
.stat-item:hover .stat-label {
    color: #fff;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
    display: flex;
    align-items: baseline;
    justify-content: center;
}

.stat-number span {
    font-size: 1.5rem;
    margin-left: 5px;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--dark-color);
    font-weight: 500;
}

/* 企业文化样式 */
.about-culture {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.culture-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.culture-item {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.culture-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.culture-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: rgba(46, 204, 113, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
}

.culture-icon i {
    font-size: 35px;
    color: var(--primary-color);
}

.culture-item h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.culture-item p {
    color: var(--gray-color);
    line-height: 1.6;
}

/* 联系信息区域 */
.contact-section {
    padding: 80px 0;
    background-color: #fff;
}

.contact-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.contact-info {
    background-color: white;
    border-radius: 10px;
    padding: 40px;
    box-shadow: var(--box-shadow);
    max-width: 600px;
    width: 100%;
}

.info-item {
    display: flex;
    margin-bottom: 30px;
}

.info-item i {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(46, 204, 113, 0.1);
    border-radius: 50%;
    margin-right: 20px;
    color: var(--primary-color);
    font-size: 20px;
    flex-shrink: 0;
}

.info-item h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--dark-color);
}

.info-item p {
    color: var(--gray-color);
    margin-bottom: 0;
}

.contact-social {
    margin-top: 30px;
}

.contact-social h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

/* 响应式调整 */
@media (max-width: 991px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-image {
        order: -1;
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .company-stats {
        flex-direction: column;
    }

    .info-item {
        flex-direction: column;
        text-align: center;
    }

    .info-item i {
        margin: 0 auto 15px;
    }
} 