        
        /* 英雄区域 */
        .transport-hero {
            background: linear-gradient(135deg, rgba(10, 36, 99, 0.9) 0%, rgba(62, 146, 204, 0.8) 100%), url('/jia/images/19.jpg') center/cover no-repeat;
            padding: 100px 0;
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .transport-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI2MCIgaGVpZ2h0PSI2MCIgdmlld0JveD0iMCAwIDYwIDYwIj48ZyBmaWxsPSJub25lIiBzdHJva2U9IiNmZmYiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlLW9wYWNpdHk9IjAuMSI+PHBhdGggZD0iTTAgMEw2MCA2ME02MCAwTDAgNjAiLz48L2c+PC9zdmc+');
            animation: movingBackground 100s linear infinite;
        }
        
        @keyframes movingBackground {
            from { transform: translate(0, 0); }
            to { transform: translate(100px, 100px); }
        }
        
        .transport-hero-content {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }
        
        .transport-hero h2 {
            font-size: 2.8rem;
            margin-bottom: 20px;
            animation: fadeInUp 1s ease;
        }
        
        .transport-hero p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            animation: fadeInUp 1.2s ease;
        }
        
        .hero-stats {
            display: flex;
            justify-content: center;
            gap: 40px;
            margin-top: 50px;
            animation: fadeInUp 1.4s ease;
        }
        
        .stat-item {
            text-align: center;
        }
        
        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--secondary);
            margin-bottom: 5px;
        }
        
        .stat-label {
            font-size: 1rem;
            opacity: 0.9;
        }
        
        /* 服务介绍 */
        .service-intro {
            padding: 80px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .section-title h2 {
            font-size: 2.2rem;
            color: var(--primary);
            position: relative;
            display: inline-block;
            padding-bottom: 15px;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: var(--secondary);
        }
        
        .intro-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }
        
        .intro-text p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            line-height: 1.8;
        }
        
        .intro-features {
            list-style: none;
            margin-top: 30px;
        }
        
        .intro-features li {
            padding: 12px 0;
            display: flex;
            align-items: center;
            border-bottom: 1px dashed #eee;
        }
        
        .intro-features li:last-child {
            border-bottom: none;
        }
        
        .intro-features li i {
            color: var(--secondary);
            margin-right: 15px;
            font-size: 1.2rem;
        }
        
        .intro-image {
            position: relative;
        }
        
        .intro-image img {
            width: 100%;
            border-radius: 10px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            transition: var(--transition);
        }
        
        .intro-image:hover img {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }
        
        .intro-image::before {
            content: '';
            position: absolute;
            top: -15px;
            left: -15px;
            width: 100%;
            height: 100%;
            border: 3px solid var(--secondary);
            border-radius: 10px;
            z-index: -1;
            opacity: 0.5;
            transition: var(--transition);
        }
        
        .intro-image:hover::before {
            top: -10px;
            left: -10px;
            opacity: 0.8;
        }
        
        /* 服务优势 */
        .advantages-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        }
        
        .advantages-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }
        
        .advantage-card {
            background-color: white;
            padding: 40px 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            text-align: center;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }
        
        .advantage-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 0;
            background: linear-gradient(to bottom, var(--primary), var(--secondary));
            transition: var(--transition);
        }
        
        .advantage-card:hover::before {
            height: 100%;
        }
        
        .advantage-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        
        .advantage-icon {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 20px;
            transition: var(--transition);
        }
        
        .advantage-card:hover .advantage-icon {
            color: var(--secondary);
            transform: scale(1.1);
        }
        
        .advantage-card h3 {
            margin-bottom: 15px;
            color: var(--primary);
            position: relative;
            z-index: 1;
        }
        
        .advantage-card p {
            color: #666;
            position: relative;
            z-index: 1;
        }
        
        /* 办理流程 */
        .process-section {
            padding: 80px 0;
        }
        
        .process-steps {
            display: flex;
            justify-content: space-between;
            position: relative;
            margin: 60px 0;
        }
        
        /* 连接线 */
        .process-steps::before {
            content: '';
            position: absolute;
            top: 60px;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(to right, var(--primary), var(--secondary));
            z-index: 1;
        }
        
        .step {
            text-align: center;
            position: relative;
            z-index: 2;
            flex: 1;
        }
        
        .step-icon {
            width: 120px;
            height: 120px;
            background: white;
            border: 3px solid var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 2.5rem;
            color: var(--primary);
            transition: var(--transition);
            box-shadow: 0 5px 20px rgba(10, 36, 99, 0.15);
            position: relative;
            overflow: hidden;
        }
        
        .step-icon::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 0;
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            transition: var(--transition);
            z-index: -1;
        }
        
        .step:hover .step-icon {
            transform: translateY(-5px);
            color: white;
            border-color: var(--secondary);
        }
        
        .step:hover .step-icon::before {
            height: 100%;
        }
        
        .step-content {
            background: white;
            padding: 25px;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            transition: var(--transition);
            margin-top: 10px;
        }
        
        .step:hover .step-content {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        }
        
        .step-number {
            display: inline-block;
            width: 40px;
            height: 40px;
            background-color: var(--primary);
            color: white;
            border-radius: 50%;
            line-height: 40px;
            font-weight: bold;
            margin-bottom: 15px;
            transition: var(--transition);
        }
        
        .step:hover .step-number {
            background-color: var(--secondary);
            transform: scale(1.1);
        }
        
        .step-content h3 {
            color: var(--primary);
            margin-bottom: 12px;
            font-size: 1.3rem;
        }
        
        .step-content p {
            color: #666;
            font-size: 0.95rem;
        }
        
        .step-duration {
            display: inline-block;
            margin-top: 12px;
            padding: 5px 12px;
            background-color: var(--secondary);
            color: var(--dark);
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            transition: var(--transition);
        }
        
        .step:hover .step-duration {
            transform: scale(1.05);
        }
        
        /* 时间线箭头 */
        .step-arrow {
            position: absolute;
            top: 60px;
            right: -20px;
            width: 0;
            height: 0;
            border-top: 15px solid transparent;
            border-bottom: 15px solid transparent;
            border-left: 20px solid var(--primary);
            z-index: 2;
            transition: var(--transition);
        }
        
        .step:hover .step-arrow {
            border-left-color: var(--secondary);
        }
        
        /* 所需材料 */
        .materials-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        }
        
        .materials-accordion {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .material-item {
            background-color: white;
            border-radius: 8px;
            margin-bottom: 15px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
            overflow: hidden;
            transition: var(--transition);
        }
        
        .material-item:hover {
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .material-header {
            padding: 20px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            color: var(--primary);
            background-color: #f8f9fa;
            transition: var(--transition);
        }
        
        .material-header:hover {
            background-color: #e9ecef;
        }
        
        .material-header i {
            transition: var(--transition);
        }
        
        .material-content {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
        }
        
        .material-item.active .material-content {
            padding: 0 20px 20px;
            max-height: 500px;
        }
        
        .material-item.active .material-header i {
            transform: rotate(180deg);
        }
        
        .material-list {
            list-style: none;
        }
        
        .material-list li {
            padding: 10px 0;
            display: flex;
            align-items: flex-start;
            border-bottom: 1px dashed #eee;
        }
        
        .material-list li:last-child {
            border-bottom: none;
        }
        
        .material-list li i {
            color: var(--secondary);
            margin-right: 10px;
            margin-top: 5px;
        }
        
        /* 服务报价 */
        .pricing-section {
            padding: 80px 0;
        }
        
        .pricing-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .pricing-card {
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            transition: var(--transition);
            position: relative;
        }
        
        .pricing-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        
        .pricing-card.popular {
            border: 2px solid var(--secondary);
            transform: scale(1.05);
        }
        
        .pricing-card.popular:hover {
            transform: scale(1.05) translateY(-10px);
        }
        
        .popular-tag {
            position: absolute;
            top: 20px;
            right: -30px;
            background-color: var(--secondary);
            color: var(--dark);
            padding: 5px 30px;
            font-weight: 600;
            transform: rotate(45deg);
        }
        
        .pricing-header {
            padding: 30px;
            text-align: center;
            background: linear-gradient(135deg, var(--primary) 0%, #1a3a8f 100%);
            color: white;
        }
        
        .pricing-name {
            font-size: 1.4rem;
            margin-bottom: 10px;
        }
        
        .pricing-price {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 5px;
        }
        
        .pricing-desc {
            opacity: 0.9;
        }
        
        .pricing-features {
            padding: 30px;
            list-style: none;
        }
        
        .pricing-features li {
            padding: 10px 0;
            display: flex;
            align-items: center;
            border-bottom: 1px dashed #eee;
        }
        
        .pricing-features li:last-child {
            border-bottom: none;
        }
        
        .pricing-features li i {
            color: var(--secondary);
            margin-right: 10px;
        }
        
        .pricing-footer {
            padding: 0 30px 30px;
            text-align: center;
        }
        
        /* CTA区域 */
        .cta-section {
            text-align: center;
            padding: 80px 0;
            background-color: var(--primary);
            color: white;
            position: relative;
            overflow: hidden;
        }
        
        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI2MCIgaGVpZ2h0PSI2MCIgdmlld0JveD0iMCAwIDYwIDYwIj48ZyBmaWxsPSJub25lIiBzdHJva2U9IiNmZmYiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlLW9wYWNpdHk9IjAuMDUiPjxwYXRoIGQ9Ik0wIEw2MCA2ME02MCAwTDAgNjAiLz48L2c+PC9zdmc+');
            animation: movingBackground 100s linear infinite;
        }
        
        .cta-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .cta-section h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }
        
        .cta-section p {
            font-size: 1.1rem;
            max-width: 700px;
            margin: 0 auto 30px;
            opacity: 0.9;
        }
        
        .btn {
            display: inline-block;
            padding: 12px 30px;
            background-color: var(--secondary);
            color: var(--dark);
            border-radius: 30px;
            font-weight: 600;
            transition: var(--transition);
            border: 2px solid var(--secondary);
        }
        
        .btn:hover {
            background-color: transparent;
            color: var(--secondary);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        
        .btn-large {
            display: inline-block;
            padding: 14px 35px;
            background-color: var(--secondary);
            color: var(--dark);
            border-radius: 30px;
            font-weight: 600;
            transition: var(--transition);
            border: 2px solid var(--secondary);
            font-size: 1.1rem;
        }
        
        .btn-large:hover {
            background-color: transparent;
            color: var(--secondary);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
        }
        
        /* 动画 */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* 响应式设计 */
        @media (max-width: 992px) {
            .process-steps {
                flex-direction: column;
                align-items: center;
            }
            
            .process-steps::before {
                display: none;
            }
            
            .step {
                width: 100%;
                max-width: 400px;
                margin-bottom: 40px;
            }
            
            .step-arrow {
                display: none;
            }
            
            nav ul {
                display: none;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .intro-content {
                grid-template-columns: 1fr;
            }
            
            .intro-image {
                order: -1;
            }
            
            .pricing-card.popular {
                transform: scale(1);
            }
            
            .pricing-card.popular:hover {
                transform: translateY(-10px);
            }
        }
        
        @media (max-width: 768px) {
            .transport-hero {
                padding: 70px 0;
            }
            
            .transport-hero h2 {
                font-size: 2.2rem;
            }
            
            .section-title h2 {
                font-size: 1.8rem;
            }
            
            .hero-stats {
                flex-wrap: wrap;
            }
        }
        
        @media (max-width: 576px) {
            .logo h1 {
                font-size: 1.5rem;
            }
            
            .transport-hero h2 {
                font-size: 1.8rem;
            }
            
            .transport-hero p {
                font-size: 1rem;
            }
            
            .btn {
                padding: 10px 20px;
            }
            
            .stat-number {
                font-size: 2rem;
            }
            
            .pricing-cards {
                grid-template-columns: 1fr;
            }
        }