/* 服务页面专用样式 */

/* 页面标题 */
.page-hero {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #ff6b35 100%);
    color: white;
    padding: 120px 0 60px;
    text-align: center;
    margin-top: 60px;
}

.page-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
}

.page-hero-content p {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    animation: fadeInUp 1s ease 0.2s both;
}

/* 服务介绍部分 */
.service-intro,
.warehouse-overview,
.delivery-network {
    padding: 80px 0;
    background: white;
}

.intro-content,
.overview-content,
.network-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.overview-content {
    max-width: 100%;
    padding: 0 2rem;
}

.intro-text h2,
.overview-text h2,
.network-text h2 {
    color: #1e3c72;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.intro-text p,
.overview-text p,
.network-text p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.intro-image img,
.overview-image img,
.network-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* 优势列表 */
.advantages,
.coverage-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.advantage-item,
.coverage-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.advantage-item i,
.coverage-item i {
    color: #ff6b35;
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

.advantage-item h4,
.coverage-item h4 {
    color: #1e3c72;
    margin-bottom: 0.5rem;
}

.advantage-item p,
.coverage-item p {
    color: #666;
    margin: 0;
    font-size: 1rem;
}

/* 仓库统计 */
.warehouse-stats {
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
    justify-content: space-around;
    width: 100%;
}

.stat {
    text-align: center;
    flex: 1;
}

.stat h3 {
    font-size: 2.5rem;
    color: #ff6b35;
    margin-bottom: 0.5rem;
}

.stat p {
    color: #666;
    font-size: 1rem;
}

/* 运输方式/仓库分布 */
.transport-methods,
.warehouse-locations,
.delivery-methods,
.locations-grid {
    padding: 80px 0;
    background: #f8f9fa;
}

.methods-grid,
.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.method-card,
.location-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    border: 1px solid #e9ecef;
}

.method-card:hover,
.location-card:hover {
    transform: translateY(-5px);
}

.method-card.featured,
.location-card.featured {
    border: 2px solid #ff6b35;
    position: relative;
}

.recommended {
    position: absolute;
    top: -10px;
    right: 20px;
    background: #ff6b35;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
}

.method-icon,
.location-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.card-header i {
    font-size: 3.5rem;
    color: #1e3c72;
}

.card-header h3 {
    color: #1e3c72;
    font-size: 1.8rem;
    margin: 0;
}

.method-icon i {
    font-size: 2.5rem;
    color: #1e3c72;
}

.method-card h3,
.location-card h3 {
    color: #1e3c72;
    font-size: 1.5rem;
    margin: 0;
}

.location-badge {
    background: #ff6b35;
    color: white;
    padding: 3px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
}

.method-details,
.location-details {
    margin-bottom: 1.5rem;
}

.method-details p,
.location-details p {
    color: #666;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.method-pricing,
.price-range {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.price-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.service-type {
    color: #1e3c72;
    font-weight: bold;
}

.price {
    color: #ff6b35;
    font-weight: bold;
}

.method-stats,
.location-features {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.stat,
.feature-tag {
    background: #e3f2fd;
    color: #1e3c72;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
}

.feature-tag {
    background: #fff3e0;
    color: #ff6b35;
}

/* 服务流程 */
.service-process {
    padding: 80px 0;
    background: white;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.step {
    text-align: center;
    flex: 1;
    min-width: 150px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.step h3 {
    color: #1e3c72;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.step p {
    color: #666;
    font-size: 0.9rem;
}

.step-arrow {
    font-size: 2rem;
    color: #ff6b35;
    font-weight: bold;
}

/* 价格说明 */
.pricing-info,
.pricing-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.pricing-tabs {
    margin-top: 2rem;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.tab-button {
    padding: 12px 30px;
    border: 2px solid #1e3c72;
    background: white;
    color: #1e3c72;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: bold;
}

.tab-button.active,
.tab-button:hover {
    background: #1e3c72;
    color: white;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.price-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.price-table th,
.price-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.price-table th {
    background: #1e3c72;
    color: white;
    font-weight: bold;
}

.price-table tr:hover {
    background: #f8f9fa;
}

.pricing-note {
    margin-top: 2rem;
    padding: 1rem;
    background: #e3f2fd;
    border-left: 4px solid #1e3c72;
    border-radius: 5px;
}

.pricing-note i {
    color: #1e3c72;
    margin-right: 0.5rem;
}

/* 核心服务 */
.core-services {
    padding: 80px 0;
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: white;
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.service-card h3 {
    color: #1e3c72;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.service-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features ul {
    list-style: none;
    text-align: left;
}

.service-features li {
    padding: 0.5rem 0;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
}

.service-features li:before {
    content: '✓';
    color: #ff6b35;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* 技术优势 */
.tech-advantages {
    padding: 80px 0;
    background: #f8f9fa;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.tech-item {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.tech-item h3 {
    color: #1e3c72;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.tech-item p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.tech-item ul {
    list-style: none;
}

.tech-item li {
    padding: 0.3rem 0;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
}

.tech-item li:before {
    content: '▸';
    color: #ff6b35;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* 特色服务 */
.special-services {
    padding: 80px 0;
    background: white;
}

.special-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.special-card {
    background: white;
    border: 1px solid #eee;
    border-radius: 15px;
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.special-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.special-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 1.5rem;
}

.special-card h3 {
    color: #1e3c72;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.special-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.special-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.special-details span {
    font-size: 0.9rem;
    color: #666;
}

.special-details .coverage,
.special-details .time-slot {
    color: #1e3c72;
    font-weight: bold;
}

.special-details .price {
    color: #ff6b35;
    font-weight: bold;
}

/* 追踪系统 */
.tracking-system {
    padding: 80px 0;
    background: #f8f9fa;
}

.tracking-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.tracking-item {
    text-align: center;
    padding: 2rem;
}

.tracking-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 2rem;
}

.tracking-item h3 {
    color: #1e3c72;
    margin-bottom: 1rem;
}

.tracking-item p {
    color: #666;
    line-height: 1.6;
}

/* 价格优势 */
.price-advantages {
    padding: 80px 0;
    background: white;
}

.comparison-table {
    margin-top: 2rem;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.comparison-table th,
.comparison-table td {
    padding: 15px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.comparison-table th {
    background: #1e3c72;
    color: white;
    font-weight: bold;
}

.savings {
    color: #ff6b35;
    font-weight: bold;
    font-size: 1.2rem;
}

.advantage-note {
    margin-top: 2rem;
    padding: 1rem;
    background: #fff3e0;
    border-left: 4px solid #ff6b35;
    border-radius: 5px;
}

.advantage-note i {
    color: #ff6b35;
    margin-right: 0.5rem;
}

/* 常见问题 */
.faq {
    padding: 80px 0;
    background: #f8f9fa;
    text-align: center;
}

.faq h2 {
    text-align: center;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    margin-bottom: 1rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.faq-item h3 {
    color: #1e3c72;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
}

/* 公司介绍 */
.company-intro {
    padding: 80px 0;
    background: white;
}

.company-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.value-item {
    text-align: center;
    padding: 2rem;
}

.value-item i {
    font-size: 3rem;
    color: #ff6b35;
    margin-bottom: 1rem;
}

.value-item h4 {
    color: #1e3c72;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.value-item p {
    color: #666;
}

/* 发展历程 */
.company-timeline {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #1e3c72;
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    justify-content: flex-end;
    padding-right: 50%;
    position: relative;
    margin-bottom: 3rem;
}

.timeline-item:nth-child(even) {
    justify-content: flex-start;
    padding-left: 50%;
    padding-right: 0;
}

.timeline-year {
    position: absolute;
    left: 50%;
    top: 0;
    width: 80px;
    height: 40px;
    background: #ff6b35;
    color: white;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    transform: translateX(-50%);
    z-index: 2;
}

.timeline-content {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    max-width: 300px;
}

.timeline-content h3 {
    color: #1e3c72;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: #666;
    margin: 0;
}

/* 团队介绍 */
.team-section {
    padding: 80px 0;
    background: white;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
}

.team-photo {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #ff6b35;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card h3 {
    color: #1e3c72;
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
}

.position {
    color: #ff6b35;
    font-weight: bold;
    margin-bottom: 1rem;
}

.bio {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* 资质认证 */
.certifications {
    padding: 80px 0;
    background: #f8f9fa;
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.cert-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.cert-item i {
    font-size: 3rem;
    color: #1e3c72;
    margin-bottom: 1rem;
}

.cert-item h3 {
    color: #1e3c72;
    margin-bottom: 0.5rem;
}

.cert-item p {
    color: #666;
}

/* 办公地点 */
.office-locations {
    padding: 80px 0;
    background: white;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.location-card {
    background: white;
    border: 1px solid #eee;
    border-radius: 15px;
    padding: 2.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.location-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.location-info {
    margin-bottom: 2rem;
}

.location-info p {
    margin-bottom: 0.8rem;
    color: #666;
}

.location-info i {
    color: #ff6b35;
    margin-right: 0.5rem;
    width: 20px;
}

.business-hours {
    border-top: 1px solid #eee;
    padding-top: 1.5rem;
}

.business-hours h4 {
    color: #1e3c72;
    margin-bottom: 0.5rem;
}

.business-hours p {
    color: #666;
    margin-bottom: 0.3rem;
    font-size: 0.9rem;
}

/* 联系方式 */
.contact-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info h3,
.contact-form h3 {
    color: #1e3c72;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-item i {
    color: #ff6b35;
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

.contact-item h4 {
    color: #1e3c72;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #666;
    margin-bottom: 0.3rem;
}

/* 联系表单 */
.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #1e3c72;
    font-weight: bold;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff6b35;
}

.submit-btn {
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

/* 配送地图 */
.delivery-map {
    padding: 80px 0;
    background: white;
}

.map-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.map-legend h3 {
    color: #1e3c72;
    margin-bottom: 1.5rem;
}

.legend-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.color-box {
    width: 20px;
    height: 20px;
    border-radius: 3px;
}

.next-day { background: #4caf50; }
.two-day { background: #2196f3; }
.three-day { background: #ff9800; }
.four-day { background: #f44336; }

.map-section {
    margin-bottom: 2rem;
}

.map-section h4 {
    color: #1e3c72;
    margin-bottom: 1rem;
}

.map-section p {
    color: #666;
    line-height: 1.6;
}

/* 响应式设计 */
@media screen and (max-width: 768px) {
    .page-hero {
        padding: 100px 0 50px;
    }
    
    .page-hero-content h1 {
        font-size: 2rem;
    }
    
    .intro-content,
    .overview-content,
    .network-content,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .process-steps {
        flex-direction: column;
        text-align: center;
    }
    
    .step-arrow {
        transform: rotate(90deg);
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        padding-left: 50px;
        padding-right: 0;
    }
    
    .timeline-item:nth-child(even) {
        padding-left: 50px;
    }
    
    .timeline-year {
        left: 20px;
        transform: none;
    }
    
    .map-content {
        grid-template-columns: 1fr;
    }
    
    .tab-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media screen and (max-width: 480px) {
    .method-card,
    .location-card,
    .service-card,
    .special-card,
    .team-card,
    .contact-form {
        padding: 1.5rem;
    }
    
    .price-table {
        overflow-x: auto;
    }
    
    .price-table table {
        min-width: 600px;
    }
}