        /* Shipping Section Styles */
        .shipping-section {
            background-color: #f4f6f9;
            padding: 75px 0 65px;
        }
        
        .shipping-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        .shipping-content {
            text-align: center;
        }
        
        .shipping-heading {
            font-size: 36px;
            font-weight: 700;
            color: var(--primary-blue);
            margin-bottom: 30px;
            position: relative;
            padding-bottom: 15px;
        }
        
        .shipping-heading::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-blue), var(--primary-red));
            border-radius: 2px;
        }
        
        .shipping-text {
            font-size: 18px;
            line-height: 1.7;
            color: #444;
            max-width: 800px;
            margin: 0 auto 40px;
        }
        
        .shipping-features {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
            margin-top: 50px;
        }
        
        .feature-card {
            background: white;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            padding: 30px;
            width: 100%;
            max-width: 350px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        
        .feature-icon {
            font-size: 48px;
            color: var(--primary-red);
            margin-bottom: 20px;
        }
        
        .feature-title {
            font-size: 22px;
            font-weight: 600;
            color: var(--primary-blue);
            margin-bottom: 15px;
        }
        
        .feature-desc {
            font-size: 16px;
            line-height: 1.6;
            color: #555;
        }

        /* Responsive Styles */
        @media (max-width: 992px) {
            .shipping-heading {
                font-size: 32px;
            }
            
            .shipping-text {
                font-size: 17px;
            }
        }
        
        @media (max-width: 768px) {
            .shipping-section {
                padding: 50px 0;
            }
            
            .shipping-heading {
                font-size: 28px;
                padding-bottom: 12px;
            }
            
            .shipping-text {
                font-size: 16px;
            }
            
            .feature-card {
                padding: 25px;
            }
            
            .feature-title {
                font-size: 20px;
            }
        }
        
        @media (max-width: 576px) {
            .shipping-heading {
                font-size: 24px;
            }
            
            .shipping-text {
                font-size: 15px;
            }
            
            .feature-card {
                padding: 20px;
            }
            
            .feature-icon {
                font-size: 40px;
            }
        }

        /* Shipping Terms Section */
        .shipping-section {
            background-color: #f9f9f9;
            padding: 60px 0;
            position: relative;
            overflow: hidden;
        }
        
        .shipping-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .shipping-row {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 40px;
        }
        
        .shipping-content {
            flex: 1;
            min-width: 300px;
        }
        
        .shipping-image {
            flex: 1;
            min-width: 300px;
            text-align: center;
        }
        
        .shipping-image img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .shipping-title {
            font-size: 32px;
            color: #182354;
            margin-bottom: 20px;
            font-weight: 700;
            position: relative;
            padding-bottom: 15px;
			
        }
        
        .shipping-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: #9b2e28;
        }
        
        .shipping-text {
            font-size: 16px;
            line-height: 1.7;
            color: #333;
            margin-bottom: 25px;
        }
        
        .shipping-link {
            color: #182354;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            border-bottom: 1px solid rgba(155, 46, 40, 0.3);
        }
        
        .shipping-link:hover {
            color: #9b2e28;
            border-bottom-color: #9b2e28;
        }
        
        .shipping-btn {
            display: inline-block;
            background: #9b2e28;
            color: white;
            padding: 12px 28px;
            border-radius: 4px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            margin-top: 15px;
            border: 1px solid #9b2e28;
        }
        
        .shipping-btn:hover {
            background: transparent;
            color: #9b2e28;
        }
        
        /* Terms Table */
        .terms-table {
            width: 100%;
            border-collapse: collapse;
            margin: 25px 0;
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
        }
        
        .terms-table th {
            background: #182354;
            color: white;
            padding: 15px;
            text-align: left;
            font-weight: 600;
        }
        
        .terms-table td {
            padding: 12px 15px;
            border-bottom: 1px solid #eee;
        }
        
        .terms-table tr:nth-child(even) {
            background-color: #f8f9fa;
        }
        
        .terms-table tr:hover {
            background-color: #f1f4f9;
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .shipping-row {
                flex-direction: column;
            }
            
            .shipping-content, .shipping-image {
                width: 100%;
            }
            
            .shipping-image {
                order: -1;
            }
            
            .shipping-title {
                font-size: 28px;
            }
            
            .terms-table {
                display: block;
                overflow-x: auto;
            }
        }

/* 运输方式区域样式 */
.shengao-shipping-section {
    background-color: #f9fafc;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

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

.shengao-shipping-wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
}

.shengao-shipping-content {
    flex: 1;
}

.shengao-shipping-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.shengao-shipping-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.shengao-shipping-image:hover img {
    transform: scale(1.03);
}

.shengao-shipping-content h2 {
    font-size: 2.5rem;
    color: #182354;
    margin-bottom: 25px;
    font-weight: 700;
    line-height: 1.2;
}

.shengao-shipping-content p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 35px;
    line-height: 1.7;
}

.shengao-shipping-methods {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.shengao-shipping-methods li {
    display: flex;
    align-items: flex-start;
    padding: 15px 0;
    border-bottom: 1px solid #e2e8f0;
}

.shengao-shipping-methods li:last-child {
    border-bottom: none;
}

.shengao-shipping-methods i {
    font-size: 1.5rem;
    color: #9b2e28;
    margin-right: 15px;
    min-width: 30px;
    text-align: center;
    padding-top: 5px;
}

.shengao-shipping-methods strong {
    display: block;
    font-size: 1.1rem;
    color: #182354;
    margin-bottom: 5px;
}

.shengao-shipping-methods span {
    display: block;
    font-size: 0.95rem;
    color: #718096;
}

.shengao-shipping-btn {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #182354 0%, #2b548b 100%);
    color: white;
    padding: 14px 30px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(24, 35, 84, 0.2);
}

.shengao-shipping-btn i {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.shengao-shipping-btn:hover {
    background: linear-gradient(135deg, #2b548b 0%, #182354 100%);
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(24, 35, 84, 0.3);
	color: white;
}

.shengao-shipping-btn:hover i {
    transform: translateX(5px);
}

/* 响应式设计 */
@media (max-width: 992px) {
    .shengao-shipping-wrapper {
        flex-direction: column;
        gap: 40px;
    }
    
    .shengao-shipping-content {
        order: 1;
    }
    
    .shengao-shipping-image {
        order: 2;
    }
    
    .shengao-shipping-content h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .shengao-shipping-section {
        padding: 60px 0;
    }
    
    .shengao-shipping-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .shengao-shipping-content h2 {
        font-size: 1.8rem;
    }
    
    .shengao-shipping-btn {
        width: 100%;
        justify-content: center;
    }
}

        /* 发货展示区域样式 */
        .shipping-section {
            padding: 70px 0 40px;
            background-color: #f9fafc;
        }
        
        .shipping-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        .shipping-header {
            text-align: center;
            margin-bottom: 40px;
        }
        
        .shipping-header h2 {
            font-size: 32px;
            color: #182354;
            margin-bottom: 15px;
            font-weight: 700;
        }
        
        .shipping-header p {
            font-size: 18px;
            color: #555;
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.6;
        }
        
        .shipping-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 25px;
        }
        
        .shipping-item {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .shipping-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
        }
        
        .shipping-img {
            height: 220px;
            overflow: hidden;
            position: relative;
        }
        
        .shipping-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .shipping-item:hover .shipping-img img {
            transform: scale(1.05);
        }
        
        .shipping-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(155, 46, 40, 0.85);
            color: white;
            padding: 8px 15px;
            font-size: 14px;
            text-align: center;
            font-weight: 600;
        }
        
        .shipping-title {
            /*padding: 20px;*/
            text-align: center;
        }
        
        .shipping-title a {
            color: #182354;
            font-size: 18px;
            font-weight: 600;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .shipping-title a:hover {
            color: #9b2e28;
        }
        
        /* 响应式设计 */
        @media (max-width: 992px) {
            .shipping-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            .shipping-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .shipping-header h2 {
                font-size: 28px;
            }
            
            .shipping-header p {
                font-size: 16px;
            }
        }
        
        @media (max-width: 576px) {
            .shipping-grid {
                grid-template-columns: 1fr;
            }
            
            .shipping-header h2 {
                font-size: 24px;
            }
        }

        /* FAQ Section Styles */
        .shengao-faq-section {
            padding: 70px 0;
            background-color: #f9fafc;
        }
        
        .shengao-faq-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
            display: flex;
            flex-wrap: wrap;
        }
        
        .shengao-faq-content {
            flex: 0 0 66.666667%;
            max-width: 66.666667%;
            padding-right: 30px;
        }
        
        .shengao-faq-sidebar {
            flex: 0 0 33.333333%;
            max-width: 33.333333%;
            position: relative;
        }
        
        .shengao-faq-search {
            margin-bottom: 30px;
            position: relative;
        }
        
        .shengao-faq-search input {
            width: 100%;
            padding: 12px 20px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 16px;
            transition: all 0.3s;
        }
        
        .shengao-faq-search input:focus {
            border-color: #182354;
            box-shadow: 0 0 0 2px rgba(24, 35, 84, 0.2);
            outline: none;
        }
        
        .shengao-accordion-box {
            margin-bottom: 15px;
            border: 1px solid #e2e8f0;
            border-radius: 6px;
            overflow: hidden;
            background: #fff;
            box-shadow: 0 1px 3px rgba(0,0,0,0.05);
        }
        
        .shengao-accordion-title {
            padding: 18px 20px;
            cursor: pointer;
            font-weight: 600;
            font-size: 17px;
            color: #182354;
            position: relative;
            margin: 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s;
        }
        
        .shengao-accordion-title:hover {
            background-color: #f1f5f9;
        }
        
        .shengao-accordion-title::after {
            content: '\f078';
            font-family: 'Font Awesome 5 Free';
            font-weight: 900;
            font-size: 14px;
            transition: transform 0.3s;
        }
        
        .shengao-accordion-title.active::after {
            transform: rotate(180deg);
        }
        
        .shengao-accordion-panel {
            padding: 0;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out;
        }
        
        .shengao-accordion-panel.active {
            max-height: 1000px;
        }
        
        .shengao-accordion-content {
            padding: 20px;
            border-top: 1px solid #e2e8f0;
        }
        
        .shengao-accordion-content p,
        .shengao-accordion-content ul,
        .shengao-accordion-content ol {
            margin-bottom: 15px;
            line-height: 1.6;
        }
        
        .shengao-accordion-content ul,
        .shengao-accordion-content ol {
            padding-left: 20px;
        }
        
        .shengao-accordion-content li {
            margin-bottom: 8px;
        }
        
        .shengao-sidebar {
            background: #fff;
            border-radius: 6px;
            padding: 25px;
            box-shadow: 0 4px 6px rgba(0,0,0,0.04);
            position: sticky;
            top: 90px;
        }
        
        .shengao-sidebar h3 {
            color: #182354;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #9b2e28;
            font-size: 18px;
        }
        
        .shengao-sidebar ol {
            padding-left: 0;
            counter-reset: item;
        }
        
        .shengao-sidebar li {
            margin-bottom: 12px;
            display: flex;
            align-items: center;
        }
        
        .shengao-sidebar li::before {
            counter-increment: item;
            content: counter(item);
            background: #182354;
            color: #fff;
            width: 24px;
            height: 24px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 12px;
            font-size: 12px;
            flex-shrink: 0;
        }
        
        .shengao-sidebar a {
            color: #4a5568;
            text-decoration: none;
            transition: color 0.2s;
            font-size: 15px;
        }
        
        .shengao-sidebar a:hover {
            color: #182354;
        }
        
        /* Responsive Styles */
        @media (max-width: 992px) {
            .shengao-faq-content,
            .shengao-faq-sidebar {
                flex: 0 0 100%;
                max-width: 100%;
            }
            
            .shengao-faq-content {
                padding-right: 0;
                margin-bottom: 40px;
            }
            
            .shengao-sidebar {
                position: static;
            }
        }
        
        @media (max-width: 576px) {
            .shengao-faq-section {
                padding: 40px 0;
            }
            
            .shengao-accordion-title {
                padding: 15px;
                font-size: 16px;
            }
            
            .shengao-accordion-content {
                padding: 15px;
            }
        }