
    :root {
        --halloween-primary-color: #c0392b;
        --halloween-secondary-color: #FF8C00;
        --halloween-text-color: #333;
        --halloween-background-color: #f9f9f9;
        --halloween-card-bg: #fff;
        --halloween-border-radius: 8px;
        --halloween-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        --halloween-shadow-hover: 0 8px 16px rgba(0, 0, 0, 0.15);
        --halloween-font-family: Helvetica, Arial, sans-serif;
    }

    /* 容器样式 */
    .wholesale-container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 20px 40px 20px;
    }

    /* 头部样式 */
    .wholesale-header {
        text-align: center;
        margin-bottom: 30px;
        position: relative;
    }

    .wholesale-title {
        font-size: clamp(1.5rem, 3vw, 2rem);
        font-weight: 700;
        color: var(--halloween-primary-color);
        margin-bottom: 15px;
        position: relative;
        display: inline-block;
    }

    .wholesale-title::after {
        content: '';
        position: absolute;
        bottom: -8px;
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
        height: 3px;
        background-color: var(--halloween-primary-color);
        border-radius: 2px;
    }

    .wholesale-subtitle {
        font-size: 18px;
        color: #666;
        max-width: 600px;
        margin: 0 auto;
        line-height: 1.6;
        font-family: Helvetica, Arial, sans-serif;
    }

    /* 网格布局 */
    .wholesale-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
        gap: 30px;
        margin-bottom: 30px;
    }

    /* 卡片样式 */
    .wholesale-card {
        background: var(--halloween-card-bg);
        border-radius: var(--halloween-border-radius);
        box-shadow: var(--halloween-shadow);
        padding: 15px;
        transition: all 0.3s ease;
        text-align: left;
    }

    .wholesale-card:hover {
        transform: translateY(-2px);
        box-shadow: var(--halloween-shadow-hover);
    }

    .wholesale-card-header {
        text-align: center;
        margin-bottom: 10px;
    }

    .wholesale-card-title {
        font-size: 1.3rem;
        font-weight: bold;
        color: var(--halloween-primary-color);
        margin: 0;
        display: inline-block;
    }

    /* 列表样式 */
    .wholesale-list {
        list-style: none;
        margin: 0;
        padding-left: 20px;
    }

    .wholesale-list-item {
        position: relative;
        padding: 10px 0;
        border-bottom: 1px solid #eee;
        font-size: 18px;
        line-height: 1.6;
        color: #000;
        font-family: Helvetica, Arial, sans-serif;
    }

    .wholesale-list-item::before {
        content: '•';
        position: absolute;
        left: -20px;
        color: var(--halloween-primary-color);
        font-size: 1.1em;
    }

    .wholesale-list-item:last-child {
        border-bottom: none;
    }



    .wholesale-list-item strong {
        color: var(--halloween-primary-color);
        font-weight: 700;
    }

    .wholesale-highlight {
        color: var(--halloween-primary-color);
        font-weight: 700;
    }

    /* 特性网格 */
    .wholesale-features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
        margin: 30px 0;
    }

    .wholesale-feature-item {
        background: var(--halloween-card-bg);
        padding: 20px;
        border-radius: var(--halloween-border-radius);
        text-align: center;
        box-shadow: var(--halloween-shadow);
        transition: all 0.3s ease;
    }

    .wholesale-feature-item:hover {
        transform: translateY(-5px) scale(1.02);
        box-shadow: var(--halloween-shadow-hover);
    }

    .wholesale-feature-icon {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }

    .wholesale-feature-title {
        font-size: 1.2rem;
        font-weight: 700;
        color: var(--halloween-primary-color);
        margin-bottom: 10px;
    }

    .wholesale-feature-description {
        color: #000;
        line-height: 1.6;
        font-size: 18px;
        font-family: Helvetica, Arial, sans-serif;
    }

    /* 行动召唤区域 */
    .wholesale-cta-section {
        background-color: var(--halloween-primary-color);
        color: white;
        padding: 10px;
        border-radius: var(--halloween-border-radius);
        text-align: center;
        margin-top: -10px;
        position: relative;
        overflow: hidden;
    }

    .wholesale-cta-section::before {
        content: '🎃';
        position: absolute;
        top: -20px;
        right: -20px;
        font-size: 150px;
        opacity: 0.1;
    }

    .wholesale-cta-section::after {
        content: '👻';
        position: absolute;
        bottom: -20px;
        left: -20px;
        font-size: 120px;
        opacity: 0.1;
    }

    .wholesale-cta-title {
        font-size: 1.5rem;
        font-weight: bold;
        margin-bottom: 10px;
        position: relative;
        z-index: 1;
    }

    .wholesale-cta-description {
        font-size: 18px;
        line-height: 1.6;
        margin-bottom: 20px;
        opacity: 0.9;
        position: relative;
        z-index: 1;
        font-family: Helvetica, Arial, sans-serif;
    }

    .wholesale-cta-button {
        display: inline-block;
        background: white;
        color: var(--halloween-primary-color);
        padding: 10px 20px;
        border-radius: 20px;
        font-size: 0.9rem;
        font-weight: bold;
        text-decoration: none;
        transition: all 0.3s ease;
        position: relative;
        z-index: 1;
    }

    .wholesale-cta-button:hover {
        transform: translateY(-2px) scale(1.05);
    }

    /* 响应式设计 */
    @media (max-width: 768px) {
        .wholesale-container {
            padding: 15px 10px;
        }

        .wholesale-grid {
            grid-template-columns: 1fr;
            gap: 15px;
        }

        .wholesale-card {
            padding: 20px;
        }

        .wholesale-cta-section {
            padding: 30px 20px;
        }

        .wholesale-features-grid {
            grid-template-columns: 1fr;
            gap: 15px;
        }
    }
