/* 导入原页面样式 */
@import url('../../styles.css');

/* 公司介绍页面特有样式 */

/* 大图介绍区域 */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1607427045913-9a3a67be4616?fm=jpg') center/cover;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.8) 0%, rgba(52, 152, 219, 0.6) 100%);
    z-index: -1;
}

.hero-content {
    text-align: center;
    color: white;
    z-index: 1;
    max-width: 1200px;
    padding: 0 20px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-item .stat-label {
    font-size: 0.8rem;
    opacity: 0.9;
    color: white;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border-right: 3px solid white;
    border-bottom: 3px solid white;
    transform: rotate(45deg);
}

/* 公司介绍区域 */
.company-intro {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-size: 3rem;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 700;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

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

.intro-text {
    flex: 1;
}

.intro-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 30px;
}

.mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 50px;
}

.mission, .vision {
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission:hover, .vision:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.mission h3, .vision h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.3rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.mission h3 i, .vision h3 i {
    color: #3498db;
    margin-bottom: 25px;
}

.intro-image {
    flex: 1;
}

.intro-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* 四个公司介绍区域 */
.companies-section {
    padding: 100px 0;
    background: white;
}

.companies-timeline {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.company-node {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 60px;
    position: relative;
}

.node-marker {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    min-width: 80px;
}

.node-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
    z-index: 2;
    transition: all 0.3s ease;
}

.company-node:hover .node-number {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(52, 152, 219, 0.4);
}

.node-line {
    width: 4px;
    flex: 1;
    background: linear-gradient(to bottom, #3498db, #e9ecef);
    min-height: 100px;
    margin-top: 10px;
    border-radius: 2px;
}

.company-node:last-child .node-line {
    display: none;
}

.company-content {
    flex: 1;
    background: #f8f9fa;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.company-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.company-content h3 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 700;
}

.company-role {
    font-size: 1.1rem;
    color: #3498db;
    margin-bottom: 20px;
    font-weight: 600;
}

.company-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 25px;
}

.company-features {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
}

.company-features li {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 15px;
    background: white;
    border-radius: 8px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
    margin-bottom: 0;
}

.company-features li:hover {
    background: #3498db;
    border-color: #3498db;
    color: white;
    transform: translateX(5px);
}

.company-features i {
    color: #3498db;
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}
.company-features p {
    /* text-align: center; */
    margin: 0;
}
.company-features li:hover i {
    color: white;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .company-node {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .node-marker {
        flex-direction: row;
        min-width: 100%;
        margin-bottom: 15px;
    }
    
    .node-line {
        width: 100%;
        height: 4px;
        min-height: 0;
        margin-top: 0;
        margin-left: 10px;
        background: linear-gradient(to right, #3498db, #e9ecef);
    }
    
    .company-content {
        padding: 20px;
    }
    
    .company-content h3 {
        font-size: 1.5rem;
    }
    
    .company-features {
        grid-template-columns: 1fr;
    }
}

/* 工厂介绍区域 */
.factories-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.retail-section, .factory-section {
    background: white;
    border-radius: 20px;
    padding: 40px;
    margin-top: 40px;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.retail-section:hover, .factory-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.retail-section h3, .factory-section h3 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 600;
}

.retail-section p, .factory-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 30px;
}

.retail-locations, .supply-chain-partners {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.location-item, .partner-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    background: #f8f9fa;
    border-radius: 10px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.location-item:hover, .partner-item:hover {
    background: #3498db;
    border-color: #3498db;
    color: white;
    transform: translateY(-2px);
}

.location-item i, .partner-item i {
    color: #3498db;
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.location-item:hover i, .partner-item:hover i {
    color: white;
}

.location-item span, .partner-item span {
    font-weight: 500;
    font-size: 1rem;
}

.store-name {
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.store-name:hover {
    color: #3498db;
    transform: scale(1.05);
}

.store-name::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #3498db;
    transition: width 0.3s ease;
}

.store-name:hover::after {
    width: 100%;
}

.store-name.active {
    color: #3498db;
    font-weight: 600;
}

.store-name.active::after {
    width: 100%;
}

.store-details {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid #e9ecef;
}

.store-detail-item {
    display: none;
    background: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 15px;
    animation: fadeIn 0.3s ease;
}

.store-detail-item.active {
    display: block;
}

.store-detail-item h4 {
    color: #2c3e50;
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.store-detail-item p {
    color: #495057;
    line-height: 1.6;
    margin: 0;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.factories-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 80px;
}

.factory-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.factory-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.factory-header {
    padding: 30px;
    background: #3498db;
    color: white;
    text-align: center;
}

.factory-header h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.factory-location {
    opacity: 0.9;
    font-size: 1.1rem;
}

.factory-gallery {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 30px;
}

.main-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
}

.thumbnail-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.thumbnail img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.thumbnail img:hover {
    transform: scale(1.1);
}

.factory-info {
    padding: 0 30px 30px;
}

.factory-stats {
    display: flex;
    justify-content: space-around;
    margin-bottom: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
}

.stat {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: #6c757d;
}

.logo {
    display: flex;
    align-items: center;
    /* font-size: 1.5rem; */
    font-weight: 700;
    /* color: white; */
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo-img {
    height: 28px;
    margin-right: 8px;
    transition: transform 0.3s ease;
}

.logo:hover .logo-img {
    transform: scale(1.1);
}

.logo i {
    margin-right: 10px;
    font-size: 2rem;
    color: #3498db;
}

.factory-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #495057;
}

/* 客户介绍区域 */
.clients-section {
    padding: 100px 0;
    background: white;
}

.clients-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.client-category {
    text-align: center;
}

.client-category h3 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 40px;
    font-weight: 600;
}

.client-logos {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.client-logo {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    padding: 20px;
    min-width: 150px;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
}

.client-logo:hover {
    border-color: #3498db;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(52, 152, 219, 0.2);
}

.client-img {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.client-logo:hover .client-img {
    transform: scale(1.1);
}

.logo-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.logo-placeholder i {
    font-size: 2.5rem;
    color: #3498db;
}

.logo-placeholder span {
    font-size: 1rem;
    color: #495057;
    font-weight: 500;
}

/* 动画效果 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* 响应式设计 */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-stats {
        gap: 30px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .intro-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .mission-vision {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }
    
    .company-item {
        flex-direction: column !important;
        gap: 40px;
        text-align: center;
    }
    
    .thumbnail-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .factory-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .client-logos {
        flex-direction: column;
        align-items: center;
    }
    
    .client-logo {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .thumbnail-grid {
        grid-template-columns: 1fr;
    }
    
    .client-logos {
        gap: 20px;
    }
}
