🎀 🌸

WP网站代码插入以及实现一些功能

WP网站代码插入以及实现一些功能

温馨提示:本文最后更新于2025-09-28 18:36:33,某些文章具有时效性,若有错误或已失效,请在下方留言或联系站长

WP结账支付插件:

前台演示效果:

图片[1]-WP网站代码插入以及实现一些功能-米渡资源网

后台演示效果:

后台配置好后直接点击有右边管理即可配置单独的支付信息…

图片[2]-WP网站代码插入以及实现一些功能-米渡资源网
图片[3]-WP网站代码插入以及实现一些功能-米渡资源网

第一种代码部署:

路径位置:/wp-content/themes/你的主题/functions.php找到这个位置后把代码粘贴进去即可…

// 手风琴支付方式 + 信息区
function custom_payment_accordion_shortcode() {
    ob_start();
    ?>
    <div class="custom-payment-method">

        <h2>Payment Method</h2>

        <div class="information_box" style="border:1px solid #eee; padding:10px; margin-bottom:10px; background:#f9f9f9; border-radius:6px;">
            <p>Please review your billing and shipping information carefully before choosing a payment method.</p>
        </div>

        <?php
        $payments = [
            'paypal' => [
                'label' => 'PayPal',
                'img' => 'https://www.paypalobjects.com/webstatic/mktg/logo/pp_cc_mark_111x69.jpg',
                'desc' => 'Pay securely using your PayPal account. You will be redirected to PayPal to complete your purchase.'
            ],
            'stripe' => [
                'label' => 'Stripe',
                'img' => 'https://upload.wikimedia.org/wikipedia/commons/3/3c/Stripe_Logo%2C_revised_2016.svg',
                'desc' => 'Use your credit or debit card via Stripe. No Stripe account required.'
            ],
            'applepay' => [
                'label' => 'Apple Pay',
                'img' => 'https://upload.wikimedia.org/wikipedia/commons/f/fa/Apple_logo_black.svg',
                'desc' => 'Pay quickly with Apple Pay on supported devices.'
            ],
            'googlepay' => [
                'label' => 'Google Pay',
                'img' => 'https://upload.wikimedia.org/wikipedia/commons/5/5a/Google_Pay_Logo.svg',
                'desc' => 'Use Google Pay to pay with your saved cards instantly.'
            ]
        ];

        foreach($payments as $key => $p):
        ?>
        <div class="option">
            <div class="option-header">
                <input type="radio" name="custom_payment_method" value="<?php echo esc_attr($key); ?>">
                <img src="<?php echo esc_url($p['img']); ?>" alt="<?php echo esc_attr($p['label']); ?>">
                <?php echo esc_html($p['label']); ?>
            </div>
            <div class="option-content">
                <h3><?php echo esc_html($p['label']); ?></h3>
                <img src="<?php echo esc_url($p['img']); ?>" alt="<?php echo esc_attr($p['label']); ?> Large">
                <div class="information_payment" style="margin-top:10px; font-size:14px; color:#555;">
                    <p><?php echo esc_html($p['desc']); ?></p>
                </div>
            </div>
        </div>
        <?php endforeach; ?>

    </div>

    <style>
        .custom-payment-method .option {border:1px solid #ddd; border-radius:6px; margin-bottom:10px; overflow:hidden;}
        .option-header {display:flex; align-items:center; padding:12px; cursor:pointer;}
        .option-header img {height:28px; margin-right:10px;}
        .option-content {max-height:0; overflow:hidden; transition:max-height 0.3s ease,padding 0.3s ease; padding:0 12px;}
        .option-content img {width:100%; margin-top:10px; border-radius:6px;}
        .option.active .option-content {max-height:400px; padding:12px;}
        input[type="radio"] {margin-right:10px;}
    </style>

    <script>
        function initPaymentAccordion() {
            const options = document.querySelectorAll('.custom-payment-method .option');
            const woocommerceRadios = document.querySelectorAll('input[name="payment_method"]');

            options.forEach(option => {
                const header = option.querySelector('.option-header');
                const radio = option.querySelector('input[type="radio"]');

                function selectOption() {
                    options.forEach(o => {if(o !== option) o.classList.remove('active');});
                    option.classList.add('active');
                    woocommerceRadios.forEach(wr => { wr.checked = (wr.value === radio.value); });
                }

                header.addEventListener('click', selectOption);
                radio.addEventListener('click', (e)=>{ e.stopPropagation(); selectOption(); });
            });
        }

        document.addEventListener('DOMContentLoaded', initPaymentAccordion);
        jQuery(document).on('updated_checkout', initPaymentAccordion);
    </script>
    <?php
    return ob_get_clean();
}
add_shortcode('custom_payment_accordion', 'custom_payment_accordion_shortcode');

第二种插件部署:

点击插件>添加插件>上传插件>激活插件>回到WooCommerce>点击设置>点击顶部的付款就能看见…

下载图标
加密货币插件
格式:zip
大小:14.8K

网站演示代码:

演示地址:https://www.micdu.com/muban/

图片[5]-WP网站代码插入以及实现一些功能-米渡资源网

代码部署:

直接在编辑器里面拖入html组件,把代码全部粘贴进去即可…

<!DOCTYPE html>
<html lang="zh">
<head>
<meta charset="UTF-8">
<title>融合版浏览器窗口</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
/* ========= 外层包裹容器 ========= */
.wp-browser-wrapper { display:block; width:100%; margin:0; padding:0; background:#f5f5f5; }
.article.page-article.main-bg.theme-box.box-body.radius8.main-shadow { all: unset; display:block; }
body { margin:0; padding:0; font-family:sans-serif; background:#f5f5f5; }

/* ===== 页面统一标题 ===== */
.page-title { 
    display:block !important;
    max-width:1200px !important; /* 与卡片容器一致 */
    margin:0 auto 10px auto !important; /* 居中 */
    padding:20px 0 !important;
    text-align:center !important;
    font-size:22px !important;
    font-weight:bold !important;
    color:#333 !important;
    background-color:#fff !important;
    border-bottom:1px solid #e5e5e5 !important;
    border-radius:12px !important;
    box-shadow:0 2px 6px rgba(0,0,0,0.06) !important;
}

/* 响应式调整 */
@media(max-width:767px){
    .page-title {
        max-width:100% !important;
        margin:0 auto 10px auto !important;
        padding-left:10px;
        padding-right:10px;
        font-size:20px !important; /* 移动端字体略小 */
    }
}

/* ===== 卡片容器 ===== */
.A1 { max-width:1200px; margin:0 auto; display:flex; flex-wrap:wrap; justify-content:space-between; gap:20px; padding:0 0 20px 0; }

/* ===== 单卡片 ===== */
.A2 { flex:1 1 calc(33.333% - 20px); max-width:calc(33.333% - 20px); border:1px solid #ccc; border-radius:12px; background:#fff; box-shadow:0 6px 18px rgba(0,0,0,0.15); overflow:hidden; display:flex; flex-direction:column; }

/* 顶部浏览器头部 */
.browser-header { height:40px; background:#000000; display:flex; align-items:center; padding:0 12px; border-bottom:1px solid #ddd; flex-shrink:0; }
.buttons { display:flex; gap:8px; }
.button { width:12px; height:12px; border-radius:50%; flex-shrink:0; }
.red { background:#ff5f56; }
.yellow { background:#ffbd2e; }
.green { background:#27c93f; }

/* 地址栏 */
.address-bar { 
    display:flex; 
    align-items:center;      /* 让里面的内容垂直居中 */
    justify-content:flex-start; 
    gap:8px; 
    flex:1; 
    margin:0 16px; 
    height:22px; 
    background:#fff; 
    border:1px solid #ccc; 
    border-radius:6px; 
    font-size:12px; 
    color:#666; 
    user-select:none; 
    pointer-events:none; 
}

/* 🔒 锁图标:始终垂直居中 */
.address-icon { 
    display:flex;            /* 用 flex 来保证图标在容器内垂直居中 */
    align-items:center;      /* 垂直方向居中 */
    margin-left:20px;        /* 左边间距 */
    pointer-events:auto;     /* 图标可点击 */
}
.address-icon img { 
    height:14px;             /* 固定高度(可按需要调整大小) */
    width:auto;              /* 宽度按比例缩放 */
    display:block;           /* 避免默认 inline 图片的基线偏移 */
}

/* ===== 右上角背景图标 ===== */
.right-icons { display:flex; gap:10px; }
.right-icons .icon { width:16px; height:16px; background-size:cover; background-position:center; display:block; }
.icon-share { background-image:url("https://www.micdu.com/wp-content/uploads/2025/09/share.svg"); }
.icon-collect { background-image:url("https://www.micdu.com/wp-content/uploads/2025/09/collect.svg"); }

/* ===== 中间滚动图 ===== */
.A3 { width:100%; height:300px; overflow:hidden; position:relative; }
.A3 > .A7 { display:inline-block; transition: transform 4s linear; }
.A2:hover .A3 > .A7, .A2:active .A3 > .A7 { transform:translateY(calc(-100% + 300px)); }
.A3 img { display:block; width:100%; height:auto; user-select:none; -webkit-user-drag:none; -webkit-touch-callout:none; pointer-events:none; }

/* ===== 底部按钮组 ===== */
.A4 { display:flex; justify-content:space-between; gap:8px; padding:12px 16px; border-top:0.5px solid #eee; background:#fff; flex-wrap:wrap; }
.A5 { position:relative; padding:8px 8px; font-size:14px; color:#333; background-color:#eee; border-radius:6px; text-decoration:none; overflow:hidden; z-index:0; transition:color 0.3s ease; flex:1; text-align:center; cursor:pointer; user-select:none; }
.A5:hover { color:#fff; }
.A5::before { content:""; position:absolute; top:50%; left:50%; width:0; height:0; background:#000; z-index:-1; transition: all 0.4s ease-out; transform:translate(-50%, -50%); border-radius:50%; }
.A5:hover::before { width:220%; height:600%; }
.A5.A6 { background-color:#007bff; color:#fff; cursor:pointer; }
.A5.A6:hover { background-color:#000; color:#fff; }

/* ===== 响应式 ===== */
@media(max-width:1199px){ .A2{ flex:1 1 calc(50% - 20px); max-width:calc(50% - 20px); } }
@media(max-width:767px){
    .A1{ max-width:100%; margin:0; padding-left:0; padding-right:0; } 
    .A2{ flex:1 1 100%; max-width:100%; } 
    .A4{ flex-direction:column; } 
}
</style>
</head>
<body>
<div class="wp-browser-wrapper">
<h2 class="page-title">网站演示</h2>
<div class="A1" id="card-container"></div>
</div>
<script>
const cards = [
{id:1,img:"https://www.micdu.com/wp-content/uploads/2025/09/225544_www.bagladt.com_-scaled.jpeg",demo:"https://www.bagladt.com/"},
{id:2,img:"https://www.micdu.com/wp-content/uploads/2025/09/rosybrown-rat-534063.hostingersite.com_-scaled.jpeg",demo:"https://rosybrown-rat-534063.hostingersite.com/"},
{id:3,img:"https://www.micdu.com/wp-content/uploads/2025/09/23045_tifae.com_-scaled.jpeg",demo:"https://tifae.com/"},
{id:4,img:"https://www.micdu.com/wp-content/uploads/2025/09/mediumslateblue-raven-575974.hostingersite.com_-scaled.jpeg",demo:"https://mediumslateblue-raven-575974.hostingersite.com/"},
{id:5,img:"https://www.micdu.com/wp-content/uploads/2025/09/orangered-dolphin-641902.hostingersite.com_-scaled.jpeg",demo:"https://orangered-dolphin-641902.hostingersite.com/?v=0b3b97fa6688"},
{id:6,img:"https://www.micdu.com/wp-content/uploads/2025/09/watchforbag.com_-scaled.jpeg",demo:"https://watchforbag.com/"}
];

const contactLink = "https://work.weixin.qq.com/kfid/kfc27bb8cd595940fcb";
const container = document.getElementById("card-container");

cards.forEach(c=>{
  const card = document.createElement("div");
  card.className = "A2";
  card.innerHTML = `
<div class="browser-header">
<div class="buttons"><div class="button red"></div><div class="button yellow"></div><div class="button green"></div></div>
<div class="address-bar">
  <!-- 🔒 锁头作为装饰,不可点击 -->
  <span class="address-icon">
    <img src="https://www.micdu.com/wp-content/uploads/2025/09/lock.svg">
  </span>
  https://www.micdu.com/
</div>
<div class="right-icons">
  <div class="icon icon-share"></div>
  <div class="icon icon-collect"></div>
</div>
</div>
<div class="A3"><div class="A7"><img src="${c.img}"></div></div>
<div class="A4">
<a class="A5" href="${contactLink}">模板编号-${c.id}</a>
<a class="A5" href="${c.demo}">查看演示</a>
<a class="A5 A6" href="${contactLink}">联系建站</a>
</div>
  `;
  container.appendChild(card);
});
</script>
</body>
</html>

群发邮件代码模板:

<!DOCTYPE html>
<html xmlns:v="urn:schemas-microsoft-com:vml" xmlns:o="urn:schemas-microsoft-com:office:office">

<head>
    <meta charset="UTF-8" />
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <!--[if !mso]><!-- -->
    <meta http-equiv="X-UA-Compatible" content="IE=edge" /> <!--<![endif]-->
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <meta name="format-detection" content="telephone=no, date=no, address=no, email=no" />
    <meta name="x-apple-disable-message-reformatting" />
    <link href="https://fonts.googleapis.com/css?family=Nunito:ital,wght@0,400;0,700" rel="stylesheet" />
    <link href="https://fonts.googleapis.com/css?family=Alata:ital,wght@0,400" rel="stylesheet" />
    <title>Pretty Little Thing</title> <!-- Made with Postcards Email Builder by Designmodo -->
    <style>
        html,
        body {
            margin: 0 !important;
            padding: 0 !important;
            min-height: 100% !important;
            width: 100% !important;
            -webkit-font-smoothing: antialiased;
        }

        * {
            -ms-text-size-adjust: 100%;
        }

        #outlook a {
            padding: 0;
        }

        .ReadMsgBody,
        .ExternalClass {
            width: 100%;
        }

        .ExternalClass,
        .ExternalClass p,
        .ExternalClass td,
        .ExternalClass div,
        .ExternalClass span,
        .ExternalClass font {
            line-height: 100%;
        }

        table,
        td,
        th {
            mso-table-lspace: 0 !important;
            mso-table-rspace: 0 !important;
            border-collapse: collapse;
        }

        u+.body table,
        u+.body td,
        u+.body th {
            will-change: transform;
        }

        body,
        td,
        th,
        p,
        div,
        li,
        a,
        span {
            -webkit-text-size-adjust: 100%;
            -ms-text-size-adjust: 100%;
            mso-line-height-rule: exactly;
        }

        img {
            border: 0;
            outline: 0;
            line-height: 100%;
            text-decoration: none;
            -ms-interpolation-mode: bicubic;
        }

        a[x-apple-data-detectors] {
            color: inherit !important;
            text-decoration: none !important;
        }

        .body .pc-project-body {
            background-color: transparent !important;
        }

        @media screen and (-webkit-min-device-pixel-ratio:0) {
            .pc-img-h-pct {
                height: auto !important;
            }
        }

        @media (min-width: 621px) {
            .pc-lg-hide {
                display: none;
            }

            .pc-lg-bg-img-hide {
                background-image: none !important;
            }
        }
    </style>
    <style>
        @media (max-width: 620px) {
            .pc-project-body {
                min-width: 0px !important;
            }

            .pc-project-container,
            .pc-component {
                width: 100% !important;
            }

            .pc-sm-hide {
                display: none !important;
            }

            .pc-sm-bg-img-hide {
                background-image: none !important;
            }

            .pc-w620-padding-0-0-0-0 {
                padding: 0px 0px 0px 0px !important;
            }

            table.pc-w620-spacing-0-0-22-0 {
                margin: 0px 0px 22px 0px !important;
            }

            td.pc-w620-spacing-0-0-22-0,
            th.pc-w620-spacing-0-0-22-0 {
                margin: 0 !important;
                padding: 0px 0px 22px 0px !important;
            }

            .pc-w620-width-auto {
                width: auto !important;
            }

            .pc-w620-height-auto {
                height: auto !important;
            }

            table.pc-w620-spacing-0-0-30-0 {
                margin: 0px 0px 30px 0px !important;
            }

            td.pc-w620-spacing-0-0-30-0,
            th.pc-w620-spacing-0-0-30-0 {
                margin: 0 !important;
                padding: 0px 0px 30px 0px !important;
            }

            .pc-w620-padding-30-30-30-30 {
                padding: 30px 30px 30px 30px !important;
            }

            table.pc-w620-spacing-0-0-0-0 {
                margin: 0px 0px 0px 0px !important;
            }

            td.pc-w620-spacing-0-0-0-0,
            th.pc-w620-spacing-0-0-0-0 {
                margin: 0 !important;
                padding: 0px 0px 0px 0px !important;
            }

            .pc-w620-itemsVSpacings-0 {
                padding-top: 0px !important;
                padding-bottom: 0px !important;
            }

            .pc-w620-itemsHSpacings-15 {
                padding-left: 7.5px !important;
                padding-right: 7.5px !important;
            }

            .pc-w620-itemsVSpacings-30 {
                padding-top: 15px !important;
                padding-bottom: 15px !important;
            }

            .pc-w620-itemsHSpacings-0 {
                padding-left: 0px !important;
                padding-right: 0px !important;
            }

            .pc-w620-valign-top {
                vertical-align: top !important;
            }

            td.pc-w620-halign-center,
            th.pc-w620-halign-center {
                text-align: center !important;
                text-align-last: center !important;
            }

            table.pc-w620-halign-center {
                float: none !important;
                margin-right: auto !important;
                margin-left: auto !important;
            }

            img.pc-w620-halign-center {
                margin-right: auto !important;
                margin-left: auto !important;
            }

            div.pc-w620-align-center,
            th.pc-w620-align-center,
            a.pc-w620-align-center,
            td.pc-w620-align-center {
                text-align: center !important;
                text-align-last: center !important;
            }

            table.pc-w620-align-center {
                float: none !important;
                margin-right: auto !important;
                margin-left: auto !important;
            }

            img.pc-w620-align-center {
                margin-right: auto !important;
                margin-left: auto !important;
            }

            .pc-w620-width-100pc {
                width: 100% !important;
            }

            .pc-w620-width-fill {
                width: 100% !important;
            }

            .pc-w620-padding-35-35-35-35 {
                padding: 35px 35px 35px 35px !important;
            }

            .pc-w620-itemsHSpacings-20 {
                padding-left: 10px !important;
                padding-right: 10px !important;
            }

            table.pc-w620-spacing-0-20-0-0 {
                margin: 0px 20px 0px 0px !important;
            }

            td.pc-w620-spacing-0-20-0-0,
            th.pc-w620-spacing-0-20-0-0 {
                margin: 0 !important;
                padding: 0px 20px 0px 0px !important;
            }

            .pc-g-ib {
                display: inline-block !important;
            }

            .pc-g-b {
                display: block !important;
            }

            .pc-g-rb {
                display: block !important;
                width: auto !important;
            }

            .pc-g-wf {
                width: 100% !important;
            }

            .pc-g-rpt {
                padding-top: 0 !important;
            }

            .pc-g-rpr {
                padding-right: 0 !important;
            }

            .pc-g-rpb {
                padding-bottom: 0 !important;
            }

            .pc-g-rpl {
                padding-left: 0 !important;
            }
        }

        @media (max-width: 520px) {
            .pc-w520-padding-30-30-30-30 {
                padding: 30px 30px 30px 30px !important;
            }
        }
    </style> <!--[if !mso]><!-- -->
    <style>
        @font-face {
            font-family: 'Nunito';
            font-style: normal;
            font-weight: 400;
            src: url('https://fonts.gstatic.com/s/nunito/v26/XRXI3I6Li01BKofiOc5wtlZ2di8HDLshdTo3iQ.woff') format('woff'), url('https://fonts.gstatic.com/s/nunito/v26/XRXI3I6Li01BKofiOc5wtlZ2di8HDLshdTo3jw.woff2') format('woff2');
        }

        @font-face {
            font-family: 'Nunito';
            font-style: normal;
            font-weight: 700;
            src: url('https://fonts.gstatic.com/s/nunito/v26/XRXI3I6Li01BKofiOc5wtlZ2di8HDFwmdTo3iQ.woff') format('woff'), url('https://fonts.gstatic.com/s/nunito/v26/XRXI3I6Li01BKofiOc5wtlZ2di8HDFwmdTo3jw.woff2') format('woff2');
        }

        @font-face {
            font-family: 'Alata';
            font-style: normal;
            font-weight: 400;
            src: url('https://fonts.gstatic.com/s/alata/v11/PbytFmztEwbIocezzqA.woff') format('woff'), url('https://fonts.gstatic.com/s/alata/v11/PbytFmztEwbIocezzqY.woff2') format('woff2');
        }
    </style> <!--<![endif]-->
    <!--[if mso]> <style type="text/css"> .pc-font-alt { font-family: Arial, Helvetica, sans-serif !important; } </style> <![endif]-->
    <!--[if gte mso 9]> <xml> <o:OfficeDocumentSettings> <o:AllowPNG/> <o:PixelsPerInch>96</o:PixelsPerInch> </o:OfficeDocumentSettings> </xml> <![endif]-->
</head>

<body class="body pc-font-alt"
    style="width: 100% !important; min-height: 100% !important; margin: 0 !important; padding: 0 !important; font-weight: normal; color: #2D3A41; mso-line-height-rule: exactly; -webkit-font-smoothing: antialiased; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; font-variant-ligatures: normal; text-rendering: optimizeLegibility; -moz-osx-font-smoothing: grayscale; background-color: #fef6f5;"
    bgcolor="#fef6f5">
    <table class="pc-project-body"
        style="table-layout: fixed; width: 100%; min-width: 600px; background-color: #fef6f5;" bgcolor="#fef6f5"
        border="0" cellspacing="0" cellpadding="0" role="presentation">
        <tr>
            <td align="center" valign="top" style="width:auto;">
                <table class="pc-project-container" align="center" border="0" cellpadding="0" cellspacing="0"
                    role="presentation">
                    <tr>
                        <td class="pc-w620-padding-0-0-0-0" style="padding: 20px 0px 20px 0px;" align="left"
                            valign="top">
                            <table border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
                                <tr>
                                    <td valign="top"> <!-- BEGIN MODULE: Welcome -->
                                        <table width="100%" border="0" cellspacing="0" cellpadding="0"
                                            role="presentation" align="center" class="pc-component"
                                            style="width: 600px; max-width: 600px;">
                                            <tr>
                                                <td class="pc-w620-spacing-0-0-0-0" width="100%" border="0"
                                                    cellspacing="0" cellpadding="0" role="presentation">
                                                    <table align="center" width="100%" border="0" cellspacing="0"
                                                        cellpadding="0" role="presentation">
                                                        <tr>
                                                            <td valign="top" class="pc-w620-padding-30-30-30-30"
                                                                style="padding: 20px 40px 0px 40px; height: unset; background-color: #464d5d;"
                                                                bgcolor="#464d5d">
                                                                <table width="100%" border="0" cellpadding="0"
                                                                    cellspacing="0" role="presentation">
                                                                    <tr>
                                                                        <td class="pc-w620-spacing-0-0-22-0"
                                                                            align="center" valign="top"
                                                                            style="padding: 0px 0px 20px 0px; height: auto;">
                                                                            <a class="pc-font-alt" href="#"
                                                                                target="_blank"
                                                                                style="text-decoration: none; display: inline-block; vertical-align: top;">
                                                                                <img src="https://www.micdu.com/wp-content/uploads/2025/09/fajamia.png"
                                                                                    width="166" height="119" 
                                                                                    style="display: block; outline: 0; line-height: 100%; -ms-interpolation-mode: bicubic; width: 166px; height: auto; max-width: 100%; border: 0;" />
                                                                            </a>
                                                                        </td>
                                                                    </tr>
                                                                </table>
                                                                <table width="100%" border="0" cellpadding="0"
                                                                    cellspacing="0" role="presentation">
                                                                    <tr>
                                                                        <td valign="top"
                                                                            style="padding: 0px 0px 30px 0px; height: auto;">
                                                                            <img src="https://www.micdu.com/wp-content/uploads/2025/09/Narrow-scaled.webp"
                                                                                width="520" height="auto" 
                                                                                style="display: block; outline: 0; line-height: 100%; -ms-interpolation-mode: bicubic; width: 100%; height: auto; border-radius: 100px 5px 100px 5px; border: 0;" />
                                                                        </td>
                                                                    </tr>
                                                                </table>
                                                                <table width="100%" border="0" cellpadding="0"
                                                                    cellspacing="0" role="presentation">
                                                                    <tr>
                                                                        <td align="left" valign="top"
                                                                            style="padding: 0px 0px 3px 0px; height: auto;">
                                                                            <table border="0" cellpadding="0"
                                                                                cellspacing="0" role="presentation"
                                                                                width="100%">
                                                                                <tr>
                                                                                    <td valign="top" align="left">
                                                                                        <div class="pc-font-alt"
                                                                                            style="text-decoration: none;">
                                                                                            <div
                                                                                                style="font-size:17px;line-height:140%;text-align:left;text-align-last:left;color:#dacabb;font-family:'Nunito', Arial, Helvetica, sans-serif;font-style:normal;letter-spacing:0px;">
                                                                                                <div
                                                                                                    style="font-family:'Nunito', Arial, Helvetica, sans-serif;">
                                                                                                    <span
                                                                                                        style="font-family: 'Nunito', Arial, Helvetica, sans-serif; font-weight: 400; font-size: 17px; line-height: 140%;">Hola,
                                                                                                        somos
                                                                                                    </span><span
                                                                                                        style="font-family: 'Nunito', Arial, Helvetica, sans-serif; font-weight: 700; font-size: 17px; line-height: 140%;">Fajamia</span><span
                                                                                                        style="font-family: 'Nunito', Arial, Helvetica, sans-serif; font-weight: 400; font-size: 17px; line-height: 140%;">,
                                                                                                        una
                                                                                                    </span><span
                                                                                                        style="font-family: 'Nunito', Arial, Helvetica, sans-serif; font-weight: 700; font-size: 17px; line-height: 140%;">marca
                                                                                                        de ropa
                                                                                                        deportiva y de
                                                                                                        modelado
                                                                                                        corporal</span><span
                                                                                                        style="font-family: 'Nunito', Arial, Helvetica, sans-serif; font-weight: 400; font-size: 17px; line-height: 140%;">
                                                                                                        reconocida en
                                                                                                        Europa y Estados
                                                                                                        Unidos. Vendemos
                                                                                                    </span><span
                                                                                                        style="font-family: 'Nunito', Arial, Helvetica, sans-serif; font-weight: 700; font-size: 17px; line-height: 140%;">más
                                                                                                        de 100,000
                                                                                                        prendas</span><span
                                                                                                        style="font-family: 'Nunito', Arial, Helvetica, sans-serif; font-weight: 400; font-size: 17px; line-height: 140%;">
                                                                                                        cada año y somos
                                                                                                        apreciados por
                                                                                                        nuestro
                                                                                                        compromiso con
                                                                                                    </span><span
                                                                                                        style="font-family: 'Nunito', Arial, Helvetica, sans-serif; font-weight: 700; font-size: 17px; line-height: 140%;">materiales
                                                                                                        ecológicos e
                                                                                                        innovación</span><span
                                                                                                        style="font-family: 'Nunito', Arial, Helvetica, sans-serif; font-weight: 400; font-size: 17px; line-height: 140%;">.
                                                                                                        <br><br>
                                                                                                        Hemos visto tu
                                                                                                        contenido y
                                                                                                        creemos que
                                                                                                        encaja
                                                                                                        perfectamente
                                                                                                        con nuestra
                                                                                                        marca. Nos
                                                                                                        encantaría
                                                                                                    </span><span
                                                                                                        style="font-family: 'Nunito', Arial, Helvetica, sans-serif; font-weight: 700; font-size: 17px; line-height: 140%;">colaborar
                                                                                                        contigo a largo
                                                                                                        plazo</span><span
                                                                                                        style="font-family: 'Nunito', Arial, Helvetica, sans-serif; font-weight: 400; font-size: 17px; line-height: 140%;">
                                                                                                        para que más
                                                                                                        personas puedan
                                                                                                        descubrir el
                                                                                                    </span><span
                                                                                                        style="font-family: 'Nunito', Arial, Helvetica, sans-serif; font-weight: 700; font-size: 17px; line-height: 140%;">estilo
                                                                                                        y la fuerza de
                                                                                                        Fajamia</span><span
                                                                                                        style="font-family: 'Nunito', Arial, Helvetica, sans-serif; font-weight: 400; font-size: 17px; line-height: 140%;">.</span>
                                                                                                </div>

                                                                                            </div>
                                                                                        </div>
                                                                                    </td>
                                                                                </tr>
                                                                            </table>
                                                                        </td>
                                                                    </tr>
                                                                </table>
                                                                <table width="100%" border="0" cellpadding="0"
                                                                    cellspacing="0" role="presentation">
                                                                    <tr>
                                                                        <td class="pc-w620-spacing-0-0-30-0"
                                                                            align="left" valign="top"
                                                                            style="padding: 20px 0px 20px 0px; height: auto;">
                                                                            <table border="0" cellpadding="0"
                                                                                cellspacing="0" role="presentation"
                                                                                class="pc-w620-width-auto" align="left">
                                                                                <tr>
                                                                                    <td valign="top"
                                                                                        class="pc-w620-padding-0-0-0-0"
                                                                                        align="left">
                                                                                        <div class="pc-font-alt"
                                                                                            style="text-decoration: none;">
                                                                                            <div
                                                                                                style="font-size:32px;line-height:42px;text-align:left;text-align-last:left;color:#ffffff;font-family:'Nunito', Arial, Helvetica, sans-serif;font-style:normal;letter-spacing:-0.3px;">
                                                                                                <div
                                                                                                    style="font-family:'Nunito', Arial, Helvetica, sans-serif;">
                                                                                                    <span
                                                                                                        style="font-family: 'Nunito', Arial, Helvetica, sans-serif; font-weight: 700; font-size: 32px; line-height: 42px;">Aspectos
                                                                                                        destacados de la
                                                                                                        cooperación:</span>
                                                                                                </div>
                                                                                            </div>
                                                                                        </div>
                                                                                    </td>
                                                                                </tr>
                                                                            </table>
                                                                        </td>
                                                                    </tr>
                                                                </table>
                                                                <table border="0" cellpadding="0" cellspacing="0"
                                                                    role="presentation" width="100%">
                                                                    <tr>
                                                                        <td valign="top">
                                                                            <div class="pc-font-alt"
                                                                                style="text-decoration: none;">
                                                                                <div
                                                                                    style="font-size:17px;line-height:140%;color:#dacabb;font-family:'Nunito', Arial, Helvetica, sans-serif;font-style:normal;letter-spacing:0px;">
                                                                                    <ul
                                                                                        style="margin: 0px; padding: 0px 0px 0px 20px; font-family: 'Nunito', Arial, Helvetica, sans-serif;">
                                                                                        <li
                                                                                            style="margin-bottom: 0px; font-family: 'Nunito', Arial, Helvetica, sans-serif; font-weight: 400; font-size: 17px; line-height: 140%; text-transform: none;">
                                                                                            <span
                                                                                                style="font-family: 'Nunito', Arial, Helvetica, sans-serif; font-weight: 400; font-size: 17px; line-height: 140%;">💎
                                                                                            </span><span
                                                                                                style="font-family: 'Nunito', Arial, Helvetica, sans-serif; font-weight: 700; font-size: 17px; line-height: 140%;">Alta
                                                                                                comisión:</span><span
                                                                                                style="font-family: 'Nunito', Arial, Helvetica, sans-serif; font-weight: 400; font-size: 17px; line-height: 140%;">
                                                                                                Comisión pública del
                                                                                            </span><span
                                                                                                style="font-family: 'Nunito', Arial, Helvetica, sans-serif; font-weight: 700; font-size: 17px; line-height: 140%;">10
                                                                                                %</span><span
                                                                                                style="font-family: 'Nunito', Arial, Helvetica, sans-serif; font-weight: 400; font-size: 17px; line-height: 140%;">,
                                                                                                con </span><span
                                                                                                style="font-family: 'Nunito', Arial, Helvetica, sans-serif; font-weight: 700; font-size: 17px; line-height: 140%;">bonos
                                                                                                escalonados de 100–300
                                                                                                MXN</span><span
                                                                                                style="font-family: 'Nunito', Arial, Helvetica, sans-serif; font-weight: 400; font-size: 17px; line-height: 140%;">
                                                                                                para videos exitosos.
                                                                                            </span>
                                                                                        </li>
                                                                                        <li
                                                                                            style="margin-bottom: 0px; font-family: 'Nunito', Arial, Helvetica, sans-serif; font-weight: 400; font-size: 17px; line-height: 140%; text-transform: none;">
                                                                                            <span
                                                                                                style="font-family: 'Nunito', Arial, Helvetica, sans-serif; font-weight: 400; font-size: 17px; line-height: 140%;">🎁
                                                                                            </span><span
                                                                                                style="font-family: 'Nunito', Arial, Helvetica, sans-serif; font-weight: 700; font-size: 17px; line-height: 140%;">Muestras
                                                                                                gratuitas:</span><span
                                                                                                style="font-family: 'Nunito', Arial, Helvetica, sans-serif; font-weight: 400; font-size: 17px; line-height: 140%;">
                                                                                                Productos con un valor
                                                                                                de </span><span
                                                                                                style="font-family: 'Nunito', Arial, Helvetica, sans-serif; font-weight: 700; font-size: 17px; line-height: 140%;">50
                                                                                                USD</span><span
                                                                                                style="font-family: 'Nunito', Arial, Helvetica, sans-serif; font-weight: 400; font-size: 17px; line-height: 140%;">.
                                                                                            </span>
                                                                                        </li>
                                                                                        <li
                                                                                            style="margin-bottom: 0px; font-family: 'Nunito', Arial, Helvetica, sans-serif; font-weight: 400; font-size: 17px; line-height: 140%; text-transform: none;">
                                                                                            <span
                                                                                                style="font-family: 'Nunito', Arial, Helvetica, sans-serif; font-weight: 400; font-size: 17px; line-height: 140%;">🚀
                                                                                            </span><span
                                                                                                style="font-family: 'Nunito', Arial, Helvetica, sans-serif; font-weight: 700; font-size: 17px; line-height: 140%;">Apoyo
                                                                                                en
                                                                                                promoción:</span><span
                                                                                                style="font-family: 'Nunito', Arial, Helvetica, sans-serif; font-weight: 400; font-size: 17px; line-height: 140%;">
                                                                                            </span><span
                                                                                                style="font-family: 'Nunito', Arial, Helvetica, sans-serif; font-weight: 700; font-size: 17px; line-height: 140%;">Mínimo
                                                                                                200 USD</span><span
                                                                                                style="font-family: 'Nunito', Arial, Helvetica, sans-serif; font-weight: 400; font-size: 17px; line-height: 140%;">
                                                                                                en presupuesto
                                                                                                publicitario para los
                                                                                                videos, ayudando a
                                                                                                generar ventas más
                                                                                                rápido. </span>
                                                                                        </li>
                                                                                        <li
                                                                                            style="margin-bottom: 0px; font-family: 'Nunito', Arial, Helvetica, sans-serif; font-weight: 400; font-size: 17px; line-height: 140%; text-transform: none;">
                                                                                            <span
                                                                                                style="font-family: 'Nunito', Arial, Helvetica, sans-serif; font-weight: 400; font-size: 17px; line-height: 140%;">🏆
                                                                                            </span><span
                                                                                                style="font-family: 'Nunito', Arial, Helvetica, sans-serif; font-weight: 700; font-size: 17px; line-height: 140%;">Beneficios
                                                                                                exclusivos:</span><span
                                                                                                style="font-family: 'Nunito', Arial, Helvetica, sans-serif; font-weight: 400; font-size: 17px; line-height: 140%;">
                                                                                            </span><span
                                                                                                style="font-family: 'Nunito', Arial, Helvetica, sans-serif; font-weight: 700; font-size: 17px; line-height: 140%;">Mayores
                                                                                                incentivos para
                                                                                                colaboraciones a largo
                                                                                                plazo</span><span
                                                                                                style="font-family: 'Nunito', Arial, Helvetica, sans-serif; font-weight: 400; font-size: 17px; line-height: 140%;">
                                                                                                y </span><span
                                                                                                style="font-family: 'Nunito', Arial, Helvetica, sans-serif; font-weight: 700; font-size: 17px; line-height: 140%;">prueba
                                                                                                prioritaria de nuevos
                                                                                                lanzamientos</span><span
                                                                                                style="font-family: 'Nunito', Arial, Helvetica, sans-serif; font-weight: 400; font-size: 17px; line-height: 140%;">.</span>
                                                                                        </li>
                                                                                    </ul>
                                                                                    <div
                                                                                        style="text-align:left;text-align-last:left;">
                                                                                        <br>
                                                                                    </div>
                                                                                </div>
                                                                            </div>
                                                                        </td>
                                                                    </tr>
                                                                </table>
                                                                <table width="100%" border="0" cellpadding="0"
                                                                    cellspacing="0" role="presentation">
                                                                    <tr>
                                                                        <td class="pc-w620-spacing-0-0-30-0"
                                                                            align="left" valign="top"
                                                                            style="padding: 0px 0px 10px 0px; height: auto;">
                                                                            <table border="0" cellpadding="0"
                                                                                cellspacing="0" role="presentation"
                                                                                class="pc-w620-width-auto" align="left">
                                                                                <tr>
                                                                                    <td valign="top"
                                                                                        class="pc-w620-padding-0-0-0-0"
                                                                                        align="left">
                                                                                        <div class="pc-font-alt"
                                                                                            style="text-decoration: none;">
                                                                                            <div
                                                                                                style="font-size:32px;line-height:42px;text-align:left;text-align-last:left;color:#ffffff;font-family:'Nunito', Arial, Helvetica, sans-serif;font-style:normal;letter-spacing:-0.3px;">
                                                                                                <div
                                                                                                    style="font-family:'Nunito', Arial, Helvetica, sans-serif;">
                                                                                                    <span
                                                                                                        style="font-family: 'Nunito', Arial, Helvetica, sans-serif; font-weight: 700; font-size: 32px; line-height: 42px;">Información
                                                                                                        de contacto para
                                                                                                        recibir
                                                                                                        muestras:</span>
                                                                                                </div>
                                                                                            </div>
                                                                                        </div>
                                                                                    </td>
                                                                                </tr>
                                                                            </table>
                                                                        </td>
                                                                    </tr>
                                                                </table>
                                                                <table border="0" cellpadding="0" cellspacing="0"
                                                                    role="presentation" width="100%">
                                                                    <tr>
                                                                        <td valign="top">
                                                                            <div class="pc-font-alt"
                                                                                style="text-decoration: none;">
                                                                                <div
                                                                                    style="font-size:17px;line-height:140%;color:#dacabb;font-family:'Nunito', Arial, Helvetica, sans-serif;font-style:normal;letter-spacing:0px;">
                                                                                    <ul
                                                                                        style="margin: 0px; padding: 0px 0px 0px 20px; font-family: 'Nunito', Arial, Helvetica, sans-serif;">
                                                                                        <li
                                                                                            style="margin-bottom: 0px; font-family: 'Nunito', Arial, Helvetica, sans-serif; font-weight: 400; font-size: 17px; line-height: 140%; text-transform: none;">
                                                                                            <span
                                                                                                style="font-family: 'Nunito', Arial, Helvetica, sans-serif; font-weight: 400; font-size: 17px; line-height: 140%;">1️⃣
                                                                                            </span><span
                                                                                                style="font-family: 'Nunito', Arial, Helvetica, sans-serif; font-weight: 700; font-size: 17px; line-height: 140%;">WhatsApp:</span><span
                                                                                                style="font-family: 'Nunito', Arial, Helvetica, sans-serif; font-weight: 400; font-size: 17px; line-height: 140%;">
                                                                                            </span>
                                                                                        </li>
                                                                                        <li
                                                                                            style="margin-bottom: 0px; font-family: 'Nunito', Arial, Helvetica, sans-serif; font-weight: 400; font-size: 17px; line-height: 140%; text-transform: none;">
                                                                                            <span
                                                                                                style="font-family: 'Nunito', Arial, Helvetica, sans-serif; font-weight: 400; font-size: 17px; line-height: 140%;">2️⃣
                                                                                            </span><span
                                                                                                style="font-family: 'Nunito', Arial, Helvetica, sans-serif; font-weight: 700; font-size: 17px; line-height: 140%;">Número:</span><span
                                                                                                style="font-family: 'Nunito', Arial, Helvetica, sans-serif; font-weight: 400; font-size: 17px; line-height: 140%;">
                                                                                            </span>
                                                                                        </li>
                                                                                        <li
                                                                                            style="margin-bottom: 0px; font-family: 'Nunito', Arial, Helvetica, sans-serif; font-weight: 400; font-size: 17px; line-height: 140%; text-transform: none;">
                                                                                            <span
                                                                                                style="font-family: 'Nunito', Arial, Helvetica, sans-serif; font-weight: 400; font-size: 17px; line-height: 140%;">3️⃣
                                                                                            </span><span
                                                                                                style="font-family: 'Nunito', Arial, Helvetica, sans-serif; font-weight: 700; font-size: 17px; line-height: 140%;">Dirección:</span><span
                                                                                                style="font-family: 'Nunito', Arial, Helvetica, sans-serif; font-weight: 400; font-size: 17px; line-height: 140%;">
                                                                                            </span>
                                                                                        </li>
                                                                                        <li
                                                                                            style="margin-bottom: 0px; font-family: 'Nunito', Arial, Helvetica, sans-serif; font-weight: 400; font-size: 17px; line-height: 140%; text-transform: none;">
                                                                                            <span
                                                                                                style="font-family: 'Nunito', Arial, Helvetica, sans-serif; font-weight: 400; font-size: 17px; line-height: 140%;">4️⃣
                                                                                            </span><span
                                                                                                style="font-family: 'Nunito', Arial, Helvetica, sans-serif; font-weight: 700; font-size: 17px; line-height: 140%;">Nombre:</span><span
                                                                                                style="font-family: 'Nunito', Arial, Helvetica, sans-serif; font-weight: 400; font-size: 17px; line-height: 140%;">
                                                                                            </span>
                                                                                        </li>
                                                                                        <li
                                                                                            style="margin-bottom: 0px; font-family: 'Nunito', Arial, Helvetica, sans-serif; font-weight: 400; font-size: 17px; line-height: 140%; text-transform: none;">
                                                                                            <span
                                                                                                style="font-family: 'Nunito', Arial, Helvetica, sans-serif; font-weight: 400; font-size: 17px; line-height: 140%;">5️⃣
                                                                                            </span><span
                                                                                                style="font-family: 'Nunito', Arial, Helvetica, sans-serif; font-weight: 700; font-size: 17px; line-height: 140%;">Correo
                                                                                                personal:</span>
                                                                                        </li>
                                                                                    </ul>
                                                                                    <div
                                                                                        style="text-align:left;text-align-last:left;">
                                                                                        <br>
                                                                                    </div>
                                                                                </div>
                                                                            </div>
                                                                        </td>
                                                                    </tr>
                                                                </table>
                                                                <table width="100%" border="0" cellpadding="0"
                                                                    cellspacing="0" role="presentation">
                                                                    <tr>
                                                                        <td class="pc-w620-spacing-0-0-30-0"
                                                                            align="left" valign="top"
                                                                            style="padding: 0px 0px 10px 0px; height: auto;">
                                                                            <table border="0" cellpadding="0"
                                                                                cellspacing="0" role="presentation"
                                                                                class="pc-w620-width-auto" align="left">
                                                                                <tr>
                                                                                    <td valign="top"
                                                                                        class="pc-w620-padding-0-0-0-0"
                                                                                        align="left">
                                                                                        <div class="pc-font-alt"
                                                                                            style="text-decoration: none;">
                                                                                            <div
                                                                                                style="font-size:32px;line-height:42px;text-align:left;text-align-last:left;color:#ffffff;font-family:'Nunito', Arial, Helvetica, sans-serif;font-style:normal;letter-spacing:-0.3px;">
                                                                                                <div
                                                                                                    style="font-family:'Nunito', Arial, Helvetica, sans-serif;">
                                                                                                    <span
                                                                                                        style="font-family: 'Nunito', Arial, Helvetica, sans-serif; font-weight: 700; font-size: 32px; line-height: 42px;">Proceso
                                                                                                        sencillo:</span>
                                                                                                </div>
                                                                                            </div>
                                                                                        </div>
                                                                                    </td>
                                                                                </tr>
                                                                            </table>
                                                                        </td>
                                                                    </tr>
                                                                </table>
                                                                <table border="0" cellpadding="0" cellspacing="0"
                                                                    role="presentation" width="100%">
                                                                    <tr>
                                                                        <td valign="top">
                                                                            <div class="pc-font-alt"
                                                                                style="text-decoration: none;">
                                                                                <div
                                                                                    style="font-size:17px;line-height:140%;color:#dacabb;font-family:'Nunito', Arial, Helvetica, sans-serif;font-style:normal;letter-spacing:0px;">
                                                                                    <ul
                                                                                        style="margin: 0px; padding: 0px 0px 0px 20px; font-family: 'Nunito', Arial, Helvetica, sans-serif;">
                                                                                        <li
                                                                                            style="margin-bottom: 0px; font-family: 'Nunito', Arial, Helvetica, sans-serif; font-weight: 400; font-size: 17px; line-height: 140%; text-transform: none;">
                                                                                            <span
                                                                                                style="font-family: 'Nunito', Arial, Helvetica, sans-serif; font-weight: 400; font-size: 17px; line-height: 140%;">1️⃣
                                                                                            </span><span
                                                                                                style="font-family: 'Nunito', Arial, Helvetica, sans-serif; font-weight: 700; font-size: 17px; line-height: 140%;">Confirmar
                                                                                                la colaboración y
                                                                                                proporcionar la
                                                                                                información de
                                                                                                envío</span><span
                                                                                                style="font-family: 'Nunito', Arial, Helvetica, sans-serif; font-weight: 400; font-size: 17px; line-height: 140%;">.</span>
                                                                                        </li>
                                                                                        <li
                                                                                            style="margin-bottom: 0px; font-family: 'Nunito', Arial, Helvetica, sans-serif; font-weight: 400; font-size: 17px; line-height: 140%; text-transform: none;">
                                                                                            <span
                                                                                                style="font-family: 'Nunito', Arial, Helvetica, sans-serif; font-weight: 400; font-size: 17px; line-height: 140%;">2️⃣
                                                                                            </span><span
                                                                                                style="font-family: 'Nunito', Arial, Helvetica, sans-serif; font-weight: 700; font-size: 17px; line-height: 140%;">Grabar
                                                                                                y publicar el video
                                                                                                dentro de 7–10 días
                                                                                                después de recibir la
                                                                                                muestra</span><span
                                                                                                style="font-family: 'Nunito', Arial, Helvetica, sans-serif; font-weight: 400; font-size: 17px; line-height: 140%;">
                                                                                                (1 video por
                                                                                                producto).</span>
                                                                                        </li>
                                                                                        <li
                                                                                            style="margin-bottom: 0px; font-family: 'Nunito', Arial, Helvetica, sans-serif; font-weight: 400; font-size: 17px; line-height: 140%; text-transform: none;">
                                                                                            <span
                                                                                                style="font-family: 'Nunito', Arial, Helvetica, sans-serif; font-weight: 400; font-size: 17px; line-height: 140%;">3️⃣
                                                                                            </span><span
                                                                                                style="font-family: 'Nunito', Arial, Helvetica, sans-serif; font-weight: 700; font-size: 17px; line-height: 140%;">Proporcionar
                                                                                                el enlace del video + el
                                                                                                código de publicidad
                                                                                                365</span><span
                                                                                                style="font-family: 'Nunito', Arial, Helvetica, sans-serif; font-weight: 400; font-size: 17px; line-height: 140%;">,
                                                                                                nosotros nos encargamos
                                                                                                de la promoción y del
                                                                                                pago de la comisión.
                                                                                                Además, </span><span
                                                                                                style="font-family: 'Nunito', Arial, Helvetica, sans-serif; font-weight: 700; font-size: 17px; line-height: 140%;">nos
                                                                                                reservamos los derechos
                                                                                                de creación
                                                                                                derivada</span><span
                                                                                                style="font-family: 'Nunito', Arial, Helvetica, sans-serif; font-weight: 400; font-size: 17px; line-height: 140%;">.</span>
                                                                                        </li>
                                                                                    </ul>
                                                                                    <div
                                                                                        style="text-align:left;text-align-last:left;">
                                                                                        <br>
                                                                                    </div>
                                                                                </div>
                                                                            </div>
                                                                        </td>
                                                                    </tr>
                                                                </table>
                                                                <table width="100%" border="0" cellpadding="0"
                                                                    cellspacing="0" role="presentation">
                                                                    <tr>
                                                                        <td class="pc-w620-spacing-0-0-30-0"
                                                                            align="center" valign="top"
                                                                            style="padding: 0px 0px 20px 0px; height: auto;">
                                                                            <table border="0" cellpadding="0"
                                                                                cellspacing="0" role="presentation"
                                                                                class="pc-w620-width-auto"
                                                                                align="center"
                                                                                style="margin-right: auto; margin-left: auto;">
                                                                                <tr>
                                                                                    <td valign="top"
                                                                                        class="pc-w620-padding-0-0-0-0"
                                                                                        align="center">
                                                                                        <div class="pc-font-alt"
                                                                                            style="text-decoration: none;">
                                                                                            <div
                                                                                                style="font-size:32px;line-height:42px;text-align:center;text-align-last:center;color:#ffffff;font-family:'Nunito', Arial, Helvetica, sans-serif;font-style:normal;letter-spacing:-0.3px;">
                                                                                                <div
                                                                                                    style="font-family:'Nunito', Arial, Helvetica, sans-serif;">
                                                                                                    <span
                                                                                                        style="font-family: 'Nunito', Arial, Helvetica, sans-serif; font-weight: 700; font-size: 32px; line-height: 42px;">Algunos
                                                                                                        de nuestros
                                                                                                        productos:</span>
                                                                                                </div>
                                                                                            </div>
                                                                                        </div>
                                                                                    </td>
                                                                                </tr>
                                                                            </table>
                                                                        </td>
                                                                    </tr>
                                                                </table>
                                                            </td>
                                                        </tr>
                                                    </table>
                                                </td>
                                            </tr>
                                        </table> <!-- END MODULE: Welcome -->
                                    </td>
                                </tr>
                                <tr>
                                    <td valign="top"> <!-- BEGIN MODULE: New Arrivals -->
                                        <table class="pc-component" style="width: 600px; max-width: 600px;"
                                            align="center" width="100%" border="0" cellspacing="0" cellpadding="0"
                                            role="presentation">
                                            <tr>
                                                <td valign="top"
                                                    class="pc-w520-padding-30-30-30-30 pc-w620-padding-35-35-35-35"
                                                    style="padding: 40px 40px 40px 40px; height: unset; background-color: #383e4c;"
                                                    bgcolor="#383e4c">
                                                    <table width="100%" border="0" cellpadding="0" cellspacing="0"
                                                        role="presentation">
                                                        <tr>
                                                            <td align="center" style="padding: 0px 0px 30px 0px;">
                                                                <table align="center" border="0" cellpadding="0"
                                                                    cellspacing="0" role="presentation">
                                                                    <tr>
                                                                        <td style="width:unset;" valign="top">
                                                                            <table class="pc-width-hug" align="center"
                                                                                border="0" cellpadding="0"
                                                                                cellspacing="0" role="presentation">
                                                                                <tbody>
                                                                                    <tr>
                                                                                        <td class="pc-g-rpt pc-g-rpb pc-w620-itemsVSpacings-0"
                                                                                            valign="middle"
                                                                                            style="padding-top: 0px; padding-bottom: 0px;">
                                                                                            <table border="0"
                                                                                                cellpadding="0"
                                                                                                cellspacing="0"
                                                                                                role="presentation">
                                                                                                <tr>
                                                                                                    <td align="center"
                                                                                                        valign="middle">
                                                                                                        <table
                                                                                                            width="100%"
                                                                                                            border="0"
                                                                                                            cellpadding="0"
                                                                                                            cellspacing="0"
                                                                                                            role="presentation">
                                                                                                            <tr>
                                                                                                                <td align="center"
                                                                                                                    valign="top">
                                                                                                                    <table
                                                                                                                        border="0"
                                                                                                                        cellpadding="0"
                                                                                                                        cellspacing="0"
                                                                                                                        role="presentation"
                                                                                                                        align="center">
                                                                                                                        <tr>
                                                                                                                            <td valign="top"
                                                                                                                                align="center"
                                                                                                                                style="padding: 0px 0px 2px 0px; height: auto;">
                                                                                                                                <div class="pc-font-alt"
                                                                                                                                    style="text-decoration: none;">
                                                                                                                                    <div
                                                                                                                                        style="font-size:28px;line-height:34px;text-align:center;text-align-last:center;color:#dacabb;font-family:'Nunito', Arial, Helvetica, sans-serif;font-style:normal;letter-spacing:0px;">
                                                                                                                                        <div
                                                                                                                                            style="font-family:'Nunito', Arial, Helvetica, sans-serif;">
                                                                                                                                            <span
                                                                                                                                                style="font-family: 'Nunito', Arial, Helvetica, sans-serif; font-weight: 700; font-size: 28px; line-height: 34px;">Lanzamiento
                                                                                                                                                de
                                                                                                                                                nuevo
                                                                                                                                                producto:</span>
                                                                                                                                        </div>
                                                                                                                                    </div>
                                                                                                                                </div>
                                                                                                                            </td>
                                                                                                                        </tr>
                                                                                                                    </table>
                                                                                                                </td>
                                                                                                            </tr>
                                                                                                        </table>
                                                                                                    </td>
                                                                                                </tr>
                                                                                            </table>
                                                                                        </td>
                                                                                        <td class="pc-w620-itemsHSpacings-15"
                                                                                            valign="middle"
                                                                                            style="padding-right: 7.5px; padding-left: 7.5px;" />
                                                                                        <td class="pc-g-rpt pc-g-rpb pc-w620-itemsVSpacings-0"
                                                                                            valign="middle"
                                                                                            style="padding-top: 0px; padding-bottom: 0px;">
                                                                                            <table border="0"
                                                                                                cellpadding="0"
                                                                                                cellspacing="0"
                                                                                                role="presentation">
                                                                                                <tr>
                                                                                                    <td align="center"
                                                                                                        valign="middle">
                                                                                                        <table
                                                                                                            width="100%"
                                                                                                            border="0"
                                                                                                            cellpadding="0"
                                                                                                            cellspacing="0"
                                                                                                            role="presentation">
                                                                                                            <tr>
                                                                                                                <td align="center"
                                                                                                                    valign="top">
                                                                                                                </td>
                                                                                                            </tr>
                                                                                                        </table>
                                                                                                    </td>
                                                                                                </tr>
                                                                                            </table>
                                                                                        </td>
                                                                                    </tr>
                                                                                </tbody>
                                                                            </table>
                                                                        </td>
                                                                    </tr>
                                                                </table>
                                                            </td>
                                                        </tr>
                                                    </table>
                                                    <table width="100%" border="0" cellpadding="0" cellspacing="0"
                                                        role="presentation">
                                                        <tr>
                                                            <td class="pc-w620-valign-top pc-w620-halign-center">
                                                                <table
                                                                    class="pc-width-fill pc-g-b pc-w620-halign-center"
                                                                    width="100%" border="0" cellpadding="0"
                                                                    cellspacing="0" role="presentation">
                                                                    <tbody class="pc-g-b">
                                                                        <tr class="pc-g-ib pc-g-wf">
                                                                            <td class="pc-g-rb pc-g-rpt pc-g-wf pc-w620-itemsVSpacings-30"
                                                                                align="center" valign="top"
                                                                                style="width: 50%; padding-top: 0px; padding-bottom: 0px;">
                                                                                <table class="pc-w620-halign-center"
                                                                                    style="width: 100%;" border="0"
                                                                                    cellpadding="0" cellspacing="0"
                                                                                    role="presentation">
                                                                                    <tr>
                                                                                        <td class="pc-w620-halign-center pc-w620-valign-top"
                                                                                            align="center" valign="top">
                                                                                            <table
                                                                                                class="pc-w620-halign-center"
                                                                                                width="100%" border="0"
                                                                                                cellpadding="0"
                                                                                                cellspacing="0"
                                                                                                role="presentation">
                                                                                                <tr>
                                                                                                    <td class="pc-w620-halign-center"
                                                                                                        align="center"
                                                                                                        valign="top"
                                                                                                        style="line-height: 1px; font-size: 1px;">
                                                                                                        <table
                                                                                                            width="100%"
                                                                                                            border="0"
                                                                                                            cellpadding="0"
                                                                                                            cellspacing="0"
                                                                                                            role="presentation">
                                                                                                            <tr>
                                                                                                                <td class="pc-w620-halign-center"
                                                                                                                    align="center"
                                                                                                                    valign="top"
                                                                                                                    style="padding: 0px 0px 16px 0px; height: auto;">
                                                                                                                    <img src="https://www.micdu.com/wp-content/uploads/2025/09/mote-1.webp"
                                                                                                                        class="pc-w620-width-100pc pc-w620-height-auto pc-w620-align-center"
                                                                                                                        width="230"
                                                                                                                        height="305"
                                                                                                                        
                                                                                                                        style="display: block; outline: 0; line-height: 100%; -ms-interpolation-mode: bicubic; width: 230px; height: auto; max-width: 100%; border-radius: 100px 5px 100px 5px; border: 0;" />
                                                                                                                </td>
                                                                                                            </tr>
                                                                                                        </table>
                                                                                                    </td>
                                                                                                </tr>
                                                                                                <tr>
                                                                                                    <td class="pc-w620-halign-center"
                                                                                                        align="center"
                                                                                                        valign="top">
                                                                                                        <table
                                                                                                            class="pc-w620-halign-center"
                                                                                                            width="100%"
                                                                                                            align="center"
                                                                                                            border="0"
                                                                                                            cellpadding="0"
                                                                                                            cellspacing="0"
                                                                                                            role="presentation">
                                                                                                            <tr>
                                                                                                                <td valign="top"
                                                                                                                    style="padding: 0px 0px 2px 0px; height: auto;">
                                                                                                                    <table
                                                                                                                        border="0"
                                                                                                                        cellpadding="0"
                                                                                                                        cellspacing="0"
                                                                                                                        role="presentation"
                                                                                                                        width="100%"
                                                                                                                        align="center">
                                                                                                                        <tr>
                                                                                                                            <td valign="top"
                                                                                                                                class="pc-w620-align-center"
                                                                                                                                align="center">
                                                                                                                                <div class="pc-font-alt pc-w620-align-center"
                                                                                                                                    style="line-height: 34px; letter-spacing: 0px; font-family: 'Nunito', Arial, Helvetica, sans-serif; font-size: 18px; font-weight: bold; color: #dacabb; text-align: center; text-align-last: center;">
                                                                                                                                    <div>
                                                                                                                                        <span>Body
                                                                                                                                            moldeador
                                                                                                                                            para
                                                                                                                                            mujer,
                                                                                                                                            efecto
                                                                                                                                            reductor,
                                                                                                                                            cuello
                                                                                                                                            alto,
                                                                                                                                            sin
                                                                                                                                            mangas,
                                                                                                                                            cremallera
                                                                                                                                            acanalada,
                                                                                                                                            camiseta
                                                                                                                                            sin
                                                                                                                                            mangas
                                                                                                                                            moldeadora</span>
                                                                                                                                    </div>
                                                                                                                                </div>
                                                                                                                            </td>
                                                                                                                        </tr>
                                                                                                                    </table>
                                                                                                                </td>
                                                                                                            </tr>
                                                                                                        </table>
                                                                                                    </td>
                                                                                                </tr>
                                                                                                <tr>
                                                                                                    <td class="pc-w620-halign-center"
                                                                                                        align="center"
                                                                                                        valign="top">
                                                                                                        <table
                                                                                                            class="pc-w620-halign-center"
                                                                                                            align="center"
                                                                                                            border="0"
                                                                                                            cellpadding="0"
                                                                                                            cellspacing="0"
                                                                                                            role="presentation">
                                                                                                            <tr>
                                                                                                                <td valign="top"
                                                                                                                    style="padding: 0px 0px 14px 0px; height: auto;">
                                                                                                                    <table
                                                                                                                        border="0"
                                                                                                                        cellpadding="0"
                                                                                                                        cellspacing="0"
                                                                                                                        role="presentation"
                                                                                                                        width="100%">
                                                                                                                        <tr>
                                                                                                                            <td valign="top"
                                                                                                                                class="pc-w620-align-center"
                                                                                                                                align="center">
                                                                                                                                <div class="pc-font-alt pc-w620-align-center"
                                                                                                                                    style="text-decoration: none;">
                                                                                                                                    <div
                                                                                                                                        style="font-size:16px;line-height:22px;text-align:center;text-align-last:center;color:#eeb798;font-family:'Nunito', Arial, Helvetica, sans-serif;letter-spacing:0px;font-style:normal;">
                                                                                                                                        <div
                                                                                                                                            style="font-family:'Nunito', Arial, Helvetica, sans-serif;">
                                                                                                                                            <span
                                                                                                                                                style="font-family: 'Nunito', Arial, Helvetica, sans-serif; font-size: 16px; line-height: 22px; font-weight: 400;">$320</span>
                                                                                                                                        </div>
                                                                                                                                    </div>
                                                                                                                                </div>
                                                                                                                            </td>
                                                                                                                        </tr>
                                                                                                                    </table>
                                                                                                                </td>
                                                                                                            </tr>
                                                                                                        </table>
                                                                                                    </td>
                                                                                                </tr>
                                                                                                <tr>
                                                                                                    <td class="pc-w620-halign-center"
                                                                                                        align="center"
                                                                                                        valign="top">
                                                                                                        <table
                                                                                                            width="100%"
                                                                                                            border="0"
                                                                                                            cellpadding="0"
                                                                                                            cellspacing="0"
                                                                                                            role="presentation"
                                                                                                            style="min-width: 100%;">
                                                                                                            <tr>
                                                                                                                <th valign="top"
                                                                                                                    class="pc-w620-align-center"
                                                                                                                    align="center"
                                                                                                                    style="text-align: center; font-weight: normal;">
                                                                                                                    <!--[if mso]> <table border="0" cellpadding="0" cellspacing="0" role="presentation" class="pc-w620-align-center" align="center" style="border-collapse: separate; border-spacing: 0; margin-right: auto; margin-left: auto;"> <tr> <td valign="middle" align="center" style="border-radius: 94px 94px 94px 94px; background-color: #eeb798; text-align:center; color: #ffffff; padding: 7px 40px 10px 40px; mso-padding-left-alt: 0; margin-left:40px;" bgcolor="#eeb798"> <a class="pc-font-alt" style="display: inline-block; text-decoration: none; text-align: center;" href="https://vt.tiktok.com/ZSHnoaVjb6pR6-Nb230/" target="_blank"><span style="font-size:16px;line-height:24px;color:#383e4c;font-family:'Alata', Arial, Helvetica, sans-serif;font-style:normal;letter-spacing:-0.2px;display:inline-block;vertical-align:top;"><span style="font-family:'Alata', Arial, Helvetica, sans-serif;display:inline-block;"><span style="font-family: 'Alata', Arial, Helvetica, sans-serif; font-weight: 400; font-size: 16px; line-height: 24px;">Más información</span></span></span></a> </td> </tr> </table> <![endif]-->
                                                                                                                    <!--[if !mso]><!-- -->
                                                                                                                    <a style="display: inline-block; box-sizing: border-box; border-radius: 94px 94px 94px 94px; background-color: #eeb798; padding: 7px 40px 10px 40px; vertical-align: top; text-align: center; text-align-last: center; text-decoration: none; -webkit-text-size-adjust: none;"
                                                                                                                        href="https://vt.tiktok.com/ZSHnoaVjb6pR6-Nb230/"
                                                                                                                        target="_blank"><span
                                                                                                                            style="font-size:16px;line-height:24px;color:#383e4c;font-family:'Alata', Arial, Helvetica, sans-serif;font-style:normal;letter-spacing:-0.2px;display:inline-block;vertical-align:top;"><span
                                                                                                                                style="font-family:'Alata', Arial, Helvetica, sans-serif;display:inline-block;"><span
                                                                                                                                    style="font-family: 'Alata', Arial, Helvetica, sans-serif; font-weight: 400; font-size: 16px; line-height: 24px;">Más
                                                                                                                                    información</span></span></span></a>
                                                                                                                    <!--<![endif]-->
                                                                                                                </th>
                                                                                                            </tr>
                                                                                                        </table>
                                                                                                    </td>
                                                                                                </tr>
                                                                                            </table>
                                                                                        </td>
                                                                                    </tr>
                                                                                </table>
                                                                            </td>
                                                                            <td class="pc-w620-itemsHSpacings-0"
                                                                                valign="top"
                                                                                style="padding-right: 15px; padding-left: 15px;" />
                                                                            <td class="pc-g-rb pc-g-rpb pc-g-wf pc-w620-itemsVSpacings-30"
                                                                                align="center" valign="top"
                                                                                style="width: 50%; padding-top: 0px; padding-bottom: 0px;">
                                                                                <table
                                                                                    class="pc-w620-width-fill pc-w620-halign-center"
                                                                                    border="0" cellpadding="0"
                                                                                    cellspacing="0" role="presentation">
                                                                                    <tr>
                                                                                        <td class="pc-w620-halign-center pc-w620-valign-top"
                                                                                            align="center" valign="top">
                                                                                            <table
                                                                                                class="pc-w620-halign-center"
                                                                                                width="100%" border="0"
                                                                                                cellpadding="0"
                                                                                                cellspacing="0"
                                                                                                role="presentation">
                                                                                                <tr>
                                                                                                    <td class="pc-w620-halign-center"
                                                                                                        align="center"
                                                                                                        valign="top"
                                                                                                        style="line-height: 1px; font-size: 1px;">
                                                                                                        <table
                                                                                                            width="100%"
                                                                                                            border="0"
                                                                                                            cellpadding="0"
                                                                                                            cellspacing="0"
                                                                                                            role="presentation">
                                                                                                            <tr>
                                                                                                                <td class="pc-w620-halign-center"
                                                                                                                    align="center"
                                                                                                                    valign="top"
                                                                                                                    style="padding: 0px 0px 16px 0px; height: auto;">
                                                                                                                    <img src="https://www.micdu.com/wp-content/uploads/2025/09/mote.webp"
                                                                                                                        class="pc-w620-width-100pc pc-w620-height-auto pc-w620-align-center"
                                                                                                                        width="230"
                                                                                                                        height="305"
                                                                                                                        
                                                                                                                        style="display: block; outline: 0; line-height: 100%; -ms-interpolation-mode: bicubic; width: 230px; height: auto; max-width: 100%; border-radius: 100px 5px 100px 5px; border: 0;" />
                                                                                                                </td>
                                                                                                            </tr>
                                                                                                        </table>
                                                                                                    </td>
                                                                                                </tr>
                                                                                                <tr>
                                                                                                    <td class="pc-w620-halign-center"
                                                                                                        align="center"
                                                                                                        valign="top">
                                                                                                        <table
                                                                                                            class="pc-w620-halign-center"
                                                                                                            align="center"
                                                                                                            border="0"
                                                                                                            cellpadding="0"
                                                                                                            cellspacing="0"
                                                                                                            role="presentation">
                                                                                                            <tr>
                                                                                                                <td valign="top"
                                                                                                                    style="padding: 0px 0px 2px 0px; height: auto;">
                                                                                                                    <table
                                                                                                                        border="0"
                                                                                                                        cellpadding="0"
                                                                                                                        cellspacing="0"
                                                                                                                        role="presentation"
                                                                                                                        width="100%">
                                                                                                                        <tr>
                                                                                                                            <td valign="top"
                                                                                                                                class="pc-w620-align-center"
                                                                                                                                align="center">
                                                                                                                                <div class="pc-font-alt pc-w620-align-center"
                                                                                                                                    style="line-height: 34px; letter-spacing: 0px; font-family: 'Nunito', Arial, Helvetica, sans-serif; font-size: 18px; font-weight: bold; color: #dacabb; text-align: center; text-align-last: center;">
                                                                                                                                    <div>
                                                                                                                                        <span>Body
                                                                                                                                            ajustado
                                                                                                                                            con
                                                                                                                                            tirantes,
                                                                                                                                            escote
                                                                                                                                            cuadrado,
                                                                                                                                            de
                                                                                                                                            canalé
                                                                                                                                            elástico
                                                                                                                                            y
                                                                                                                                            estilo
                                                                                                                                            sexy</span>
                                                                                                                                    </div>
                                                                                                                                </div>
                                                                                                                            </td>
                                                                                                                        </tr>
                                                                                                                    </table>
                                                                                                                </td>
                                                                                                            </tr>
                                                                                                        </table>
                                                                                                    </td>
                                                                                                </tr>
                                                                                                <tr>
                                                                                                    <td class="pc-w620-halign-center"
                                                                                                        align="center"
                                                                                                        valign="top">
                                                                                                        <table
                                                                                                            class="pc-w620-halign-center"
                                                                                                            align="center"
                                                                                                            border="0"
                                                                                                            cellpadding="0"
                                                                                                            cellspacing="0"
                                                                                                            role="presentation">
                                                                                                            <tr>
                                                                                                                <td valign="top"
                                                                                                                    style="padding: 0px 0px 14px 0px; height: auto;">
                                                                                                                    <table
                                                                                                                        border="0"
                                                                                                                        cellpadding="0"
                                                                                                                        cellspacing="0"
                                                                                                                        role="presentation"
                                                                                                                        width="100%">
                                                                                                                        <tr>
                                                                                                                            <td valign="top"
                                                                                                                                class="pc-w620-align-center"
                                                                                                                                align="center">
                                                                                                                                <div class="pc-font-alt pc-w620-align-center"
                                                                                                                                    style="text-decoration: none;">
                                                                                                                                    <div
                                                                                                                                        style="font-size:16px;line-height:22px;text-align:center;text-align-last:center;color:#eeb798;font-family:'Nunito', Arial, Helvetica, sans-serif;letter-spacing:0px;font-style:normal;">
                                                                                                                                        <div
                                                                                                                                            style="font-family:'Nunito', Arial, Helvetica, sans-serif;">
                                                                                                                                            <span
                                                                                                                                                style="font-family: 'Nunito', Arial, Helvetica, sans-serif; font-size: 16px; line-height: 22px; font-weight: 400;">$320</span>
                                                                                                                                        </div>
                                                                                                                                    </div>
                                                                                                                                </div>
                                                                                                                            </td>
                                                                                                                        </tr>
                                                                                                                    </table>
                                                                                                                </td>
                                                                                                            </tr>
                                                                                                        </table>
                                                                                                    </td>
                                                                                                </tr>
                                                                                                <tr>
                                                                                                    <td class="pc-w620-halign-center"
                                                                                                        align="center"
                                                                                                        valign="top">
                                                                                                        <table
                                                                                                            width="100%"
                                                                                                            border="0"
                                                                                                            cellpadding="0"
                                                                                                            cellspacing="0"
                                                                                                            role="presentation"
                                                                                                            style="min-width: 100%;">
                                                                                                            <tr>
                                                                                                                <th valign="top"
                                                                                                                    class="pc-w620-align-center"
                                                                                                                    align="center"
                                                                                                                    style="text-align: center; font-weight: normal;">
                                                                                                                    <!--[if mso]> <table border="0" cellpadding="0" cellspacing="0" role="presentation" class="pc-w620-align-center" align="center" style="border-collapse: separate; border-spacing: 0; margin-right: auto; margin-left: auto;"> <tr> <td valign="middle" align="center" style="border-radius: 94px 94px 94px 94px; background-color: #eeb798; text-align:center; color: #ffffff; padding: 7px 40px 10px 40px; mso-padding-left-alt: 0; margin-left:40px;" bgcolor="#eeb798"> <a class="pc-font-alt" style="display: inline-block; text-decoration: none; text-align: center;" href="https://vt.tiktok.com/ZSHnoaCXCMptt-mWt3z/" target="_blank"><span style="font-size:16px;line-height:24px;color:#383e4c;font-family:'Alata', Arial, Helvetica, sans-serif;font-style:normal;letter-spacing:-0.2px;display:inline-block;vertical-align:top;"><span style="font-family:'Alata', Arial, Helvetica, sans-serif;display:inline-block;"><span style="font-family: 'Alata', Arial, Helvetica, sans-serif; font-weight: 400; font-size: 16px; line-height: 24px;">Más información</span></span></span></a> </td> </tr> </table> <![endif]-->
                                                                                                                    <!--[if !mso]><!-- -->
                                                                                                                    <a style="display: inline-block; box-sizing: border-box; border-radius: 94px 94px 94px 94px; background-color: #eeb798; padding: 7px 40px 10px 40px; vertical-align: top; text-align: center; text-align-last: center; text-decoration: none; -webkit-text-size-adjust: none;"
                                                                                                                        href="https://vt.tiktok.com/ZSHnoaCXCMptt-mWt3z/"
                                                                                                                        target="_blank"><span
                                                                                                                            style="font-size:16px;line-height:24px;color:#383e4c;font-family:'Alata', Arial, Helvetica, sans-serif;font-style:normal;letter-spacing:-0.2px;display:inline-block;vertical-align:top;"><span
                                                                                                                                style="font-family:'Alata', Arial, Helvetica, sans-serif;display:inline-block;"><span
                                                                                                                                    style="font-family: 'Alata', Arial, Helvetica, sans-serif; font-weight: 400; font-size: 16px; line-height: 24px;">Más
                                                                                                                                    información</span></span></span></a>
                                                                                                                    <!--<![endif]-->
                                                                                                                </th>
                                                                                                            </tr>
                                                                                                        </table>
                                                                                                    </td>
                                                                                                </tr>
                                                                                            </table>
                                                                                        </td>
                                                                                    </tr>
                                                                                </table>
                                                                            </td>
                                                                        </tr>
                                                                    </tbody>
                                                                </table>
                                                            </td>
                                                        </tr>
                                                    </table>
                                                </td>
                                            </tr>
                                        </table> <!-- END MODULE: New Arrivals -->
                                    </td>
                                </tr>
                                <tr>
                                    <td valign="top"> <!-- BEGIN MODULE: Footer -->
                                        <table width="100%" border="0" cellspacing="0" cellpadding="0"
                                            role="presentation" align="center" class="pc-component"
                                            style="width: 600px; max-width: 600px;">
                                            <tr>
                                                <td class="pc-w620-spacing-0-0-0-0" width="100%" border="0"
                                                    cellspacing="0" cellpadding="0" role="presentation">
                                                    <table align="center" width="100%" border="0" cellspacing="0"
                                                        cellpadding="0" role="presentation">
                                                        <tr>
                                                            <td valign="top" class="pc-w620-padding-30-30-30-30"
                                                                style="padding: 40px 40px 40px 40px; height: unset; background-color: #464d5d;"
                                                                bgcolor="#464d5d">
                                                                <table width="100%" border="0" cellpadding="0"
                                                                    cellspacing="0" role="presentation">
                                                                    <tr>
                                                                        <td class="pc-w620-align-center" align="center"
                                                                            valign="top"
                                                                            style="padding: 0px 0px 30px 0px; height: auto;">
                                                                            <table border="0" cellpadding="0"
                                                                                cellspacing="0" role="presentation"
                                                                                class="pc-w620-align-center"
                                                                                width="100%"
                                                                                style="margin-right: auto; margin-left: auto;">
                                                                                <tr>
                                                                                    <td valign="top"
                                                                                        class="pc-w620-align-center"
                                                                                        align="center">
                                                                                        <div class="pc-font-alt pc-w620-align-center"
                                                                                            style="text-decoration: none;">
                                                                                            <div
                                                                                                style="font-size:17px;line-height:170%;text-align:center;text-align-last:center;color:#dacabb;font-family:'Nunito', Arial, Helvetica, sans-serif;font-style:normal;letter-spacing:0px;">
                                                                                                <div
                                                                                                    style="font-family:'Nunito', Arial, Helvetica, sans-serif;">
                                                                                                    <span
                                                                                                        style="font-family: 'Nunito', Arial, Helvetica, sans-serif; font-weight: 400; font-size: 17px; line-height: 170%;">Si
                                                                                                        estás interesado
                                                                                                        en la
                                                                                                        colaboración
                                                                                                        mencionada
                                                                                                        anteriormente,
                                                                                                    </span><span
                                                                                                        style="font-family: 'Nunito', Arial, Helvetica, sans-serif; font-weight: 700; font-size: 17px; line-height: 170%;">responde
                                                                                                        directamente a
                                                                                                        este correo o
                                                                                                        agrégame en
                                                                                                        WhatsApp:
                                                                                                    </span><a
                                                                                                        href="https://wa.me/15123638160"
                                                                                                        target="_blank"
                                                                                                        rel="noreferrer"
                                                                                                        style="text-decoration:none;color:inherit;color: rgb(218, 202, 187); font-family: 'Nunito', Arial, Helvetica, sans-serif;"><span
                                                                                                            style="font-family: 'Nunito', Arial, Helvetica, sans-serif; font-weight: 700; font-size: 17px; line-height: 170%; text-decoration: underline;">+1
                                                                                                            512-363-8160</span></a><span
                                                                                                        style="font-family: 'Nunito', Arial, Helvetica, sans-serif; font-weight: 400; font-size: 17px; line-height: 170%;">.
                                                                                                        ¡Estamos muy
                                                                                                        emocionados de
                                                                                                        crear juntos el
                                                                                                        próximo éxito en
                                                                                                        TikTok!</span>
                                                                                                </div>
                                                                                                <div
                                                                                                    style="font-family:'Nunito', Arial, Helvetica, sans-serif;">
                                                                                                    <span
                                                                                                        style="font-family: 'Nunito', Arial, Helvetica, sans-serif; font-weight: 400; font-size: 17px; line-height: 170%;">Gracias
                                                                                                        por tu tiempo,
                                                                                                        ¡esperamos
                                                                                                        buenas noticias
                                                                                                        💖!</span>
                                                                                                </div>
                                                                                                <div
                                                                                                    style="font-family:'Nunito', Arial, Helvetica, sans-serif;">
                                                                                                    <span
                                                                                                        style="font-family: 'Nunito', Arial, Helvetica, sans-serif; font-weight: 700; font-size: 17px; line-height: 170%;">¡Éxitos
                                                                                                        en tu
                                                                                                        creación!</span><span
                                                                                                        style="font-family: 'Nunito', Arial, Helvetica, sans-serif; font-weight: 400; font-size: 17px; line-height: 170%;">
                                                                                                    </span><span
                                                                                                        style="font-family: 'Nunito', Arial, Helvetica, sans-serif; font-weight: 700; font-size: 17px; line-height: 170%;">fajamia
                                                                                                        | [</span><a
                                                                                                        href="https://vt.tiktok.com/ZSDHYD8uh/?page=TikTokShop"
                                                                                                        target="_blank"
                                                                                                        rel="noreferrer"
                                                                                                        style="text-decoration:none;color:inherit;color: rgb(218, 202, 187); font-family: 'Nunito', Arial, Helvetica, sans-serif;"><span
                                                                                                            style="font-family: 'Nunito', Arial, Helvetica, sans-serif; font-weight: 700; font-size: 17px; line-height: 170%; text-decoration: underline;">Enlace
                                                                                                            directo a la
                                                                                                            tienda</span></a><span
                                                                                                        style="font-family: 'Nunito', Arial, Helvetica, sans-serif; font-weight: 700; font-size: 17px; line-height: 170%;">]</span>
                                                                                                </div>
                                                                                            </div>
                                                                                        </div>
                                                                                    </td>
                                                                                </tr>
                                                                            </table>
                                                                        </td>
                                                                    </tr>
                                                                </table>
                                                                <table width="100%" border="0" cellpadding="0"
                                                                    cellspacing="0" role="presentation">
                                                                    <tr>
                                                                        <td align="center"
                                                                            style="padding: 20px 0px 0px 0px;">
                                                                            <table align="center" border="0"
                                                                                cellpadding="0" cellspacing="0"
                                                                                role="presentation">
                                                                                <tr>
                                                                                    <td style="width:unset;"
                                                                                        valign="top">
                                                                                        <table class="pc-width-hug"
                                                                                            align="center" border="0"
                                                                                            cellpadding="0"
                                                                                            cellspacing="0"
                                                                                            role="presentation">
                                                                                            <tbody>
                                                                                                <tr>
                                                                                                    <td class="pc-g-rpt pc-g-rpb pc-w620-itemsVSpacings-0"
                                                                                                        valign="middle"
                                                                                                        style="padding-top: 0px; padding-bottom: 0px;">
                                                                                                        <table
                                                                                                            style="width: 100%;"
                                                                                                            border="0"
                                                                                                            cellpadding="0"
                                                                                                            cellspacing="0"
                                                                                                            role="presentation">
                                                                                                            <tr>
                                                                                                                <td align="center"
                                                                                                                    valign="middle">
                                                                                                                    <table
                                                                                                                        width="100%"
                                                                                                                        border="0"
                                                                                                                        cellpadding="0"
                                                                                                                        cellspacing="0"
                                                                                                                        role="presentation">
                                                                                                                        <tr>
                                                                                                                            <td align="center"
                                                                                                                                valign="top"
                                                                                                                                style="line-height: 1px; font-size: 1px;">
                                                                                                                                <a class="pc-font-alt"
                                                                                                                                    href="https://www.instagram.com/fajamia/"
                                                                                                                                    target="_blank"
                                                                                                                                    style="text-decoration: none; display: inline-block; vertical-align: top;">
                                                                                                                                    <img src="https://www.micdu.com/wp-content/uploads/2025/09/ins.png"
                                                                                                                                        class=""
                                                                                                                                        width="20"
                                                                                                                                        height="20"
                                                                                                                                        style="display: block; border: 0; outline: 0; line-height: 100%; -ms-interpolation-mode: bicubic; width: 20px; height: 20px;"
                                                                                                                                         />
                                                                                                                                </a>
                                                                                                                            </td>
                                                                                                                        </tr>
                                                                                                                    </table>
                                                                                                                </td>
                                                                                                            </tr>
                                                                                                        </table>
                                                                                                    </td>
                                                                                                    <td class="pc-w620-itemsHSpacings-20"
                                                                                                        valign="middle"
                                                                                                        style="padding-right: 20px; padding-left: 20px;" />
                                                                                                    <td class="pc-g-rpt pc-g-rpb pc-w620-itemsVSpacings-0"
                                                                                                        valign="middle"
                                                                                                        style="padding-top: 0px; padding-bottom: 0px;">
                                                                                                        <a class="pc-font-alt"
                                                                                                            href="https://www.tiktok.com/@ella.maria166?_t=ZS-8zvddAPvF0E&_r=1"
                                                                                                            target="_blank"
                                                                                                            style="text-decoration: none; display: inline-block; vertical-align: top;">
                                                                                                            <img src="https://www.micdu.com/wp-content/uploads/2025/09/tiktok.png"
                                                                                                                class=""
                                                                                                                width="20"
                                                                                                                height="20"
                                                                                                                style="display: block; border: 0; outline: 0; line-height: 100%; -ms-interpolation-mode: bicubic; width: 20px; height: 20px;"
                                                                                                                 />
                                                                                                        </a>
                                                                                                    </td>
                                                                                                    <td class="pc-w620-itemsHSpacings-20"
                                                                                                        valign="middle"
                                                                                                        style="padding-right: 20px; padding-left: 20px;" />
                                                                                                    <td class="pc-g-rpt pc-g-rpb pc-w620-itemsVSpacings-0"
                                                                                                        valign="middle"
                                                                                                        style="padding-top: 0px; padding-bottom: 0px;">
                                                                                                        <a class="pc-font-alt"
                                                                                                            href="https://wa.me/15123638160"
                                                                                                            target="_blank"
                                                                                                            style="text-decoration: none; display: inline-block; vertical-align: top;">
                                                                                                            <img src="https://www.micdu.com/wp-content/uploads/2025/09/whatsapp.png"
                                                                                                                class=""
                                                                                                                width="20"
                                                                                                                height="20"
                                                                                                                style="display: block; border: 0; outline: 0; line-height: 100%; -ms-interpolation-mode: bicubic; width: 20px; height: 20px;"
                                                                                                                 />
                                                                                                        </a>
                                                                                                    </td>
                                                                                                </tr>
                                                                                            </tbody>
                                                                                        </table>
                                                                                    </td>
                                                                                </tr>
                                                                            </table>
                                                                        </td>
                                                                    </tr>
                                                                </table>
                                                            </td>
                                                        </tr>
                                                    </table>
                                                </td>
                                            </tr>
                                        </table> <!-- END MODULE: Footer -->
                                    </td>
                                </tr>
                            </table>
                        </td>
                    </tr>
                </table>
            </td>
        </tr>
    </table>
</body>

</html>
<!DOCTYPE HTML
    PUBLIC "-//W3C//DTD XHTML 1.0 Transitional //EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:v="urn:schemas-microsoft-com:vml"
    xmlns:o="urn:schemas-microsoft-com:office:office">

<head>
    <!--[if gte mso 9]>
<xml>
  <o:OfficeDocumentSettings>
    <o:AllowPNG/>
    <o:PixelsPerInch>96</o:PixelsPerInch>
  </o:OfficeDocumentSettings>
</xml>
<![endif]-->
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta name="x-apple-disable-message-reformatting">
    <!--[if !mso]><!-->
    <meta http-equiv="X-UA-Compatible" content="IE=edge"><!--<![endif]-->
    <title></title>

    <style type="text/css">
        @media only screen and (min-width: 620px) {
            .u-row {
                width: 600px !important;
            }

            .u-row .u-col {
                vertical-align: top;
            }


            .u-row .u-col-33p33 {
                width: 199.98px !important;
            }


            .u-row .u-col-66p67 {
                width: 400.02px !important;
            }


            .u-row .u-col-100 {
                width: 600px !important;
            }

        }

        @media only screen and (max-width: 620px) {
            .u-row-container {
                max-width: 100% !important;
                padding-left: 0px !important;
                padding-right: 0px !important;
            }

            .u-row {
                width: 100% !important;
            }

            .u-row .u-col {
                display: block !important;
                width: 100% !important;
                min-width: 320px !important;
                max-width: 100% !important;
            }

            .u-row .u-col>div {
                margin: 0 auto;
            }


            .u-row .u-col img {
                max-width: 100% !important;
            }

        }

        body {
            margin: 0;
            padding: 0
        }

        table,
        td,
        tr {
            border-collapse: collapse;
            vertical-align: top
        }

        .ie-container table,
        .mso-container table {
            table-layout: fixed
        }

        * {
            line-height: inherit
        }

        a[x-apple-data-detectors=true] {
            color: inherit !important;
            text-decoration: none !important
        }


        table,
        td {
            color: #000000;
        }

        @media (max-width: 480px) {
            #u_content_image_1 .v-container-padding-padding {
                padding: 10px 10px 36px !important;
            }

            #u_content_image_2 .v-container-padding-padding {
                padding: 40px 10px 0px !important;
            }

            #u_content_image_2 .v-src-width {
                width: 50% !important;
            }

            #u_content_image_2 .v-src-max-width {
                max-width: 50% !important;
            }

            #u_content_heading_4 .v-container-padding-padding {
                padding: 20px 10px 0px !important;
            }

            #u_content_heading_4 .v-text-align {
                text-align: center !important;
            }

            #u_content_social_1 .v-container-padding-padding {
                padding: 10px 10px 10px 55px !important;
            }

            #u_content_text_deprecated_2 .v-container-padding-padding {
                padding: 0px 10px 30px !important;
            }

            #u_content_text_deprecated_2 .v-text-align {
                text-align: center !important;
            }
        }
    </style>



    <!--[if !mso]><!-->
    <link href="https://fonts.googleapis.com/css?family=Open+Sans:400,700&display=swap" rel="stylesheet"
        type="text/css">
    <link href="https://fonts.googleapis.com/css?family=Open+Sans:400,700&display=swap" rel="stylesheet"
        type="text/css">
    <link href="https://fonts.googleapis.com/css2?family=Great+Vibes&display=swap" rel="stylesheet" type="text/css">
    <!--<![endif]-->

</head>

<body class="clean-body u_body"
    style="margin: 0;padding: 0;-webkit-text-size-adjust: 100%;background-color: #ffffff;color: #000000">
    <!--[if IE]><div class="ie-container"><![endif]-->
    <!--[if mso]><div class="mso-container"><![endif]-->
    <table role="presentation" id="u_body"
        style="border-collapse: collapse;table-layout: fixed;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;vertical-align: top;min-width: 320px;Margin: 0 auto;background-color: #ffffff;width:100%"
        cellpadding="0" cellspacing="0">
        <tbody>
            <tr style="vertical-align: top">
                <td style="word-break: break-word;border-collapse: collapse !important;vertical-align: top">
                    <!--[if (mso)|(IE)]><table role="presentation" width="100%" cellpadding="0" cellspacing="0" border="0"><tr><td align="center" style="background-color: #ffffff;"><![endif]-->



                    <!--[if gte mso 9]>
      <table role="presentation" cellpadding="0" cellspacing="0" border="0" style="margin: 0 auto;min-width: 320px;max-width: 600px;">
        <tr>
          <td background="https://assets.unlayer.com/projects/0/1758791443554-______.png" valign="top" width="100%">
      <v:rect xmlns:v="urn:schemas-microsoft-com:vml" fill="true" stroke="false" style="width: 600px;">
        <v:fill type="frame" src="https://assets.unlayer.com/projects/0/1758791443554-______.png" /><v:textbox style="mso-fit-shape-to-text:true" inset="0,0,0,0">
      <![endif]-->

                    <div class="u-row-container"
                        style="padding: 0px;background-image: url('images/image-6.png');background-repeat: no-repeat;background-position: center top;background-color: transparent">
                        <div class="u-row"
                            style="margin: 0 auto;min-width: 320px;max-width: 600px;overflow-wrap: break-word;word-wrap: break-word;word-break: break-word;background-color: transparent;">
                            <div
                                style="border-collapse: collapse;display: table;width: 100%;height: 100%;background-color: transparent;">
                                <!--[if (mso)|(IE)]><table role="presentation" width="100%" cellpadding="0" cellspacing="0" border="0"><tr><td style="padding: 0px;background-image: url('images/image-6.png');background-repeat: no-repeat;background-position: center top;background-color: transparent;" align="center"><table role="presentation" cellpadding="0" cellspacing="0" border="0" style="width:600px;"><tr style="background-color: transparent;"><![endif]-->

                                <!--[if (mso)|(IE)]><td align="center" width="600" style="width: 600px;padding: 0px;border-top: 0px solid transparent;border-left: 0px solid transparent;border-right: 0px solid transparent;border-bottom: 0px solid transparent;" valign="top"><![endif]-->
                                <div class="u-col u-col-100"
                                    style="max-width: 320px;min-width: 600px;display: table-cell;vertical-align: top;">
                                    <div style="height: 100%;width: 100% !important;">
                                        <!--[if (!mso)&(!IE)]><!-->
                                        <div
                                            style="box-sizing: border-box; height: 100%; padding: 0px;border-top: 0px solid transparent;border-left: 0px solid transparent;border-right: 0px solid transparent;border-bottom: 0px solid transparent;">
                                            <!--<![endif]-->

                                            <table style="font-family:'Open Sans',sans-serif;" role="presentation"
                                                cellpadding="0" cellspacing="0" width="100%" border="0">
                                                <tbody>
                                                    <tr>
                                                        <td class="v-container-padding-padding"
                                                            style="overflow-wrap:break-word;word-break:break-word;padding:10px;font-family:'Open Sans',sans-serif;"
                                                            align="left">

                                                            <!--[if mso]><table role="presentation" width="100%"><tr><td><![endif]-->
                                                            <h1 class="v-text-align"
                                                                style="margin: 0px; color: #000000; line-height: 140%; text-align: center; word-wrap: break-word; font-family: Great Vibes; font-size: 40px; font-weight: 700;">
                                                                Softline Soul</h1>
                                                            <!--[if mso]></td></tr></table><![endif]-->

                                                        </td>
                                                    </tr>
                                                </tbody>
                                            </table>

                                            <table style="font-family:'Open Sans',sans-serif;" role="presentation"
                                                cellpadding="0" cellspacing="0" width="100%" border="0">
                                                <tbody>
                                                    <tr>
                                                        <td class="v-container-padding-padding"
                                                            style="overflow-wrap:break-word;word-break:break-word;padding:10px;font-family:'Open Sans',sans-serif;"
                                                            align="left">

                                                            <div class="v-text-align"
                                                                style="font-size: 14px; line-height: 140%;  text-align: left; word-wrap: break-word;">
                                                                <p dir="ltr"
                                                                    style="text-align: justify; line-height: inherit; margin: 0px;">
                                                                    <span
                                                                        style="font-family: sans-serif; font-weight: normal;">The
                                                                        story of Softline Soul
                                                                        began with a simple belief: clothing should be
                                                                        as comfortable as a second skin,
                                                                        reflecting a quiet confidence from within. We
                                                                        create a "soft aesthetic," crafting
                                                                        each sweater not to chase fleeting trends, but
                                                                        to become a timeless, versatile piece
                                                                        in your wardrobe. Softline Soul sweater is
                                                                        selling more than 100000 clothes every
                                                                        years. When you wear Softline Soul, you’re not
                                                                        just wearing a sweater—you're
                                                                        embracing a commitment to quality and effortless
                                                                        beauty.</span>
                                                                </p>
                                                            </div>

                                                        </td>
                                                    </tr>
                                                </tbody>
                                            </table>

                                            <table id="u_content_image_1" style="font-family:'Open Sans',sans-serif;"
                                                role="presentation" cellpadding="0" cellspacing="0" width="100%"
                                                border="0">
                                                <tbody>
                                                    <tr>
                                                        <td class="v-container-padding-padding"
                                                            style="overflow-wrap:break-word;word-break:break-word;padding:10px;font-family:'Open Sans',sans-serif;"
                                                            align="left">

                                                            <table role="presentation" width="100%" cellpadding="0"
                                                                cellspacing="0" border="0">
                                                                <tr>
                                                                    <td class="v-text-align"
                                                                        style="padding-right: 0px;padding-left: 0px;"
                                                                        align="center">

                                                                        <img align="center" border="0"
                                                                            src="https://www.micdu.com/wp-content/uploads/2025/09/1758792706461-997715.png"
                                                                            alt="image" title="image"
                                                                            style="outline: none;text-decoration: none;-ms-interpolation-mode: bicubic;clear: both;display: inline-block !important;border: none;height: auto;float: none;width: 77%;max-width: 446.6px;"
                                                                            width="446.6"
                                                                            class="v-src-width v-src-max-width" />

                                                                    </td>
                                                                </tr>
                                                            </table>

                                                        </td>
                                                    </tr>
                                                </tbody>
                                            </table>

                                            <!--[if (!mso)&(!IE)]><!-->
                                        </div><!--<![endif]-->
                                    </div>
                                </div>
                                <!--[if (mso)|(IE)]></td><![endif]-->
                                <!--[if (mso)|(IE)]></tr></table></td></tr></table><![endif]-->
                            </div>
                        </div>
                    </div>

                    <!--[if gte mso 9]>
      </v:textbox></v:rect>
    </td>
    </tr>
    </table>
    <![endif]-->





                    <div class="u-row-container" style="padding: 0px;background-color: #ebe7dc">
                        <div class="u-row"
                            style="margin: 0 auto;min-width: 320px;max-width: 600px;overflow-wrap: break-word;word-wrap: break-word;word-break: break-word;background-color: transparent;">
                            <div
                                style="border-collapse: collapse;display: table;width: 100%;height: 100%;background-color: transparent;">
                                <!--[if (mso)|(IE)]><table role="presentation" width="100%" cellpadding="0" cellspacing="0" border="0"><tr><td style="padding: 0px;background-color: #ebe7dc;" align="center"><table role="presentation" cellpadding="0" cellspacing="0" border="0" style="width:600px;"><tr style="background-color: transparent;"><![endif]-->

                                <!--[if (mso)|(IE)]><td align="center" width="600" style="width: 600px;padding: 0px;border-top: 0px solid transparent;border-left: 0px solid transparent;border-right: 0px solid transparent;border-bottom: 0px solid transparent;border-radius: 0px;-webkit-border-radius: 0px; -moz-border-radius: 0px;" valign="top"><![endif]-->
                                <div class="u-col u-col-100"
                                    style="max-width: 320px;min-width: 600px;display: table-cell;vertical-align: top;">
                                    <div
                                        style="height: 100%;width: 100% !important;border-radius: 0px;-webkit-border-radius: 0px; -moz-border-radius: 0px;">
                                        <!--[if (!mso)&(!IE)]><!-->
                                        <div
                                            style="box-sizing: border-box; height: 100%; padding: 0px;border-top: 0px solid transparent;border-left: 0px solid transparent;border-right: 0px solid transparent;border-bottom: 0px solid transparent;border-radius: 0px;-webkit-border-radius: 0px; -moz-border-radius: 0px;">
                                            <!--<![endif]-->

                                            <table style="font-family:'Open Sans',sans-serif;" role="presentation"
                                                cellpadding="0" cellspacing="0" width="100%" border="0">
                                                <tbody>
                                                    <tr>
                                                        <td class="v-container-padding-padding"
                                                            style="overflow-wrap:break-word;word-break:break-word;padding:10px;font-family:'Open Sans',sans-serif;"
                                                            align="left">

                                                            <!--[if mso]><table role="presentation" width="100%"><tr><td><![endif]-->
                                                            <h1 class="v-text-align"
                                                                style="margin: 0px; line-height: 140%; text-align: left; word-wrap: break-word; font-size: 22px; font-weight: 400;">
                                                                <span>Who I am TikTok</span>
                                                            </h1>
                                                            <!--[if mso]></td></tr></table><![endif]-->

                                                        </td>
                                                    </tr>
                                                </tbody>
                                            </table>

                                            <table style="font-family:'Open Sans',sans-serif;" role="presentation"
                                                cellpadding="0" cellspacing="0" width="100%" border="0">
                                                <tbody>
                                                    <tr>
                                                        <td class="v-container-padding-padding"
                                                            style="overflow-wrap:break-word;word-break:break-word;padding:10px;font-family:'Open Sans',sans-serif;"
                                                            align="left">

                                                            <div class="v-text-align"
                                                                style="font-size: 14px; line-height: 140%;  text-align: left; word-wrap: break-word;">
                                                                <p style="line-height: inherit; margin: 0px;"><span>Hi
                                                                        Sweetie, I'm Jimmy from Softline
                                                                        Soul, a Europe women's fashion brand. We’re
                                                                        launching in the US now, and I was just
                                                                        scrolling through your content—your styling of
                                                                        our cozy sweater is fantastic! I
                                                                        think our new sweater collection would be a
                                                                        perfect fit for your aesthetic. We offer
                                                                        a generous 10% commission and free samples. Are
                                                                        you open to a collaboration</span>
                                                                </p>
                                                            </div>

                                                        </td>
                                                    </tr>
                                                </tbody>
                                            </table>

                                            <table style="font-family:'Open Sans',sans-serif;" role="presentation"
                                                cellpadding="0" cellspacing="0" width="100%" border="0">
                                                <tbody>
                                                    <tr>
                                                        <td class="v-container-padding-padding"
                                                            style="overflow-wrap:break-word;word-break:break-word;padding:10px;font-family:'Open Sans',sans-serif;"
                                                            align="left">

                                                            <!--[if mso]><table role="presentation" width="100%"><tr><td><![endif]-->
                                                            <h1 class="v-text-align"
                                                                style="margin: 0px; line-height: 140%; text-align: left; word-wrap: break-word; font-size: 22px; font-weight: 400;">
                                                                Contact Information for Receiving Samples</h1>
                                                            <!--[if mso]></td></tr></table><![endif]-->

                                                        </td>
                                                    </tr>
                                                </tbody>
                                            </table>

                                            <table style="font-family:'Open Sans',sans-serif;" role="presentation"
                                                cellpadding="0" cellspacing="0" width="100%" border="0">
                                                <tbody>
                                                    <tr>
                                                        <td class="v-container-padding-padding"
                                                            style="overflow-wrap:break-word;word-break:break-word;padding:10px;font-family:'Open Sans',sans-serif;"
                                                            align="left">

                                                            <div class="v-text-align"
                                                                style="font-size: 14px; line-height: 140%;  text-align: left; word-wrap: break-word;">
                                                                <p style="line-height: inherit; margin: 0px;"><span>1️⃣
                                                                        WhatsApp:
                                                                    </span></p>
                                                                <p dir="ltr"><span>2️⃣ Phone Number:
                                                                    </span></p>
                                                                <p dir="ltr"><span>3️⃣ Address:
                                                                    </span></p>
                                                                <p dir="ltr"><span>4️⃣ Full Name:
                                                                    </span></p>
                                                                <p dir="ltr"><span>5️⃣ Personal Email:</span></p>
                                                            </div>

                                                        </td>
                                                    </tr>
                                                </tbody>
                                            </table>

                                            <table style="font-family:'Open Sans',sans-serif;" role="presentation"
                                                cellpadding="0" cellspacing="0" width="100%" border="0">
                                                <tbody>
                                                    <tr>
                                                        <td class="v-container-padding-padding"
                                                            style="overflow-wrap:break-word;word-break:break-word;padding:10px;font-family:'Open Sans',sans-serif;"
                                                            align="left">

                                                            <!--[if mso]><table role="presentation" width="100%"><tr><td><![endif]-->
                                                            <h1 class="v-text-align"
                                                                style="margin: 0px; line-height: 140%; text-align: left; word-wrap: break-word; font-size: 22px; font-weight: 400;">
                                                                Why Join Us</h1>
                                                            <!--[if mso]></td></tr></table><![endif]-->

                                                        </td>
                                                    </tr>
                                                </tbody>
                                            </table>

                                            <table style="font-family:'Open Sans',sans-serif;" role="presentation"
                                                cellpadding="0" cellspacing="0" width="100%" border="0">
                                                <tbody>
                                                    <tr>
                                                        <td class="v-container-padding-padding"
                                                            style="overflow-wrap:break-word;word-break:break-word;padding:10px;font-family:'Open Sans',sans-serif;"
                                                            align="left">

                                                            <div class="v-text-align"
                                                                style="font-size: 14px; line-height: 140%;  text-align: left; word-wrap: break-word;">
                                                                <p dir="ltr" style="line-height: inherit; margin: 0px;">
                                                                    <span style="font-family: inherit;">✅Free
                                                                        Samples</span>
                                                                </p>
                                                                <p dir="ltr"><span style="font-family: inherit;">✅10%
                                                                        commission +tiered bonuses
                                                                        (30-90$)+ $200 ad fee</span></p>
                                                                <p dir="ltr"><span style="font-family: inherit;">✅Viral
                                                                        Scripts & Exclusive
                                                                        Information</span></p>
                                                                <p dir="ltr"><span style="font-family: inherit;">✅Early
                                                                        access to new launches & VIP
                                                                        benefits</span></p>
                                                                <p dir="ltr"><span style="font-family: inherit;">Many
                                                                        creators are making 1000+ dollar
                                                                        /month—you could be next</span></p>
                                                            </div>

                                                        </td>
                                                    </tr>
                                                </tbody>
                                            </table>

                                            <!--[if (!mso)&(!IE)]><!-->
                                        </div><!--<![endif]-->
                                    </div>
                                </div>
                                <!--[if (mso)|(IE)]></td><![endif]-->
                                <!--[if (mso)|(IE)]></tr></table></td></tr></table><![endif]-->
                            </div>
                        </div>
                    </div>





                    <div class="u-row-container" style="padding: 0px;background-color: transparent">
                        <div class="u-row"
                            style="margin: 0 auto;min-width: 320px;max-width: 600px;overflow-wrap: break-word;word-wrap: break-word;word-break: break-word;background-color: transparent;">
                            <div
                                style="border-collapse: collapse;display: table;width: 100%;height: 100%;background-color: transparent;">
                                <!--[if (mso)|(IE)]><table role="presentation" width="100%" cellpadding="0" cellspacing="0" border="0"><tr><td style="padding: 0px;background-color: transparent;" align="center"><table role="presentation" cellpadding="0" cellspacing="0" border="0" style="width:600px;"><tr style="background-color: transparent;"><![endif]-->

                                <!--[if (mso)|(IE)]><td align="center" width="200" style="width: 200px;padding: 0px;border-top: 0px solid transparent;border-left: 0px solid transparent;border-right: 0px solid transparent;border-bottom: 0px solid transparent;border-radius: 0px;-webkit-border-radius: 0px; -moz-border-radius: 0px;" valign="top"><![endif]-->
                                <div class="u-col u-col-33p33"
                                    style="max-width: 320px;min-width: 200px;display: table-cell;vertical-align: top;">
                                    <div
                                        style="height: 100%;width: 100% !important;border-radius: 0px;-webkit-border-radius: 0px; -moz-border-radius: 0px;">
                                        <!--[if (!mso)&(!IE)]><!-->
                                        <div
                                            style="box-sizing: border-box; height: 100%; padding: 0px;border-top: 0px solid transparent;border-left: 0px solid transparent;border-right: 0px solid transparent;border-bottom: 0px solid transparent;border-radius: 0px;-webkit-border-radius: 0px; -moz-border-radius: 0px;">
                                            <!--<![endif]-->

                                            <table id="u_content_image_2" style="font-family:'Open Sans',sans-serif;"
                                                role="presentation" cellpadding="0" cellspacing="0" width="100%"
                                                border="0">
                                                <tbody>
                                                    <tr>
                                                        <td class="v-container-padding-padding"
                                                            style="overflow-wrap:break-word;word-break:break-word;padding:50px 10px 30px;font-family:'Open Sans',sans-serif;"
                                                            align="left">

                                                            <table role="presentation" width="100%" cellpadding="0"
                                                                cellspacing="0" border="0">
                                                                <tr>
                                                                    <td class="v-text-align"
                                                                        style="padding-right: 0px;padding-left: 0px;"
                                                                        align="center">

                                                                        <img align="center" border="0"
                                                                            src="https://www.micdu.com/wp-content/uploads/2025/09/未标题-1.png"
                                                                            alt="image" title="image"
                                                                            style="outline: none;text-decoration: none;-ms-interpolation-mode: bicubic;clear: both;display: inline-block !important;border: none;height: auto;float: none;width: 91%;max-width: 163.8px;"
                                                                            width="163.8"
                                                                            class="v-src-width v-src-max-width" />

                                                                    </td>
                                                                </tr>
                                                            </table>

                                                        </td>
                                                    </tr>
                                                </tbody>
                                            </table>

                                            <!--[if (!mso)&(!IE)]><!-->
                                        </div><!--<![endif]-->
                                    </div>
                                </div>
                                <!--[if (mso)|(IE)]></td><![endif]-->
                                <!--[if (mso)|(IE)]><td align="center" width="400" style="width: 400px;padding: 0px;border-top: 0px solid transparent;border-left: 0px solid transparent;border-right: 0px solid transparent;border-bottom: 0px solid transparent;border-radius: 0px;-webkit-border-radius: 0px; -moz-border-radius: 0px;" valign="top"><![endif]-->
                                <div class="u-col u-col-66p67"
                                    style="max-width: 320px;min-width: 400px;display: table-cell;vertical-align: top;">
                                    <div
                                        style="height: 100%;width: 100% !important;border-radius: 0px;-webkit-border-radius: 0px; -moz-border-radius: 0px;">
                                        <!--[if (!mso)&(!IE)]><!-->
                                        <div
                                            style="box-sizing: border-box; height: 100%; padding: 0px;border-top: 0px solid transparent;border-left: 0px solid transparent;border-right: 0px solid transparent;border-bottom: 0px solid transparent;border-radius: 0px;-webkit-border-radius: 0px; -moz-border-radius: 0px;">
                                            <!--<![endif]-->

                                            <table id="u_content_heading_4" style="font-family:'Open Sans',sans-serif;"
                                                role="presentation" cellpadding="0" cellspacing="0" width="100%"
                                                border="0">
                                                <tbody>
                                                    <tr>
                                                        <td class="v-container-padding-padding"
                                                            style="overflow-wrap:break-word;word-break:break-word;padding:65px 10px 0px;font-family:'Open Sans',sans-serif;"
                                                            align="left">

                                                            <!--[if mso]><table role="presentation" width="100%"><tr><td><![endif]-->
                                                            <h1 class="v-text-align"
                                                                style="margin: 0px; line-height: 140%; text-align: left; word-wrap: break-word; font-family: 'Open Sans',sans-serif; font-size: 22px; font-weight: 400;">
                                                                Jimmy</h1>
                                                            <!--[if mso]></td></tr></table><![endif]-->

                                                        </td>
                                                    </tr>
                                                </tbody>
                                            </table>

                                            <table id="u_content_social_1" style="font-family:'Open Sans',sans-serif;"
                                                role="presentation" cellpadding="0" cellspacing="0" width="100%"
                                                border="0">
                                                <tbody>
                                                    <tr>
                                                        <td class="v-container-padding-padding"
                                                            style="overflow-wrap:break-word;word-break:break-word;padding:10px;font-family:'Open Sans',sans-serif;"
                                                            align="left">

                                                            <div align="left" style="direction: ltr;"
                                                                aria-label="social">
                                                                <div style="display: table; max-width:125px;">
                                                                    <!--[if (mso)|(IE)]><table role="presentation" width="125" cellpadding="0" cellspacing="0" border="0"><tr><td style="border-collapse:collapse;" align="left"><table role="presentation" width="100%" cellpadding="0" cellspacing="0" border="0" style="border-collapse:collapse; mso-table-lspace: 0pt;mso-table-rspace: 0pt; width:125px;"><tr><![endif]-->


                                                                    <!--[if (mso)|(IE)]><td width="32" style="width:32px; padding-right: 10px;" valign="top"><![endif]-->
                                                                    <table role="presentation"
                                                                        aria-label="WhatsApp icon" border="0"
                                                                        cellspacing="0" cellpadding="0" width="32"
                                                                        height="32"
                                                                        style="width: 32px !important;height: 32px !important;display: inline-block;border-collapse: collapse;table-layout: fixed;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;vertical-align: top;margin-right: 10px">
                                                                        <tbody>
                                                                            <tr style="vertical-align: top">
                                                                                <td valign="middle"
                                                                                    style="word-break: break-word;border-collapse: collapse !important;vertical-align: top">
                                                                                    <a href="https://wa.me/8613318827114"
                                                                                        title="WhatsApp" target="_blank"
                                                                                        style="color: rgb(0, 0, 238); text-decoration: underline; line-height: inherit;"><img
                                                                                            src="https://www.micdu.com/wp-content/uploads/2025/09/what.png"
                                                                                            alt="WhatsApp icon"
                                                                                            title="WhatsApp" width="32"
                                                                                            style="outline: none;text-decoration: none;-ms-interpolation-mode: bicubic;clear: both;display: block !important;border: none;height: auto;float: none;max-width: 32px !important">
                                                                                    </a>
                                                                                </td>
                                                                            </tr>
                                                                        </tbody>
                                                                    </table>
                                                                    <!--[if (mso)|(IE)]></td><![endif]-->

                                                                    <!--[if (mso)|(IE)]><td width="32" style="width:32px; padding-right: 10px;" valign="top"><![endif]-->
                                                                    <table role="presentation" aria-label="TikTok icon"
                                                                        border="0" cellspacing="0" cellpadding="0"
                                                                        width="32" height="32"
                                                                        style="width: 32px !important;height: 32px !important;display: inline-block;border-collapse: collapse;table-layout: fixed;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;vertical-align: top;margin-right: 10px">
                                                                        <tbody>
                                                                            <tr style="vertical-align: top">
                                                                                <td valign="middle"
                                                                                    style="word-break: break-word;border-collapse: collapse !important;vertical-align: top">
                                                                                    <a href="https://www.tiktok.com/@bella66360"
                                                                                        title="TikTok" target="_blank"
                                                                                        style="color: rgb(0, 0, 238); text-decoration: underline; line-height: inherit;"><img
                                                                                            src="https://www.micdu.com/wp-content/uploads/2025/09/tk.png"
                                                                                            alt="TikTok icon"
                                                                                            title="TikTok" width="32"
                                                                                            style="outline: none;text-decoration: none;-ms-interpolation-mode: bicubic;clear: both;display: block !important;border: none;height: auto;float: none;max-width: 32px !important">
                                                                                    </a>
                                                                                </td>
                                                                            </tr>
                                                                        </tbody>
                                                                    </table>
                                                                    <!--[if (mso)|(IE)]></td><![endif]-->

                                                                    <!--[if (mso)|(IE)]><td width="32" style="width:32px; padding-right: 0px;" valign="top"><![endif]-->
                                                                    <table role="presentation" aria-label="Email icon"
                                                                        border="0" cellspacing="0" cellpadding="0"
                                                                        width="32" height="32"
                                                                        style="width: 32px !important;height: 32px !important;display: inline-block;border-collapse: collapse;table-layout: fixed;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;vertical-align: top;margin-right: 0px">
                                                                        <tbody>
                                                                            <tr style="vertical-align: top">
                                                                                <td valign="middle"
                                                                                    style="word-break: break-word;border-collapse: collapse !important;vertical-align: top">
                                                                                    <a href="mailto:mail:[email protected]"
                                                                                        title="Email" target="_blank"
                                                                                        style="color: rgb(0, 0, 238); text-decoration: underline; line-height: inherit;"><img
                                                                                            src="https://www.micdu.com/wp-content/uploads/2025/09/email.png"
                                                                                            alt="Email icon"
                                                                                            title="Email" width="32"
                                                                                            style="outline: none;text-decoration: none;-ms-interpolation-mode: bicubic;clear: both;display: block !important;border: none;height: auto;float: none;max-width: 32px !important">
                                                                                    </a>
                                                                                </td>
                                                                            </tr>
                                                                        </tbody>
                                                                    </table>
                                                                    <!--[if (mso)|(IE)]></td><![endif]-->


                                                                    <!--[if (mso)|(IE)]></tr></table></td></tr></table><![endif]-->
                                                                </div>
                                                            </div>

                                                        </td>
                                                    </tr>
                                                </tbody>
                                            </table>

                                            <table id="u_content_text_deprecated_2"
                                                style="font-family:'Open Sans',sans-serif;" role="presentation"
                                                cellpadding="0" cellspacing="0" width="100%" border="0">
                                                <tbody>
                                                    <tr>
                                                        <td class="v-container-padding-padding"
                                                            style="overflow-wrap:break-word;word-break:break-word;padding:0px 10px 10px;font-family:'Open Sans',sans-serif;"
                                                            align="left">

                                                            <div class="v-text-align"
                                                                style="font-size: 14px; color: #3d3d3d; line-height: 140%; text-align: left; word-wrap: break-word;">
                                                                <p
                                                                    style="font-size: 14px; line-height: 140%; margin: 0px;">
                                                                    <span
                                                                        style="font-family: 'Open Sans', sans-serif; font-size: 14px; line-height: 19.6px;"><a
                                                                            rel="noopener"
                                                                            href="https://wa.me/8613318827114"
                                                                            target="_blank">+86
                                                                            133-1882-7114</a> |
                                                                        [email protected]</span>
                                                                </p>
                                                            </div>

                                                        </td>
                                                    </tr>
                                                </tbody>
                                            </table>

                                            <!--[if (!mso)&(!IE)]><!-->
                                        </div><!--<![endif]-->
                                    </div>
                                </div>
                                <!--[if (mso)|(IE)]></td><![endif]-->
                                <!--[if (mso)|(IE)]></tr></table></td></tr></table><![endif]-->
                            </div>
                        </div>
                    </div>



                    <!--[if (mso)|(IE)]></td></tr></table><![endif]-->
                </td>
            </tr>
        </tbody>
    </table>
    <!--[if mso]></div><![endif]-->
    <!--[if IE]></div><![endif]-->
</body>

</html>
<table id="u_body" style="border-collapse: collapse; table-layout: fixed; border-spacing: 0; mso-table-lspace: 0pt; mso-table-rspace: 0pt; vertical-align: top; min-width: 320px; margin: 0 auto; background-color: #ffffff; width: 100%;" role="presentation" cellspacing="0" cellpadding="0">
<tbody>
<tr style="vertical-align: top;">
<td style="word-break: break-word; border-collapse: collapse !important; vertical-align: top;">
<div class="u-row-container" style="padding: 0px; background-image: url('images/image-6.png'); background-repeat: no-repeat; background-position: center top; background-color: transparent;">
<div class="u-row" style="margin: 0 auto; min-width: 320px; max-width: 600px; overflow-wrap: break-word; word-wrap: break-word; word-break: break-word; background-color: transparent;">
<div style="border-collapse: collapse; display: table; width: 100%; height: 100%; background-color: transparent;">
<div class="u-col u-col-100" style="max-width: 320px; min-width: 600px; display: table-cell; vertical-align: top;">
<div style="height: 100%; width: 100% !important;">
<div style="box-sizing: border-box; height: 100%; padding: 0px; border: 0px solid transparent;">
<table style="font-family: 'Open Sans',sans-serif;" role="presentation" border="0" width="100%" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td class="v-container-padding-padding" style="overflow-wrap: break-word; word-break: break-word; padding: 10px; font-family: 'Open Sans',sans-serif;" align="left">
<h1 class="v-text-align" style="margin: 0px; color: #000000; line-height: 140%; text-align: center; word-wrap: break-word; font-family: Great Vibes; font-size: 40px; font-weight: bold;">Softline Soul</h1>
</td>
</tr>
</tbody>
</table>
<table style="font-family: 'Open Sans',sans-serif;" role="presentation" border="0" width="100%" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td class="v-container-padding-padding" style="overflow-wrap: break-word; word-break: break-word; padding: 10px; font-family: 'Open Sans',sans-serif;" align="left">
<div class="v-text-align" style="font-size: 14px; line-height: 140%; text-align: left; word-wrap: break-word;">
<p dir="ltr" style="text-align: justify; line-height: inherit; margin: 0px;"><span style="font-family: sans-serif; font-weight: normal;">The story of Softline Soul began with a simple belief: clothing should be as comfortable as a second skin, reflecting a quiet confidence from within. We create a "soft aesthetic," crafting each sweater not to chase fleeting trends, but to become a timeless, versatile piece in your wardrobe. Softline Soul sweater is selling more than 100000 clothes every years. When you wear Softline Soul, you’re not just wearing a sweater—you're embracing a commitment to quality and effortless beauty.</span></p>
</div>
</td>
</tr>
</tbody>
</table>
<table id="u_content_image_1" style="font-family: 'Open Sans',sans-serif;" role="presentation" border="0" width="100%" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td class="v-container-padding-padding" style="overflow-wrap: break-word; word-break: break-word; padding: 10px; font-family: 'Open Sans',sans-serif;" align="left">
<table role="presentation" border="0" width="100%" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td class="v-text-align" style="padding-right: 0px; padding-left: 0px;" align="center"><img class="v-src-width v-src-max-width" style="outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; clear: both; display: inline-block !important; border: none; height: auto; float: none; width: 77%; max-width: 446.6px;" title="image" src="https://www.micdu.com/wp-content/uploads/2025/09/1758792706461-997715.png" alt="image" width="446.6" align="center" border="0" /></td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="u-row-container" style="padding: 0px; background-color: #ebe7dc;">
<div class="u-row" style="margin: 0 auto; min-width: 320px; max-width: 600px; overflow-wrap: break-word; word-wrap: break-word; word-break: break-word; background-color: transparent;">
<div style="border-collapse: collapse; display: table; width: 100%; height: 100%; background-color: transparent;">
<div class="u-col u-col-100" style="max-width: 320px; min-width: 600px; display: table-cell; vertical-align: top;">
<div style="height: 100%; width: 100% !important; border-radius: 0px; -webkit-border-radius: 0px; -moz-border-radius: 0px;">
<div style="box-sizing: border-box; height: 100%; padding: 0px; border-radius: 0px; -webkit-border-radius: 0px; -moz-border-radius: 0px; border: 0px solid transparent;">
<table style="font-family: 'Open Sans',sans-serif;" role="presentation" border="0" width="100%" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td class="v-container-padding-padding" style="overflow-wrap: break-word; word-break: break-word; padding: 10px; font-family: 'Open Sans',sans-serif;" align="left">
<h1 class="v-text-align" style="margin: 0px; line-height: 140%; text-align: left; word-wrap: break-word; font-size: 22px; font-weight: 400;">Who I am TikTok</h1>
</td>
</tr>
</tbody>
</table>
<table style="font-family: 'Open Sans',sans-serif;" role="presentation" border="0" width="100%" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td class="v-container-padding-padding" style="overflow-wrap: break-word; word-break: break-word; padding: 10px; font-family: 'Open Sans',sans-serif;" align="left">
<div class="v-text-align" style="font-size: 14px; line-height: 140%; text-align: left; word-wrap: break-word;">
<p style="line-height: inherit; margin: 0px;">Hi Sweetie, I'm Jimmy from Softline Soul, a Europe women's fashion brand. We’re launching in the US now, and I was just scrolling through your content—your styling of our cozy sweater is fantastic! I think our new sweater collection would be a perfect fit for your aesthetic. We offer a generous 10% commission and free samples. Are you open to a collaboration</p>
</div>
</td>
</tr>
</tbody>
</table>
<table style="font-family: 'Open Sans',sans-serif;" role="presentation" border="0" width="100%" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td class="v-container-padding-padding" style="overflow-wrap: break-word; word-break: break-word; padding: 10px; font-family: 'Open Sans',sans-serif;" align="left">
<h1 class="v-text-align" style="margin: 0px; line-height: 140%; text-align: left; word-wrap: break-word; font-size: 22px; font-weight: 400;">Contact Information for Receiving Samples</h1>
</td>
</tr>
</tbody>
</table>
<table style="font-family: 'Open Sans', sans-serif; height: 201.562px;" role="presentation" border="0" width="100%" cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 201.562px;">
<td class="v-container-padding-padding" style="overflow-wrap: break-word; word-break: break-word; padding: 10px; height: 201.562px;" align="left">
<div class="v-text-align" style="font-size: 14px; line-height: 140%; text-align: left; word-wrap: break-word;">
<p style="line-height: inherit; margin: 0px;">1️⃣ WhatsApp:</p>
<p dir="ltr">2️⃣ Phone Number:</p>
<p dir="ltr">3️⃣ Address:</p>
<p dir="ltr">4️⃣ Full Name:</p>
<p dir="ltr">5️⃣ Personal Email:</p>
<p dir="ltr">6️⃣ TikTok-ID:</p>
</div>
</td>
</tr>
</tbody>
</table>
<table style="font-family: 'Open Sans',sans-serif;" role="presentation" border="0" width="100%" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td class="v-container-padding-padding" style="overflow-wrap: break-word; word-break: break-word; padding: 10px; font-family: 'Open Sans',sans-serif;" align="left">
<h1 class="v-text-align" style="margin: 0px; line-height: 140%; text-align: left; word-wrap: break-word; font-size: 22px; font-weight: 400;">Why Join Us</h1>
</td>
</tr>
</tbody>
</table>
<table style="font-family: 'Open Sans',sans-serif;" role="presentation" border="0" width="100%" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td class="v-container-padding-padding" style="overflow-wrap: break-word; word-break: break-word; padding: 10px; font-family: 'Open Sans',sans-serif;" align="left">
<div class="v-text-align" style="font-size: 14px; line-height: 140%; text-align: left; word-wrap: break-word;">
<p dir="ltr" style="line-height: inherit; margin: 0px;"><span style="font-family: inherit;">✅Free Samples</span></p>
<p dir="ltr"><span style="font-family: inherit;">✅10% commission +tiered bonuses (30-90$)+ $200 ad fee</span></p>
<p dir="ltr"><span style="font-family: inherit;">✅Viral Scripts & Exclusive Information</span></p>
<p dir="ltr"><span style="font-family: inherit;">✅Early access to new launches & VIP benefits</span></p>
<p dir="ltr"><span style="font-family: inherit;">Many creators are making 1000+ dollar /month—you could be next</span></p>
</div>
</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="u-row-container" style="padding: 0px; background-color: transparent;">
<div class="u-row" style="margin: 0 auto; min-width: 320px; max-width: 600px; overflow-wrap: break-word; word-wrap: break-word; word-break: break-word; background-color: transparent;">
<div style="border-collapse: collapse; display: table; width: 100%; height: 100%; background-color: transparent;">
<div class="u-col u-col-33p33" style="max-width: 320px; min-width: 200px; display: table-cell; vertical-align: top;">
<div style="height: 100%; width: 100% !important; border-radius: 0px; -webkit-border-radius: 0px; -moz-border-radius: 0px;">
<div style="box-sizing: border-box; height: 100%; padding: 0px; border-radius: 0px; -webkit-border-radius: 0px; -moz-border-radius: 0px; border: 0px solid transparent;">
<table id="u_content_image_2" style="font-family: 'Open Sans',sans-serif;" role="presentation" border="0" width="100%" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td class="v-container-padding-padding" style="overflow-wrap: break-word; word-break: break-word; padding: 50px 10px 30px; font-family: 'Open Sans',sans-serif;" align="left">
<table role="presentation" border="0" width="100%" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td class="v-text-align" style="padding-right: 0px; padding-left: 0px;" align="center"><img class="v-src-width v-src-max-width" style="outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; clear: both; display: inline-block !important; border: none; height: auto; float: none; width: 91%; max-width: 163.8px;" title="image" src="https://www.micdu.com/wp-content/uploads/2025/09/未标题-1.png" alt="image" width="163.8" align="center" border="0" /></td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<div class="u-col u-col-66p67" style="max-width: 320px; min-width: 400px; display: table-cell; vertical-align: top;">
<div style="height: 100%; width: 100% !important; border-radius: 0px; -webkit-border-radius: 0px; -moz-border-radius: 0px;">
<div style="box-sizing: border-box; height: 100%; padding: 0px; border-radius: 0px; -webkit-border-radius: 0px; -moz-border-radius: 0px; border: 0px solid transparent;">
<table id="u_content_heading_4" style="font-family: 'Open Sans',sans-serif;" role="presentation" border="0" width="100%" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td class="v-container-padding-padding" style="overflow-wrap: break-word; word-break: break-word; padding: 65px 10px 0px; font-family: 'Open Sans',sans-serif;" align="left">
<h1 class="v-text-align" style="margin: 0px; line-height: 140%; text-align: left; word-wrap: break-word; font-family: 'Open Sans',sans-serif; font-size: 22px; font-weight: 400;">Jimmy</h1>
</td>
</tr>
</tbody>
</table>
<table id="u_content_social_1" style="font-family: 'Open Sans',sans-serif;" role="presentation" border="0" width="100%" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td class="v-container-padding-padding" style="overflow-wrap: break-word; word-break: break-word; padding: 10px; font-family: 'Open Sans',sans-serif;" align="left">
<div style="direction: ltr;" align="left" aria-label="social">
<div style="display: table; max-width: 125px;">
<table style="width: 32px !important; height: 32px !important; display: inline-block; border-collapse: collapse; table-layout: fixed; border-spacing: 0; mso-table-lspace: 0pt; mso-table-rspace: 0pt; vertical-align: top; margin-right: 10px;" role="presentation" border="0" width="32" cellspacing="0" cellpadding="0" aria-label="WhatsApp icon">
<tbody>
<tr style="vertical-align: top;">
<td style="word-break: break-word; border-collapse: collapse !important; vertical-align: top;" valign="middle"><a style="color: #0000ee; text-decoration: underline; line-height: inherit;" title="WhatsApp" href="https://wa.me/8613318827114" target="_blank" rel="noopener"><img style="outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; clear: both; display: block !important; border: none; height: auto; float: none; max-width: 32px !important;" title="WhatsApp" src="https://www.micdu.com/wp-content/uploads/2025/09/what.png" alt="WhatsApp icon" width="32" /></a></td>
</tr>
</tbody>
</table>
<table style="width: 32px !important; height: 32px !important; display: inline-block; border-collapse: collapse; table-layout: fixed; border-spacing: 0; mso-table-lspace: 0pt; mso-table-rspace: 0pt; vertical-align: top; margin-right: 10px;" role="presentation" border="0" width="32" cellspacing="0" cellpadding="0" aria-label="TikTok icon">
<tbody>
<tr style="vertical-align: top;">
<td style="word-break: break-word; border-collapse: collapse !important; vertical-align: top;" valign="middle"><a style="color: #0000ee; text-decoration: underline; line-height: inherit;" title="TikTok" href="https://www.tiktok.com/@bella66360" target="_blank" rel="noopener"><img style="outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; clear: both; display: block !important; border: none; height: auto; float: none; max-width: 32px !important;" title="TikTok" src="https://www.micdu.com/wp-content/uploads/2025/09/tk.png" alt="TikTok icon" width="32" /></a></td>
</tr>
</tbody>
</table>
<table style="width: 32px !important; height: 32px !important; display: inline-block; border-collapse: collapse; table-layout: fixed; border-spacing: 0; mso-table-lspace: 0pt; mso-table-rspace: 0pt; vertical-align: top; margin-right: 0px;" role="presentation" border="0" width="32" cellspacing="0" cellpadding="0" aria-label="Email icon">
<tbody>
<tr style="vertical-align: top;">
<td style="word-break: break-word; border-collapse: collapse !important; vertical-align: top;" valign="middle"><a style="color: #0000ee; text-decoration: underline; line-height: inherit;" title="Email" href="mailto:mail:[email protected]" target="_blank" rel="noopener"><img style="outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; clear: both; display: block !important; border: none; height: auto; float: none; max-width: 32px !important;" title="Email" src="https://www.micdu.com/wp-content/uploads/2025/09/email.png" alt="Email icon" width="32" /></a></td>
</tr>
</tbody>
</table>
</div>
</div>
</td>
</tr>
</tbody>
</table>
<table id="u_content_text_deprecated_2" style="font-family: 'Open Sans',sans-serif;" role="presentation" border="0" width="100%" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td class="v-container-padding-padding" style="overflow-wrap: break-word; word-break: break-word; padding: 0px 10px 10px; font-family: 'Open Sans',sans-serif;" align="left">
<div class="v-text-align" style="font-size: 14px; color: #3d3d3d; line-height: 140%; text-align: left; word-wrap: break-word;">
<p style="font-size: 14px; line-height: 140%; margin: 0px;"><span style="font-family: 'Open Sans', sans-serif; font-size: 14px; line-height: 19.6px;"><a href="https://wa.me/8613318827114" target="_blank" rel="noopener">+86 133-1882-7114</a></span></p>
</div>
</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
</div>
</div>
</td>
</tr>
</tbody>
</table>
<!-- [if mso]></div><![endif]-->
<p> </p>
<!-- [if IE]></div><![endif]-->
<!DOCTYPE html>
<html xmlns:v="urn:schemas-microsoft-com:vml" xmlns:o="urn:schemas-microsoft-com:office:office">

<head>
  <meta charset="UTF-8" />
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <!--[if !mso]><!-- -->
  <meta http-equiv="X-UA-Compatible" content="IE=edge" /> <!--<![endif]-->
  <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  <meta name="format-detection" content="telephone=no, date=no, address=no, email=no" />
  <meta name="x-apple-disable-message-reformatting" />
  <link href="https://fonts.googleapis.com/css?family=Nunito:ital,wght@0,400;0,700" rel="stylesheet" />
  <link href="https://fonts.googleapis.com/css?family=Alata:ital,wght@0,400" rel="stylesheet" />
  <title>Pretty Little Thing</title> <!-- Made with Postcards Email Builder by Designmodo -->
  <style>
    html,
    body {
      margin: 0 !important;
      padding: 0 !important;
      min-height: 100% !important;
      width: 100% !important;
      -webkit-font-smoothing: antialiased;
    }

    * {
      -ms-text-size-adjust: 100%;
    }

    #outlook a {
      padding: 0;
    }

    .ReadMsgBody,
    .ExternalClass {
      width: 100%;
    }

    .ExternalClass,
    .ExternalClass p,
    .ExternalClass td,
    .ExternalClass div,
    .ExternalClass span,
    .ExternalClass font {
      line-height: 100%;
    }

    table,
    td,
    th {
      mso-table-lspace: 0 !important;
      mso-table-rspace: 0 !important;
      border-collapse: collapse;
    }

    u+.body table,
    u+.body td,
    u+.body th {
      will-change: transform;
    }

    body,
    td,
    th,
    p,
    div,
    li,
    a,
    span {
      -webkit-text-size-adjust: 100%;
      -ms-text-size-adjust: 100%;
      mso-line-height-rule: exactly;
    }

    img {
      border: 0;
      outline: 0;
      line-height: 100%;
      text-decoration: none;
      -ms-interpolation-mode: bicubic;
    }

    a[x-apple-data-detectors] {
      color: inherit !important;
      text-decoration: none !important;
    }

    .body .pc-project-body {
      background-color: transparent !important;
    }

    @media screen and (-webkit-min-device-pixel-ratio:0) {
      .pc-img-h-pct {
        height: auto !important;
      }
    }

    @media (min-width: 621px) {
      .pc-lg-hide {
        display: none;
      }

      .pc-lg-bg-img-hide {
        background-image: none !important;
      }
    }
  </style>
  <style>
    @media (max-width: 620px) {
      .pc-project-body {
        min-width: 0px !important;
      }

      .pc-project-container,
      .pc-component {
        width: 100% !important;
      }

      .pc-sm-hide {
        display: none !important;
      }

      .pc-sm-bg-img-hide {
        background-image: none !important;
      }

      .pc-w620-padding-0-0-0-0 {
        padding: 0px 0px 0px 0px !important;
      }

      table.pc-w620-spacing-0-0-22-0 {
        margin: 0px 0px 22px 0px !important;
      }

      td.pc-w620-spacing-0-0-22-0,
      th.pc-w620-spacing-0-0-22-0 {
        margin: 0 !important;
        padding: 0px 0px 22px 0px !important;
      }

      .pc-w620-width-auto {
        width: auto !important;
      }

      .pc-w620-height-auto {
        height: auto !important;
      }

      table.pc-w620-spacing-0-0-30-0 {
        margin: 0px 0px 30px 0px !important;
      }

      td.pc-w620-spacing-0-0-30-0,
      th.pc-w620-spacing-0-0-30-0 {
        margin: 0 !important;
        padding: 0px 0px 30px 0px !important;
      }

      .pc-w620-padding-30-30-30-30 {
        padding: 30px 30px 30px 30px !important;
      }

      table.pc-w620-spacing-0-0-0-0 {
        margin: 0px 0px 0px 0px !important;
      }

      td.pc-w620-spacing-0-0-0-0,
      th.pc-w620-spacing-0-0-0-0 {
        margin: 0 !important;
        padding: 0px 0px 0px 0px !important;
      }

      .pc-w620-itemsVSpacings-0 {
        padding-top: 0px !important;
        padding-bottom: 0px !important;
      }

      .pc-w620-itemsHSpacings-15 {
        padding-left: 7.5px !important;
        padding-right: 7.5px !important;
      }

      .pc-w620-itemsVSpacings-30 {
        padding-top: 15px !important;
        padding-bottom: 15px !important;
      }

      .pc-w620-itemsHSpacings-0 {
        padding-left: 0px !important;
        padding-right: 0px !important;
      }

      .pc-w620-valign-top {
        vertical-align: top !important;
      }

      td.pc-w620-halign-center,
      th.pc-w620-halign-center {
        text-align: center !important;
        text-align-last: center !important;
      }

      table.pc-w620-halign-center {
        float: none !important;
        margin-right: auto !important;
        margin-left: auto !important;
      }

      img.pc-w620-halign-center {
        margin-right: auto !important;
        margin-left: auto !important;
      }

      div.pc-w620-align-center,
      th.pc-w620-align-center,
      a.pc-w620-align-center,
      td.pc-w620-align-center {
        text-align: center !important;
        text-align-last: center !important;
      }

      table.pc-w620-align-center {
        float: none !important;
        margin-right: auto !important;
        margin-left: auto !important;
      }

      img.pc-w620-align-center {
        margin-right: auto !important;
        margin-left: auto !important;
      }

      .pc-w620-width-100pc {
        width: 100% !important;
      }

      .pc-w620-width-fill {
        width: 100% !important;
      }

      .pc-w620-padding-35-35-35-35 {
        padding: 35px 35px 35px 35px !important;
      }

      .pc-w620-itemsHSpacings-20 {
        padding-left: 10px !important;
        padding-right: 10px !important;
      }

      table.pc-w620-spacing-0-20-0-0 {
        margin: 0px 20px 0px 0px !important;
      }

      td.pc-w620-spacing-0-20-0-0,
      th.pc-w620-spacing-0-20-0-0 {
        margin: 0 !important;
        padding: 0px 20px 0px 0px !important;
      }

      .pc-g-ib {
        display: inline-block !important;
      }

      .pc-g-b {
        display: block !important;
      }

      .pc-g-rb {
        display: block !important;
        width: auto !important;
      }

      .pc-g-wf {
        width: 100% !important;
      }

      .pc-g-rpt {
        padding-top: 0 !important;
      }

      .pc-g-rpr {
        padding-right: 0 !important;
      }

      .pc-g-rpb {
        padding-bottom: 0 !important;
      }

      .pc-g-rpl {
        padding-left: 0 !important;
      }
    }

    @media (max-width: 520px) {
      .pc-w520-padding-30-30-30-30 {
        padding: 30px 30px 30px 30px !important;
      }
    }
  </style> <!--[if !mso]><!-- -->
  <style>
    @font-face {
      font-family: 'Nunito';
      font-style: normal;
      font-weight: 400;
      src: url('https://fonts.gstatic.com/s/nunito/v26/XRXI3I6Li01BKofiOc5wtlZ2di8HDLshdTo3iQ.woff') format('woff'), url('https://fonts.gstatic.com/s/nunito/v26/XRXI3I6Li01BKofiOc5wtlZ2di8HDLshdTo3jw.woff2') format('woff2');
    }

    @font-face {
      font-family: 'Nunito';
      font-style: normal;
      font-weight: 700;
      src: url('https://fonts.gstatic.com/s/nunito/v26/XRXI3I6Li01BKofiOc5wtlZ2di8HDFwmdTo3iQ.woff') format('woff'), url('https://fonts.gstatic.com/s/nunito/v26/XRXI3I6Li01BKofiOc5wtlZ2di8HDFwmdTo3jw.woff2') format('woff2');
    }

    @font-face {
      font-family: 'Alata';
      font-style: normal;
      font-weight: 400;
      src: url('https://fonts.gstatic.com/s/alata/v11/PbytFmztEwbIocezzqA.woff') format('woff'), url('https://fonts.gstatic.com/s/alata/v11/PbytFmztEwbIocezzqY.woff2') format('woff2');
    }
  </style> <!--<![endif]-->
  <!--[if mso]> <style type="text/css"> .pc-font-alt { font-family: Arial, Helvetica, sans-serif !important; } </style> <![endif]-->
  <!--[if gte mso 9]> <xml> <o:OfficeDocumentSettings> <o:AllowPNG/> <o:PixelsPerInch>96</o:PixelsPerInch> </o:OfficeDocumentSettings> </xml> <![endif]-->
</head>

<body class="body pc-font-alt"
  style="width: 100% !important; min-height: 100% !important; margin: 0 !important; padding: 0 !important; font-weight: normal; color: #2D3A41; mso-line-height-rule: exactly; -webkit-font-smoothing: antialiased; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; font-variant-ligatures: normal; text-rendering: optimizeLegibility; -moz-osx-font-smoothing: grayscale; background-color: #fef6f5;"
  bgcolor="#fef6f5">
  <table class="pc-project-body" style="table-layout: fixed; width: 100%; min-width: 600px; background-color: #fef6f5;"
    bgcolor="#fef6f5" border="0" cellspacing="0" cellpadding="0" role="presentation">
    <tr>
      <td align="center" valign="top" style="width:auto;">
        <table class="pc-project-container" align="center" border="0" cellpadding="0" cellspacing="0"
          role="presentation">
          <tr>
            <td class="pc-w620-padding-0-0-0-0" style="padding: 20px 0px 20px 0px;" align="left" valign="top">
              <table border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
                <tr>
                  <td valign="top"> <!-- BEGIN MODULE: Welcome -->
                    <table width="100%" border="0" cellspacing="0" cellpadding="0" role="presentation" align="center"
                      class="pc-component" style="width: 600px; max-width: 600px;">
                      <tr>
                        <td class="pc-w620-spacing-0-0-0-0" width="100%" border="0" cellspacing="0" cellpadding="0"
                          role="presentation">
                          <table align="center" width="100%" border="0" cellspacing="0" cellpadding="0"
                            role="presentation">
                            <tr>
                              <td valign="top" class="pc-w620-padding-30-30-30-30"
                                style="padding: 20px 40px 0px 40px; height: unset; background-color: #464d5d;"
                                bgcolor="#464d5d">
                                <table width="100%" border="0" cellpadding="0" cellspacing="0" role="presentation">
                                  <tr>
                                    <td class="pc-w620-spacing-0-0-22-0" align="center" valign="top"
                                      style="padding: 0px 0px 20px 0px; height: auto;">
                                      <a class="pc-font-alt" href="#" target="_blank"
                                        style="text-decoration: none; display: inline-block; vertical-align: top;">
                                        <img src="https://www.micdu.com/wp-content/uploads/2025/09/fajamia.png"
                                          width="166" height="119" 
                                          style="display: block; outline: 0; line-height: 100%; -ms-interpolation-mode: bicubic; width: 166px; height: auto; max-width: 100%; border: 0;" />
                                      </a>
                                    </td>
                                  </tr>
                                </table>
                                <table width="100%" border="0" cellpadding="0" cellspacing="0" role="presentation">
                                  <tr>
                                    <td valign="top" style="padding: 0px 0px 30px 0px; height: auto;">
                                      <img src="https://www.micdu.com/wp-content/uploads/2025/09/Narrow-scaled.webp"
                                        width="520" height="auto" 
                                        style="display: block; outline: 0; line-height: 100%; -ms-interpolation-mode: bicubic; width: 100%; height: auto; border-radius: 100px 5px 100px 5px; border: 0;" />
                                    </td>
                                  </tr>
                                </table>
                                <table width="100%" border="0" cellpadding="0" cellspacing="0" role="presentation">
                                  <tr>
                                    <td align="left" valign="top" style="padding: 0px 0px 3px 0px; height: auto;">
                                      <table border="0" cellpadding="0" cellspacing="0" role="presentation"
                                        width="100%">
                                        <tr>
                                          <td valign="top" align="left">
                                            <div class="pc-font-alt" style="text-decoration: none;">
                                              <div
                                                style="font-size:17px;line-height:140%;text-align:left;text-align-last:left;color:#dacabb;font-family:'Nunito', Arial, Helvetica, sans-serif;font-style:normal;letter-spacing:0px;">
                                                <div style="font-family:'Nunito', Arial, Helvetica, sans-serif;">
                                                  <span
                                                    style="font-family: 'Nunito', Arial, Helvetica, sans-serif; font-weight: 400; font-size: 17px; line-height: 140%;">Hola,
                                                    somos
                                                  </span><span
                                                    style="font-family: 'Nunito', Arial, Helvetica, sans-serif; font-weight: 700; font-size: 17px; line-height: 140%;">Fajamia</span><span
                                                    style="font-family: 'Nunito', Arial, Helvetica, sans-serif; font-weight: 400; font-size: 17px; line-height: 140%;">,
                                                    una
                                                  </span><span
                                                    style="font-family: 'Nunito', Arial, Helvetica, sans-serif; font-weight: 700; font-size: 17px; line-height: 140%;">marca
                                                    de ropa
                                                    deportiva y de
                                                    modelado
                                                    corporal</span><span
                                                    style="font-family: 'Nunito', Arial, Helvetica, sans-serif; font-weight: 400; font-size: 17px; line-height: 140%;">
                                                    reconocida en
                                                    Europa y Estados
                                                    Unidos. Vendemos
                                                  </span><span
                                                    style="font-family: 'Nunito', Arial, Helvetica, sans-serif; font-weight: 700; font-size: 17px; line-height: 140%;">más
                                                    de 100,000
                                                    prendas</span><span
                                                    style="font-family: 'Nunito', Arial, Helvetica, sans-serif; font-weight: 400; font-size: 17px; line-height: 140%;">
                                                    cada año y somos
                                                    apreciados por
                                                    nuestro
                                                    compromiso con
                                                  </span><span
                                                    style="font-family: 'Nunito', Arial, Helvetica, sans-serif; font-weight: 700; font-size: 17px; line-height: 140%;">materiales
                                                    ecológicos e
                                                    innovación</span><span
                                                    style="font-family: 'Nunito', Arial, Helvetica, sans-serif; font-weight: 400; font-size: 17px; line-height: 140%;">.
                                                    <br><br>
                                                    Hemos visto tu
                                                    contenido y
                                                    creemos que
                                                    encaja
                                                    perfectamente
                                                    con nuestra
                                                    marca. Nos
                                                    encantaría
                                                  </span><span
                                                    style="font-family: 'Nunito', Arial, Helvetica, sans-serif; font-weight: 700; font-size: 17px; line-height: 140%;">colaborar
                                                    contigo a largo
                                                    plazo</span><span
                                                    style="font-family: 'Nunito', Arial, Helvetica, sans-serif; font-weight: 400; font-size: 17px; line-height: 140%;">
                                                    para que más
                                                    personas puedan
                                                    descubrir el
                                                  </span><span
                                                    style="font-family: 'Nunito', Arial, Helvetica, sans-serif; font-weight: 700; font-size: 17px; line-height: 140%;">estilo
                                                    y la fuerza de
                                                    Fajamia</span><span
                                                    style="font-family: 'Nunito', Arial, Helvetica, sans-serif; font-weight: 400; font-size: 17px; line-height: 140%;">.</span>
                                                </div>

                                              </div>
                                            </div>
                                          </td>
                                        </tr>
                                      </table>
                                    </td>
                                  </tr>
                                </table>
                                <table width="100%" border="0" cellpadding="0" cellspacing="0" role="presentation">
                                  <tr>
                                    <td class="pc-w620-spacing-0-0-30-0" align="left" valign="top"
                                      style="padding: 20px 0px 20px 0px; height: auto;">
                                      <table border="0" cellpadding="0" cellspacing="0" role="presentation"
                                        class="pc-w620-width-auto" align="left">
                                        <tr>
                                          <td valign="top" class="pc-w620-padding-0-0-0-0" align="left">
                                            <div class="pc-font-alt" style="text-decoration: none;">
                                              <div
                                                style="font-size:32px;line-height:42px;text-align:left;text-align-last:left;color:#ffffff;font-family:'Nunito', Arial, Helvetica, sans-serif;font-style:normal;letter-spacing:-0.3px;">
                                                <div style="font-family:'Nunito', Arial, Helvetica, sans-serif;">
                                                  <span
                                                    style="font-family: 'Nunito', Arial, Helvetica, sans-serif; font-weight: 700; font-size: 32px; line-height: 42px;">Aspectos
                                                    destacados de la
                                                    cooperación:</span>
                                                </div>
                                              </div>
                                            </div>
                                          </td>
                                        </tr>
                                      </table>
                                    </td>
                                  </tr>
                                </table>
                                <table border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
                                  <tr>
                                    <td valign="top">
                                      <div class="pc-font-alt" style="text-decoration: none;">
                                        <div
                                          style="font-size:17px;line-height:140%;color:#dacabb;font-family:'Nunito', Arial, Helvetica, sans-serif;font-style:normal;letter-spacing:0px;">
                                          <ul
                                            style="margin: 0px; padding: 0px 0px 0px 20px; font-family: 'Nunito', Arial, Helvetica, sans-serif;">
                                            <li
                                              style="margin-bottom: 0px; font-family: 'Nunito', Arial, Helvetica, sans-serif; font-weight: 400; font-size: 17px; line-height: 140%; text-transform: none;">
                                              <span
                                                style="font-family: 'Nunito', Arial, Helvetica, sans-serif; font-weight: 400; font-size: 17px; line-height: 140%;">💎
                                              </span><span
                                                style="font-family: 'Nunito', Arial, Helvetica, sans-serif; font-weight: 700; font-size: 17px; line-height: 140%;">Alta
                                                comisión:</span><span
                                                style="font-family: 'Nunito', Arial, Helvetica, sans-serif; font-weight: 400; font-size: 17px; line-height: 140%;">
                                                Comisión pública del
                                              </span><span
                                                style="font-family: 'Nunito', Arial, Helvetica, sans-serif; font-weight: 700; font-size: 17px; line-height: 140%;">10
                                                %</span><span
                                                style="font-family: 'Nunito', Arial, Helvetica, sans-serif; font-weight: 400; font-size: 17px; line-height: 140%;">,
                                                con </span><span
                                                style="font-family: 'Nunito', Arial, Helvetica, sans-serif; font-weight: 700; font-size: 17px; line-height: 140%;">bonos
                                                escalonados de 100–300
                                                MXN</span><span
                                                style="font-family: 'Nunito', Arial, Helvetica, sans-serif; font-weight: 400; font-size: 17px; line-height: 140%;">
                                                para videos exitosos.
                                              </span>
                                            </li>
                                            <li
                                              style="margin-bottom: 0px; font-family: 'Nunito', Arial, Helvetica, sans-serif; font-weight: 400; font-size: 17px; line-height: 140%; text-transform: none;">
                                              <span
                                                style="font-family: 'Nunito', Arial, Helvetica, sans-serif; font-weight: 400; font-size: 17px; line-height: 140%;">🎁
                                              </span><span
                                                style="font-family: 'Nunito', Arial, Helvetica, sans-serif; font-weight: 700; font-size: 17px; line-height: 140%;">Muestras
                                                gratuitas:</span><span
                                                style="font-family: 'Nunito', Arial, Helvetica, sans-serif; font-weight: 400; font-size: 17px; line-height: 140%;">
                                                Productos con un valor
                                                de </span><span
                                                style="font-family: 'Nunito', Arial, Helvetica, sans-serif; font-weight: 700; font-size: 17px; line-height: 140%;">50
                                                USD</span><span
                                                style="font-family: 'Nunito', Arial, Helvetica, sans-serif; font-weight: 400; font-size: 17px; line-height: 140%;">.
                                              </span>
                                            </li>
                                            <li
                                              style="margin-bottom: 0px; font-family: 'Nunito', Arial, Helvetica, sans-serif; font-weight: 400; font-size: 17px; line-height: 140%; text-transform: none;">
                                              <span
                                                style="font-family: 'Nunito', Arial, Helvetica, sans-serif; font-weight: 400; font-size: 17px; line-height: 140%;">🚀
                                              </span><span
                                                style="font-family: 'Nunito', Arial, Helvetica, sans-serif; font-weight: 700; font-size: 17px; line-height: 140%;">Apoyo
                                                en
                                                promoción:</span><span
                                                style="font-family: 'Nunito', Arial, Helvetica, sans-serif; font-weight: 400; font-size: 17px; line-height: 140%;">
                                              </span><span
                                                style="font-family: 'Nunito', Arial, Helvetica, sans-serif; font-weight: 700; font-size: 17px; line-height: 140%;">Mínimo
                                                200 USD</span><span
                                                style="font-family: 'Nunito', Arial, Helvetica, sans-serif; font-weight: 400; font-size: 17px; line-height: 140%;">
                                                en presupuesto
                                                publicitario para los
                                                videos, ayudando a
                                                generar ventas más
                                                rápido. </span>
                                            </li>
                                            <li
                                              style="margin-bottom: 0px; font-family: 'Nunito', Arial, Helvetica, sans-serif; font-weight: 400; font-size: 17px; line-height: 140%; text-transform: none;">
                                              <span
                                                style="font-family: 'Nunito', Arial, Helvetica, sans-serif; font-weight: 400; font-size: 17px; line-height: 140%;">🏆
                                              </span><span
                                                style="font-family: 'Nunito', Arial, Helvetica, sans-serif; font-weight: 700; font-size: 17px; line-height: 140%;">Beneficios
                                                exclusivos:</span><span
                                                style="font-family: 'Nunito', Arial, Helvetica, sans-serif; font-weight: 400; font-size: 17px; line-height: 140%;">
                                              </span><span
                                                style="font-family: 'Nunito', Arial, Helvetica, sans-serif; font-weight: 700; font-size: 17px; line-height: 140%;">Mayores
                                                incentivos para
                                                colaboraciones a largo
                                                plazo</span><span
                                                style="font-family: 'Nunito', Arial, Helvetica, sans-serif; font-weight: 400; font-size: 17px; line-height: 140%;">
                                                y </span><span
                                                style="font-family: 'Nunito', Arial, Helvetica, sans-serif; font-weight: 700; font-size: 17px; line-height: 140%;">prueba
                                                prioritaria de nuevos
                                                lanzamientos</span><span
                                                style="font-family: 'Nunito', Arial, Helvetica, sans-serif; font-weight: 400; font-size: 17px; line-height: 140%;">.</span>
                                            </li>
                                          </ul>
                                          <div style="text-align:left;text-align-last:left;">
                                            <br>
                                          </div>
                                        </div>
                                      </div>
                                    </td>
                                  </tr>
                                </table>
                                <table width="100%" border="0" cellpadding="0" cellspacing="0" role="presentation">
                                  <tr>
                                    <td class="pc-w620-spacing-0-0-30-0" align="left" valign="top"
                                      style="padding: 0px 0px 10px 0px; height: auto;">
                                      <table border="0" cellpadding="0" cellspacing="0" role="presentation"
                                        class="pc-w620-width-auto" align="left">
                                        <tr>
                                          <td valign="top" class="pc-w620-padding-0-0-0-0" align="left">
                                            <div class="pc-font-alt" style="text-decoration: none;">
                                              <div
                                                style="font-size:32px;line-height:42px;text-align:left;text-align-last:left;color:#ffffff;font-family:'Nunito', Arial, Helvetica, sans-serif;font-style:normal;letter-spacing:-0.3px;">
                                                <div style="font-family:'Nunito', Arial, Helvetica, sans-serif;">
                                                  <span
                                                    style="font-family: 'Nunito', Arial, Helvetica, sans-serif; font-weight: 700; font-size: 32px; line-height: 42px;">Información
                                                    de contacto para
                                                    recibir
                                                    muestras:</span>
                                                </div>
                                              </div>
                                            </div>
                                          </td>
                                        </tr>
                                      </table>
                                    </td>
                                  </tr>
                                </table>
                                <table border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
                                  <tr>
                                    <td valign="top">
                                      <div class="pc-font-alt" style="text-decoration: none;">
                                        <div
                                          style="font-size:17px;line-height:140%;color:#dacabb;font-family:'Nunito', Arial, Helvetica, sans-serif;font-style:normal;letter-spacing:0px;">
                                          <ul
                                            style="margin: 0px; padding: 0px 0px 0px 20px; font-family: 'Nunito', Arial, Helvetica, sans-serif;">
                                            <li
                                              style="margin-bottom: 0px; font-family: 'Nunito', Arial, Helvetica, sans-serif; font-weight: 400; font-size: 17px; line-height: 140%; text-transform: none;">
                                              <span
                                                style="font-family: 'Nunito', Arial, Helvetica, sans-serif; font-weight: 400; font-size: 17px; line-height: 140%;">1️⃣
                                              </span><span
                                                style="font-family: 'Nunito', Arial, Helvetica, sans-serif; font-weight: 700; font-size: 17px; line-height: 140%;">WhatsApp:</span><span
                                                style="font-family: 'Nunito', Arial, Helvetica, sans-serif; font-weight: 400; font-size: 17px; line-height: 140%;">
                                              </span>
                                            </li>
                                            <li
                                              style="margin-bottom: 0px; font-family: 'Nunito', Arial, Helvetica, sans-serif; font-weight: 400; font-size: 17px; line-height: 140%; text-transform: none;">
                                              <span
                                                style="font-family: 'Nunito', Arial, Helvetica, sans-serif; font-weight: 400; font-size: 17px; line-height: 140%;">2️⃣
                                              </span><span
                                                style="font-family: 'Nunito', Arial, Helvetica, sans-serif; font-weight: 700; font-size: 17px; line-height: 140%;">Número:</span><span
                                                style="font-family: 'Nunito', Arial, Helvetica, sans-serif; font-weight: 400; font-size: 17px; line-height: 140%;">
                                              </span>
                                            </li>
                                            <li
                                              style="margin-bottom: 0px; font-family: 'Nunito', Arial, Helvetica, sans-serif; font-weight: 400; font-size: 17px; line-height: 140%; text-transform: none;">
                                              <span
                                                style="font-family: 'Nunito', Arial, Helvetica, sans-serif; font-weight: 400; font-size: 17px; line-height: 140%;">3️⃣
                                              </span><span
                                                style="font-family: 'Nunito', Arial, Helvetica, sans-serif; font-weight: 700; font-size: 17px; line-height: 140%;">Dirección:</span><span
                                                style="font-family: 'Nunito', Arial, Helvetica, sans-serif; font-weight: 400; font-size: 17px; line-height: 140%;">
                                              </span>
                                            </li>
                                            <li
                                              style="margin-bottom: 0px; font-family: 'Nunito', Arial, Helvetica, sans-serif; font-weight: 400; font-size: 17px; line-height: 140%; text-transform: none;">
                                              <span
                                                style="font-family: 'Nunito', Arial, Helvetica, sans-serif; font-weight: 400; font-size: 17px; line-height: 140%;">4️⃣
                                              </span><span
                                                style="font-family: 'Nunito', Arial, Helvetica, sans-serif; font-weight: 700; font-size: 17px; line-height: 140%;">Nombre:</span><span
                                                style="font-family: 'Nunito', Arial, Helvetica, sans-serif; font-weight: 400; font-size: 17px; line-height: 140%;">
                                              </span>
                                            </li>
                                            <li
                                              style="margin-bottom: 0px; font-family: 'Nunito', Arial, Helvetica, sans-serif; font-weight: 400; font-size: 17px; line-height: 140%; text-transform: none;">
                                              <span
                                                style="font-family: 'Nunito', Arial, Helvetica, sans-serif; font-weight: 400; font-size: 17px; line-height: 140%;">5️⃣
                                              </span><span
                                                style="font-family: 'Nunito', Arial, Helvetica, sans-serif; font-weight: 700; font-size: 17px; line-height: 140%;">Correo
                                                personal:</span>
                                            </li>
                                          </ul>
                                          <div style="text-align:left;text-align-last:left;">
                                            <br>
                                          </div>
                                        </div>
                                      </div>
                                    </td>
                                  </tr>
                                </table>
                                <table width="100%" border="0" cellpadding="0" cellspacing="0" role="presentation">
                                  <tr>
                                    <td class="pc-w620-spacing-0-0-30-0" align="left" valign="top"
                                      style="padding: 0px 0px 10px 0px; height: auto;">
                                      <table border="0" cellpadding="0" cellspacing="0" role="presentation"
                                        class="pc-w620-width-auto" align="left">
                                        <tr>
                                          <td valign="top" class="pc-w620-padding-0-0-0-0" align="left">
                                            <div class="pc-font-alt" style="text-decoration: none;">
                                              <div
                                                style="font-size:32px;line-height:42px;text-align:left;text-align-last:left;color:#ffffff;font-family:'Nunito', Arial, Helvetica, sans-serif;font-style:normal;letter-spacing:-0.3px;">
                                                <div style="font-family:'Nunito', Arial, Helvetica, sans-serif;">
                                                  <span
                                                    style="font-family: 'Nunito', Arial, Helvetica, sans-serif; font-weight: 700; font-size: 32px; line-height: 42px;">Proceso
                                                    sencillo:</span>
                                                </div>
                                              </div>
                                            </div>
                                          </td>
                                        </tr>
                                      </table>
                                    </td>
                                  </tr>
                                </table>
                                <table border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
                                  <tr>
                                    <td valign="top">
                                      <div class="pc-font-alt" style="text-decoration: none;">
                                        <div
                                          style="font-size:17px;line-height:140%;color:#dacabb;font-family:'Nunito', Arial, Helvetica, sans-serif;font-style:normal;letter-spacing:0px;">
                                          <ul
                                            style="margin: 0px; padding: 0px 0px 0px 20px; font-family: 'Nunito', Arial, Helvetica, sans-serif;">
                                            <li
                                              style="margin-bottom: 0px; font-family: 'Nunito', Arial, Helvetica, sans-serif; font-weight: 400; font-size: 17px; line-height: 140%; text-transform: none;">
                                              <span
                                                style="font-family: 'Nunito', Arial, Helvetica, sans-serif; font-weight: 400; font-size: 17px; line-height: 140%;">1️⃣
                                              </span><span
                                                style="font-family: 'Nunito', Arial, Helvetica, sans-serif; font-weight: 700; font-size: 17px; line-height: 140%;">Confirmar
                                                la colaboración y
                                                proporcionar la
                                                información de
                                                envío</span><span
                                                style="font-family: 'Nunito', Arial, Helvetica, sans-serif; font-weight: 400; font-size: 17px; line-height: 140%;">.</span>
                                            </li>
                                            <li
                                              style="margin-bottom: 0px; font-family: 'Nunito', Arial, Helvetica, sans-serif; font-weight: 400; font-size: 17px; line-height: 140%; text-transform: none;">
                                              <span
                                                style="font-family: 'Nunito', Arial, Helvetica, sans-serif; font-weight: 400; font-size: 17px; line-height: 140%;">2️⃣
                                              </span><span
                                                style="font-family: 'Nunito', Arial, Helvetica, sans-serif; font-weight: 700; font-size: 17px; line-height: 140%;">Grabar
                                                y publicar el video
                                                dentro de 7–10 días
                                                después de recibir la
                                                muestra</span><span
                                                style="font-family: 'Nunito', Arial, Helvetica, sans-serif; font-weight: 400; font-size: 17px; line-height: 140%;">
                                                (1 video por
                                                producto).</span>
                                            </li>
                                            <li
                                              style="margin-bottom: 0px; font-family: 'Nunito', Arial, Helvetica, sans-serif; font-weight: 400; font-size: 17px; line-height: 140%; text-transform: none;">
                                              <span
                                                style="font-family: 'Nunito', Arial, Helvetica, sans-serif; font-weight: 400; font-size: 17px; line-height: 140%;">3️⃣
                                              </span><span
                                                style="font-family: 'Nunito', Arial, Helvetica, sans-serif; font-weight: 700; font-size: 17px; line-height: 140%;">Proporcionar
                                                el enlace del video + el
                                                código de publicidad
                                                365</span><span
                                                style="font-family: 'Nunito', Arial, Helvetica, sans-serif; font-weight: 400; font-size: 17px; line-height: 140%;">,
                                                nosotros nos encargamos
                                                de la promoción y del
                                                pago de la comisión.
                                                Además, </span><span
                                                style="font-family: 'Nunito', Arial, Helvetica, sans-serif; font-weight: 700; font-size: 17px; line-height: 140%;">nos
                                                reservamos los derechos
                                                de creación
                                                derivada</span><span
                                                style="font-family: 'Nunito', Arial, Helvetica, sans-serif; font-weight: 400; font-size: 17px; line-height: 140%;">.</span>
                                            </li>
                                          </ul>
                                          <div style="text-align:left;text-align-last:left;">
                                            <br>
                                          </div>
                                        </div>
                                      </div>
                                    </td>
                                  </tr>
                                </table>
                                <table width="100%" border="0" cellpadding="0" cellspacing="0" role="presentation">
                                  <tr>
                                    <td class="pc-w620-spacing-0-0-30-0" align="center" valign="top"
                                      style="padding: 0px 0px 20px 0px; height: auto;">
                                      <table border="0" cellpadding="0" cellspacing="0" role="presentation"
                                        class="pc-w620-width-auto" align="center"
                                        style="margin-right: auto; margin-left: auto;">
                                        <tr>
                                          <td valign="top" class="pc-w620-padding-0-0-0-0" align="center">
                                            <div class="pc-font-alt" style="text-decoration: none;">
                                              <div
                                                style="font-size:32px;line-height:42px;text-align:center;text-align-last:center;color:#ffffff;font-family:'Nunito', Arial, Helvetica, sans-serif;font-style:normal;letter-spacing:-0.3px;">
                                                <div style="font-family:'Nunito', Arial, Helvetica, sans-serif;">
                                                  <span
                                                    style="font-family: 'Nunito', Arial, Helvetica, sans-serif; font-weight: 700; font-size: 32px; line-height: 42px;">Algunos
                                                    de nuestros
                                                    productos:</span>
                                                </div>
                                              </div>
                                            </div>
                                          </td>
                                        </tr>
                                      </table>
                                    </td>
                                  </tr>
                                </table>
                              </td>
                            </tr>
                          </table>
                        </td>
                      </tr>
                    </table> <!-- END MODULE: Welcome -->
                  </td>
                </tr>
                <tr>
                  <td valign="top"> <!-- BEGIN MODULE: New Arrivals -->
                    <table class="pc-component" style="width: 600px; max-width: 600px;" align="center" width="100%"
                      border="0" cellspacing="0" cellpadding="0" role="presentation">
                      <tr>
                        <td valign="top" class="pc-w520-padding-30-30-30-30 pc-w620-padding-35-35-35-35"
                          style="padding: 40px 40px 40px 40px; height: unset; background-color: #383e4c;"
                          bgcolor="#383e4c">
                          <table width="100%" border="0" cellpadding="0" cellspacing="0" role="presentation">
                            <tr>
                              <td align="center" style="padding: 0px 0px 30px 0px;">
                                <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation">
                                  <tr>
                                    <td style="width:unset;" valign="top">
                                      <table class="pc-width-hug" align="center" border="0" cellpadding="0"
                                        cellspacing="0" role="presentation">
                                        <tbody>
                                          <tr>
                                            <td class="pc-g-rpt pc-g-rpb pc-w620-itemsVSpacings-0" valign="middle"
                                              style="padding-top: 0px; padding-bottom: 0px;">
                                              <table border="0" cellpadding="0" cellspacing="0" role="presentation">
                                                <tr>
                                                  <td align="center" valign="middle">
                                                    <table width="100%" border="0" cellpadding="0" cellspacing="0"
                                                      role="presentation">
                                                      <tr>
                                                        <td align="center" valign="top">
                                                          <table border="0" cellpadding="0" cellspacing="0"
                                                            role="presentation" align="center">
                                                            <tr>
                                                              <td valign="top" align="center"
                                                                style="padding: 0px 0px 2px 0px; height: auto;">
                                                                <div class="pc-font-alt" style="text-decoration: none;">
                                                                  <div
                                                                    style="font-size:28px;line-height:34px;text-align:center;text-align-last:center;color:#dacabb;font-family:'Nunito', Arial, Helvetica, sans-serif;font-style:normal;letter-spacing:0px;">
                                                                    <div
                                                                      style="font-family:'Nunito', Arial, Helvetica, sans-serif;">
                                                                      <span
                                                                        style="font-family: 'Nunito', Arial, Helvetica, sans-serif; font-weight: 700; font-size: 28px; line-height: 34px;">Lanzamiento
                                                                        de
                                                                        nuevo
                                                                        producto:</span>
                                                                    </div>
                                                                  </div>
                                                                </div>
                                                              </td>
                                                            </tr>
                                                          </table>
                                                        </td>
                                                      </tr>
                                                    </table>
                                                  </td>
                                                </tr>
                                              </table>
                                            </td>
                                            <td class="pc-w620-itemsHSpacings-15" valign="middle"
                                              style="padding-right: 7.5px; padding-left: 7.5px;" />
                                            <td class="pc-g-rpt pc-g-rpb pc-w620-itemsVSpacings-0" valign="middle"
                                              style="padding-top: 0px; padding-bottom: 0px;">
                                              <table border="0" cellpadding="0" cellspacing="0" role="presentation">
                                                <tr>
                                                  <td align="center" valign="middle">
                                                    <table width="100%" border="0" cellpadding="0" cellspacing="0"
                                                      role="presentation">
                                                      <tr>
                                                        <td align="center" valign="top">
                                                        </td>
                                                      </tr>
                                                    </table>
                                                  </td>
                                                </tr>
                                              </table>
                                            </td>
                                          </tr>
                                        </tbody>
                                      </table>
                                    </td>
                                  </tr>
                                </table>
                              </td>
                            </tr>
                          </table>
                          <table width="100%" border="0" cellpadding="0" cellspacing="0" role="presentation">
                            <tr>
                              <td class="pc-w620-valign-top pc-w620-halign-center">
                                <table class="pc-width-fill pc-g-b pc-w620-halign-center" width="100%" border="0"
                                  cellpadding="0" cellspacing="0" role="presentation">
                                  <tbody class="pc-g-b">
                                    <tr class="pc-g-ib pc-g-wf">
                                      <td class="pc-g-rb pc-g-rpt pc-g-wf pc-w620-itemsVSpacings-30" align="center"
                                        valign="top" style="width: 50%; padding-top: 0px; padding-bottom: 0px;">
                                        <table class="pc-w620-halign-center" style="width: 100%;" border="0"
                                          cellpadding="0" cellspacing="0" role="presentation">
                                          <tr>
                                            <td class="pc-w620-halign-center pc-w620-valign-top" align="center"
                                              valign="top">
                                              <table class="pc-w620-halign-center" width="100%" border="0"
                                                cellpadding="0" cellspacing="0" role="presentation">
                                                <tr>
                                                  <td class="pc-w620-halign-center" align="center" valign="top"
                                                    style="line-height: 1px; font-size: 1px;">
                                                    <table width="100%" border="0" cellpadding="0" cellspacing="0"
                                                      role="presentation">
                                                      <tr>
                                                        <td class="pc-w620-halign-center" align="center" valign="top"
                                                          style="padding: 0px 0px 16px 0px; height: auto;">
                                                          <img
                                                            src="https://www.micdu.com/wp-content/uploads/2025/09/mote-1.webp"
                                                            class="pc-w620-width-100pc pc-w620-height-auto pc-w620-align-center"
                                                            width="230" height="305" 
                                                            style="display: block; outline: 0; line-height: 100%; -ms-interpolation-mode: bicubic; width: 230px; height: auto; max-width: 100%; border-radius: 100px 5px 100px 5px; border: 0;" />
                                                        </td>
                                                      </tr>
                                                    </table>
                                                  </td>
                                                </tr>
                                                <tr>
                                                  <td class="pc-w620-halign-center" align="center" valign="top">
                                                    <table class="pc-w620-halign-center" width="100%" align="center"
                                                      border="0" cellpadding="0" cellspacing="0" role="presentation">
                                                      <tr>
                                                        <td valign="top"
                                                          style="padding: 0px 0px 2px 0px; height: auto;">
                                                          <table border="0" cellpadding="0" cellspacing="0"
                                                            role="presentation" width="100%" align="center">
                                                            <tr>
                                                              <td valign="top" class="pc-w620-align-center"
                                                                align="center">
                                                                <div class="pc-font-alt pc-w620-align-center"
                                                                  style="line-height: 34px; letter-spacing: 0px; font-family: 'Nunito', Arial, Helvetica, sans-serif; font-size: 18px; font-weight: bold; color: #dacabb; text-align: center; text-align-last: center;">
                                                                  <div>
                                                                    <span>Body
                                                                      moldeador
                                                                      para
                                                                      mujer,
                                                                      efecto
                                                                      reductor,
                                                                      cuello
                                                                      alto,
                                                                      sin
                                                                      mangas,
                                                                      cremallera
                                                                      acanalada,
                                                                      camiseta
                                                                      sin
                                                                      mangas
                                                                      moldeadora</span>
                                                                  </div>
                                                                </div>
                                                              </td>
                                                            </tr>
                                                          </table>
                                                        </td>
                                                      </tr>
                                                    </table>
                                                  </td>
                                                </tr>
                                                <tr>
                                                  <td class="pc-w620-halign-center" align="center" valign="top">
                                                    <table class="pc-w620-halign-center" align="center" border="0"
                                                      cellpadding="0" cellspacing="0" role="presentation">
                                                      <tr>
                                                        <td valign="top"
                                                          style="padding: 0px 0px 14px 0px; height: auto;">
                                                          <table border="0" cellpadding="0" cellspacing="0"
                                                            role="presentation" width="100%">
                                                            <tr>
                                                              <td valign="top" class="pc-w620-align-center"
                                                                align="center">
                                                                <div class="pc-font-alt pc-w620-align-center"
                                                                  style="text-decoration: none;">
                                                                  <div
                                                                    style="font-size:16px;line-height:22px;text-align:center;text-align-last:center;color:#eeb798;font-family:'Nunito', Arial, Helvetica, sans-serif;letter-spacing:0px;font-style:normal;">
                                                                    <div
                                                                      style="font-family:'Nunito', Arial, Helvetica, sans-serif;">
                                                                      <span
                                                                        style="font-family: 'Nunito', Arial, Helvetica, sans-serif; font-size: 16px; line-height: 22px; font-weight: 400;">$320</span>
                                                                    </div>
                                                                  </div>
                                                                </div>
                                                              </td>
                                                            </tr>
                                                          </table>
                                                        </td>
                                                      </tr>
                                                    </table>
                                                  </td>
                                                </tr>
                                                <tr>
                                                  <td class="pc-w620-halign-center" align="center" valign="top">
                                                    <table width="100%" border="0" cellpadding="0" cellspacing="0"
                                                      role="presentation" style="min-width: 100%;">
                                                      <tr>
                                                        <th valign="top" class="pc-w620-align-center" align="center"
                                                          style="text-align: center; font-weight: normal;">
                                                          <!--[if mso]> <table border="0" cellpadding="0" cellspacing="0" role="presentation" class="pc-w620-align-center" align="center" style="border-collapse: separate; border-spacing: 0; margin-right: auto; margin-left: auto;"> <tr> <td valign="middle" align="center" style="border-radius: 94px 94px 94px 94px; background-color: #eeb798; text-align:center; color: #ffffff; padding: 7px 40px 10px 40px; mso-padding-left-alt: 0; margin-left:40px;" bgcolor="#eeb798"> <a class="pc-font-alt" style="display: inline-block; text-decoration: none; text-align: center;" href="https://vt.tiktok.com/ZSHnoaVjb6pR6-Nb230/" target="_blank"><span style="font-size:16px;line-height:24px;color:#383e4c;font-family:'Alata', Arial, Helvetica, sans-serif;font-style:normal;letter-spacing:-0.2px;display:inline-block;vertical-align:top;"><span style="font-family:'Alata', Arial, Helvetica, sans-serif;display:inline-block;"><span style="font-family: 'Alata', Arial, Helvetica, sans-serif; font-weight: 400; font-size: 16px; line-height: 24px;">Más información</span></span></span></a> </td> </tr> </table> <![endif]-->
                                                          <!--[if !mso]><!-- -->
                                                          <a style="display: inline-block; box-sizing: border-box; border-radius: 94px 94px 94px 94px; background-color: #eeb798; padding: 7px 40px 10px 40px; vertical-align: top; text-align: center; text-align-last: center; text-decoration: none; -webkit-text-size-adjust: none;"
                                                            href="https://vt.tiktok.com/ZSHnoaVjb6pR6-Nb230/"
                                                            target="_blank"><span
                                                              style="font-size:16px;line-height:24px;color:#383e4c;font-family:'Alata', Arial, Helvetica, sans-serif;font-style:normal;letter-spacing:-0.2px;display:inline-block;vertical-align:top;"><span
                                                                style="font-family:'Alata', Arial, Helvetica, sans-serif;display:inline-block;"><span
                                                                  style="font-family: 'Alata', Arial, Helvetica, sans-serif; font-weight: 400; font-size: 16px; line-height: 24px;">Más
                                                                  información</span></span></span></a>
                                                          <!--<![endif]-->
                                                        </th>
                                                      </tr>
                                                    </table>
                                                  </td>
                                                </tr>
                                              </table>
                                            </td>
                                          </tr>
                                        </table>
                                      </td>
                                      <td class="pc-w620-itemsHSpacings-0" valign="top"
                                        style="padding-right: 15px; padding-left: 15px;" />
                                      <td class="pc-g-rb pc-g-rpb pc-g-wf pc-w620-itemsVSpacings-30" align="center"
                                        valign="top" style="width: 50%; padding-top: 0px; padding-bottom: 0px;">
                                        <table class="pc-w620-width-fill pc-w620-halign-center" border="0"
                                          cellpadding="0" cellspacing="0" role="presentation">
                                          <tr>
                                            <td class="pc-w620-halign-center pc-w620-valign-top" align="center"
                                              valign="top">
                                              <table class="pc-w620-halign-center" width="100%" border="0"
                                                cellpadding="0" cellspacing="0" role="presentation">
                                                <tr>
                                                  <td class="pc-w620-halign-center" align="center" valign="top"
                                                    style="line-height: 1px; font-size: 1px;">
                                                    <table width="100%" border="0" cellpadding="0" cellspacing="0"
                                                      role="presentation">
                                                      <tr>
                                                        <td class="pc-w620-halign-center" align="center" valign="top"
                                                          style="padding: 0px 0px 16px 0px; height: auto;">
                                                          <img
                                                            src="https://www.micdu.com/wp-content/uploads/2025/09/mote.webp"
                                                            class="pc-w620-width-100pc pc-w620-height-auto pc-w620-align-center"
                                                            width="230" height="305" 
                                                            style="display: block; outline: 0; line-height: 100%; -ms-interpolation-mode: bicubic; width: 230px; height: auto; max-width: 100%; border-radius: 100px 5px 100px 5px; border: 0;" />
                                                        </td>
                                                      </tr>
                                                    </table>
                                                  </td>
                                                </tr>
                                                <tr>
                                                  <td class="pc-w620-halign-center" align="center" valign="top">
                                                    <table class="pc-w620-halign-center" align="center" border="0"
                                                      cellpadding="0" cellspacing="0" role="presentation">
                                                      <tr>
                                                        <td valign="top"
                                                          style="padding: 0px 0px 2px 0px; height: auto;">
                                                          <table border="0" cellpadding="0" cellspacing="0"
                                                            role="presentation" width="100%">
                                                            <tr>
                                                              <td valign="top" class="pc-w620-align-center"
                                                                align="center">
                                                                <div class="pc-font-alt pc-w620-align-center"
                                                                  style="line-height: 34px; letter-spacing: 0px; font-family: 'Nunito', Arial, Helvetica, sans-serif; font-size: 18px; font-weight: bold; color: #dacabb; text-align: center; text-align-last: center;">
                                                                  <div>
                                                                    <span>Body
                                                                      ajustado
                                                                      con
                                                                      tirantes,
                                                                      escote
                                                                      cuadrado,
                                                                      de
                                                                      canalé
                                                                      elástico
                                                                      y
                                                                      estilo
                                                                      sexy</span>
                                                                  </div>
                                                                </div>
                                                              </td>
                                                            </tr>
                                                          </table>
                                                        </td>
                                                      </tr>
                                                    </table>
                                                  </td>
                                                </tr>
                                                <tr>
                                                  <td class="pc-w620-halign-center" align="center" valign="top">
                                                    <table class="pc-w620-halign-center" align="center" border="0"
                                                      cellpadding="0" cellspacing="0" role="presentation">
                                                      <tr>
                                                        <td valign="top"
                                                          style="padding: 0px 0px 14px 0px; height: auto;">
                                                          <table border="0" cellpadding="0" cellspacing="0"
                                                            role="presentation" width="100%">
                                                            <tr>
                                                              <td valign="top" class="pc-w620-align-center"
                                                                align="center">
                                                                <div class="pc-font-alt pc-w620-align-center"
                                                                  style="text-decoration: none;">
                                                                  <div
                                                                    style="font-size:16px;line-height:22px;text-align:center;text-align-last:center;color:#eeb798;font-family:'Nunito', Arial, Helvetica, sans-serif;letter-spacing:0px;font-style:normal;">
                                                                    <div
                                                                      style="font-family:'Nunito', Arial, Helvetica, sans-serif;">
                                                                      <span
                                                                        style="font-family: 'Nunito', Arial, Helvetica, sans-serif; font-size: 16px; line-height: 22px; font-weight: 400;">$320</span>
                                                                    </div>
                                                                  </div>
                                                                </div>
                                                              </td>
                                                            </tr>
                                                          </table>
                                                        </td>
                                                      </tr>
                                                    </table>
                                                  </td>
                                                </tr>
                                                <tr>
                                                  <td class="pc-w620-halign-center" align="center" valign="top">
                                                    <table width="100%" border="0" cellpadding="0" cellspacing="0"
                                                      role="presentation" style="min-width: 100%;">
                                                      <tr>
                                                        <th valign="top" class="pc-w620-align-center" align="center"
                                                          style="text-align: center; font-weight: normal;">
                                                          <!--[if mso]> <table border="0" cellpadding="0" cellspacing="0" role="presentation" class="pc-w620-align-center" align="center" style="border-collapse: separate; border-spacing: 0; margin-right: auto; margin-left: auto;"> <tr> <td valign="middle" align="center" style="border-radius: 94px 94px 94px 94px; background-color: #eeb798; text-align:center; color: #ffffff; padding: 7px 40px 10px 40px; mso-padding-left-alt: 0; margin-left:40px;" bgcolor="#eeb798"> <a class="pc-font-alt" style="display: inline-block; text-decoration: none; text-align: center;" href="https://vt.tiktok.com/ZSHnoaCXCMptt-mWt3z/" target="_blank"><span style="font-size:16px;line-height:24px;color:#383e4c;font-family:'Alata', Arial, Helvetica, sans-serif;font-style:normal;letter-spacing:-0.2px;display:inline-block;vertical-align:top;"><span style="font-family:'Alata', Arial, Helvetica, sans-serif;display:inline-block;"><span style="font-family: 'Alata', Arial, Helvetica, sans-serif; font-weight: 400; font-size: 16px; line-height: 24px;">Más información</span></span></span></a> </td> </tr> </table> <![endif]-->
                                                          <!--[if !mso]><!-- -->
                                                          <a style="display: inline-block; box-sizing: border-box; border-radius: 94px 94px 94px 94px; background-color: #eeb798; padding: 7px 40px 10px 40px; vertical-align: top; text-align: center; text-align-last: center; text-decoration: none; -webkit-text-size-adjust: none;"
                                                            href="https://vt.tiktok.com/ZSHnoaCXCMptt-mWt3z/"
                                                            target="_blank"><span
                                                              style="font-size:16px;line-height:24px;color:#383e4c;font-family:'Alata', Arial, Helvetica, sans-serif;font-style:normal;letter-spacing:-0.2px;display:inline-block;vertical-align:top;"><span
                                                                style="font-family:'Alata', Arial, Helvetica, sans-serif;display:inline-block;"><span
                                                                  style="font-family: 'Alata', Arial, Helvetica, sans-serif; font-weight: 400; font-size: 16px; line-height: 24px;">Más
                                                                  información</span></span></span></a>
                                                          <!--<![endif]-->
                                                        </th>
                                                      </tr>
                                                    </table>
                                                  </td>
                                                </tr>
                                              </table>
                                            </td>
                                          </tr>
                                        </table>
                                      </td>
                                    </tr>
                                  </tbody>
                                </table>
                              </td>
                            </tr>
                          </table>
                        </td>
                      </tr>
                    </table> <!-- END MODULE: New Arrivals -->
                  </td>
                </tr>
                <tr>
                  <td valign="top"> <!-- BEGIN MODULE: Footer -->
                    <table width="100%" border="0" cellspacing="0" cellpadding="0" role="presentation" align="center"
                      class="pc-component" style="width: 600px; max-width: 600px;">
                      <tr>
                        <td class="pc-w620-spacing-0-0-0-0" width="100%" border="0" cellspacing="0" cellpadding="0"
                          role="presentation">
                          <table align="center" width="100%" border="0" cellspacing="0" cellpadding="0"
                            role="presentation">
                            <tr>
                              <td valign="top" class="pc-w620-padding-30-30-30-30"
                                style="padding: 40px 40px 40px 40px; height: unset; background-color: #464d5d;"
                                bgcolor="#464d5d">
                                <table width="100%" border="0" cellpadding="0" cellspacing="0" role="presentation">
                                  <tr>
                                    <td class="pc-w620-align-center" align="center" valign="top"
                                      style="padding: 0px 0px 30px 0px; height: auto;">
                                      <table border="0" cellpadding="0" cellspacing="0" role="presentation"
                                        class="pc-w620-align-center" width="100%"
                                        style="margin-right: auto; margin-left: auto;">
                                        <tr>
                                          <td valign="top" class="pc-w620-align-center" align="center">
                                            <div class="pc-font-alt pc-w620-align-center"
                                              style="text-decoration: none;">
                                              <div
                                                style="font-size:17px;line-height:170%;text-align:center;text-align-last:center;color:#dacabb;font-family:'Nunito', Arial, Helvetica, sans-serif;font-style:normal;letter-spacing:0px;">
                                                <div style="font-family:'Nunito', Arial, Helvetica, sans-serif;">
                                                  <span
                                                    style="font-family: 'Nunito', Arial, Helvetica, sans-serif; font-weight: 400; font-size: 17px; line-height: 170%;">Si
                                                    estás interesado
                                                    en la
                                                    colaboración
                                                    mencionada
                                                    anteriormente,
                                                  </span><span
                                                    style="font-family: 'Nunito', Arial, Helvetica, sans-serif; font-weight: 700; font-size: 17px; line-height: 170%;">responde
                                                    directamente a
                                                    este correo o
                                                    agrégame en
                                                    WhatsApp:
                                                  </span><a href="https://wa.me/8619878272139" target="_blank"
                                                    rel="noreferrer"
                                                    style="text-decoration:none;color:inherit;color: rgb(218, 202, 187); font-family: 'Nunito', Arial, Helvetica, sans-serif;"><span
                                                      style="font-family: 'Nunito', Arial, Helvetica, sans-serif; font-weight: 700; font-size: 17px; line-height: 170%; text-decoration: underline;">+86
                                                      198-7827-2139</span></a><span
                                                    style="font-family: 'Nunito', Arial, Helvetica, sans-serif; font-weight: 400; font-size: 17px; line-height: 170%;">.
                                                    ¡Estamos muy
                                                    emocionados de
                                                    crear juntos el
                                                    próximo éxito en
                                                    TikTok!</span>
                                                </div>
                                                <div style="font-family:'Nunito', Arial, Helvetica, sans-serif;">
                                                  <span
                                                    style="font-family: 'Nunito', Arial, Helvetica, sans-serif; font-weight: 400; font-size: 17px; line-height: 170%;">Gracias
                                                    por tu tiempo,
                                                    ¡esperamos
                                                    buenas noticias
                                                    💖!</span>
                                                </div>
                                                <div style="font-family:'Nunito', Arial, Helvetica, sans-serif;">
                                                  <span
                                                    style="font-family: 'Nunito', Arial, Helvetica, sans-serif; font-weight: 700; font-size: 17px; line-height: 170%;">¡Éxitos
                                                    en tu
                                                    creación!</span><span
                                                    style="font-family: 'Nunito', Arial, Helvetica, sans-serif; font-weight: 400; font-size: 17px; line-height: 170%;">
                                                  </span><span
                                                    style="font-family: 'Nunito', Arial, Helvetica, sans-serif; font-weight: 700; font-size: 17px; line-height: 170%;">fajamia
                                                    | [</span><a href="https://vt.tiktok.com/ZSDHYD8uh/?page=TikTokShop"
                                                    target="_blank" rel="noreferrer"
                                                    style="text-decoration:none;color:inherit;color: rgb(218, 202, 187); font-family: 'Nunito', Arial, Helvetica, sans-serif;"><span
                                                      style="font-family: 'Nunito', Arial, Helvetica, sans-serif; font-weight: 700; font-size: 17px; line-height: 170%; text-decoration: underline;">Enlace
                                                      directo a la
                                                      tienda</span></a><span
                                                    style="font-family: 'Nunito', Arial, Helvetica, sans-serif; font-weight: 700; font-size: 17px; line-height: 170%;">]</span>
                                                </div>
                                              </div>
                                            </div>
                                          </td>
                                        </tr>
                                      </table>
                                    </td>
                                  </tr>
                                </table>
                                <table width="100%" border="0" cellpadding="0" cellspacing="0" role="presentation">
                                  <tr>
                                    <td align="center" style="padding: 20px 0px 0px 0px;">
                                      <table align="center" border="0" cellpadding="0" cellspacing="0"
                                        role="presentation">
                                        <tr>
                                          <td style="width:unset;" valign="top">
                                            <table class="pc-width-hug" align="center" border="0" cellpadding="0"
                                              cellspacing="0" role="presentation">
                                              <tbody>
                                                <tr>
                                                  <td class="pc-g-rpt pc-g-rpb pc-w620-itemsVSpacings-0" valign="middle"
                                                    style="padding-top: 0px; padding-bottom: 0px;">
                                                    <table style="width: 100%;" border="0" cellpadding="0"
                                                      cellspacing="0" role="presentation">
                                                      <tr>
                                                        <td align="center" valign="middle">
                                                          <table width="100%" border="0" cellpadding="0" cellspacing="0"
                                                            role="presentation">
                                                            <tr>
                                                              <td align="center" valign="top"
                                                                style="line-height: 1px; font-size: 1px;">
                                                                <a class="pc-font-alt"
                                                                  href="https://www.instagram.com/fajamia/"
                                                                  target="_blank"
                                                                  style="text-decoration: none; display: inline-block; vertical-align: top;">
                                                                  <img
                                                                    src="https://www.micdu.com/wp-content/uploads/2025/09/ins.png"
                                                                    class="" width="20" height="20"
                                                                    style="display: block; border: 0; outline: 0; line-height: 100%; -ms-interpolation-mode: bicubic; width: 20px; height: 20px;"
                                                                     />
                                                                </a>
                                                              </td>
                                                            </tr>
                                                          </table>
                                                        </td>
                                                      </tr>
                                                    </table>
                                                  </td>
                                                  <td class="pc-w620-itemsHSpacings-20" valign="middle"
                                                    style="padding-right: 20px; padding-left: 20px;" />
                                                  <td class="pc-g-rpt pc-g-rpb pc-w620-itemsVSpacings-0" valign="middle"
                                                    style="padding-top: 0px; padding-bottom: 0px;">
                                                    <a class="pc-font-alt"
                                                      href="https://www.tiktok.com/@ella.maria166?_t=ZS-8zvddAPvF0E&_r=1"
                                                      target="_blank"
                                                      style="text-decoration: none; display: inline-block; vertical-align: top;">
                                                      <img
                                                        src="https://www.micdu.com/wp-content/uploads/2025/09/tiktok.png"
                                                        class="" width="20" height="20"
                                                        style="display: block; border: 0; outline: 0; line-height: 100%; -ms-interpolation-mode: bicubic; width: 20px; height: 20px;"
                                                         />
                                                    </a>
                                                  </td>
                                                  <td class="pc-w620-itemsHSpacings-20" valign="middle"
                                                    style="padding-right: 20px; padding-left: 20px;" />
                                                  <td class="pc-g-rpt pc-g-rpb pc-w620-itemsVSpacings-0" valign="middle"
                                                    style="padding-top: 0px; padding-bottom: 0px;">
                                                    <a class="pc-font-alt" href="https://wa.me/8619878272139"
                                                      target="_blank"
                                                      style="text-decoration: none; display: inline-block; vertical-align: top;">
                                                      <img
                                                        src="https://www.micdu.com/wp-content/uploads/2025/09/whatsapp.png"
                                                        class="" width="20" height="20"
                                                        style="display: block; border: 0; outline: 0; line-height: 100%; -ms-interpolation-mode: bicubic; width: 20px; height: 20px;"
                                                         />
                                                    </a>
                                                  </td>
                                                </tr>
                                              </tbody>
                                            </table>
                                          </td>
                                        </tr>
                                      </table>
                                    </td>
                                  </tr>
                                </table>
                              </td>
                            </tr>
                          </table>
                        </td>
                      </tr>
                    </table> <!-- END MODULE: Footer -->
                  </td>
                </tr>
              </table>
            </td>
          </tr>
        </table>
      </td>
    </tr>
  </table>
</body>

</html>
<!doctype html>
<html>
    <head>
        <title>{{ .Campaign.Subject }}</title>
        <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
        <meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1">
        <base target="_blank">
    </head>
<body>
    <div class="gutter"> </div>
    <div class="wrap">
        {{ template "content" . }}
    </div>
    <div class="gutter"> {{ TrackView }}</div>
</body>
</html>

© 版权声明
THE END
喜欢就支持一下吧
点赞11 分享
评论 抢沙发

请登录后发表评论

    暂无评论内容