* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background-color: #fff;
    border-bottom: 1px solid #ddd;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    min-height: 50px;
}

.logo-text {
    background-color: #ff6b35;
    color: white;
    padding: 8px 16px;
    font-size: 24px;
    font-weight: bold;
}

.logo-img {
    height: 40px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
}

.nav {
    display: flex;
    gap: 25px;
    align-items: center;
    flex: 1;
    justify-content: flex-end;
}

.nav a {
    text-decoration: none;
    color: #333;
    font-size: 16px;
    white-space: nowrap;
    padding: 6px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.nav a:hover {
    background-color: #f5f5f5;
    color: #ff6b35;
}

.nav a.active {
    background-color: #fff;
    color: #ff6b35;
    font-weight: 600;
}

/* 语言切换器 */
.lang-switcher {
    margin-left: 15px;
    display: flex;
    align-items: center;
}

.lang-dropdown {
    position: relative;
}

.lang-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8a65 100%);
    border: none;
    padding: 8px 16px;
    cursor: pointer;
    font-size: 14px;
    color: white;
    border-radius: 20px;
    transition: all 0.3s ease;
    height: 36px;
    box-sizing: border-box;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
    font-weight: 500;
}

.lang-toggle:hover {
    background: linear-gradient(135deg, #e55a2b 0%, #ff7043 100%);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
    transform: translateY(-1px);
}

.globe-icon {
    display: flex;
    font-size: 16px;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
}

.globe-icon svg {
    display: block;
    width: 18px;
    height: 18px;
}

.current-lang {
    font-weight: 500;
    font-size: 13px;
}

.lang-menu {
    display: none;
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    background-color: white;
    min-width: 160px;
    overflow: hidden;
    border: 1px solid #e0e0e0;
    z-index: 1000;
    animation: fadeInDown 0.3s ease;
    padding: 4px;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.lang-dropdown:hover .lang-menu {
    display: block;
}

.lang-option {
    display: block;
    padding: 10px 15px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s;
}

.lang-option:hover {
    background-color: #fff5f2;
    color: #ff6b35;
}

.lang-option.active {
    background-color: #ff6b35;
    color: white;
}
/* Hero Section */
.hero {
    background-image: url('../img/index_bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #d32f2f;
    color: white;
    padding: 0;
    min-height: 450px;
    position: relative;
}

.hero-content {
    min-height: 450px;
}

.hero-image {
    display: none;
}

.mascot {
    font-size: 80px;
}

.package {
    font-size: 60px;
}

.hero-subtitle {
    display: none;
}

/* Services Section */
.services {
    padding: 60px 0;
    background-color: #f5f5f5;
}

.services h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.service-item {
    background-color: white;
    padding: 30px 15px;
    text-align: center;
    border: 1px solid #ddd;
}

.service-icon {
    font-size: 60px;
    margin-bottom: 20px;
    width: 220px;
    height: 200px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-icon:hover img {
    transform: scale(1.1);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(255, 107, 53, 0.9) 0%, rgba(255, 107, 53, 0.8) 100%);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 20px;
    text-align: center;
}

.service-icon:hover .service-overlay {
    opacity: 1;
}

.overlay-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}

.overlay-description {
    font-size: 14px;
    line-height: 1.6;
}

.service-item h3 {
    font-size: 18px;
}

/* Features Section - Table Layout */
.features {
    background-color: #f39c12;
    padding: 80px 0;
}

.features-table {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    background-color: white;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.features-table thead th {
    padding: 20px;
    text-align: center;
    font-weight: bold;
    font-size: 16px;
    border-bottom: 2px solid #e0e0e0;
}

.features-table .service-column {
    background-color: #e8e8e8;
    color: #333;
    width: 33.33%;
}

.features-table .SHAP SHAP CARGO-column {
    background-color: #ff6b35;
    color: white;
    width: 33.33%;
}

.features-table .traditional-column {
    background-color: #f5e6d3;
    color: #333;
    width: 33.34%;
}

.SHAP SHAP CARGO-header {
    font-size: 18px;
    margin-bottom: 8px;
}

.star-rating {
    font-size: 20px;
    color: #ffd700;
    letter-spacing: 2px;
}

.features-table tbody td {
    padding: 18px 20px;
    text-align: center;
    border-bottom: 1px solid #f0f0f0;
    vertical-align: middle;
}

.features-table tbody tr:last-child td {
    border-bottom: none;
}

.features-table tbody td:first-child {
    text-align: left;
    font-size: 14px;
    color: #333;
    font-weight: 500;
}

.check-cell {
    font-size: 28px;
    color: #4caf50;
    font-weight: bold;
}

.cross-cell {
    font-size: 28px;
    color: #f44336;
    font-weight: bold;
}

.text-cell {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
}

/* Pricing Section - HOT!热销产品 */
.pricing {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.hot-header {
    text-align: center;
    margin-bottom: 20px;
}

.hot-badge {
    display: inline-block;
    border: 3px solid #333;
    padding: 10px 30px;
    background-color: white;
}

.hot-text {
    display: block;
    color: #ff6b35;
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 2px;
}

.hot-subtitle {
    display: block;
    color: #333;
    font-size: 16px;
    font-weight: bold;
}

.hot-slogan {
    text-align: center;
    color: #ff6b35;
    font-size: 18px;
    margin-bottom: 40px;
}

.price-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.price-card {
    background-color: white;
    border: 1px solid #ddd;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.price-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.price-card.featured {
    border: 3px solid #ff6b35;
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
    z-index: 1;
}

.price-card.featured:hover {
    transform: scale(1.08);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
}

.product-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: rgba(25, 25, 112, 0.9);
    color: white;
    padding: 8px 15px;
    font-size: 13px;
    font-weight: bold;
}

.product-badge-alt {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: rgba(255, 107, 53, 0.95);
    color: white;
    padding: 10px 15px;
    font-size: 12px;
    font-weight: bold;
    text-align: center;
    line-height: 1.4;
}

.discount-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: white;
    border: 3px solid #ff6b35;
    padding: 10px 15px;
    text-align: center;
}

.discount-text {
    font-size: 20px;
    font-weight: bold;
    color: #ff6b35;
    line-height: 1.2;
}

.discount-price {
    font-size: 11px;
    color: #333;
    line-height: 1.3;
    margin-top: 5px;
}

.product-title {
    font-size: 16px;
    font-weight: bold;
    padding: 15px 20px 5px;
    color: #333;
}

.product-desc {
    font-size: 13px;
    color: #ff6b35;
    margin: 5px 0;
}

.product-detail {
    font-size: 12px;
    color: #666;
    padding: 0 20px;
    line-height: 1.6;
    min-height: 40px;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-top: 1px solid #eee;
    margin-top: 10px;
}

.product-price {
    text-align: left;
}

.price-label {
    display: block;
    font-size: 12px;
    color: #666;
}

.price-value {
    display: block;
    font-size: 20px;
    font-weight: bold;
    color: #ff6b35;
}

.order-btn {
    background-color: #ff6b35;
    color: white;
    border: none;
    padding: 10px 25px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.order-btn:hover {
    background-color: #e55a2b;
}

/* Testimonials Section */
.testimonials {
    padding: 60px 0;
    background-color: #f5f5f5;
}

.testimonials h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 10px;
    color: #333;
}

.subtitle {
    text-align: center;
    color: #666;
    font-size: 16px;
    margin-bottom: 40px;
}

.testimonial-card {
    background: linear-gradient(135deg, #e63946 0%, #d62828 100%);
    color: white;
    padding: 40px;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.xiaohongshu-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.xhs-icon {
    width: 40px;
    height: 40px;
    background-color: white;
    border-radius: 50%;
    padding: 8px;
}

.xhs-title {
    font-size: 20px;
    font-weight: bold;
}

.phone-mockups {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.phone-item {
    background-color: white;
    border-radius: 20px;
    padding: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.3);
}

.phone-item img {
    width: 100px;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}

.phone-arrow {
    font-size: 30px;
    color: white;
    font-weight: bold;
}

.testimonial-footer {
    font-size: 16px;
    margin-top: 20px;
    font-weight: 500;
}

/* Media Section */
.media {
    padding: 60px 0;
    background-color: #fff;
}

.media h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
}

.media-logos {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
    align-items: center;
}

.media-logo-img {
    width: 100%;
    height: auto;
    max-width: 200px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s;
    margin: 0 auto;
    display: block;
}

.media-logo-img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* Footer */
.footer {
    background-color: #fff;
    border-top: 1px solid #ddd;
    padding-top: 40px;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 60px;
}

.footer-left {
    flex: 1;
    min-width: 220px;
}

.footer-logo {
    font-size: 18px;
    font-weight: bold;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    margin-bottom: 15px;
}

.footer-logo-img {
    height: 62px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
    display: block;
}

.footer-logo-text {
    font-size: 18px;
    font-weight: bold;
    color: white;
}

.footer-slogan {
    margin-top: 15px;
}

.slogan-line1 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.slogan-line2 {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.footer-nav {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: flex-start;
    width: 100%;
    max-width: 800px;
}

.footer-nav-column {
    display: flex;
    flex-direction: column;
    gap: 15px;
    flex: 1;
    min-width: 150px;
}

.footer-nav a {
    text-decoration: none;
    color: #333;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #ff6b35;
}

.footer-bottom {
    background-color: #f5f5f5;
    padding: 10px 0;
    margin-top: 30px;
}

.footer-info {
    color: #666;
    font-size: 14px;
    text-align: center;
}

.footer-info {
    color: #666;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .service-grid,
    .price-grid,
    .media-logos {
        grid-template-columns: 1fr;
    }
    
    .service-icon {
        width: 180px;
        height: 140px;
        margin-bottom: 15px;
    }
    
    .features-table {
        font-size: 12px;
    }
    
    .features-table thead th {
        padding: 12px 8px;
        font-size: 13px;
    }
    
    .features-table tbody td {
        padding: 12px 8px;
        font-size: 12px;
    }
    
    .SHAP SHAP CARGO-header {
        font-size: 14px;
    }
    
    .star-rating {
        font-size: 14px;
    }
    
    .check-cell,
    .cross-cell {
        font-size: 22px;
    }
    
    .nav {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .hero-content h1 {
        font-size: 32px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

/* 购物车图标 */
.cart-icon {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #ff6b35;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
}

.cart-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.6);
}

.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: white;
    color: #ff6b35;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 12px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* 购物车侧边栏 */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background-color: white;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    z-index: 2000;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
}

.cart-sidebar.active {
    right: 0;
}

.cart-header {
    padding: 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.cart-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #666;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-content {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
}

.cart-items {
    margin-bottom: 30px;
}

.empty-cart {
    text-align: center;
    color: #999;
    padding: 40px 0;
}

.cart-item {
    display: flex;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.cart-item-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    margin-right: 15px;
    border-radius: 4px;
}

.cart-item-info {
    flex: 1;
}

.cart-item-info h4 {
    margin: 0 0 5px 0;
    font-size: 14px;
    color: #333;
}

.cart-item-price {
    font-size: 14px;
    color: #ff6b35;
    font-weight: bold;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    margin: 0 15px;
}

.quantity-btn {
    width: 30px;
    height: 30px;
    border: 1px solid #ddd;
    background-color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.quantity {
    margin: 0 10px;
    font-size: 14px;
    min-width: 30px;
    text-align: center;
}

.remove-item {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #999;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-promo {
    margin-bottom: 20px;
}

.promo-input {
    display: flex;
}

.promo-input input {
    flex: 1;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px 0 0 4px;
    font-size: 14px;
}

.promo-btn {
    background-color: #ff6b35;
    color: white;
    border: none;
    padding: 0 20px;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    font-size: 14px;
}

.cart-summary {
    border-top: 1px solid #eee;
    padding-top: 20px;
    margin-bottom: 20px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.total-amount {
    font-size: 18px;
    font-weight: bold;
    color: #ff6b35;
}

.cart-actions {
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.view-cart-btn {
    width: 100%;
    background-color: #ff6b35;
    color: white;
    border: none;
    padding: 12px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.view-cart-btn:hover {
    background-color: #e55a2b;
}

/* 购物车遮罩层 */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* 购物车通知 */
.cart-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: #4caf50;
    color: white;
    padding: 15px 20px;
    border-radius: 4px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 3000;
    animation: slideInRight 0.3s ease;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* 包裹跟踪页面样式 */
.track-content {
    padding: 60px 0;
    background-color: #f5f5f5;
}

.track-form-section {
    background-color: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.track-form-section h2 {
    font-size: 20px;
    color: #333;
    margin-bottom: 30px;
    padding-bottom: 10px;
    border-bottom: 2px solid #ff6b35;
}

.track-form {
    max-width: 600px;
}

.track-form .form-group {
    margin-bottom: 20px;
}

.track-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.track-form input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.track-btn {
    background-color: #ff6b35;
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s;
    margin-top: 10px;
}

.track-btn:hover {
    background-color: #e55a2b;
}

.track-result-section {
    background-color: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.track-result-section h2 {
    font-size: 20px;
    color: #333;
    margin-bottom: 30px;
    padding-bottom: 10px;
    border-bottom: 2px solid #ff6b35;
}

.track-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.track-info-row {
    display: flex;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.track-info-label {
    font-weight: 500;
    color: #666;
    width: 100px;
}

.track-info-value {
    color: #333;
    flex: 1;
}

.track-error {
    background-color: #ffebee;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #f44336;
    margin-bottom: 30px;
}

.track-error p {
    color: #c62828;
    margin: 0;
}

/* 结算页面样式 */
.checkout-content {
    padding: 60px 0;
    background-color: #f5f5f5;
}

.checkout-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.checkout-left {
    background-color: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.checkout-right {
    background-color: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.checkout-left h2 {
    font-size: 20px;
    color: #333;
    margin: 40px 0 30px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid #ff6b35;
}

.checkout-left h2:first-child {
    margin-top: 0;
}

/* 表单样式 */
.shipping-form {
    margin-bottom: 40px;
}

/* 继续按钮 */
.continue-btn {
    background-color: #ff6b35;
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s;
    margin: 30px 0;
    width: 100%;
}

.continue-btn:hover {
    background-color: #e55a2b;
}

/* 配送方式 */
.shipping-methods {
    margin-bottom: 40px;
}

.shipping-option {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    transition: all 0.3s;
}

.shipping-option:hover {
    border-color: #ff6b35;
    background-color: #fff5f2;
}

.shipping-option input[type="radio"] {
    margin-right: 10px;
}

.shipping-option label {
    flex: 1;
    cursor: pointer;
}

.shipping-price {
    font-weight: bold;
    color: #ff6b35;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    color: #333;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    font-family: Arial, sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff6b35;
}

/* 支付方式 */
.payment-methods {
    margin-bottom: 40px;
}

.payment-option {
    margin-bottom: 15px;
}

.payment-option input[type="radio"] {
    margin-right: 10px;
}

.payment-option label {
    font-size: 14px;
    color: #333;
    cursor: pointer;
}

/* 订单备注 */
.order-notes {
    margin-bottom: 40px;
}

.order-notes textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    font-family: Arial, sans-serif;
    resize: vertical;
    min-height: 100px;
}

/* 订单摘要 */
.order-summary h2 {
    font-size: 20px;
    color: #333;
    margin-bottom: 30px;
    padding-bottom: 10px;
    border-bottom: 2px solid #ff6b35;
}

.order-items {
    margin-bottom: 30px;
}

.order-item {
    display: flex;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.order-item:last-child {
    border-bottom: none;
}

.order-item-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    margin-right: 15px;
    border-radius: 4px;
}

.order-item-info {
    flex: 1;
}

.order-item-info h4 {
    margin: 0 0 5px 0;
    font-size: 14px;
    color: #333;
}

.order-item-details {
    display: flex;
    gap: 15px;
    font-size: 14px;
    color: #666;
}

.order-item-total {
    font-size: 14px;
    font-weight: bold;
    color: #333;
}

/* 订单总价 */
.order-total {
    margin-bottom: 30px;
}

.total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    font-size: 14px;
}

.total-row.total {
    font-weight: bold;
    font-size: 16px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

/* 促销代码 */
.promo-code {
    margin-bottom: 30px;
}

.promo-code input {
    width: 70%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px 0 0 4px;
    font-size: 14px;
}

.promo-code button {
    width: 30%;
    padding: 10px;
    background-color: #ff6b35;
    color: white;
    border: none;
    border-radius: 0 4px 4px 0;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.promo-code button:hover {
    background-color: #e55a2b;
}

/* 提交订单按钮 */
.place-order-btn {
    width: 100%;
    padding: 15px;
    background-color: #ff6b35;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.place-order-btn:hover {
    background-color: #e55a2b;
}

/* 移动端响应式 */
@media (max-width: 768px) {
    .checkout-layout {
        grid-template-columns: 1fr;
    }
    
    .checkout-left,
    .checkout-right {
        padding: 30px 20px;
    }
    
    .promo-code input {
        width: 60%;
    }
    
    .promo-code button {
        width: 40%;
    }
}

@media (max-width: 480px) {
    .checkout-content {
        padding: 40px 0;
    }
    
    .checkout-left,
    .checkout-right {
        padding: 20px 15px;
    }
    
    .checkout-left h2,
    .order-summary h2 {
        font-size: 18px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px;
        font-size: 13px;
    }
    
    .order-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .order-item-image {
        width: 60px;
        height: 60px;
    }
    
    .promo-code input {
        width: 55%;
    }
    
    .promo-code button {
        width: 45%;
    }
    
    .place-order-btn {
        padding: 12px;
        font-size: 14px;
    }
}

/* 页面横幅 */
.page-banner {
    background-color: #ff7f5c;
    color: white;
    padding: 80px 0;
    text-align: center;
}

.page-banner h1 {
    font-size: 48px;
    font-weight: bold;
    margin: 0;
}

/* 咨询表单区域 */
.contact-form-section {
    padding: 60px 0;
    background-color: #fff;
}

.contact-form-section .container {
    max-width: 800px;
}

/* 表单介绍 */
.form-intro {
    text-align: center;
    margin-bottom: 40px;
}

.intro-highlight {
    color: #ff6b35;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 30px;
}

.form-intro h3 {
    font-size: 20px;
    margin-bottom: 20px;
}

.intro-text {
    text-align: left;
    background-color: #f9f9f9;
    padding: 20px;
    border-left: 4px solid #ff6b35;
    margin-bottom: 30px;
}

.intro-text p {
    margin: 10px 0;
    line-height: 1.8;
    color: #333;
}

/* 二维码 */
.qr-code {
    margin: 30px 0;
}

.qr-code img {
    width: 150px;
    height: 150px;
    border: 2px solid #ddd;
    padding: 10px;
    background-color: white;
}

/* 表单样式 */
.contact-form {
    background-color: white;
    padding: 0;
    max-width: 900px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 15px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #ff6b35;
    font-size: 14px;
    font-family: Arial, sans-serif;
    box-sizing: border-box;
    border-radius: 0;
    background-color: white;
    color: #666;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff6b35;
    background-color: #fff;
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
    line-height: 1.6;
}

/* 提交按钮 */
.form-submit {
    text-align: center;
    margin-top: 30px;
}

.submit-btn {
    background-color: #ff6b35;
    color: white;
    border: none;
    padding: 15px 80px;
    font-size: 16px;
    cursor: pointer;
    font-weight: bold;
    border-radius: 0;
    transition: background-color 0.3s;
}


.submit-btn:hover {
    background-color: #e55a2b;
}

/* 移动端响应式 */
@media (max-width: 768px) {
    .page-banner h1 {
        font-size: 32px;
        padding: 0 20px;
    }
    
    .contact-form-section {
        padding: 40px 0;
    }
    
    .intro-text {
        padding: 15px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 12px;
        font-size: 14px;
    }
    
    .submit-btn {
        width: 100%;
        padding: 15px 30px;
    }
    
    .qr-code img {
        width: 120px;
        height: 120px;
    }
    
    .nav {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .cart-icon {
        order: -1;
    }
}

@media (max-width: 480px) {
    .page-banner {
        padding: 50px 0;
    }
    
    .page-banner h1 {
        font-size: 24px;
    }
    
    .intro-highlight {
        font-size: 16px;
    }
    
    .form-intro h3 {
        font-size: 18px;
    }
    
    .intro-text p {
        font-size: 14px;
    }
}

/* 广告横幅样式 */
.promo-banner {
    background: linear-gradient(to right, #d32f2f 0%, #d32f2f 60%, #1a237e 60%, #1a237e 100%);
    padding: 30px 0;
    margin-top: 0;
}

.banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: white;
}

.banner-left {
    flex: 1;
}

.banner-tag {
    font-size: 14px;
    margin-bottom: 10px;
}

.banner-offer {
    font-size: 18px;
    font-weight: bold;
}

.banner-center {
    flex: 0 0 150px;
    text-align: center;
}

.banner-center img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 3px solid white;
}

.banner-right {
    flex: 1;
    text-align: right;
}

.banner-slogan {
    font-size: 16px;
    margin-bottom: 10px;
}

.banner-highlight {
    font-size: 20px;
    font-weight: bold;
}

/* 页面标题 */
.page-title {
    padding: 60px 0 40px;
    text-align: center;
    background-color: #fff;
}

.page-title h1 {
    font-size: 36px;
    color: #333;
    margin: 0;
    padding-bottom: 20px;
    border-bottom: 2px solid #333;
    display: inline-block;
}

/* 介绍区域 */
.intro-section {
    padding: 40px 0;
    background-color: #fff;
}

.intro-section .container {
    max-width: 900px;
}

.intro-highlight {
    color: #ff6b35;
    font-size: 18px;
    text-align: center;
    margin-bottom: 30px;
    font-weight: bold;
}

.intro-text {
    background-color: #f9f9f9;
    padding: 25px;
    margin-bottom: 30px;
    line-height: 1.8;
    text-align: justify;
}

.intro-text p {
    margin: 0;
    color: #333;
}

.intro-cta {
    text-align: center;
    color: #ff6b35;
    font-size: 16px;
    font-weight: bold;
}

/* 服务区域 */
.service-section {
    padding: 40px 0;
    background-color: #fff;
}

.service-section .container {
    max-width: 900px;
}

.section-header {
    background-color: #ff7f5c;
    color: white;
    padding: 15px 25px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.section-header h2 {
    margin: 0;
    font-size: 24px;
}

.section-tag {
    font-size: 14px;
    font-weight: normal;
}

.service-content {
    padding: 0 25px;
}

.service-intro {
    margin-bottom: 25px;
    line-height: 1.8;
    color: #333;
}

.service-list {
    list-style: none;
    padding: 0;
}

.service-list li {
    padding: 12px 0;
    padding-left: 25px;
    position: relative;
    color: #333;
    line-height: 1.6;
}

.service-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #ff6b35;
    font-size: 20px;
}

/* 移动端响应式 */
@media (max-width: 768px) {
    .promo-banner {
        background: linear-gradient(to bottom, #d32f2f 0%, #d32f2f 70%, #1a237e 70%, #1a237e 100%);
    }
    
    .banner-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .banner-left,
    .banner-right {
        flex: none;
        width: 100%;
        text-align: center;
    }
    
    .banner-center {
        flex: none;
    }
    
    .page-title h1 {
        font-size: 28px;
        padding: 0 20px 15px;
    }
    
    .intro-highlight {
        font-size: 16px;
        padding: 0 20px;
    }
    
    .intro-text {
        padding: 20px;
        text-align: left;
    }
    
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 15px 20px;
    }
    
    .section-header h2 {
        font-size: 20px;
    }
    
    .service-content {
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .banner-tag,
    .banner-slogan {
        font-size: 13px;
    }
    
    .banner-offer {
        font-size: 16px;
    }
    
    .banner-highlight {
        font-size: 18px;
    }
    
    .banner-center img {
        width: 100px;
        height: 100px;
    }
    
    .page-title {
        padding: 40px 0 30px;
    }
    
    .page-title h1 {
        font-size: 24px;
    }
    
    .intro-section {
        padding: 30px 0;
    }
    
    .service-section {
        padding: 30px 0;
    }
}

/* 箱型展示页面样式 */

.boxes-intro {
    background-color: #fff;
    padding: 40px 0;
    text-align: center;
}

.boxes-intro .container {
    max-width: 900px;
}

.boxes-intro h1 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #333;
}

.boxes-intro p {
    color: #666;
    line-height: 1.8;
}

/* 箱型分类标题 */
.box-category {
    background-color: #ff7f5c;
    color: white;
    padding: 12px 0;
    margin: 40px 0 30px;
}

.box-category h2 {
    font-size: 24px;
    color: #333;
    text-align: center;
}

.box-info {
    background-color: #f9f9f9;
    padding: 30px;
    margin-bottom: 40px;
    border-left: 4px solid #ff6b35;
    border-radius: 4px;
}

.box-info p {
    color: #333;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 15px;
}

.box-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.box-info li {
    color: #666;
    line-height: 1.8;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.box-info li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #ff6b35;
    font-size: 20px;
}

/* 箱型网格 */
.box-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.box-item {
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 450px;
}

.box-specs {
    margin-bottom: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.box-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.box-specs h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #333;
}

.box-specs p {
    font-size: 14px;
    color: #666;
    margin: 5px 0;
    line-height: 1.6;
}

.box-price {
    font-size: 16px;
    color: #333;
    margin: 10px 0;
}

.box-order-btn {
    background-color: white;
    border: 2px solid #333;
    color: #333;
    padding: 8px 25px;
    font-size: 14px;
    cursor: pointer;
    margin-bottom: 20px;
}

.box-order-btn:hover {
    background-color: #333;
    color: white;
}

.box-image {
    margin-top: auto;
    padding-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.box-image img {
    width: 250px;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* 两列网格 */
.box-grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

/* 注意事项区域 */
.notes-section {
    background-color: white;
    padding: 30px;
    margin: 40px 0;
}

.notes-section h3 {
    font-size: 20px;
    color: #ff6b35;
    margin-bottom: 20px;
}

.notes-section ul {
    list-style: none;
    padding: 0;
}

.notes-section li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    color: #333;
    line-height: 1.8;
    border-bottom: 1px solid #eee;
}

.notes-section li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #ff6b35;
    font-size: 20px;
}

.notes-section li:last-child {
    border-bottom: none;
}

/* 底部箱型展示 */
.bottom-boxes {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 40px 0;
}

.bottom-box-item {
    text-align: center;
}

.bottom-box-item img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    margin-bottom: 15px;
}

.bottom-box-item p {
    font-size: 14px;
    color: #333;
}

/* 移动端响应式 */
@media (max-width: 768px) {
    .box-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .box-grid-2 {
        grid-template-columns: 1fr;
    }
    
    .boxes-intro h1 {
        font-size: 24px;
    }
    
    .box-category h2 {
        font-size: 18px;
    }
    
    .box-item {
        padding: 20px;
    }
    
    .box-image img {
        width: 200px;
        height: 200px;
    }
    
    .bottom-boxes {
        flex-direction: column;
        align-items: center;
    }
    
    .notes-section {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .boxes-intro {
        padding: 30px 0;
    }
    
    .boxes-intro h1 {
        font-size: 20px;
    }
    
    .box-category {
        margin: 30px 0 20px;
    }
    
    .box-specs h3 {
        font-size: 16px;
    }
    
    .box-specs p {
        font-size: 13px;
    }
    
    .bottom-box-item img {
        width: 150px;
        height: 150px;
    }
}

/* 服务流程页面样式 */
.process-page {
    background-color: #f5f5f5;
}

/* 流程横幅 */
.process-banner {
    background-image: url('https://images.unsplash.com/photo-1578575437130-527eed3abbec?w=1200&h=400&fit=crop');
    background-size: cover;
    background-position: center;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.process-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.4);
}

.process-banner h1 {
    position: relative;
    color: white;
    font-size: 48px;
    z-index: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* 流程区域标题 */
.process-section-title {
    background-color: #ff7f5c;
    color: white;
    padding: 12px 25px;
    margin: 50px 0 40px;
    font-size: 20px;
    display: inline-block;
}

/* 流程时间线 */
.process-timeline {
    position: relative;
    padding: 40px 0;
}

.timeline-line {
    position: absolute;
    left: 50px;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: #ff7f5c;
}

.timeline-item {
    display: flex;
    margin-bottom: 60px;
    position: relative;
}

.timeline-number {
    width: 100px;
    flex-shrink: 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 10px;
}

.number-circle {
    width: 40px;
    height: 40px;
    background-color: #ff7f5c;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    position: relative;
    z-index: 2;
}

.timeline-icon {
    width: 100px;
    flex-shrink: 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 5px;
}

.timeline-icon img {
    width: 40px;
    height: 40px;
}

.timeline-content {
    flex: 1;
    background-color: white;
    padding: 25px;
    border-left: 4px solid #ff7f5c;
}

.timeline-content h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 15px;
}

.timeline-content p {
    color: #666;
    line-height: 1.8;
    margin: 8px 0;
}

.timeline-content ul {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.timeline-content li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    color: #666;
    line-height: 1.6;
}

.timeline-content li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #ff7f5c;
    font-size: 16px;
}

/* 底部按钮 */
.process-cta {
    text-align: center;
    padding: 60px 0;
}

.cta-button {
    background-color: #ff7f5c;
    color: white;
    border: none;
    padding: 15px 50px;
    font-size: 18px;
    cursor: pointer;
    display: inline-block;
    text-decoration: none;
}

.cta-button:hover {
    background-color: #e55a2b;
}

/* 移动端响应式 */
@media (max-width: 768px) {
    .process-banner {
        height: 250px;
    }
    
    .process-banner h1 {
        font-size: 32px;
        padding: 0 20px;
        text-align: center;
    }
    
    .timeline-line {
        left: 20px;
    }
    
    .timeline-item {
        flex-direction: column;
        margin-bottom: 40px;
    }
    
    .timeline-number,
    .timeline-icon {
        width: 60px;
        margin-bottom: 15px;
    }
    
    .number-circle {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    .timeline-icon img {
        width: 35px;
        height: 35px;
    }
    
    .timeline-content {
        margin-left: 0;
        padding: 20px;
    }
    
    .timeline-content h3 {
        font-size: 18px;
    }
    
    .process-section-title {
        font-size: 18px;
        padding: 10px 20px;
        margin: 30px 0 30px;
    }
}

@media (max-width: 480px) {
    .process-banner {
        height: 200px;
    }
    
    .process-banner h1 {
        font-size: 24px;
    }
    
    .timeline-content {
        padding: 15px;
    }
    
    .timeline-content h3 {
        font-size: 16px;
    }
    
    .timeline-content p,
    .timeline-content li {
        font-size: 14px;
    }
    
    .cta-button {
        padding: 12px 40px;
        font-size: 16px;
    }
}

/* FAQ页面样式 */
.faq-page {
    background-color: #f5f5f5;
}

/* FAQ内容区域 */
.faq-content {
    padding: 60px 0;
}

.faq-content .container {
    max-width: 900px;
}

/* 搜索框 */
.faq-search {
    display: flex;
    margin-bottom: 40px;
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
}

.faq-search input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    font-size: 16px;
    outline: none;
}

.faq-search button {
    background-color: white;
    border: none;
    padding: 0 20px;
    cursor: pointer;
    font-size: 20px;
}

.faq-search button:hover {
    background-color: #f5f5f5;
}

/* 标签导航 */
.faq-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.faq-tab {
    background-color: white;
    border: 1px solid #ddd;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 14px;
    color: #666;
    transition: all 0.3s;
}

.faq-tab:hover {
    background-color: #f5f5f5;
}

.faq-tab.active {
    background-color: #ff7f5c;
    color: white;
    border-color: #ff7f5c;
}

/* FAQ列表 */
.faq-list {
    background-color: white;
}

.faq-item {
    border-bottom: 1px solid #eee;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    color: #333;
    transition: background-color 0.3s;
}

.faq-question:hover {
    background-color: #f9f9f9;
}

.faq-icon {
    color: #999;
    font-size: 12px;
    transition: transform 0.3s;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 25px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 25px 20px;
}

.faq-answer p {
    color: #666;
    line-height: 1.8;
    margin: 0;
}

/* FAQ底部信息 */
.faq-footer-info {
    background-color: white;
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid #eee;
}

.faq-footer-info h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
}

.faq-footer-info p {
    color: #666;
    margin: 10px 0;
    font-size: 14px;
}

/* 移动端响应式 */
@media (max-width: 768px) {
    .faq-content {
        padding: 40px 0;
    }
    
    .faq-search input {
        padding: 12px 15px;
        font-size: 14px;
    }
    
    .faq-tabs {
        gap: 8px;
    }
    
    .faq-tab {
        padding: 8px 15px;
        font-size: 13px;
    }
    
    .faq-question {
        padding: 15px 20px;
        font-size: 15px;
    }
    
    .faq-answer {
        padding: 0 20px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 20px 15px;
    }
    
    .faq-footer-info h2 {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .faq-search {
        margin-bottom: 30px;
    }
    
    .faq-search input {
        padding: 10px 12px;
        font-size: 13px;
    }
    
    .faq-search button {
        padding: 0 15px;
        font-size: 18px;
    }
    
    .faq-tabs {
        gap: 6px;
    }
    
    .faq-tab {
        padding: 6px 12px;
        font-size: 12px;
    }
    
    .faq-question {
        padding: 12px 15px;
        font-size: 14px;
    }
    
    .faq-answer {
        padding: 0 15px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 15px 12px;
    }
    
    .faq-answer p {
        font-size: 14px;
    }
    
    .faq-footer-info {
        padding: 30px 20px;
    }
    
    .faq-footer-info h2 {
        font-size: 18px;
    }
    
    .faq-footer-info p {
        font-size: 13px;
    }
}

/* 海关须知页面样式 */
.customs-page {
    background-color: #f5f5f5;
}

/* 海关内容区域 */
.customs-content {
    padding: 60px 0;
}

.customs-content .container {
    max-width: 900px;
}

/* 标题 */
.customs-title {
    text-align: center;
    margin-bottom: 40px;
}

.customs-title h2 {
    font-size: 28px;
    color: #666;
    font-weight: normal;
}

/* 说明信息 */
.customs-info {
    background-color: white;
    padding: 40px;
    margin-bottom: 40px;
}

.info-item {
    margin-bottom: 25px;
}

.info-item p {
    line-height: 1.8;
    color: #333;
    font-size: 15px;
}

.info-item strong {
    color: #ff6b35;
    font-size: 16px;
}

/* 申报单图片 */
.customs-form-image {
    text-align: center;
    margin: 40px 0;
    position: relative;
}

.customs-form-image img {
    max-width: 100%;
    height: auto;
    border: 2px solid #ddd;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.image-caption {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background-color: rgba(255, 107, 53, 0.9);
    color: white;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: bold;
    line-height: 1.6;
}

/* 注意事项 */
.customs-notes {
    background-color: white;
    padding: 30px 40px;
    margin-bottom: 40px;
    border-left: 4px solid #ff6b35;
}

.customs-notes h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 20px;
}

.customs-notes ul {
    list-style: none;
    padding: 0;
}

.customs-notes li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    color: #666;
    line-height: 1.8;
}

.customs-notes li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #ff6b35;
    font-size: 20px;
}

/* 常见问题 */
.customs-faq {
    background-color: white;
    padding: 40px;
    margin-bottom: 40px;
}

.customs-faq h3 {
    font-size: 22px;
    color: #333;
    margin-bottom: 30px;
    text-align: center;
}

.customs-faq .faq-item {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #eee;
}

.customs-faq .faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.customs-faq .faq-item h4 {
    font-size: 16px;
    color: #333;
    margin-bottom: 10px;
}

.customs-faq .faq-item p {
    color: #666;
    line-height: 1.8;
    margin: 0;
}

/* 联系方式 */
.customs-contact {
    background-color: white;
    padding: 40px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.contact-content {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.contact-text {
    flex: 1;
    text-align: left;
}

.contact-image {
    flex: 0 0 300px;
}

.help-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.customs-contact h3 {
    font-size: 22px;
    color: #333;
    margin-bottom: 30px;
}

.customs-contact p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

.contact-btn {
    display: inline-block;
    background-color: #ff7f5c;
    color: white;
    padding: 12px 40px;
    text-decoration: none;
    font-size: 16px;
    transition: background-color 0.3s;
}

.contact-btn:hover {
    background-color: #e55a2b;
}

/* 移动端响应式 */
@media (max-width: 768px) {
    .customs-content {
        padding: 40px 0;
    }
    
    .customs-title h2 {
        font-size: 24px;
        padding: 0 20px;
    }
    
    .customs-info {
        padding: 25px 20px;
    }
    
    .info-item p {
        font-size: 14px;
    }
    
    .image-caption {
        font-size: 12px;
        padding: 8px 15px;
        bottom: 10px;
        right: 10px;
    }
    
    .customs-notes {
        padding: 25px 20px;
    }
    
    .customs-notes h3 {
        font-size: 18px;
    }
    
    .customs-faq {
        padding: 25px 20px;
    }
    
    .customs-faq h3 {
        font-size: 20px;
    }
    
    .customs-contact {
        padding: 30px 20px;
    }
    
    .contact-content {
        flex-direction: column;
        gap: 25px;
    }
    
    .contact-text {
        text-align: center;
    }
    
    .contact-image {
        flex: none;
        max-width: 250px;
    }
    
    .customs-contact h3 {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .customs-title h2 {
        font-size: 20px;
    }
    
    .customs-info {
        padding: 20px 15px;
    }
    
    .info-item {
        margin-bottom: 20px;
    }
    
    .info-item p {
        font-size: 13px;
    }
    
    .customs-form-image {
        margin: 30px 0;
    }
    
    .image-caption {
        font-size: 11px;
        padding: 6px 12px;
    }
    
    .customs-notes {
        padding: 20px 15px;
    }
    
    .customs-notes h3 {
        font-size: 16px;
    }
    
    .customs-notes li {
        font-size: 14px;
    }
    
    .customs-faq {
        padding: 20px 15px;
    }
    
    .customs-faq h3 {
        font-size: 18px;
    }
    
    .customs-faq .faq-item h4 {
        font-size: 15px;
    }
    
    .customs-faq .faq-item p {
        font-size: 14px;
    }
    
    .customs-contact {
        padding: 25px 15px;
    }
    
    .customs-contact h3 {
        font-size: 18px;
    }
    
    .customs-contact p {
        font-size: 14px;
    }
    
    .contact-btn {
        padding: 10px 30px;
        font-size: 14px;
    }
}

/* 违禁物品页面样式 */
.prohibited-page {
    background-color: #f5f5f5;
}

/* 违禁物品内容区域 */
.prohibited-content {
    padding: 60px 0;
}

.prohibited-content .container {
    max-width: 1000px;
}

/* 警告提示 */
.prohibited-warning {
    background-color: white;
    padding: 30px 40px;
    margin-bottom: 30px;
    border-left: 4px solid #ff6b35;
}

.prohibited-warning h2 {
    font-size: 18px;
    color: #333;
    line-height: 1.8;
    margin: 0;
    font-weight: normal;
}

/* 介绍文字 */
.prohibited-intro {
    background-color: white;
    padding: 25px 40px;
    margin-bottom: 30px;
}

.prohibited-intro p {
    color: #666;
    line-height: 1.8;
    margin: 0;
    font-size: 15px;
}

/* 分类标题 */
.prohibited-categories {
    background-color: white;
    padding: 40px;
    margin-bottom: 30px;
}

.prohibited-categories h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 30px;
    text-align: center;
}

/* 两列网格布局 */
.prohibited-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.prohibited-column {
    background-color: #f9f9f9;
    padding: 25px;
}

/* 违禁物品列表 */
.prohibited-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.prohibited-list li {
    padding: 8px 0;
    color: #333;
    font-size: 14px;
    line-height: 1.6;
    border-bottom: 1px solid #eee;
}

.prohibited-list li:last-child {
    border-bottom: none;
}

/* 特别提示 */
.prohibited-notes {
    background-color: white;
    padding: 30px 40px;
    margin-bottom: 30px;
    text-align: center;
}

.prohibited-notes h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 15px;
}

.prohibited-notes p {
    color: #666;
    line-height: 1.8;
    margin: 0;
}

/* 底部按钮 */
.prohibited-cta {
    text-align: center;
    margin-bottom: 30px;
}

.prohibited-cta .cta-button {
    background-color: #ff7f5c;
    color: white;
    border: none;
    padding: 12px 50px;
    font-size: 16px;
    cursor: pointer;
    display: inline-block;
    text-decoration: none;
}

.prohibited-cta .cta-button:hover {
    background-color: #e55a2b;
}

/* 底部信息 */
.prohibited-footer-info {
    text-align: center;
    padding: 20px 0;
}

.prohibited-footer-info p {
    color: #666;
    font-size: 14px;
    margin: 5px 0;
}

/* 移动端响应式 */
@media (max-width: 768px) {
    .prohibited-content {
        padding: 40px 0;
    }
    
    .prohibited-warning {
        padding: 20px 25px;
    }
    
    .prohibited-warning h2 {
        font-size: 16px;
    }
    
    .prohibited-intro {
        padding: 20px 25px;
    }
    
    .prohibited-intro p {
        font-size: 14px;
    }
    
    .prohibited-categories {
        padding: 25px 20px;
    }
    
    .prohibited-categories h3 {
        font-size: 18px;
    }
    
    .prohibited-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .prohibited-column {
        padding: 20px;
    }
    
    .prohibited-list li {
        font-size: 13px;
    }
    
    .prohibited-notes {
        padding: 20px 25px;
    }
    
    .prohibited-notes h3 {
        font-size: 16px;
    }
    
    .prohibited-notes p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .prohibited-warning {
        padding: 15px 20px;
    }
    
    .prohibited-warning h2 {
        font-size: 15px;
    }
    
    .prohibited-intro {
        padding: 15px 20px;
    }
    
    .prohibited-intro p {
        font-size: 13px;
    }
    
    .prohibited-categories {
        padding: 20px 15px;
    }
    
    .prohibited-categories h3 {
        font-size: 16px;
    }
    
    .prohibited-column {
        padding: 15px;
    }
    
    .prohibited-list li {
        font-size: 12px;
        padding: 6px 0;
    }
    
    .prohibited-notes {
        padding: 15px 20px;
    }
    
    .prohibited-notes h3 {
        font-size: 15px;
    }
    
    .prohibited-notes p {
        font-size: 13px;
    }
    
    .prohibited-cta .cta-button {
        padding: 10px 40px;
        font-size: 14px;
    }
    
    .prohibited-footer-info p {
        font-size: 13px;
    }
}

/* 打包指南页面样式 */
.packing-page {
    background-color: #f5f5f5;
}

/* 打包内容区域 */
.packing-content {
    padding: 60px 0;
}

.packing-content .container {
    max-width: 1000px;
}

/* 介绍文字 */
.packing-intro {
    background-color: white;
    padding: 30px 40px;
    margin-bottom: 40px;
    text-align: center;
}

.packing-intro p {
    color: #666;
    line-height: 1.8;
    font-size: 15px;
    margin: 0;
}

/* 打包步骤 */
.packing-steps {
    margin-bottom: 60px;
}

.packing-step {
    background-color: white;
    padding: 40px;
    margin-bottom: 30px;
    display: flex;
    gap: 40px;
    align-items: center;
}

.step-images {
    flex: 0 0 300px;
}

.step-images img {
    width: 100%;
    height: auto;
    border: 1px solid #ddd;
}

.step-description {
    flex: 1;
}

.step-description h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 15px;
}

.step-description p {
    color: #666;
    line-height: 1.8;
    margin: 0;
}

/* 打包材料 */
.packing-materials {
    background-color: white;
    padding: 40px;
    margin-bottom: 40px;
}

.packing-materials.box-category h2 {
    font-size: 24px;
    color: #333;
    text-align: center;
}

.box-info {
    background-color: #f9f9f9;
    padding: 30px;
    margin-bottom: 40px;
    border-left: 4px solid #ff6b35;
    border-radius: 4px;
}

.box-info p {
    color: #333;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 15px;
}

.box-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.box-info li {
    color: #666;
    line-height: 1.8;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.box-info li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #ff6b35;
    font-size: 20px;
}

.materials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.material-card {
    text-align: center;
}

.material-card img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    margin-bottom: 15px;
    border: 1px solid #ddd;
}

.material-card h4 {
    font-size: 16px;
    color: #333;
    margin-bottom: 10px;
}

.material-card p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* 打包技巧 */
.packing-tips {
    background-color: white;
    padding: 40px;
    margin-bottom: 40px;
}

.packing-tips h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 30px;
    text-align: center;
}

.tips-list {
    list-style: none;
    padding: 0;
    max-width: 800px;
    margin: 0 auto;
}

.tips-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    color: #666;
    line-height: 1.8;
    border-bottom: 1px solid #eee;
}

.tips-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #ff6b35;
    font-size: 18px;
    font-weight: bold;
}

.tips-list li:last-child {
    border-bottom: none;
}

/* 视频教程 */
.packing-video {
    background-color: white;
    padding: 40px;
    margin-bottom: 40px;
    text-align: center;
}

.packing-video h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 30px;
}

.video-placeholder {
    position: relative;
    max-width: 800px;
    margin: 0 auto 20px;
}

.video-placeholder img {
    width: 100%;
    height: auto;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background-color: rgba(255, 107, 53, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 30px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.play-button:hover {
    background-color: rgba(255, 107, 53, 1);
}

.video-caption {
    color: #666;
    font-size: 14px;
}

/* 底部提示 */
.packing-footer-note {
    background-color: white;
    padding: 50px 40px;
    text-align: center;
}

.packing-footer-note h3 {
    font-size: 22px;
    color: #333;
    margin-bottom: 15px;
}

.packing-footer-note p {
    color: #666;
    margin-bottom: 30px;
}

.packing-footer-note .cta-button {
    background-color: #ff7f5c;
    color: white;
    border: none;
    padding: 12px 50px;
    font-size: 16px;
    cursor: pointer;
    display: inline-block;
    text-decoration: none;
}

.packing-footer-note .cta-button:hover {
    background-color: #e55a2b;
}

/* 移动端响应式 */
@media (max-width: 768px) {
    .packing-content {
        padding: 40px 0;
    }
    
    .packing-intro {
        padding: 25px 20px;
    }
    
    .packing-step {
        flex-direction: column;
        padding: 25px 20px;
        gap: 20px;
    }
    
    .step-images {
        flex: none;
        width: 100%;
    }
    
    .step-description h3 {
        font-size: 18px;
    }
    
    .box-grid-2 {
        grid-template-columns: 1fr;
    }
    
    .packing-materials {
        padding: 30px 20px;
    }
    
    .packing-materials h2 {
        font-size: 20px;
    }
    
    .packing-tips {
        padding: 30px 20px;
    }
    
    .packing-tips h2 {
        font-size: 20px;
    }
    
    .packing-video {
        padding: 30px 20px;
    }
    
    .packing-video h2 {
        font-size: 20px;
    }
    
    .play-button {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .packing-footer-note {
        padding: 40px 20px;
    }
    
    .packing-footer-note h3 {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .packing-intro {
        padding: 20px 15px;
    }
    
    .packing-intro p {
        font-size: 14px;
    }
    
    .packing-step {
        padding: 20px 15px;
    }
    
    .step-description h3 {
        font-size: 16px;
    }
    
    .step-description p {
        font-size: 14px;
    }
    
    .box-grid-2 {
        grid-template-columns: 1fr;
    }
    
    .packing-materials {
        padding: 25px 15px;
    }
    
    .packing-materials h2 {
        font-size: 18px;
    }
    
    .packing-tips {
        padding: 25px 15px;
    }
    
    .packing-tips h2 {
        font-size: 18px;
    }
    
    .tips-list li {
        font-size: 14px;
    }
    
    .packing-video {
        padding: 25px 15px;
    }
    
    .packing-video h2 {
        font-size: 18px;
    }
    
    .play-button {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .packing-footer-note {
        padding: 30px 15px;
    }
    
    .packing-footer-note h3 {
        font-size: 16px;
    }
    
    .packing-footer-note p {
        font-size: 14px;
    }
    
    .packing-footer-note .cta-button {
        padding: 10px 40px;
        font-size: 14px;
    }
}

/* 售后服务页面样式 */
.afterservice-page {
    background-color: #f5f5f5;
}

/* 售后服务横幅 */
.service-hero {
    background-image: url('https://images.unsplash.com/photo-1441986300917-64674bd600d8?w=1200&h=600&fit=crop');
    background-size: cover;
    background-position: center;
    min-height: 500px;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(37, 99, 235, 0.85);
    display: flex;
    align-items: center;
}

.hero-overlay .container {
    text-align: center;
    color: white;
    position: relative;
    z-index: 1;
}

.hero-overlay h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero-overlay p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 15px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-btn {
    display: inline-block;
    background-color: #ff7f5c;
    color: white;
    padding: 15px 50px;
    font-size: 18px;
    text-decoration: none;
    margin-top: 20px;
    transition: background-color 0.3s;
}

.hero-btn:hover {
    background-color: #e55a2b;
}

/* 申请流程 */
.claim-process {
    padding: 80px 0;
    background-color: white;
}

.claim-process h2 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 60px;
    color: #333;
}

.process-timeline {
    max-width: 900px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    align-items: flex-start;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.step-number {
    flex: 0 0 60px;
    text-align: center;
}

.number-badge {
    display: inline-block;
    width: 50px;
    height: 50px;
    background-color: #ff7f5c;
    color: white;
    border-radius: 50%;
    line-height: 50px;
    font-size: 24px;
    font-weight: bold;
}

.step-icon {
    flex: 0 0 80px;
    text-align: center;
}

.step-icon img {
    width: 40px;
    height: 40px;
}

.step-content {
    flex: 1;
}

.step-content h3 {
    font-size: 22px;
    color: #333;
    margin-bottom: 15px;
}

.step-content p {
    color: #666;
    line-height: 1.8;
    font-size: 15px;
}

/* 售后FAQ */
.service-faq {
    padding: 80px 0;
    background-color: #f5f5f5;
}

.service-faq h2 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 40px;
    color: #333;
}

.service-faq .container {
    max-width: 900px;
}

.service-faq-list {
    background-color: white;
    margin-top: 30px;
}

.service-faq-item {
    border-bottom: 1px solid #eee;
}

.service-faq-item:last-child {
    border-bottom: none;
}

.service-faq-item .faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    color: #333;
    transition: background-color 0.3s;
}

.service-faq-item .faq-question:hover {
    background-color: #f9f9f9;
}

.service-faq-item .faq-icon {
    color: #999;
    font-size: 12px;
    transition: transform 0.3s;
}

.service-faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.service-faq-item .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 25px;
}

.service-faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 25px 20px;
}

.service-faq-item .faq-answer p {
    color: #666;
    line-height: 1.8;
    margin: 0;
}

/* 底部信息 */
.service-footer-info {
    background-color: white;
    padding: 30px 0;
    text-align: center;
    border-top: 1px solid #eee;
}

.service-footer-info p {
    color: #666;
    font-size: 14px;
    margin: 0;
}

/* 移动端响应式 */
@media (max-width: 768px) {
    .service-hero {
        min-height: 400px;
    }
    
    .hero-overlay h1 {
        font-size: 32px;
        padding: 0 20px;
    }
    
    .hero-overlay p {
        font-size: 16px;
        padding: 0 20px;
    }
    
    .hero-btn {
        padding: 12px 40px;
        font-size: 16px;
    }
    
    .claim-process {
        padding: 50px 0;
    }
    
    .claim-process h2 {
        font-size: 26px;
        margin-bottom: 40px;
        padding: 0 20px;
    }
    
    .process-step {
        flex-direction: column;
        gap: 15px;
        margin-bottom: 40px;
        padding: 0 20px;
    }
    
    .step-number,
    .step-icon {
        flex: none;
    }
    
    .step-content h3 {
        font-size: 20px;
    }
    
    .step-content p {
        font-size: 14px;
    }
    
    .service-faq {
        padding: 50px 0;
    }
    
    .service-faq h2 {
        font-size: 26px;
        padding: 0 20px;
    }
    
    .service-faq-item .faq-question {
        padding: 15px 20px;
        font-size: 15px;
    }
    
    .service-faq-item .faq-answer {
        padding: 0 20px;
    }
    
    .service-faq-item.active .faq-answer {
        padding: 0 20px 15px;
    }
}

@media (max-width: 480px) {
    .service-hero {
        min-height: 350px;
    }
    
    .hero-overlay h1 {
        font-size: 26px;
    }
    
    .hero-overlay p {
        font-size: 14px;
    }
    
    .hero-btn {
        padding: 10px 30px;
        font-size: 14px;
    }
    
    .claim-process h2 {
        font-size: 22px;
    }
    
    .number-badge {
        width: 40px;
        height: 40px;
        line-height: 40px;
        font-size: 20px;
    }
    
    .step-icon img {
        width: 35px;
        height: 35px;
    }
    
    .step-content h3 {
        font-size: 18px;
    }
    
    .step-content p {
        font-size: 13px;
    }
    
    .service-faq h2 {
        font-size: 22px;
    }
    
    .service-faq-item .faq-question {
        font-size: 14px;
    }
    
    .service-faq-item .faq-answer p {
        font-size: 13px;
    }
}

/* 条款页面样式 */
.terms-page {
    background-color: #f5f5f5;
}

/* 条款内容区域 */
.terms-content {
    padding: 60px 0;
}

.terms-content .container {
    max-width: 1000px;
}

/* 介绍文字 */
.terms-intro {
    background-color: white;
    padding: 30px 40px;
    margin-bottom: 40px;
    text-align: center;
}

.terms-intro p {
    color: #666;
    line-height: 1.8;
    font-size: 15px;
    margin: 0;
}

/* 条款区块 */
.terms-section {
    background-color: white;
    padding: 40px;
    margin-bottom: 30px;
}

.terms-section h2 {
    font-size: 26px;
    color: #333;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #ff7f5c;
}

/* 条款项目 */
.terms-item {
    margin-bottom: 30px;
}

.terms-item:last-child {
    margin-bottom: 0;
}

.terms-item h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.terms-item p {
    color: #666;
    line-height: 1.8;
    font-size: 15px;
    margin: 0 0 10px 0;
}

.terms-item ul {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.terms-item li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #666;
    line-height: 1.6;
}

.terms-item li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #ff6b35;
    font-size: 18px;
}

/* 条款页脚 */
.terms-footer {
    background-color: white;
    padding: 30px 40px;
    text-align: center;
    border-top: 2px solid #eee;
}

.terms-footer p {
    color: #999;
    font-size: 14px;
    margin: 5px 0;
}

/* 移动端响应式 */
@media (max-width: 768px) {
    .terms-content {
        padding: 40px 0;
    }
    
    .terms-intro {
        padding: 25px 20px;
    }
    
    .terms-intro p {
        font-size: 14px;
    }
    
    .terms-section {
        padding: 30px 20px;
    }
    
    .terms-section h2 {
        font-size: 22px;
    }
    
    .terms-item h3 {
        font-size: 16px;
    }
    
    .terms-item p {
        font-size: 14px;
    }
    
    .terms-footer {
        padding: 25px 20px;
    }
}

@media (max-width: 480px) {
    .terms-intro {
        padding: 20px 15px;
    }
    
    .terms-intro p {
        font-size: 13px;
    }
    
    .terms-section {
        padding: 25px 15px;
    }
    
    .terms-section h2 {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .terms-item {
        margin-bottom: 25px;
    }
    
    .terms-item h3 {
        font-size: 15px;
    }
    
    .terms-item p {
        font-size: 13px;
    }
    
    .terms-item li {
        font-size: 13px;
    }
    
    .terms-footer {
        padding: 20px 15px;
    }
    
    .terms-footer p {
        font-size: 13px;
    }
}

/* 下拉菜单样式 */
.nav-dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-toggle {
    cursor: pointer;
    position: relative;
}

.dropdown-toggle.active {
    background-color: #ff6b35;
    color: white;
    font-weight: 600;
}

/* 创建不可见的桥接区域，填补导航项和下拉菜单之间的间隙 */
.nav-dropdown::before {
    content: '';
    position: absolute;
    top: 100%;
    left: -20px;
    right: -20px;
    height: 15px;
    display: none;
}

.nav-dropdown:hover::before {
    display: block;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background-color: white;
    min-width: 180px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid #e0e0e0;
}

/* 添加小三角箭头 */
.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    right: 20px;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid white;
    z-index: 1;
}

.dropdown-menu::after {
    content: '';
    position: absolute;
    top: -8px;
    right: 19px;
    width: 0;
    height: 0;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: 7px solid #e0e0e0;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s ease;
}

.dropdown-menu a:hover {
    background-color: #fff5f2;
    color: #ff6b35;
    padding-left: 25px;
}

.dropdown-menu a.active {
    background-color: #ff6b35;
    color: white;
    font-weight: 600;
}

.dropdown-menu a.active:hover {
    background-color: #e55a2b;
    color: white;
    padding-left: 25px;
}

.nav-dropdown:hover .dropdown-menu {
    display: block;
    animation: fadeIn 0.2s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 移动端下拉菜单 */
@media (max-width: 768px) {
    .dropdown-menu {
        position: static;
        box-shadow: none;
        border: none;
        margin-top: 0;
        background-color: #f9f9f9;
    }
    
    .nav-dropdown:hover .dropdown-menu {
        display: none;
    }
    
    .nav-dropdown.active .dropdown-menu {
        display: block;
    }
}

/* 更新服务图标样式 */
.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

/* 更新hero图片样式 */
.hero-image img {
    display: block;
    margin: 0 auto;
}

/* 更新手机mockup样式 */
.phone-mockups img {
    border-radius: 20px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}


/* ==================== 运输服务页面样式 ==================== */

/* 运输服务横幅 */
.shipping-banner {
    background: linear-gradient(135deg, #ff7f5c 0%, #ff6b35 100%);
    padding: 60px 0 80px;
    color: white;
}

.shipping-banner .container {
    max-width: 1200px;
}

.banner-title {
    text-align: center;
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 10px;
    color: white;
}

.banner-subtitle {
    text-align: center;
    font-size: 16px;
    margin-bottom: 50px;
    opacity: 0.95;
    color: white;
}

/* 步骤卡片网格 */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.step-card {
    background-color: white;
    padding: 25px 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    min-height: 200px;
    display: flex;
    flex-direction: column;
}

.step-number {
    font-size: 48px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
    line-height: 1;
}

.step-content {
    flex: 1;
}

.step-content p {
    color: #666;
    font-size: 14px;
    line-height: 1.8;
    margin: 0;
}

/* 会员专享福利 */
.member-benefits {
    background-color: #fff;
    padding: 60px 0;
}

.benefits-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.benefits-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.benefits-title {
    font-size: 32px;
    color: #ff6b35;
    margin: 0;
}

.benefits-intro {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}

.highlight-text {
    font-size: 16px;
    color: #ff6b35;
    line-height: 1.8;
    margin-bottom: 20px;
}

.sub-text {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
}

/* 合作伙伴 */
.partners {
    background-color: #f5f5f5;
    padding: 60px 0;
}

.partner-item {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    background-color: white;
    padding: 40px;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.partner-logo {
    flex-shrink: 0;
    width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nuoo-logo {
    background: linear-gradient(135deg, #4fc3f7 0%, #29b6f6 100%);
    color: white;
    padding: 20px 30px;
    font-size: 24px;
    font-weight: bold;
    border-radius: 8px;
    text-align: center;
}

.ticket-logo {
    width: 100px;
    height: 100px;
    background-color: #1976d2;
    color: white;
    font-size: 48px;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.superface-logo {
    background-color: #212121;
    color: white;
    padding: 20px 30px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 4px;
    text-align: center;
}

.boss-logo {
    background: linear-gradient(135deg, #00bfa5 0%, #00897b 100%);
    color: white;
    padding: 20px 30px;
    font-size: 20px;
    font-weight: bold;
    border-radius: 8px;
    text-align: center;
    line-height: 1.4;
}

.partner-info {
    flex: 1;
}

.partner-name {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
}

.partner-desc {
    color: #666;
    line-height: 1.8;
}

.partner-desc p {
    margin: 8px 0;
    font-size: 14px;
}

.partner-desc strong {
    color: #333;
}

/* 联系方式 */
.contact-section {
    background-color: #fff;
    padding: 60px 0;
    border-top: 1px solid #e0e0e0;
}

.contact-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
    gap: 60px;
}

.contact-left {
    text-align: center;
}

.contact-button {
    background-color: white;
    border: 2px solid #333;
    color: #333;
    padding: 15px 40px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    margin-bottom: 20px;
    border-radius: 4px;
    transition: all 0.3s;
}

.contact-button:hover {
    background-color: #333;
    color: white;
}

.contact-phone {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin: 0;
}

.contact-right {
    text-align: center;
}

.qr-code-img {
    width: 150px;
    height: 150px;
    border: 2px solid #ddd;
    padding: 10px;
    background-color: white;
    margin-bottom: 10px;
}

.qr-label {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* 移动端响应式 */
@media (max-width: 1024px) {
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .partner-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .partner-logo {
        width: auto;
    }
}

@media (max-width: 768px) {
    .banner-title {
        font-size: 28px;
        padding: 0 20px;
    }
    
    .banner-subtitle {
        font-size: 14px;
        padding: 0 20px;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .step-card {
        min-height: auto;
    }
    
    .benefits-header {
        flex-direction: column;
    }
    
    .benefits-title {
        font-size: 24px;
    }
    
    .benefits-intro {
        padding: 0 20px;
    }
    
    .partner-item {
        padding: 25px 20px;
    }
    
    .partner-name {
        font-size: 20px;
    }
    
    .contact-content {
        flex-direction: column;
        gap: 40px;
    }
}

@media (max-width: 480px) {
    .shipping-banner {
        padding: 40px 0 60px;
    }
    
    .banner-title {
        font-size: 22px;
    }
    
    .banner-subtitle {
        font-size: 13px;
        margin-bottom: 30px;
    }
    
    .step-number {
        font-size: 36px;
    }
    
    .step-content p {
        font-size: 13px;
    }
    
    .benefits-icon {
        width: 60px;
        height: 60px;
    }
    
    .benefits-title {
        font-size: 20px;
    }
    
    .highlight-text,
    .sub-text {
        font-size: 14px;
    }
    
    .partner-desc p {
        font-size: 13px;
    }
    
    .contact-button {
        padding: 12px 30px;
        font-size: 14px;
    }
    
    .contact-phone {
        font-size: 18px;
    }
    
    .qr-code-img {
        width: 120px;
        height: 120px;
    }
}


/* ==================== 商店页面样式 ==================== */

/* 商店横幅 */
.shop-banner {
    background-image: url('../img/bg.jpg');
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    padding: 30px 0;
    text-align: center;
    position: relative;
    min-height: 200px;
}

.shop-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 107, 53, 0.55);
}

.shop-banner .container {
    position: relative;
    z-index: 1;
}

.shop-banner-title {
    color: white;
    font-size: 32px;
    font-weight: bold;
    margin: 0;
}

/* 折扣福利横幅 */
.discount-banner {
    background-color: white;
    padding: 25px 0;
    text-align: center;
    border-bottom: 2px solid #f0f0f0;
}

.discount-title {
    color: #333;
    font-size: 24px;
    font-weight: bold;
    margin: 0;
}

/* 商店页面布局 */
.shop-main {
    background-color: #f5f5f5;
    padding: 40px 0 60px;
}

.shop-layout {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

/* 左侧分类菜单 */
.shop-sidebar {
    flex: 0 0 220px;
    background-color: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 100px;
}

.sidebar-title {
    font-size: 18px;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #ff6b35;
}

.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-list li {
    margin-bottom: 5px;
}

.category-item {
    display: block;
    padding: 12px 15px;
    color: #666;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s;
    font-size: 14px;
}

.category-item:hover {
    background-color: #fff5f2;
    color: #ff6b35;
    padding-left: 20px;
}

.category-item.active {
    background-color: #ff6b35;
    color: white;
}

/* 右侧产品区域 */
.shop-content {
    flex: 1;
}

/* 产品网格 */
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* 产品卡片 */
.product-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

/* 产品图片 */
.product-image {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    background-color: #f9f9f9;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

/* 产品标签 */
.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #ff6b35;
    color: white;
    padding: 5px 12px;
    font-size: 12px;
    border-radius: 4px;
    font-weight: bold;
}

.product-badge.new {
    background-color: #4caf50;
}

/* 产品信息 */
.product-name {
    font-size: 16px;
    color: #333;
    margin: 15px 15px 8px;
    font-weight: 600;
}

.product-desc {
    font-size: 13px;
    color: #999;
    margin: 0 15px 15px;
    line-height: 1.5;
}

/* 产品底部 */
.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border-top: 1px solid #f0f0f0;
    margin-top: auto;
}

.product-price {
    font-size: 20px;
    color: #ff6b35;
    font-weight: bold;
}

/* 加入购物车按钮 */
.add-cart-btn {
    background-color: #ff6b35;
    color: white;
    border: none;
    padding: 8px 16px;
    font-size: 13px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
}

.add-cart-btn:hover {
    background-color: #e55a2b;
    transform: scale(1.05);
}

/* 移动端响应式 */
@media (max-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .shop-sidebar {
        flex: 0 0 200px;
    }
}

@media (max-width: 768px) {
    .shop-layout {
        flex-direction: column;
    }
    
    .shop-sidebar {
        width: 100%;
        position: static;
        margin-bottom: 20px;
    }
    
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .product-image {
        height: 180px;
    }
    
    .product-name {
        font-size: 14px;
    }
    
    .product-price {
        font-size: 18px;
    }
    
    .add-cart-btn {
        padding: 6px 12px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .shop-page {
        padding: 20px 0 40px;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .product-image {
        height: 200px;
    }
    
    .sidebar-title {
        font-size: 16px;
    }
    
    .category-item {
        font-size: 13px;
        padding: 10px 12px;
    }
}
/* 产品筛选动画 */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 分类筛选样式增强 */
.category-item.active {
    background-color: #ff6b35;
    color: white;
    border-radius: 4px;
    padding: 8px 12px;
}

.category-item {
    transition: all 0.3s ease;
    padding: 8px 12px;
    border-radius: 4px;
}

.category-item:hover {
    background-color: #fff5f2;
    color: #ff6b35;
}
/* 购物车侧边栏样式 */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background-color: white;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
}

.cart-sidebar.open {
    right: 0;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #eee;
    background-color: #333;
    color: white;
}

.cart-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.cart-close {
    background: none;
    border: none;
    font-size: 24px;
    color: white;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-close:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.cart-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.cart-item {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-image {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.cart-item-name {
    font-weight: 600;
    font-size: 14px;
    color: #333;
    line-height: 1.3;
}

.cart-item-specs {
    font-size: 12px;
    color: #666;
    line-height: 1.3;
}

.cart-item-price {
    font-size: 12px;
    color: #666;
}

.cart-item-price .original-price {
    text-decoration: line-through;
    margin-right: 5px;
}

.cart-item-price .current-price {
    color: #333;
    font-weight: 600;
}

.cart-item-controls {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.cart-item-remove {
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    padding: 2px;
    font-size: 16px;
}

.cart-item-remove:hover {
    color: #ff6b35;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 2px;
}

.quantity-btn {
    background: none;
    border: none;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 14px;
    color: #666;
}

.quantity-btn:hover {
    background-color: #f5f5f5;
    color: #333;
}

.quantity-input {
    border: none;
    width: 30px;
    text-align: center;
    font-size: 14px;
    padding: 2px;
}

.cart-item-total {
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.cart-promo {
    padding: 20px;
    border-top: 1px solid #eee;
}

.promo-input {
    display: flex;
    gap: 10px;
}

.promo-input input {
    flex: 1;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.promo-btn {
    padding: 10px 15px;
    background-color: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    color: #666;
}

.promo-btn:hover {
    background-color: #eee;
}

.cart-summary {
    padding: 20px;
    border-top: 1px solid #eee;
    background-color: #f9f9f9;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.total-amount {
    color: #ff6b35;
}

.cart-actions {
    padding: 20px;
    border-top: 1px solid #eee;
}

.view-cart-btn {
    width: 100%;
    padding: 12px;
    background-color: #8B4513;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.view-cart-btn:hover {
    background-color: #7A3A0F;
}

/* 购物车遮罩层 */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* 购物车图标 */
.cart-icon {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #ff6b35;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
    z-index: 998;
    transition: all 0.3s ease;
    color: white;
}

.cart-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(255, 107, 53, 0.4);
}

.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: #e74c3c;
    color: white;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    min-width: 24px;
}

/* 空购物车状态 */
.cart-empty {
    text-align: center;
    padding: 40px 20px;
    color: #666;
}

.cart-empty-icon {
    font-size: 48px;
    color: #ddd;
    margin-bottom: 15px;
}

.cart-empty-text {
    font-size: 16px;
    margin-bottom: 10px;
}

.cart-empty-subtext {
    font-size: 14px;
    color: #999;
}

/* 响应式设计 */
@media (max-width: 480px) {
    .cart-sidebar {
        width: 100%;
        right: -100%;
    }
    
    .cart-icon {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
    
    .cart-badge {
        width: 20px;
        height: 20px;
        font-size: 11px;
    }
}