/* 时间线板块基础样式 */
        .timeline-section {
            position: relative;
            padding: 120px 0;
            background-color: #ffffff;
        }
        
        .timeline-section:before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url(/static/redstar/images/shapes/pattern-1.png);
            background-repeat: repeat;
            opacity: 0.05;
            z-index: 0;
        }
        
        .timeline-title {
            text-align: center;
            margin-bottom: 100px;
            position: relative;
            z-index: 1;
        }
        
        .timeline-title h2 {
            font-size: 40px;
            font-weight: 700;
            color: #0F3460;
            margin-bottom: 20px;
            font-family: 'Poppins', sans-serif;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            display: inline-block;
            padding-bottom: 15px;
        }
        
        .timeline-title h2:after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: #E94560;
        }
        
        .timeline-title p {
            font-size: 16px;
            color: #666666;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.8;
            font-family: 'Rubik', sans-serif;
        }
        
        /* 时间线容器 */
        .timeline-container {
            position: relative;
            z-index: 1;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        /* 时间线中心线 */
        .timeline-center-line {
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 2px;
            background-color: #E94560;
            transform: translateX(-50%);
        }
        
        /* 时间线项目 */
        .timeline-item {
            margin-bottom: 100px;
            position: relative;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }
        
        .timeline-item.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        .timeline-item:last-child {
            margin-bottom: 0;
        }
        
        /* 时间点 */
        .timeline-dot {
            position: absolute;
            left: 50%;
            top: 0;
            width: 24px;
            height: 24px;
            border-radius: 50%;
            background-color: #0F3460;
            border: 4px solid #ffffff;
            box-shadow: 0 0 0 4px rgba(15, 52, 96, 0.1);
            transform: translateX(-50%);
            z-index: 2;
            transition: all 0.3s ease;
        }
        
        .timeline-item:hover .timeline-dot {
            transform: translateX(-50%) scale(1.3);
            box-shadow: 0 0 0 6px rgba(15, 52, 96, 0.2);
        }
        
        .timeline-dot.important {
            background-color: #E94560;
            box-shadow: 0 0 0 4px rgba(233, 69, 96, 0.2);
            width: 28px;
            height: 28px;
        }
        
        .timeline-dot.important:hover {
            box-shadow: 0 0 0 6px rgba(233, 69, 96, 0.3);
        }
        
        /* 时间线内容 */
        .timeline-content {
            display: flex;
            align-items: center;
        }
        
        .timeline-content.reverse {
            flex-direction: row-reverse;
        }
        
        .timeline-text {
            width: 50%;
            padding: 0 60px;
        }
        
        .timeline-image {
            width: 50%;
            padding: 0 60px;
        }
        
        .timeline-text-inner {
            background-color: #ffffff;
            padding: 45px;
            border-radius: 8px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.5s ease;
            border: 1px solid #f0f0f0;
            position: relative;
        }
        
        .timeline-text-inner:before {
            content: "";
            position: absolute;
            top: 30px;
            right: -15px;
            width: 30px;
            height: 30px;
            background-color: #ffffff;
            border-top: 1px solid #f0f0f0;
            border-right: 1px solid #f0f0f0;
            transform: rotate(45deg);
            z-index: 1;
        }
        
        .timeline-content.reverse .timeline-text-inner:before {
            right: auto;
            left: -15px;
            border-top: 1px solid #f0f0f0;
            border-right: none;
            border-left: 1px solid #f0f0f0;
        }
        
        .timeline-item:hover .timeline-text-inner {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
        }
        
        .timeline-year {
            display: inline-block;
            font-size: 14px;
            font-weight: 600;
            color: #E94560;
            text-transform: uppercase;
            margin-bottom: 15px;
            letter-spacing: 2px;
            font-family: 'Poppins', sans-serif;
            background-color: rgba(233, 69, 96, 0.05);
            padding: 6px 15px;
            border-radius: 30px;
        }
        
        .timeline-text h3 {
            font-size: 26px;
            font-weight: 600;
            color: #0F3460;
            margin-bottom: 20px;
            font-family: 'Poppins', sans-serif;
        }
        
        .timeline-text p {
            font-size: 15px;
            color: #666666;
            line-height: 1.8;
            margin-bottom: 25px;
            font-family: 'Rubik', sans-serif;
        }
        
        .timeline-image img {
            width: 100%;
            border-radius: 8px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.5s ease;
            height: 320px;
            object-fit: cover;
        }
        
        .timeline-item:hover .timeline-image img {
            transform: scale(1.03);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
        }
        
        /* 未来展望 */
        .timeline-future {
            margin-top: 120px;
            text-align: center;
            background-color: #f9f9f9;
            padding: 70px 50px;
            border-radius: 8px;
            border: 1px solid #f0f0f0;
            position: relative;
            z-index: 1;
            max-width: 1000px;
            margin-left: auto;
            margin-right: auto;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease 0.3s;
        }
        
        .timeline-future.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        .timeline-future h3 {
            font-size: 28px;
            font-weight: 600;
            color: #0F3460;
            margin-bottom: 25px;
            font-family: 'Poppins', sans-serif;
        }
        
        .timeline-future p {
            font-size: 16px;
            color: #666666;
            max-width: 800px;
            margin: 0 auto 35px;
            line-height: 1.8;
            font-family: 'Rubik', sans-serif;
        }
        
        .thm-btn.timeline-btn {
            background-color: #0F3460;
            color: #ffffff;
            padding: 16px 38px;
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            border-radius: 4px;
            display: inline-block;
            transition: all 0.3s ease;
            font-family: 'Poppins', sans-serif;
            letter-spacing: 1px;
            border: none;
            position: relative;
            overflow: hidden;
        }
        
        .thm-btn.timeline-btn:before {
            content: "";
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
            transition: all 0.5s ease;
        }
        
        .thm-btn.timeline-btn:hover {
            background-color: #E94560;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(233, 69, 96, 0.2);
        }
        
        .thm-btn.timeline-btn:hover:before {
            left: 100%;
        }
        
        .thm-btn.timeline-btn span {
            margin-left: 8px;
            display: inline-block;
            transition: all 0.3s ease;
        }
        
        .thm-btn.timeline-btn:hover span {
            transform: translateX(5px);
        }

        /* 工厂展示板块样式 */
        .factory-showcase {
            padding: 120px 0;
            background-color: #f9f9f9;
            position: relative;
        }
        
        .factory-showcase:before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url(/static/redstar/images/shapes/pattern-1.png);
            background-repeat: repeat;
            opacity: 0.05;
            z-index: 0;
        }
        
        .factory-title {
            text-align: center;
            margin-bottom: 80px;
            position: relative;
            z-index: 1;
        }
        
        .factory-title h2 {
            font-size: 40px;
            font-weight: 700;
            color: #0F3460;
            margin-bottom: 20px;
            font-family: 'Poppins', sans-serif;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            display: inline-block;
            padding-bottom: 15px;
        }
        
        .factory-title h2:after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: #E94560;
        }
        
        .factory-title p {
            font-size: 16px;
            color: #666666;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.8;
            font-family: 'Rubik', sans-serif;
        }
        
        .factory-gallery {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            position: relative;
            z-index: 1;
        }
        
        .factory-item {
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.5s ease;
            position: relative;
            opacity: 0;
            transform: translateY(30px);
        }
        
        .factory-item.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        .factory-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }
        
        .factory-item img {
            width: 100%;
            height: 400px;
            object-fit: cover;
            transition: all 0.5s ease;
        }
        
        .factory-item:hover img {
            transform: scale(1.05);
        }
        
        .factory-item-info {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
            padding: 30px;
            color: #ffffff;
        }
        
        .factory-item-info h3 {
            font-size: 22px;
            font-weight: 600;
            margin-bottom: 10px;
            font-family: 'Poppins', sans-serif;
        }
        
        .factory-item-info p {
            font-size: 14px;
            opacity: 0.9;
            line-height: 1.6;
            font-family: 'Rubik', sans-serif;
        }
        
        /* 响应式样式 */
        @media (max-width: 1199px) {
            .timeline-text,
            .timeline-image {
                padding: 0 40px;
            }
            
            .timeline-text-inner {
                padding: 35px;
            }
            
            .factory-gallery {
                gap: 25px;
            }
            
            .factory-item img {
                height: 350px;
            }
        }
        
        @media (max-width: 991px) {
            .timeline-title h2,
            .factory-title h2 {
                font-size: 34px;
            }
            
            .timeline-center-line {
                left: 30px;
            }
            
            .timeline-dot {
                left: 30px;
            }
            
            .timeline-content,
            .timeline-content.reverse {
                flex-direction: column;
            }
            
            .timeline-text,
            .timeline-image {
                width: 100%;
                padding: 0 30px;
            }
            
            .timeline-image {
                order: -1;
                margin-bottom: 30px;
            }
            
            .timeline-text-inner:before {
                display: none;
            }
            
            .timeline-future {
                padding: 50px 30px;
                margin-top: 100px;
            }
            
            .factory-gallery {
                grid-template-columns: 1fr;
                gap: 25px;
            }
            
            .factory-item img {
                height: 300px;
            }
        }
        
        @media (max-width: 767px) {
            .timeline-section,
            .factory-showcase {
                padding: 80px 0;
            }
            
            .timeline-title,
            .factory-title {
                margin-bottom: 60px;
            }
            
            .timeline-title h2,
            .factory-title h2 {
                font-size: 28px;
                padding-bottom: 12px;
            }
            
            .timeline-title h2:after,
            .factory-title h2:after {
                width: 60px;
            }
            
            .timeline-text-inner {
                padding: 30px;
            }
            
            .timeline-text h3 {
                font-size: 22px;
            }
            
            .timeline-image img {
                height: 260px;
            }
            
            .timeline-future h3 {
                font-size: 24px;
            }
            
            .thm-btn.timeline-btn {
                padding: 14px 28px;
                font-size: 13px;
            }
            
            .factory-item img {
                height: 260px;
            }
            
            .factory-item-info {
                padding: 25px;
            }
            
            .factory-item-info h3 {
                font-size: 20px;
            }
        }
        
        @media (max-width: 575px) {
            .timeline-text,
            .timeline-image {
                padding: 0 15px;
            }
            
            .timeline-title h2,
            .factory-title h2 {
                font-size: 24px;
            }
            
            .timeline-title p,
            .factory-title p {
                font-size: 15px;
            }
            
            .timeline-image img {
                height: 220px;
            }
            
            .timeline-year {
                font-size: 13px;
                padding: 5px 12px;
            }
            
            .timeline-text h3 {
                font-size: 20px;
            }
            
            .timeline-text p {
                font-size: 14px;
            }
            
            .timeline-future {
                padding: 40px 20px;
                margin-top: 80px;
            }
            
            .timeline-future h3 {
                font-size: 22px;
            }
            
            .timeline-future p {
                font-size: 15px;
            }
            
            .factory-item img {
                height: 220px;
            }
            
            .factory-item-info {
                padding: 20px;
            }
        }