
.container {
    max-width: 1200px;
    margin: 0 auto;
}

section {
    margin-bottom: 40px;
    padding: 20px;
    border-radius: 8px;
    background-color: #f5f7fa;
}

/* 顶部标签 */

.company-profile-title {
    width: auto;
    display: flex;
    margin: auto;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 40px;
    margin-top: 10px;
}

.company-profile-title div {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #4a6d8d;
    font-size: 32px;
    font-weight: 600;
}

.company-profile-title div span {
    font-size: 18px;
    font-weight: 400;
}

.company-profile-title img {
    width: 36px;
    height: 36px;
}



/* 公司介绍模块 */
.company-profile {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-top: 20px;
}

.profile-img {
    flex: 1;
    max-width: 50%;
    border-radius: 8px;
    overflow: hidden;
}

.profile-img img {
    width: 100%;
    height: auto;
    display: block;
}

.profile-text {
    flex: 1;
    padding: 20px;
    border-radius: 8px;
}

.profile-text div {
    margin-bottom: 10px;
    color: #4a6a8a;
    font-size: 30px;
    margin: 20px 0;
}

.profile-text P {
    font-size: 14px;
    color: #666;
    line-height: 1.8;

}

/* 企业文化模块 */
.corporate-culture {
    text-align: center;
    
}

.culture-icons {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
    margin: 20px 80px;
}

.icon-item {
    flex: 1;
    min-width: 120px;
    max-width: 150px;
}

.icon-item img {
    width: 100px;
    height: 100px;
    margin: 0 auto 10px;
    display: block;
}

.icon-item p {
    font-size: 20px;
    color: #486c8c;
    margin-top: 20px;
}

.culture-mission {
    font-size: 20px;
    color: #486c8c;
    max-width: 800px;
    margin-top: 40px ;
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
}

/* 公司发展模块 */
.container {
    max-width: 1200px;
    /* 限制最大宽度，适配大屏 */
    margin: 0 auto;
}


/* 时间轴容器 */
.timeline-container {
    background-color: #f5f7fa;
    border-radius: 8px;
    padding: 40px;
    position: relative;
}


/* 时间轴竖线（伪元素实现） */
.timeline-container::before {
    content: '';
    position: absolute;
    left: 46.5%;
    top: 40px;
    bottom: 40px;
    width: 2px;
    height: 420px;
    background-color: #bdd1e4;
    transform: translateX(-50%);
}

/* 单个时间轴项 */
.timeline-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 50px;
    position: relative;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

/* 年份+圆点 容器 */
.timeline-year-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
}
.timeline-year-left-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.timeline-content{
    margin-top: -20px;
    display: flex;
    align-items: center;
}


/* 年份文字 */
.timeline-year {
    width: 180px;
    font-size: 20px;
    font-weight: bold;
    color: #4a6a8a;
    margin-bottom: 8px;
    margin-left: 10px;
}

.timeline-year-left{
    width: 180px;
    font-size: 20px;
    font-weight: bold;
    color: #4a6a8a;
    margin-bottom: 8px;
    margin-right: 10px;
}

/* 时间节点圆点 */
.timeline-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #4a6a8a;
    border: 2px solid #fff;
    box-shadow: 0 0 0 2px rgba(74, 106, 138, 0.2);
}

/* 左侧文本 */
.timeline-text.left {
    width: 45%;
    margin-right: 5%;
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    padding-top: 6px;
    /* 与年份垂直对齐 */
}

/* 右侧文本 */
.timeline-text.right {
    width: 45%;
    margin-left: 5%;
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    padding-top: 6px;
    /* 与年份垂直对齐 */
}

/* 联系我们模块 */

.company-profile-content{
    width: 80%;
    margin: auto;
}
.contact-us {
    display: flex;
    gap: 30px;
}

.contact-form {
    flex: 1;
}

.contact-form div {
    text-align: center;
    margin-bottom: 20px;
    color: #4a6a8a;
    font-size: 18px;
    font-weight: 600;
}

.contact-form div span {
    text-align: center;
    margin-bottom: 20px;
    color: #4a6a8a;
    font-weight: 400;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-form input {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.contact-form button {
    padding: 10px;
    background-color: #4a6a8a;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s;
}

.contact-form button:hover {
    background-color: #3a5a7a;
}

.contact-map {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
}

.contact-map img {
    width: 95%;
    height: auto;
    display: block;
}