/* 关于我们页面样式 */

/* 面包屑导航样式 */
.breadcrumb {
    margin: 20px 0;
    padding: 0 20px;
}

/* 关于我们模块样式 */
.about-us-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.about-us-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 75%;
    height: auto;
    display: block;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2rem;
    color: #000000;
    margin-bottom: 20px;
    font-weight: 600;
}

.about-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #333333;
    margin: 0;
}

/* 关于我们模块响应式设计 */
@media (max-width: 992px) {
    .about-us-content {
        gap: 30px;
    }
    
    .about-text h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .about-us-section {
        padding: 40px 0;
    }
    
    .about-us-content {
        flex-direction: column;
        gap: 25px;
    }
    
    .about-text h2 {
        font-size: 1.6rem;
        text-align: center;
    }
    
    .about-text p {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .about-us-section {
        padding: 30px 0;
    }
    
    .about-text h2 {
        font-size: 1.4rem;
    }
    
    .about-text p {
        font-size: 0.9rem;
    }
}

.breadcrumb-container {
    max-width: 1600px;
    margin: 0 auto;
}

.breadcrumb-list {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

.breadcrumb-item {
    font-size: 14px;
    color: #666;
}

.breadcrumb-item a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb-item a:hover {
    color: #00629b;
}

.breadcrumb-item:not(:last-child)::after {
    content: '/';
    margin: 0 10px;
    color: #666;
}

/* Banner区域样式 */
.about-banner {
    position: relative;
    height: 400px;
    overflow: hidden;
    margin-bottom: 60px;
}

.about-banner-container {
    position: relative;
    height: 100%;
    background: linear-gradient(90deg, #7e00c1 0%, #00629b 100%);
    display: flex;
    align-items: center;
}

.about-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    color: white;
    z-index: 2;
    position: relative;
}

.about-banner h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.about-banner p {
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 600px;
}

/* 内容区域通用样式 */
.container {
    max-width: 1600px;
    margin: 0 auto;
    width: 100%;
}

/* 关于我们模块样式已在文件开头定义 */

/* 响应式设计 */
@media (max-width: 992px) {
    .about-banner {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .about-banner {
        height: 300px;
    }
    
    .about-banner h1 {
        font-size: 2rem;
    }
    
    .about-banner p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .about-banner {
        height: 250px;
    }
    
    .about-banner h1 {
        font-size: 1.5rem;
    }
}

/* 赋予智能边缘区域样式 */
.smart-edge {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.smart-edge h2 {
    font-size: 2.25rem;
    color: #00629b;
    margin-bottom: 30px;
    font-weight: 700;
}

.smart-edge-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.smart-edge-text {
    flex: 1;
}

.smart-edge-image {
    flex: 1;
}

.smart-edge-image img {
    width: 80%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* 响应式设计 */
@media (max-width: 992px) {
    .smart-edge-content {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .smart-edge-content {
        flex-direction: column;
        gap: 30px;
    }

}

.btn-blue {
    display: inline-block;
    padding: 12px 24px;
    background-color: #00629b;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.3s;
}

.btn-blue:hover {
    background-color: #005285;
    transform: translateY(-2px);
}

/* ADI的发展历程区域样式 */
.company-history {
    padding: 80px 0;
    background-color: white;
}

.company-history h2 {
    font-size: 2.25rem;
    color: #00629b;
    margin-bottom: 40px;
    font-weight: 700;
}

.company-history-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.history-text {
    flex: 1;
}

.history-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
}

.history-image {
    flex: 1;
}

.history-image img {
    width: 80%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* 市场表现模块样式 */
.market-performance {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.market-performance-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.market-performance h2 {
    font-size: 2.25rem;
    color: #00629b;
    margin-bottom: 40px;
    font-weight: 700;
}

.market-performance-content {
    text-align: center;
}

.market-stats {
    display: flex;
    justify-content: center;
    gap: 120px;
    margin: 40px 0;
}

.market-data {
    text-align: center;
}

.market-data-label {
    font-size: 1rem;
    color: #666;
    margin-bottom: 5px;
}

.market-data-value {
    font-size: 2.5rem;
    color: #00629b;
    font-weight: 700;
    margin-bottom: 5px;
}

.market-data-note {
    font-size: 0.9rem;
    color: #999;
}

.market-btn-container {
    margin-bottom: 50px;
}

.market-btn {
    display: inline-block;
    padding: 10px 24px;
    border: 2px solid #00629b;
    color: #00629b;
    text-decoration: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    transition: background-color 0.3s, color 0.3s;
}

.market-btn:hover {
    background-color: #00629b;
    color: white;
}

.market-chart {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.pie-chart {
    max-width: 250px;
    height: auto;
}

.chart-legend {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.legend-color {
    width: 20px;
    height: 20px;
    border-radius: 50%;
}

.legend-color.industrial {
    background-color: #7e00c1;
}

.legend-color.automotive {
    background-color: #00629b;
}

.legend-color.communications {
    background-color: #84b6f4;
}

.legend-color.consumer {
    background-color: #b3d1ff;
}

.legend-text {
    font-size: 1.1rem;
    color: #333;
}

.market-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}


@media (max-width: 992px) {
    .company-history-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .market-stats {
        gap: 80px;
    }
    
    .market-data-value {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .smart-edge h2,
    .company-history h2,
    .market-performance h2 {
        font-size: 1.75rem;
    }
    
    .smart-edge-content p,
    .history-text p {
        font-size: 1rem;
    }
    
    .market-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .market-data-value {
        font-size: 1.8rem;
    }
    
    .market-chart {
        gap: 40px;
    }
    
    .pie-chart {
        max-width: 200px;
    }
    
    .chart-legend {
        width: 100%;
        align-items: center;
    }
    
    .market-description {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .smart-edge,
    .company-history,
    .market-performance {
        padding: 40px 0;
    }
    
    .smart-edge h2,
    .company-history h2,
    .market-performance h2 {
        font-size: 1.5rem;
    }
    
    .btn-blue {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .market-btn {
        padding: 8px 20px;
        font-size: 0.9rem;
    }
    
    .market-data-value {
        font-size: 1.6rem;
    }
    
    .pie-chart {
        max-width: 160px;
    }
    
    .legend-text {
        font-size: 0.9rem;
    }
}

/* 左文右图布局模块样式 */
.left-right-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.left-right-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.left-content {
    flex: 1;
}

.left-content h2 {
    font-size: 2.2rem;
    color: #00629b;
    margin-bottom: 25px;
    font-weight: 700;
}

.section-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 30px;
}

.key-info {
    margin-bottom: 35px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.info-icon {
    width: 24px;
    height: 24px;
    background-color: #00629b;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
}

.info-text {
    font-size: 1rem;
    color: #333;
}

.section-btn {
    display: inline-block;
    padding: 12px 28px;
    background-color: #00629b;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    transition: background-color 0.3s;
}

.section-btn:hover {
    background-color: #004a77;
}

.right-image {
    flex: 1;
}

.right-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.section-notes {
    margin-top: 40px;
    text-align: center;
}

.section-notes p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 10px;
    line-height: 1.6;
}

/* 左文右图布局模块响应式设计 */
@media (max-width: 992px) {
    .left-right-content {
        gap: 40px;
    }
    
    .left-content h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .left-right-section {
        padding: 40px 0;
    }
    
    .left-right-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .left-content h2 {
        font-size: 1.6rem;
        text-align: center;
    }
    
    .section-description {
        text-align: center;
    }
    
    .key-info {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .info-item {
        justify-content: center;
    }
    
    .section-btn {
        display: block;
        width: fit-content;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .left-right-section {
        padding: 30px 0;
    }
    
    .left-content h2 {
        font-size: 1.4rem;
    }
    
    .section-description {
        font-size: 1rem;
    }
    
    .section-btn {
        padding: 10px 24px;
        font-size: 0.9rem;
    }
    
    .section-notes p {
        font-size: 0.9rem;
    }
}
/* 客户案例模块样式 */
.customer-cases {
    padding: 80px 0;
    background-color: #ffffff;
}

.customer-cases-content {
    text-align: center;
}

.customer-cases-title {
    font-size: 2.5rem;
    color: #00629b;
    margin-bottom: 15px;
    font-weight: 700;
}

.customer-cases-subtitle {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 50px;
    line-height: 1.6;
}

/* 单张客户案例图片样式 */
.case-showcase {
    max-width: 1440px;
    margin: 0 auto 50px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.case-showcase-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.case-showcase-image:hover {
    transform: scale(1.02);
}

.customer-cases-footer {
    max-width: 800px;
    margin: 0 auto;
}

.cases-description {
    font-size: 1.2rem;
    color: #333;
    line-height: 1.7;
    margin-bottom: 30px;
}

.cases-btn {
    display: inline-block;
    padding: 14px 32px;
    background-color: #00629b;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.2s;
}

.cases-btn:hover {
    background-color: #004a77;
    transform: translateY(-2px);
}

/* 客户案例模块响应式设计 */
@media (max-width: 992px) {
    .customer-cases {
        padding: 60px 0;
    }
    
    .customer-cases-title {
        font-size: 2.2rem;
    }
    
    .customer-cases-subtitle {
        font-size: 1.1rem;
    }
    
    .customer-cases-gallery {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        margin-bottom: 50px;
    }
    
    .case-item {
        position: relative;
        overflow: hidden;
        border-radius: 12px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    .case-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }
    
    .case-image {
        width: 100%;
        height: 300px;
        object-fit: cover;
        transition: transform 0.3s ease;
    }
    
    .case-item:hover .case-image {
        transform: scale(1.05);
    }
    
    .case-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
        color: white;
        padding: 30px 25px 25px;
        transform: translateY(100%);
        transition: transform 0.3s ease;
    }
    
    .case-item:hover .case-overlay {
        transform: translateY(0);
    }
    
    .case-title {
        font-size: 1.3rem;
        font-weight: 600;
        margin-bottom: 8px;
        color: white;
    }
    
    .case-desc {
        font-size: 0.95rem;
        line-height: 1.5;
        color: rgba(255, 255, 255, 0.9);
        margin: 0;
    }
    
    .customer-cases-footer {
        max-width: 800px;
        margin: 0 auto;
    }
    
    .cases-description {
        font-size: 1.1rem;
        color: #666;
        line-height: 1.7;
        margin-bottom: 30px;
    }
    
    .cases-btn {
        display: inline-block;
        padding: 14px 32px;
        background-color: #00629b;
        color: white;
        text-decoration: none;
        border-radius: 6px;
        font-size: 1rem;
        font-weight: 600;
        transition: background-color 0.3s, transform 0.2s;
    }
    
    .cases-btn:hover {
        background-color: #004a77;
        transform: translateY(-2px);
    }
    
    /* 客户案例模块响应式设计 */
    @media (max-width: 992px) {
        .customer-cases {
            padding: 60px 0;
        }
        
        .customer-cases-title {
            font-size: 2.2rem;
        }
        
        .customer-cases-subtitle {
            font-size: 1.1rem;
        }
        
        .customer-cases-gallery {
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
        }
    }
    
    @media (max-width: 768px) {
        .customer-cases {
            padding: 50px 0;
        }
        
        .customer-cases-title {
            font-size: 2rem;
        }
        
        .customer-cases-subtitle {
            font-size: 1rem;
            margin-bottom: 40px;
        }
        
        .customer-cases-gallery {
            grid-template-columns: 1fr;
            gap: 20px;
            margin-bottom: 40px;
        }
        
        .case-image {
            height: 250px;
        }
        
        .case-title {
            font-size: 1.2rem;
        }
        
        .case-desc {
            font-size: 0.9rem;
        }
        
        .cases-description {
            font-size: 1rem;
        }
        
        .cases-btn {
            padding: 12px 28px;
            font-size: 0.95rem;
        }
    }
    
    @media (max-width: 480px) {
        .customer-cases {
            padding: 40px 0;
        }
        
        .customer-cases-title {
            font-size: 1.8rem;
        }
        
        .customer-cases-subtitle {
            font-size: 0.95rem;
            margin-bottom: 30px;
        }
        
        .customer-cases-gallery {
            margin-bottom: 30px;
        }
        
        .case-image {
            height: 200px;
        }
        
        .case-overlay {
            padding: 20px 20px 15px;
        }
        
        .case-title {
            font-size: 1.1rem;
        }
        
        .case-desc {
            font-size: 0.85rem;
        }
        
        .cases-description {
            font-size: 0.95rem;
        }
        
        .cases-btn {
            padding: 10px 24px;
            font-size: 0.9rem;
        }
    }
}