/* 关于我们页面样式 */

/* 页面标题 */
.page-title {
    height: 300px;
    background: url('https://via.placeholder.com/1920x300') center/cover;
    margin-top: 80px;
    display: flex;
    align-items: center;
    text-align: center;
    color: #fff;
    position: relative;
}

.page-title::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
}

.page-title .container {
    position: relative;
    z-index: 1;
}

.page-title h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.page-title p {
    font-size: 24px;
}

/* 公司简介 */
.company-intro {
    padding: 80px 0;
    background: #fff;
}

.intro-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 50px;
}

.intro-img {
    width: 580px;
    height: 360px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.intro-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s;
}

.intro-img:hover img {
    transform: scale(1.1);
}

.intro-text {
    width: 520px;
}

.intro-text p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
    text-indent: 2em;
}

.company-data {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid #eee;
}

.company-data li {
    text-align: center;
    padding: 0 20px;
}

.company-data strong {
    display: block;
    font-size: 36px;
    color: #1890ff;
    margin-bottom: 10px;
}

.company-data span {
    color: #666;
    font-size: 16px;
}

/* 发展历程 */
.history {
    padding: 80px 0;
    background: #f5f5f5;
}

.history-timeline {
    position: relative;
    padding: 40px 0;
    margin-top: 50px;
}

.history-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    width: 2px;
    height: 100%;
    background: #1890ff;
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 60px;
    min-height: 100px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    width: 16px;
    height: 16px;
    background: #1890ff;
    border: 4px solid #fff;
    border-radius: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.timeline-item .year {
    position: absolute;
    left: 50%;
    top: -10px;
    transform: translateX(-200px);
    width: 100px;
    text-align: right;
    font-size: 24px;
    color: #1890ff;
    font-weight: bold;
}

.timeline-item .content {
    position: absolute;
    left: 50%;
    top: -10px;
    transform: translateX(100px);
    width: 300px;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.timeline-item .content h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 10px;
}

.timeline-item .content p {
    color: #666;
    line-height: 1.6;
}

/* 企业文化 */
.culture {
    padding: 80px 0;
    background: #fff;
}

.culture-list {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
}

.culture-item {
    width: 360px;
    text-align: center;
    padding: 40px;
    background: #f5f5f5;
    border-radius: 8px;
    transition: all 0.3s;
}

.culture-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    background: #fff;
}

.culture-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1890ff, #40a9ff);
    border-radius: 50%;
    box-shadow: 0 10px 20px rgba(24, 144, 255, 0.2);
    transition: all 0.3s ease;
}

.culture-icon svg {
    width: 36px;
    height: 36px;
    color: #fff;
    transition: all 0.3s ease;
}

.culture-item:hover .culture-icon {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(24, 144, 255, 0.3);
    background: linear-gradient(135deg, #40a9ff, #1890ff);
}

.culture-item:hover .culture-icon svg {
    transform: scale(1.2);
}

.culture-item h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 15px;
}

.culture-item p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 10px;
}

/* 英文文本样式 */
.culture-item .en {
    color: #999;
    font-size: 14px;
    font-style: italic;
} 