/* ==================== 关于我们页面专用样式 ==================== */

/* 企业文化模块 */
#qywh {
    padding: 100px 24px;
    background: #ffffff;
}

.culture-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 0;
}

.culture-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f0f0f0;
}

.culture-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.culture-icon-wrapper {
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.culture-icon {
    font-size: 64px;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(108, 92, 231, 0.1);
    border-radius: 50%;
    color: #6c5ce7;
}

.culture-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #0b6efd;
    margin-bottom: 12px;
}

.culture-title-underline {
    width: 40px;
    height: 3px;
    background: #0b6efd;
    margin: 0 auto 20px;
    border-radius: 2px;
}

.culture-description {
    font-size: 1rem;
    color: #2d3436;
    line-height: 1.8;
    margin: 0;
}

/* 团队风采模块 */
#tdfc {
    padding: 100px 24px;
    background: #f8f9fa;
}

.team-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.team-text {
    font-size: 1rem;
    color: #2d3436;
    line-height: 2;
}

.team-text p {
    margin-bottom: 24px;
}

.team-text p:last-child {
    margin-bottom: 0;
}

.team-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.team-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.team-image:hover img {
    transform: scale(1.05);
}

/* 动画效果 */
.animate-fade-in {
    opacity: 0;
    animation: fadeIn 0.6s ease forwards;
}

.animate-slide-up {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.6s ease forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .culture-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .team-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    #qywh,
    #tdfc {
        padding: 80px 20px;
    }
}

@media (max-width: 768px) {
    .culture-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px 0;
    }
    
    .culture-card {
        padding: 30px 20px;
    }
    
    .culture-icon {
        font-size: 48px;
        width: 80px;
        height: 80px;
    }
    
    .culture-title {
        font-size: 1.3rem;
    }
    
    .culture-description {
        font-size: 0.95rem;
    }
    
    .team-content {
        gap: 30px;
    }
    
    .team-text {
        font-size: 0.95rem;
        line-height: 1.8;
    }
    
    #qywh,
    #tdfc {
        padding: 60px 16px;
    }
}

/* 工厂展示模块 */
#gczs {
    padding: 100px 24px;
    background: #f8f9fa;
}

.factory-showcase {
    max-width: 1200px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.factory-showcase-header {
    text-align: center;
    margin-bottom: 40px;
}

.factory-showcase-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #55aaff;
    margin: 0;
}

.factory-carousel-wrapper {
    position: relative;
    width: 100%;
}

.factory-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
}

.factory-carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.factory-carousel-slide {
    min-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 20px;
    box-sizing: border-box;
}

.factory-carousel-image-wrapper {
    width: 100%;
    max-width: 800px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.factory-carousel-image {
    width: 100%;
    height: 500px;
    display: block;
    transition: transform 0.3s ease;
}

.factory-carousel-slide:hover .factory-carousel-image {
    transform: scale(1.05);
}

.factory-carousel-caption {
    text-align: center;
    font-size: 1rem;
    color: #2d3436;
    font-weight: 500;
    margin-top: 12px;
}

.factory-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid #0b6efd;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #0b6efd;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.factory-carousel-btn:hover {
    background: #0b6efd;
    color: #ffffff;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 16px rgba(85, 170, 255, 0.4);
}

.factory-carousel-btn--prev {
    left: -20px;
}

.factory-carousel-btn--next {
    right: -20px;
}

.factory-carousel-btn span {
    line-height: 1;
    font-weight: bold;
}

.factory-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.factory-carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #dee2e6;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.factory-carousel-dot:hover {
    background: #adb5bd;
    transform: scale(1.2);
}

.factory-carousel-dot.active {
    background: #0b6efd;
    width: 32px;
    border-radius: 6px;
}

/* 工厂展示响应式设计 */
@media (max-width: 1024px) {
    #gczs {
        padding: 80px 20px;
    }
    
    .factory-showcase {
        padding: 30px;
    }
    
    .factory-carousel-btn--prev {
        left: -10px;
    }
    
    .factory-carousel-btn--next {
        right: -10px;
    }
}

@media (max-width: 768px) {
    #gczs {
        padding: 60px 16px;
    }
    
    .factory-showcase {
        padding: 20px;
    }
    
    .factory-showcase-title {
        font-size: 1.5rem;
    }
    
    .factory-carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 24px;
    }
    
    .factory-carousel-btn--prev {
        left: 0;
    }
    
    .factory-carousel-btn--next {
        right: 0;
    }
    
    .factory-carousel-caption {
        font-size: 0.9rem;
    }
    
    .factory-carousel-dots {
        margin-top: 20px;
        gap: 8px;
    }
    
    .factory-carousel-dot {
        width: 10px;
        height: 10px;
    }
    
    .factory-carousel-dot.active {
        width: 24px;
    }
	.factory-carousel-image{
		height: 200px;
	}
}

