/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: Jun 03 2026 | 07:51:35 */
/* =========================
  Modules01-模块基础样式
========================= */
.demo-wrapper,
.demo-wrapper * ,
.form-popup-mask,
.form-popup-mask * {
    box-sizing: border-box;
}

.demo-wrapper {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

/* =========================
   PRODUCT BANNER 主要样式
========================= */
.product-banner-section {
    width: 100%;
    height: 574px !important;
    min-height: 574px !important;
    max-height: 574px !important;
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 65px;

    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,0.20) 0%,
            rgba(0,0,0,0.10) 32%,
            rgba(0,0,0,0.03) 68%,
            rgba(0,0,0,0) 100%
        ),
        url('https://beyouboss.com/wp-content/uploads/2026/05/pc3Banner.jpg')
        center center / cover no-repeat;

    overflow: hidden;
}

.banner-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
}

.banner-title {
    font-size: 43px;
    font-weight: 800;
    line-height: 1.15;
    color: #ffffff;
    margin: 0 0 24px;
    letter-spacing: -1px;
}

.banner-subtitle {
    font-size: 15px;
    line-height: 1.6;
    font-weight: 500;
    color: rgba(255,255,255,0.96);
    margin: 0 0 28px;
}

.banner-features {
    list-style: none;
    padding: 0;
    margin: 0 0 42px;
}

.banner-features li {
    position: relative;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.85;
    color: #ffffff;
    padding-left: 22px;
}

.banner-features li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: -1px;
    font-size: 18px;
    color: #ffffff;
}

.banner-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    height: 47px;
    padding: 0 26px;

    border: none;
    border-radius: 48px;

    background: #1266ea;
    color: #ffffff;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: -0.2px;

    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);

    box-shadow: 0 8px 20px rgba(18, 102, 234, 0.3);
}

.banner-btn:hover {
    background: #000000 !important;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

.banner-btn::after {
    content: "→";
    font-size: 20px;
    line-height: 1;
    transition: transform 0.25s ease;
}

.banner-btn:hover::after {
    transform: translateX(4px);
}

.banner-content * {
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

/* =========================
   弹窗表单样式
========================= */
.form-popup-mask {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background: rgba(0,0,0,0.7);
    z-index: 999999;

    display: none;
    align-items: center;
    justify-content: center;

    padding: 20px;
    box-sizing: border-box;
}

.form-popup-box {
    background: #ffffff;
    border-radius: 20px;
    max-width: 550px;
    width: 100%;
    padding: 40px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 26px;
    cursor: pointer;
    color: #666666;
    line-height: 1;
}

.popup-close:hover {
    color: #000000;
}

.popup-title {
    margin: 0 0 25px;
    font-size: 22px;
    font-weight: 700;
    color: #111111;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 15px;
    font-weight: 500;
    color: #111111;
}

.form-group input,
.form-group textarea {
    width: 100%;
    border: none;
    border-bottom: 1px solid #dddddd;
    padding: 12px 0;
    font-size: 16px;
    outline: none;
    background: transparent;
}

.form-group textarea {
    height: 100px;
    resize: vertical;
}

.upload-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid #007bff;
    color: #007bff;
    padding: 10px 18px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 14px;
}

.upload-btn:hover {
    background: #007bff;
    color: #ffffff;
}

.upload-btn input {
    display: none;
}

#filePreview {
    margin-top: 8px;
    font-size: 13px;
}

#filePreview img {
    max-width: 120px;
    border-radius: 6px;
    display: block;
}

.submit-btn {
    background: #007bff;
    color: #ffffff;
    border: none;
    padding: 14px 30px;
    border-radius: 50px;
    font-size: 16px;
    cursor: pointer;
}

.submit-btn:hover {
    background: #000000;
}

.form-bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

/* =========================
   响应式适配
========================= */
@media (max-width: 1200px) {
    .product-banner-section {
        height: 574px !important;
        min-height: 574px !important;
        max-height: 574px !important;
        padding: 0 40px;
    }

    .banner-title {
        font-size: 38px;
    }
}

@media (max-width: 768px) {
    .product-banner-section {
        height: auto !important;
        min-height: 520px !important;
        max-height: none !important;
        padding: 60px 28px;

        background:
            linear-gradient(
                135deg,
                rgba(0,0,0,0.25) 0%,
                rgba(0,0,0,0.12) 50%,
                rgba(0,0,0,0.03) 100%
            ),
            url('https://beyouboss.com/wp-content/uploads/2026/05/pc3Banner.jpg')
            center / cover no-repeat;
    }

    .banner-content {
        max-width: 100%;
    }

    .banner-title {
        font-size: 32px;
        margin-bottom: 18px;
    }

    .form-popup-box {
        padding: 32px 24px;
    }
}

@media (max-width: 480px) {
    .banner-title {
        font-size: 28px;
    }

    .banner-subtitle {
        font-size: 14px;
    }

    .banner-btn {
        width: 100%;
        font-size: 15px;
    }

    .submit-btn {
        width: 100%;
    }
}

@media (min-width: 769px) {
    .product-banner-section {
        height: 574px !important;
        min-height: 574px !important;
        max-height: 574px !important;
    }
}




/* =========================
     Modules02-LOGO MARQUEE SECTION
========================= */

/* 外层容器 */
.logo-section-wrap {
    display: flex;
    align-items: center;
    background: #ffffff;
    padding: 60px 0;
    padding-left: 80px;
    overflow: hidden;
    box-sizing: border-box;
}

.logo-section-wrap *,
.logo-section-wrap *::before,
.logo-section-wrap *::after {
    box-sizing: border-box;
}

/* 轮播容器 */
.logo-track-wrap {
    flex: 1;
    overflow: hidden;
}

/* 轮播轨道 */
.logo-track {
    display: flex;
    gap: 60px;
    width: max-content;
    animation: logoSectionScroll 20s linear infinite;
}

/* 单个 Logo 项 */
.logo-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-item img {
    height: 30px;
    width: auto;
    opacity: 0.7;
    transition: opacity 0.3s ease;
    display: block;
}

.logo-item img:hover {
    opacity: 1;
}

/* 鼠标悬停暂停滚动 */
.logo-track-wrap:hover .logo-track {
    animation-play-state: paused !important;
}

/* 无缝滚动动画 */
@keyframes logoSectionScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* 平板适配 */
@media (max-width: 1024px) {
    .logo-section-wrap {
        padding: 25px 0;
        padding-left: 40px;
    }

    .logo-track {
        gap: 40px;
    }

    .logo-item img {
        height: 26px;
    }
}

/* 手机端适配 */
@media (max-width: 767px) {
    .logo-section-wrap {
        padding: 20px 0;
        padding-left: 20px;
    }

    .logo-track {
        gap: 32px;
    }

    .logo-item img {
        height: 24px;
    }
}




/* =========================
   Modules03-PRODUCT SLIDER SECTION
========================= */
.product-slider-section {
    display: flex;
    align-items: center;
    gap: 30px;
    background: #ffffff;
    padding: 60px 80px 60px 0;
    max-width: 1600px;
    margin: 0;
    margin-left: 80px;
    box-sizing: border-box;
}

.product-slider-section *,
.product-slider-section *::before,
.product-slider-section *::after {
    box-sizing: border-box;
}

/* 左侧缩略图列表 */
.product-thumbnails {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.thumbnail-item {
    width: 100px;
    height: 100px;
    border: 2px solid transparent;
    cursor: pointer;
    overflow: hidden;
    transition: border-color 0.3s ease;
    flex-shrink: 0;
}

.thumbnail-item.active {
    border-color: #007bff;
}

.thumbnail-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* 中间主图容器 */
.product-main-image {
    flex: 1;
    overflow: hidden;
}

.main-image-track {
    display: flex;
    transition: transform 0.5s ease;
}

.main-image-item {
    width: 100%;
    flex-shrink: 0;
}

.main-image-item img {
    width: 100%;
    height: 540px;
    object-fit: cover;
    display: block;
}

/* 右侧文案区域 */
.product-info {
    flex: 1;
    padding-left: 20px;
}

.product-model {
    font-size: 22px;
    font-weight: 600;
    color: #111111;
    margin: 0 0 15px;
}

.product-title {
    font-size: 28px;
    font-weight: 700;
    color: #111111;
    line-height: 1.3;
    margin: 0 0 30px;
}

.product-features {
    list-style: none;
    padding: 0;
    margin: 0 0 40px;
}

.product-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 18px;
    color: #111111;
    margin-bottom: 18px;
    line-height: 1.6;
}

.product-features li::before {
    content: "✓";
    color: #ffffff;
    background: #007bff;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 14px;
    margin-top: 3px;
}

/* 询盘按钮 */
.inquiry-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #007bff;
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
    padding: 18px 40px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    line-height: 1;
}

.inquiry-btn:hover {
    background: #000000;
    color: #ffffff;
    transform: translateY(-2px);
}

.inquiry-btn::after {
    content: "→";
    font-size: 22px;
    line-height: 1;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1200px) {
    .product-slider-section {
        flex-direction: column;
        align-items: stretch;
        padding: 40px 20px 40px 0;
        margin-left: 20px;
        margin-right: 0;
    }

    .product-thumbnails {
        flex-direction: row;
        order: 2;
        margin-top: 20px;
        overflow-x: auto;
        padding-bottom: 4px;
    }

    .thumbnail-item {
        width: 80px;
        height: 80px;
    }

    .product-main-image {
        order: 1;
        width: 100%;
    }

    .main-image-item img {
        height: 400px;
    }

    .product-info {
        order: 3;
        padding-left: 0;
        margin-top: 30px;
    }

    .product-title {
        font-size: 32px;
    }
}

@media (max-width: 767px) {
    .product-slider-section {
        padding: 35px 20px;
        margin-left: 0;
    }

    .product-title {
        font-size: 26px;
    }

    .product-model {
        font-size: 18px;
    }

    .product-features li {
        font-size: 15px;
        margin-bottom: 14px;
    }

    .main-image-item img {
        height: 300px;
    }

    .inquiry-btn {
        width: 100%;
        font-size: 17px;
        padding: 16px 24px;
    }
}




/* =========================
  Modules-04 CHINA CANADA SHIPPING SECTION
========================= */
.china-canada-ship-section {
    background: url('https://beyouboss.com/wp-content/uploads/2026/05/pc3s21BG.jpg') center / cover no-repeat;
    padding: 80px 60px;
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    box-sizing: border-box;
}

.china-canada-ship-section *,
.china-canada-ship-section *::before,
.china-canada-ship-section *::after {
    box-sizing: border-box;
}

/* =========================
   左侧内容
========================= */
.ship-left-col {
    color: #111111;
}

.ship-tagline {
    font-size: 18px;
    color: #007bff;
    font-weight: 600;
    margin: 0 0 16px;
}

.ship-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.1;
    margin: 0 0 20px;
    color: #111111;
}

.ship-desc {
    font-size: 20px;
    color: #444444;
    line-height: 1.6;
    margin: 0 0 40px;
}

/* =========================
   特性列表
========================= */
.ship-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.ship-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.ship-feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #e8f0ff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ship-feature-icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    display: block;
}

.ship-feature-text h4 {
    font-size: 18px;
    font-weight: 600;
    color: #111111;
    margin: 0 0 6px;
    line-height: 1.35;
}

.ship-feature-text p {
    font-size: 16px;
    color: #555555;
    margin: 0;
    line-height: 1.5;
}

/* =========================
   底部联系条
========================= */
.ship-contact-bar {
    background: #ffffff;
    border-radius: 12px;
    padding: 20px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.ship-contact-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.ship-contact-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #e8f0ff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ship-contact-icon svg {
    width: 24px;
    height: 24px;
    stroke: #007bff;
    stroke-width: 2;
    fill: none;
}

.ship-contact-text h5 {
    font-size: 16px;
    color: #444444;
    margin: 0 0 6px;
    font-weight: 500;
}

.ship-contact-text a {
    font-size: 18px;
    color: #007bff;
    text-decoration: none;
    font-weight: 600;
}

.ship-contact-text a:hover {
    color: #000000;
}

.ship-contact-arrow {
    font-size: 24px;
    color: #007bff;
    flex-shrink: 0;
}

/* =========================
   右侧表单视觉区域
   实际提交统一调用 Woody 全站弹窗
========================= */
.ship-form-col {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    border-top: 3px solid #007bff;
}

.ship-form {
    margin: 0;
}

.ship-form-group {
    margin-bottom: 20px;
    position: relative;
}

.ship-form-group input,
.ship-form-group textarea {
    width: 100%;
    background: #f8fafc;
    border: none;
    border-radius: 8px;
    padding: 18px 16px 18px 56px;
    font-size: 16px;
    color: #333333;
    box-sizing: border-box;
    outline: none;
}

.ship-form-group input:focus,
.ship-form-group textarea:focus {
    box-shadow: 0 0 0 1px #007bff;
}

.ship-form-group textarea {
    height: 120px;
    resize: vertical;
}

.ship-form-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #aaaaaa;
    line-height: 1;
}

.ship-form-group textarea ~ .ship-form-icon {
    top: 24px;
    transform: none;
}

/* 上传按钮 */
.ship-form-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

.ship-upload-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid #007bff;
    color: #007bff;
    background: #ffffff;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ship-upload-btn:hover {
    background: #007bff;
    color: #ffffff;
}

.ship-upload-btn input {
    display: none;
}

.ship-upload-btn svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

.ship-file-preview {
    margin-top: 8px;
    font-size: 13px;
    color: #555555;
}

.ship-file-preview img {
    max-width: 120px;
    border-radius: 6px;
    display: block;
}

/* 提交按钮 */
.ship-submit-btn {
    width: 100%;
    background: #007bff;
    color: #ffffff;
    border: none;
    padding: 18px 0;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.ship-submit-btn:hover {
    background: #000000;
    color: #ffffff;
    transform: translateY(-2px);
}

/* =========================
   响应式适配
========================= */
@media (max-width: 1024px) {
    .china-canada-ship-section {
        grid-template-columns: 1fr;
        padding: 50px 20px;
        gap: 40px;
    }

    .ship-title {
        font-size: 36px;
    }

    .ship-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .china-canada-ship-section {
        padding: 45px 20px;
    }

    .ship-title {
        font-size: 32px;
    }

    .ship-desc {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .ship-form-col {
        padding: 28px 20px;
    }

    .ship-contact-bar {
        align-items: flex-start;
        gap: 16px;
        padding: 18px 20px;
    }

    .ship-contact-text a {
        font-size: 15px;
        word-break: break-all;
    }
}