/* 现代化时间线样式 */
.timeline {
    position: relative;
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}
 
.timeline::after {
    content: '';
    position: absolute;
    width: 6px;
    background: linear-gradient(to bottom, #0066cc, #00aaff);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -3px;
    border-radius: 3px;
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.2);
}
 
.timeline-item {
    padding: 20px 40px;
    position: relative;
    width: 50%;
    box-sizing: border-box;
    transition: all 0.3s ease;
}
 
.timeline-item:hover {
    transform: translateY(-5px);
}
 
.timeline-item::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    background-color: white;
    border: 4px solid #0066cc;
    border-radius: 50%;
    top: 20px;
    z-index: 1;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}
 
.timeline-item:hover::after {
    transform: scale(1.1);
    background-color: #0066cc;
    border-color: white;
}
 
.left {
    left: 0;
}
 
.right {
    left: 50%;
}
 
.left::after {
    right: -12px;
}
 
.right::after {
    left: -12px;
}
 
.timeline-content {
    padding: 25px;
    background: linear-gradient(145deg, rgba(255,255,255,0.9), rgba(230, 242, 255, 0.9));
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}
 
.timeline-item:hover .timeline-content {
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    transform: translateY(-5px);
}
 
.timeline-content h3 {
    color: #0066cc;
    margin-bottom: 10px;
    font-size: 22px;
}
 
.timeline-date {
    font-weight: bold;
    color: #0066cc;
    margin-bottom: 8px;
    font-size: 16px;
    display: inline-block;
    padding: 4px 12px;
    background-color: rgba(0, 102, 204, 0.1);
    border-radius: 20px;
}

 
/* 现代化公司简介样式 */
.about-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
     
}
 
.about-section h2 {
    font-size: 42px;
    color: #0066cc;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
    /*padding-bottom: 15px;*/
}
 
 
.about-section p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #333;
}
 
/* 公司简介子部分样式 */
.about-subsection {
    margin-bottom: 50px;
    padding: 30px 60px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 5px rgba(90,164,248);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 102, 204, 0.1);
}
 
.about-subsection h3 {
    color: #0066cc;
    font-size: 26px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    transition: all 0.3s ease;
}
 
.about-subsection-company {
    margin-bottom: 50px;
    padding:30px 60px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 5px rgb(90, 164, 248);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 102, 204, 0.1);
}

.about-subsection-company h3 {
    color: #0066cc;
    font-size: 26px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    transition: all 0.3s ease;
}

/* 现代化水平排列容器 */
.about-row {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
    align-items: center;
}

.about-row .about-subsection {
    flex: 1;
    margin-bottom: 0;
    transition: all 0.3s ease;
}

.about-row .about-subsection:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.about-row img {
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.about-row:hover img {
    transform: scale(1.02);
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}


/* 公司详细信息网格布局 */
.company-details-grid {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 12px;
   
}
.detail-item {
    display: contents;
   
}
.detail-label {
    font-weight: bold;
    font-size: 18px;
    color: black;
    text-align: left;
    padding: 8px 12px;
    width: 140px;
    flex-shrink: 0;
   
}
.detail-value {
    margin-left: 50px;
    padding: 8px 12px;
    font-size: 15px;
   
}

.company-details-grid-company {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 12px;
    margin-top: 20px;
   
}
.detail-item-company {
    display: contents;
     
}
.company-details-grid-company {
    position: relative;
}
.detail-item-company {
    display: flex;
    grid-column: 1 / -1;
    padding-bottom: 12px;
    margin-bottom: 12px;
    border-bottom: 1px solid #e0e0e0;
}
.detail-label-company {
    font-weight: bold;
    font-size: 18px;
    color: black;
    text-align: left;
    padding: 8px 12px;
    width: 140px;
    flex-shrink: 0;
}
.detail-value-company {
    padding: 8px 12px;
    flex-grow: 1;
}
.detail-value-company {
    margin-left: 50px;
    padding: 8px 12px;
    font-size: 15px;
}

/* 集团公司图片布局 */
.company-with-image {
    display: flex;
    gap: 30px;
    align-items: center;
}

.company-content {
    flex: 1;
    min-width: 0;
}

.company-image-container {
    flex: 0 0 40%;
    max-width: 40%;
    padding: 10px;
}

.company-image-container img {
    width: 100%;
    height: auto;
    max-height: 300px;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1)
}

.company-image-container-ecomic {
    flex: 0 0 40%;
    max-width: 40%;
    padding: 10px;
}

.company-image-container-ecomic img {
    width: 100%;
    height: auto;
    max-height: 300px;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.2)
}

.ecomic-image-shadow {
    box-shadow: 0 6px 20px rgba(0,0,0,0.2) !important;
}


