<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:content="http://purl.org/rss/1.0/modules/content/">
  <channel>
    <title>Alen blogger</title>
    <link>https://alenwee.xyz/</link>
    <description>Property</description>
    <copyright>All rights reserved 2026, 校花的手</copyright>
    <lastBuildDate>Tue, 09 Jun 2026 11:37:43 GMT</lastBuildDate>
    <generator>Hexo</generator>
    <atom:link href="https://alenwee.xyz/rss2.xml" rel="self" type="application/rss+xml"/>
    <item>
      <title>Evergreen Heights — Tulip 双层排屋</title>
      <link>https://alenwee.xyz/2026/06/09/Bcb%20evergreen-tulip/</link>
      <description>Evergreen Heights Tulip 双层排屋位于 Batu Pahat，22x70 超大地段，建筑面积 2,589-2,607 sqft，4房4浴及5房4浴设计，CCC Ready现房发售，售价 RM712,800 起，仅剩最后2个单位。</description>
      <author>校花的手</author>
      <category domain="https://alenwee.xyz/categories/Brand-new/">Brand-new</category>
      <category domain="https://alenwee.xyz/tags/Double-Storey/">Double-Storey</category>
      <pubDate>Tue, 09 Jun 2026 10:17:55 GMT</pubDate>
      <content:encoded>
        <![CDATA[<span id="more"></span><link href="https://fonts.googleapis.com/css2?family=Space+Mono:wght@700&display=swap" rel="stylesheet"><style>  .sc-text {    font-family: 'Space Mono', monospace;    font-size: clamp(1.8rem, 5vw, 3rem);    font-weight: 700;    background: linear-gradient(90deg, #a78bfa, #60a5fa, #34d399, #f472b6);    background-size: 300% 100%;    -webkit-background-clip: text;    -webkit-text-fill-color: transparent;    background-clip: text;    animation: sc-hue 4s linear infinite;    letter-spacing: -0.02em;    display: inline-block;    line-height: 1.2;  }  .sc-cursor {    display: inline-block;    width: 3px;    height: 1em;    background: #a78bfa;    vertical-align: middle;    margin-left: 4px;    animation: sc-blink 0.7s step-end infinite;    border-radius: 2px;  }  @keyframes sc-blink { 50% { opacity: 0; } }  @keyframes sc-hue {    0%   { background-position: 0% 50%; }    100% { background-position: 300% 50%; }  }</style><div style="text-align:center; padding: 2rem 0;">  <span class="sc-text"></span><span class="sc-cursor"></span></div><script>(function(){  const chars='ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789@#$%!?';  const phrases=["Welcome to my blogger","Selamat datang","Evergreen Heights — Tulip 双层排屋"];  function scramble(el,text,dur,cb){    const len=text.length,t0=performance.now();    function f(now){      const p=Math.min((now-t0)/dur,1),rev=Math.floor(p*len);      let s='';      for(let i=0;i<len;i++) s+=i<rev?text[i]:chars[Math.floor(Math.random()*chars.length)];      el.textContent=s;      p<1?requestAnimationFrame(f):cb&&cb();    }    requestAnimationFrame(f);  }  const el=document.querySelector('.sc-text');  let idx=0;  function loop(){    scramble(el,phrases[idx%phrases.length],900,()=>{      setTimeout(()=>{ idx++; loop(); },2200);    });  }  loop();})();</script><div style="background:#1a1a2e; border-radius:12px; padding:2rem; min-height:160px; display:flex; align-items:center; justify-content:center; margin-bottom:1rem;">  <p id="quote-stp81b3" style="font-size:1.4rem; font-weight:500; color:white; text-align:center; line-height:1.6; max-width:520px;">Evergreen Heights Tulip 双层排屋现已正式取得 CCC 认证</p></div><div style="display:flex; flex-wrap:wrap; gap:10px; justify-content:center; margin-bottom:2rem;">  <button onclick="animChars_stp81b3()" class="st-btn-stp81b3">✦ Chars</button>  <button onclick="animWords_stp81b3()" class="st-btn-stp81b3">✦ Words</button>  <button onclick="animLines_stp81b3()" class="st-btn-stp81b3">✦ Price</button>  <button onclick="animCombo_stp81b3()" class="st-btn-stp81b3">✦ Combo</button>  <button onclick="revert_stp81b3()" class="st-btn-stp81b3" style="opacity:0.6;">↺ Revert</button></div><style>  .st-btn-stp81b3 {    padding: 8px 18px;    font-size: 14px;    border-radius: 8px;    cursor: pointer;    border: 1.5px solid currentColor;    background: transparent;    color: inherit;    transition: background 0.2s, color 0.2s;  }  .st-btn-stp81b3:hover {    background: rgba(128,128,128,0.15);  }</style><script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.12.5/gsap.min.js"></script><script>(function() {  const el = document.getElementById('quote-stp81b3');  const texts = {    chars: "Evergreen Heights Tulip 双层排屋现已正式取得 CCC 认证",    words: "22' × 70' 超大地段,建筑面积-2,589 – 2,607 sqft",    lines: "Start From Rm712,800",    combo: "现代时尚外观设计,通透玻璃阳台扶手设计,奢阔客餐厨与卧室空间"  };  let tl = null;  function setText(t) {    el.removeAttribute('data-original');    el.innerHTML = t;  }  function splitByChars(el) {    const text = el.getAttribute('data-original') || el.innerText;    el.setAttribute('data-original', text);    el.innerHTML = '';    const spans = [];    for (let i = 0; i < text.length; i++) {      const ch = text[i];      const sp = document.createElement('span');      sp.style.display = 'inline-block';      sp.textContent = ch === ' ' ? ' ' : ch;      el.appendChild(sp);      if (ch !== ' ') spans.push(sp);    }    return spans;  }  function splitByWords(el) {    const text = el.getAttribute('data-original') || el.innerText;    el.setAttribute('data-original', text);    el.innerHTML = '';    const spans = [];    text.split(' ').forEach((w, i, arr) => {      const sp = document.createElement('span');      sp.style.display = 'inline-block';      sp.textContent = w;      el.appendChild(sp);      spans.push(sp);      if (i < arr.length - 1) el.appendChild(document.createTextNode(' '));    });    return spans;  }  function splitByLines(el) {    const text = el.getAttribute('data-original') || el.innerText;    el.setAttribute('data-original', text);    el.innerHTML = '';    const wordSpans = text.split(' ').map((w, i, arr) => {      const sp = document.createElement('span');      sp.style.display = 'inline-block';      sp.textContent = w;      el.appendChild(sp);      if (i < arr.length - 1) el.appendChild(document.createTextNode(' '));      return sp;    });    const lines = [];    let currentLine = [], currentTop = null;    wordSpans.forEach(sp => {      const top = sp.getBoundingClientRect().top;      if (currentTop === null) currentTop = top;      if (Math.abs(top - currentTop) > 5) {        lines.push(currentLine); currentLine = [sp]; currentTop = top;      } else currentLine.push(sp);    });    if (currentLine.length) lines.push(currentLine);    return lines.map(line => {      const div = document.createElement('div');      line.forEach(sp => div.appendChild(sp.cloneNode(true)));      return div;    });  }  function kill() {    if (tl) { tl.kill(); tl = null; }  }  window['animChars_stp81b3'] = function() {    kill(); setText(texts.chars);    const chars = splitByChars(el);    tl = gsap.timeline();    tl.from(chars, { duration: 0.8, scale: 4, autoAlpha: 0, rotationX: -180, transformOrigin: '100% 50%', ease: 'back', stagger: 0.02 });  };  window['animWords_stp81b3'] = function() {    kill(); setText(texts.words);    const words = splitByWords(el);    tl = gsap.timeline();    words.forEach((word, i) => {      tl.from(word, { duration: 0.8, opacity: 0, force3D: true }, i * 0.08);      tl.from(word, { duration: 0.8, scale: i % 2 === 0 ? 0 : 2 }, i * 0.08);    });  };  window['animLines_stp81b3'] = function() {    kill(); setText(texts.lines);    const lines = splitByLines(el);    el.innerHTML = '';    lines.forEach(l => el.appendChild(l));    tl = gsap.from(lines, { duration: 1.2, opacity: 0, x: -80, stagger: 0.15, ease: 'expo.out' });  };  window['animCombo_stp81b3'] = function() {    kill(); setText(texts.combo);    const words = splitByWords(el);    const chars = [];    words.forEach(w => {      const t = w.textContent;      w.innerHTML = '';      for (let i = 0; i < t.length; i++) {        const sp = document.createElement('span');        sp.style.display = 'inline-block';        sp.textContent = t[i];        w.appendChild(sp);        chars.push(sp);      }    });    tl = gsap.timeline();    tl.from(chars, { duration: 0.6, autoAlpha: 0, scale: 3, force3D: true, stagger: 0.02 }, 0.3)      .to(words, { duration: 0.2, color: '#ff8709', scale: 0.9, stagger: 0.1 }, 'words')      .to(words, { duration: 0.4, color: 'white', scale: 1, stagger: 0.1 }, 'words+=0.1')      .to(words, { duration: 0.5, x: 100, autoAlpha: 0, stagger: 0.2 });  };  window['revert_stp81b3'] = function() {    kill(); setText(texts.chars);  };})();</script><!-- 封面大图 --><h1 id="🏡-Evergreen-Heights-—-Tulip-双层排屋"><a href="#🏡-Evergreen-Heights-—-Tulip-双层排屋" class="headerlink" title="🏡 Evergreen Heights — Tulip 双层排屋"></a>🏡 Evergreen Heights — Tulip 双层排屋</h1><blockquote><p><strong>峇株巴辖 Batu Pahat · 现房发售 · CCC Ready</strong></p></blockquote><p><img src="https://i.ibb.co/pvBGCxnn/evergree-tulip-1.webp" alt="Evergreen Heights 外观"></p><hr><h2 id="🔥-最后仅剩-2-个单位，售完即止！"><a href="#🔥-最后仅剩-2-个单位，售完即止！" class="headerlink" title="🔥 最后仅剩 2 个单位，售完即止！"></a>🔥 最后仅剩 2 个单位，售完即止！</h2><p>想拥有宽敞舒适、环境宁静的理想家园吗？Evergreen Heights Tulip 双层排屋现已正式取得 CCC 认证，无需漫长等待工程竣工，即刻签约，即刻收楼入住，享受成熟社区配套与静谧居住体验。</p><table><thead><tr><th>项目</th><th>详情</th></tr></thead><tbody><tr><td>💰 售价</td><td><strong>RM 712,800 起</strong></td></tr><tr><td>📐 地段</td><td>22’ × 70’</td></tr><tr><td>🏠 建筑面积</td><td>2,589 – 2,607 sqft</td></tr><tr><td>🛏️ 户型</td><td>4房4浴 &#x2F; 5房4浴</td></tr><tr><td>🚗 车位</td><td>双车位</td></tr><tr><td>📍 地点</td><td>峇株巴辖 Batu Pahat, Johor</td></tr><tr><td>✅ 状态</td><td>CCC Ready · 现房即住</td></tr></tbody></table><hr><h2 id="✨-项目亮点"><a href="#✨-项目亮点" class="headerlink" title="✨ 项目亮点"></a>✨ 项目亮点</h2><p><img src="https://i.ibb.co/KppLGcd1/Evergreen-Heights-6.webp" alt="项目亮点"></p><ul><li>🏡 <strong>22’ × 70’ 超大地段</strong>，尽显大宅气度</li><li>📐 <strong>建筑面积 2,589–2,607 sqft</strong>，满足多元居住需求</li><li>🛏️ <strong>4房4浴 &#x2F; 5房4浴</strong> 灵动格局，适配不同生活方案</li><li>🎨 <strong>现代时尚外观设计</strong>，打造独特建筑视觉</li><li>🌬️ <strong>高地势规划</strong>，通风优越，景观视野佳</li><li>🪟 <strong>通透玻璃阳台扶手设计</strong>，提升空间通透度</li><li>🍳 <strong>奢阔客餐厨与卧室空间</strong>，动静分区科学</li><li>🌿 <strong>静谧纯居社区</strong>，低密环境，舒适安心</li></ul><hr><h2 id="🏠-户型选择"><a href="#🏠-户型选择" class="headerlink" title="🏠 户型选择"></a>🏠 户型选择</h2><h3 id="Tulip-A"><a href="#Tulip-A" class="headerlink" title="Tulip A"></a>Tulip A</h3><p><img src="https://i.ibb.co/Tfg249d/Evergreen-Heights-3.webp" alt="Tulip A 封面"></p><p><img src="https://i.ibb.co/PsvBZsdf/tulip-A-4.webp" alt="Tulip A 平面图"></p><table><thead><tr><th>规格</th><th>详情</th></tr></thead><tbody><tr><td>建筑面积</td><td>2,607 sqft</td></tr><tr><td>地段</td><td>22’ × 70’</td></tr><tr><td>房间</td><td>4 房</td></tr><tr><td>浴室</td><td>4 浴</td></tr><tr><td>车位</td><td>双车位</td></tr></tbody></table><p><strong>楼层布局：</strong></p><ul><li><strong>地下层 Ground Floor</strong> — 客厅、饭厅、厨房、工人房、双车位</li><li><strong>楼上 First Floor</strong> — 主卧套房、卧室 2、卧室 3、卧室 4</li></ul><blockquote><p>动静分区明确，一层为公共活动区，二层为私密休息区。双层联排的经典布局，兼顾家庭社交与个人隐私。极高的空间利用率，每一寸都合乎规划，适合全家庭居住。</p></blockquote><hr><h3 id="Tulip-B"><a href="#Tulip-B" class="headerlink" title="Tulip B"></a>Tulip B</h3><p><img src="https://i.ibb.co/WvMx5rJZ/tulip-B-5.webp" alt="Tulip B 平面图"></p><table><thead><tr><th>规格</th><th>详情</th></tr></thead><tbody><tr><td>建筑面积</td><td>2,589 sqft</td></tr><tr><td>地段</td><td>22’ × 70’</td></tr><tr><td>房间</td><td>5 房</td></tr><tr><td>浴室</td><td>4 浴</td></tr><tr><td>车位</td><td>双车位</td></tr><tr><td>厨房</td><td>中西双厨</td></tr></tbody></table><p><strong>楼层布局：</strong></p><ul><li><strong>地下层 Ground Floor</strong> — 客厅、饭厅、中厨、西厨、双车位</li><li><strong>楼上 First Floor</strong> — 总统主卧套房（含豪华卫浴）、卧室 2、卧室 3、卧室 4、卧室 5</li></ul><p><strong>四大亮点：</strong></p><ul><li>🏠 <strong>方正格局</strong> — 全明通透，空间无浪费</li><li>👑 <strong>总统主卧</strong> — 尊贵私享，配备豪华卫浴</li><li>🍳 <strong>中西双厨</strong> — 功能分区，满足多元烹饪</li><li>🔇 <strong>动静分离</strong> — 科学布局，生活互不干扰</li></ul><hr><h2 id="📍-核心区位：静谧与繁华的完美平衡"><a href="#📍-核心区位：静谧与繁华的完美平衡" class="headerlink" title="📍 核心区位：静谧与繁华的完美平衡"></a>📍 核心区位：静谧与繁华的完美平衡</h2><p><img src="https://i.ibb.co/YBfmRCt3/Evergreen-Heights-2.webp" alt="区位图"></p><h3 id="🚗-距离-Batu-Pahat-市区约-10-分钟车程"><a href="#🚗-距离-Batu-Pahat-市区约-10-分钟车程" class="headerlink" title="🚗 距离 Batu Pahat 市区约 10 分钟车程"></a>🚗 距离 Batu Pahat 市区约 <strong>10 分钟</strong>车程</h3><p>坐拥完善的生活机能网络，轻松连接医疗、教育、购物等核心设施。在静谧社区中，享受触手可及的城市便利。</p><table><thead><tr><th>配套</th><th>说明</th></tr></thead><tbody><tr><td>🏫 优质学府</td><td>知名学校环绕周边</td></tr><tr><td>🛍️ 繁华商圈</td><td>一站式购物体验</td></tr><tr><td>🍜 风味餐饮</td><td>多元美食咫尺可达</td></tr><tr><td>🏥 医疗设施</td><td>完善医疗配套保障</td></tr></tbody></table><hr><h2 id="💼-自住与投资的双重臻选"><a href="#💼-自住与投资的双重臻选" class="headerlink" title="💼 自住与投资的双重臻选"></a>💼 自住与投资的双重臻选</h2><p><img src="https://i.ibb.co/GQtD57Js/Evergreen-Heights-7.webp" alt="自住与投资"></p><h3 id="🏠-自住-·-理想生活居所"><a href="#🏠-自住-·-理想生活居所" class="headerlink" title="🏠 自住 · 理想生活居所"></a>🏠 自住 · 理想生活居所</h3><p>采用宽敞的空间布局设计，兼顾隐私与互动，为家庭生活提供完美舞台。南北通透的采光、开阔的视野以及人性化的功能分区，让一家大小都能在此享受舒适、从容的日常，安放生活的美好点滴。</p><h3 id="📈-投资-·-稀缺现房机遇"><a href="#📈-投资-·-稀缺现房机遇" class="headerlink" title="📈 投资 · 稀缺现房机遇"></a>📈 投资 · 稀缺现房机遇</h3><p>核心地段的现房资产，省去期房等待与不确定风险。区域配套成熟且持续升级，房产流动性与保值属性极强，租金回报稳定，未来升值潜力不言而喻，是资产配置的优质选择。</p><blockquote><p><strong>“无论自住或投资，这都是区域内难得的现房机会，一次选择，双重价值保障”</strong></p></blockquote><hr><h2 id="💰-售价与行动"><a href="#💰-售价与行动" class="headerlink" title="💰 售价与行动"></a>💰 售价与行动</h2><p><img src="https://i.ibb.co/x8z21Xfc/Evergreen-Heights-8.webp" alt="售价"></p><h3 id="售价仅-RM-712-800-起"><a href="#售价仅-RM-712-800-起" class="headerlink" title="售价仅 RM 712,800 起"></a>售价仅 RM 712,800 起</h3><p>⚠️ <strong>最后 2 个单位，售完即止！</strong></p><p>买现房，不必等待漫长工期；最后两间稀缺席位，先到先得。即买即享成熟社区配套与高品质居住环境，无需承担期房风险，为您和家人锁定理想家园的最后机遇。</p><table><thead><tr><th></th><th></th></tr></thead><tbody><tr><td>✅ Move In Now</td><td>签约即可收楼入住</td></tr><tr><td>✅ CCC Ready</td><td>已取得竣工认证</td></tr><tr><td>⚠️ Limited Units</td><td>仅剩最后 2 个单位</td></tr></tbody></table><hr><p><em>* For illustration purposes only. All information subject to change without notice.</em></p><p><em>Evergreen Heights · Tulip · Batu Pahat, Johor</em></p><!-- WhatsApp 联系按钮 --><div style="text-align:center; padding:20px 0;">  <div style="position:relative; display:inline-block; padding:20px; border-radius:24px;">    <div style="position:absolute; width:200px; height:200px; background:radial-gradient(circle,rgba(37,211,102,0.4),transparent 70%); border-radius:50%; top:50%; left:50%; transform:translate(-50%,-50%); filter:blur(40px); pointer-events:none;"></div>    <a href="https://wa.me/0137568799"       target="_blank"       style="position:relative; display:inline-flex; align-items:center; gap:16px; padding:20px 32px; background:rgba(255,255,255,0.05); backdrop-filter:blur(20px); border:1px solid rgba(37,211,102,0.3); border-radius:20px; text-decoration:none;">      <div style="width:48px; height:48px; background:linear-gradient(135deg,#25D366,#128C7E); border-radius:14px; display:flex; align-items:center; justify-content:center; flex-shrink:0;">        <svg width="26" height="26" viewBox="0 0 24 24" fill="#fff">          <path d="M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 00-3.48-8.413z"/>        </svg>      </div>      <div>        <div style="font-size:11px; letter-spacing:3px; color:#25D366; margin-bottom:4px;">Chat with Us</div>        <div style="font-size:18px; font-weight:700; color:inherit;">Contact on WhatsApp</div>      </div>    </a>  </div></div><div class="video-container">[up主专用，视频内嵌代码贴在这]</div><style>.video-container {    position: relative;    width: 100%;    padding-top: 56.25%; /* 16:9 aspect ratio (height/width = 9/16 * 100%) */}.video-container iframe {    position: absolute;    top: 0;    left: 0;    width: 100%;    height: 100%;}</style>]]>
      </content:encoded>
    </item>
    <item>
      <title>Batu Pahat Taman Bukit Mutiara</title>
      <link>https://alenwee.xyz/2026/06/05/BP-Taman-Bukit-Mutiara/</link>
      <description>峇株巴辖 Taman Bukit Mutiara 出租房间，设施齐全，欢迎 WhatsApp 联系。</description>
      <author>校花的手</author>
      <category domain="https://alenwee.xyz/categories/Renting/">Renting</category>
      <category domain="https://alenwee.xyz/tags/Bp-Rental/">Bp-Rental</category>
      <pubDate>Fri, 05 Jun 2026 05:17:35 GMT</pubDate>
      <content:encoded>
        <![CDATA[<span id="more"></span><link href="https://fonts.googleapis.com/css2?family=Space+Mono:wght@700&display=swap" rel="stylesheet"><style>  .sc-text {    font-family: 'Space Mono', monospace;    font-size: clamp(1.8rem, 5vw, 3rem);    font-weight: 700;    background: linear-gradient(90deg, #a78bfa, #60a5fa, #34d399, #f472b6);    background-size: 300% 100%;    -webkit-background-clip: text;    -webkit-text-fill-color: transparent;    background-clip: text;    animation: sc-hue 4s linear infinite;    letter-spacing: -0.02em;    display: inline-block;    line-height: 1.2;  }  .sc-cursor {    display: inline-block;    width: 3px;    height: 1em;    background: #a78bfa;    vertical-align: middle;    margin-left: 4px;    animation: sc-blink 0.7s step-end infinite;    border-radius: 2px;  }  @keyframes sc-blink { 50% { opacity: 0; } }  @keyframes sc-hue {    0%   { background-position: 0% 50%; }    100% { background-position: 300% 50%; }  }</style><div style="text-align:center; padding: 2rem 0;">  <span class="sc-text"></span><span class="sc-cursor"></span></div><script>(function(){  const chars='ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789@#$%!?';  const phrases=["Welcome to my blogger","Selamat datang","Taman Bukit Mutiara"];  function scramble(el,text,dur,cb){    const len=text.length,t0=performance.now();    function f(now){      const p=Math.min((now-t0)/dur,1),rev=Math.floor(p*len);      let s='';      for(let i=0;i<len;i++) s+=i<rev?text[i]:chars[Math.floor(Math.random()*chars.length)];      el.textContent=s;      p<1?requestAnimationFrame(f):cb&&cb();    }    requestAnimationFrame(f);  }  const el=document.querySelector('.sc-text');  let idx=0;  function loop(){    scramble(el,phrases[idx%phrases.length],900,()=>{      setTimeout(()=>{ idx++; loop(); },2200);    });  }  loop();})();</script><div style="background:#1a1a2e; border-radius:12px; padding:2rem; min-height:160px; display:flex; align-items:center; justify-content:center; margin-bottom:1rem;">  <p id="quote-stndziq" style="font-size:1.4rem; font-weight:500; color:white; text-align:center; line-height:1.6; max-width:520px;">Taman Bukit Mutiara Single storey terrace sewa</p></div><div style="display:flex; flex-wrap:wrap; gap:10px; justify-content:center; margin-bottom:2rem;">  <button onclick="animChars_stndziq()" class="st-btn-stndziq">✦ Chars</button>  <button onclick="animWords_stndziq()" class="st-btn-stndziq">✦ Words</button>  <button onclick="animLines_stndziq()" class="st-btn-stndziq">✦ Price</button>  <button onclick="animCombo_stndziq()" class="st-btn-stndziq">✦ Combo</button>  <button onclick="revert_stndziq()" class="st-btn-stndziq" style="opacity:0.6;">↺ Revert</button></div><style>  .st-btn-stndziq {    padding: 8px 18px;    font-size: 14px;    border-radius: 8px;    cursor: pointer;    border: 1.5px solid currentColor;    background: transparent;    color: inherit;    transition: background 0.2s, color 0.2s;  }  .st-btn-stndziq:hover {    background: rgba(128,128,128,0.15);  }</style><script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.12.5/gsap.min.js"></script><script>(function() {  const el = document.getElementById('quote-stndziq');  const texts = {    chars: "Taman Bukit Mutiara Single storey terrace sewa",    words: "2 bilik 1 tandas（单层2房1厕）",    lines: "Bulanan 650",    combo: "Siap kemas kersih boleh pindah masuk（可随时入住）"  };  let tl = null;  function setText(t) {    el.removeAttribute('data-original');    el.innerHTML = t;  }  function splitByChars(el) {    const text = el.getAttribute('data-original') || el.innerText;    el.setAttribute('data-original', text);    el.innerHTML = '';    const spans = [];    for (let i = 0; i < text.length; i++) {      const ch = text[i];      const sp = document.createElement('span');      sp.style.display = 'inline-block';      sp.textContent = ch === ' ' ? ' ' : ch;      el.appendChild(sp);      if (ch !== ' ') spans.push(sp);    }    return spans;  }  function splitByWords(el) {    const text = el.getAttribute('data-original') || el.innerText;    el.setAttribute('data-original', text);    el.innerHTML = '';    const spans = [];    text.split(' ').forEach((w, i, arr) => {      const sp = document.createElement('span');      sp.style.display = 'inline-block';      sp.textContent = w;      el.appendChild(sp);      spans.push(sp);      if (i < arr.length - 1) el.appendChild(document.createTextNode(' '));    });    return spans;  }  function splitByLines(el) {    const text = el.getAttribute('data-original') || el.innerText;    el.setAttribute('data-original', text);    el.innerHTML = '';    const wordSpans = text.split(' ').map((w, i, arr) => {      const sp = document.createElement('span');      sp.style.display = 'inline-block';      sp.textContent = w;      el.appendChild(sp);      if (i < arr.length - 1) el.appendChild(document.createTextNode(' '));      return sp;    });    const lines = [];    let currentLine = [], currentTop = null;    wordSpans.forEach(sp => {      const top = sp.getBoundingClientRect().top;      if (currentTop === null) currentTop = top;      if (Math.abs(top - currentTop) > 5) {        lines.push(currentLine); currentLine = [sp]; currentTop = top;      } else currentLine.push(sp);    });    if (currentLine.length) lines.push(currentLine);    return lines.map(line => {      const div = document.createElement('div');      line.forEach(sp => div.appendChild(sp.cloneNode(true)));      return div;    });  }  function kill() {    if (tl) { tl.kill(); tl = null; }  }  window['animChars_stndziq'] = function() {    kill(); setText(texts.chars);    const chars = splitByChars(el);    tl = gsap.timeline();    tl.from(chars, { duration: 0.8, scale: 4, autoAlpha: 0, rotationX: -180, transformOrigin: '100% 50%', ease: 'back', stagger: 0.02 });  };  window['animWords_stndziq'] = function() {    kill(); setText(texts.words);    const words = splitByWords(el);    tl = gsap.timeline();    words.forEach((word, i) => {      tl.from(word, { duration: 0.8, opacity: 0, force3D: true }, i * 0.08);      tl.from(word, { duration: 0.8, scale: i % 2 === 0 ? 0 : 2 }, i * 0.08);    });  };  window['animLines_stndziq'] = function() {    kill(); setText(texts.lines);    const lines = splitByLines(el);    el.innerHTML = '';    lines.forEach(l => el.appendChild(l));    tl = gsap.from(lines, { duration: 1.2, opacity: 0, x: -80, stagger: 0.15, ease: 'expo.out' });  };  window['animCombo_stndziq'] = function() {    kill(); setText(texts.combo);    const words = splitByWords(el);    const chars = [];    words.forEach(w => {      const t = w.textContent;      w.innerHTML = '';      for (let i = 0; i < t.length; i++) {        const sp = document.createElement('span');        sp.style.display = 'inline-block';        sp.textContent = t[i];        w.appendChild(sp);        chars.push(sp);      }    });    tl = gsap.timeline();    tl.from(chars, { duration: 0.6, autoAlpha: 0, scale: 3, force3D: true, stagger: 0.02 }, 0.3)      .to(words, { duration: 0.2, color: '#ff8709', scale: 0.9, stagger: 0.1 }, 'words')      .to(words, { duration: 0.4, color: 'white', scale: 1, stagger: 0.1 }, 'words+=0.1')      .to(words, { duration: 0.5, x: 100, autoAlpha: 0, stagger: 0.2 });  };  window['revert_stndziq'] = function() {    kill(); setText(texts.chars);  };})();</script><hr><!-- 封面大图 --><p><img src="https://pic.vvfree.de/i/2026/06/05/m00zh1.webp" alt="image"></p><h2 id="📍-Taman-Bukit-Mutiara-—-Single-Storey-Terrace-Sewa"><a href="#📍-Taman-Bukit-Mutiara-—-Single-Storey-Terrace-Sewa" class="headerlink" title="📍 Taman Bukit Mutiara — Single Storey Terrace Sewa"></a>📍 Taman Bukit Mutiara — Single Storey Terrace Sewa</h2><p><strong>（华中路单层出租）</strong></p><table><thead><tr><th>项目</th><th>详情</th></tr></thead><tbody><tr><td>房间 &#x2F; 浴室</td><td>2 bilik 1 tandas（2 房 1 厕）</td></tr><tr><td>厨房</td><td>干湿双厨房</td></tr><tr><td>入住状态</td><td>可随时入住</td></tr><tr><td><strong>月租</strong></td><td><strong>RM 650 &#x2F; 月</strong></td></tr></tbody></table><p>✔️ 2 bilik 1 tandas（单层 2 房 1 厕）<br>✔️ Siap kemas kersih, boleh pindah masuk（可随时入住）<br>✔️ Dua kitchen kering &#x2F; basah（干湿双厨房）</p><!-- WhatsApp 联系按钮 --><div style="text-align:center; padding:20px 0;">  <div style="position:relative; display:inline-block; padding:20px; border-radius:24px;">    <div style="position:absolute; width:200px; height:200px; background:radial-gradient(circle,rgba(37,211,102,0.4),transparent 70%); border-radius:50%; top:50%; left:50%; transform:translate(-50%,-50%); filter:blur(40px); pointer-events:none;"></div>    <a href="https://wa.me/0137568799"       target="_blank"       style="position:relative; display:inline-flex; align-items:center; gap:16px; padding:20px 32px; background:rgba(255,255,255,0.05); backdrop-filter:blur(20px); border:1px solid rgba(37,211,102,0.3); border-radius:20px; text-decoration:none;">      <div style="width:48px; height:48px; background:linear-gradient(135deg,#25D366,#128C7E); border-radius:14px; display:flex; align-items:center; justify-content:center; flex-shrink:0;">        <svg width="26" height="26" viewBox="0 0 24 24" fill="#fff">          <path d="M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 00-3.48-8.413z"/>        </svg>      </div>      <div>        <div style="font-size:11px; letter-spacing:3px; color:#25D366; margin-bottom:4px;">Chat with Us</div>        <div style="font-size:18px; font-weight:700; color:inherit;">Contact on WhatsApp</div>      </div>    </a>  </div></div><div class="video-container">[up主专用，视频内嵌代码贴在这]</div><style>.video-container {    position: relative;    width: 100%;    padding-top: 56.25%; /* 16:9 aspect ratio (height/width = 9/16 * 100%) */}.video-container iframe {    position: absolute;    top: 0;    left: 0;    width: 100%;    height: 100%;}</style>]]>
      </content:encoded>
    </item>
    <item>
      <title>LA Garden @ Austin 枫叶庭 双层排屋出售</title>
      <link>https://alenwee.xyz/2026/06/04/La-garden-jb/</link>
      <description>新山 Austin 枫叶庭二手双层排屋出售，4房，Freehold 永久地契，环境成熟，欢迎 WhatsApp 询问。</description>
      <author>校花的手</author>
      <category domain="https://alenwee.xyz/categories/Second/">Second</category>
      <category domain="https://alenwee.xyz/tags/Subsale/">Subsale</category>
      <pubDate>Thu, 04 Jun 2026 04:49:41 GMT</pubDate>
      <content:encoded>
        <![CDATA[<span id="more"></span><link href="https://fonts.googleapis.com/css2?family=Space+Mono:wght@700&display=swap" rel="stylesheet"><style>  .sc-text {    font-family: 'Space Mono', monospace;    font-size: clamp(1.8rem, 5vw, 3rem);    font-weight: 700;    background: linear-gradient(90deg, #a78bfa, #60a5fa, #34d399, #f472b6);    background-size: 300% 100%;    -webkit-background-clip: text;    -webkit-text-fill-color: transparent;    background-clip: text;    animation: sc-hue 4s linear infinite;    letter-spacing: -0.02em;    display: inline-block;    line-height: 1.2;  }  .sc-cursor {    display: inline-block;    width: 3px;    height: 1em;    background: #a78bfa;    vertical-align: middle;    margin-left: 4px;    animation: sc-blink 0.7s step-end infinite;    border-radius: 2px;  }  @keyframes sc-blink { 50% { opacity: 0; } }  @keyframes sc-hue {    0%   { background-position: 0% 50%; }    100% { background-position: 300% 50%; }  }</style><div style="text-align:center; padding: 2rem 0;">  <span class="sc-text"></span><span class="sc-cursor"></span></div><script>(function(){  const chars='ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789@#$%!?';  const phrases=["Welcome to my blogger","Selamat datang","LA Garden @ Austin 双层排屋出售"];  function scramble(el,text,dur,cb){    const len=text.length,t0=performance.now();    function f(now){      const p=Math.min((now-t0)/dur,1),rev=Math.floor(p*len);      let s='';      for(let i=0;i<len;i++) s+=i<rev?text[i]:chars[Math.floor(Math.random()*chars.length)];      el.textContent=s;      p<1?requestAnimationFrame(f):cb&&cb();    }    requestAnimationFrame(f);  }  const el=document.querySelector('.sc-text');  let idx=0;  function loop(){    scramble(el,phrases[idx%phrases.length],900,()=>{      setTimeout(()=>{ idx++; loop(); },2200);    });  }  loop();})();</script><div style="background:#1a1a2e; border-radius:12px; padding:2rem; min-height:160px; display:flex; align-items:center; justify-content:center; margin-bottom:1rem;">  <p id="quote-styqvmt" style="font-size:1.4rem; font-weight:500; color:white; text-align:center; line-height:1.6; max-width:520px;">保安围篱社区,永久地契</p></div><div style="display:flex; flex-wrap:wrap; gap:10px; justify-content:center; margin-bottom:2rem;">  <button onclick="animChars_styqvmt()" class="st-btn-styqvmt">✦ Chars</button>  <button onclick="animWords_styqvmt()" class="st-btn-styqvmt">✦ Words</button>  <button onclick="animLines_styqvmt()" class="st-btn-styqvmt">✦ Price</button>  <button onclick="animCombo_styqvmt()" class="st-btn-styqvmt">✦ Combo</button>  <button onclick="revert_styqvmt()" class="st-btn-styqvmt" style="opacity:0.6;">↺ Revert</button></div><style>  .st-btn-styqvmt {    padding: 8px 18px;    font-size: 14px;    border-radius: 8px;    cursor: pointer;    border: 1.5px solid currentColor;    background: transparent;    color: inherit;    transition: background 0.2s, color 0.2s;  }  .st-btn-styqvmt:hover {    background: rgba(128,128,128,0.15);  }</style><script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.12.5/gsap.min.js"></script><script>(function() {  const el = document.getElementById('quote-styqvmt');  const texts = {    chars: "保安围篱社区,永久地契",    words: "3分钟直达 Crest Austin 商圈",    lines: "Selling Price RM728,000",    combo: "保养良好，可直接入住"  };  let tl = null;  function setText(t) {    el.removeAttribute('data-original');    el.innerHTML = t;  }  function splitByChars(el) {    const text = el.getAttribute('data-original') || el.innerText;    el.setAttribute('data-original', text);    el.innerHTML = '';    const spans = [];    for (let i = 0; i < text.length; i++) {      const ch = text[i];      const sp = document.createElement('span');      sp.style.display = 'inline-block';      sp.textContent = ch === ' ' ? ' ' : ch;      el.appendChild(sp);      if (ch !== ' ') spans.push(sp);    }    return spans;  }  function splitByWords(el) {    const text = el.getAttribute('data-original') || el.innerText;    el.setAttribute('data-original', text);    el.innerHTML = '';    const spans = [];    text.split(' ').forEach((w, i, arr) => {      const sp = document.createElement('span');      sp.style.display = 'inline-block';      sp.textContent = w;      el.appendChild(sp);      spans.push(sp);      if (i < arr.length - 1) el.appendChild(document.createTextNode(' '));    });    return spans;  }  function splitByLines(el) {    const text = el.getAttribute('data-original') || el.innerText;    el.setAttribute('data-original', text);    el.innerHTML = '';    const wordSpans = text.split(' ').map((w, i, arr) => {      const sp = document.createElement('span');      sp.style.display = 'inline-block';      sp.textContent = w;      el.appendChild(sp);      if (i < arr.length - 1) el.appendChild(document.createTextNode(' '));      return sp;    });    const lines = [];    let currentLine = [], currentTop = null;    wordSpans.forEach(sp => {      const top = sp.getBoundingClientRect().top;      if (currentTop === null) currentTop = top;      if (Math.abs(top - currentTop) > 5) {        lines.push(currentLine); currentLine = [sp]; currentTop = top;      } else currentLine.push(sp);    });    if (currentLine.length) lines.push(currentLine);    return lines.map(line => {      const div = document.createElement('div');      line.forEach(sp => div.appendChild(sp.cloneNode(true)));      return div;    });  }  function kill() {    if (tl) { tl.kill(); tl = null; }  }  window['animChars_styqvmt'] = function() {    kill(); setText(texts.chars);    const chars = splitByChars(el);    tl = gsap.timeline();    tl.from(chars, { duration: 0.8, scale: 4, autoAlpha: 0, rotationX: -180, transformOrigin: '100% 50%', ease: 'back', stagger: 0.02 });  };  window['animWords_styqvmt'] = function() {    kill(); setText(texts.words);    const words = splitByWords(el);    tl = gsap.timeline();    words.forEach((word, i) => {      tl.from(word, { duration: 0.8, opacity: 0, force3D: true }, i * 0.08);      tl.from(word, { duration: 0.8, scale: i % 2 === 0 ? 0 : 2 }, i * 0.08);    });  };  window['animLines_styqvmt'] = function() {    kill(); setText(texts.lines);    const lines = splitByLines(el);    el.innerHTML = '';    lines.forEach(l => el.appendChild(l));    tl = gsap.from(lines, { duration: 1.2, opacity: 0, x: -80, stagger: 0.15, ease: 'expo.out' });  };  window['animCombo_styqvmt'] = function() {    kill(); setText(texts.combo);    const words = splitByWords(el);    const chars = [];    words.forEach(w => {      const t = w.textContent;      w.innerHTML = '';      for (let i = 0; i < t.length; i++) {        const sp = document.createElement('span');        sp.style.display = 'inline-block';        sp.textContent = t[i];        w.appendChild(sp);        chars.push(sp);      }    });    tl = gsap.timeline();    tl.from(chars, { duration: 0.6, autoAlpha: 0, scale: 3, force3D: true, stagger: 0.02 }, 0.3)      .to(words, { duration: 0.2, color: '#ff8709', scale: 0.9, stagger: 0.1 }, 'words')      .to(words, { duration: 0.4, color: 'white', scale: 1, stagger: 0.1 }, 'words+=0.1')      .to(words, { duration: 0.5, x: 100, autoAlpha: 0, stagger: 0.2 });  };  window['revert_styqvmt'] = function() {    kill(); setText(texts.chars);  };})();</script><!-- 封面大图 --><p><img src="https://raw.githubusercontent.com/Alen-property/photo/main/img/LA%20Garden%20%40%20Austin%20photo-grid.webp" alt="image"></p><hr><h2 id="🏡-LA-Garden-Austin-枫叶庭"><a href="#🏡-LA-Garden-Austin-枫叶庭" class="headerlink" title="🏡 LA Garden @ Austin 枫叶庭"></a>🏡 LA Garden @ Austin 枫叶庭</h2><div style="display:flex;gap:12px;flex-wrap:wrap;margin:16px 0;">  <span style="background:#e8f5e9;color:#2e7d32;padding:6px 14px;border-radius:20px;font-size:14px;">✅ 永久地契</span>  <span style="background:#e8f5e9;color:#2e7d32;padding:6px 14px;border-radius:20px;font-size:14px;">🔒 Gated & Guarded</span>  <span style="background:#fff3e0;color:#e65100;padding:6px 14px;border-radius:20px;font-size:14px;">💰 RM728,000</span>  <span style="background:#e3f2fd;color:#1565c0;padding:6px 14px;border-radius:20px;font-size:14px;">🛏 4房 3浴</span></div><hr><h2 id="📍-优越地点"><a href="#📍-优越地点" class="headerlink" title="📍 优越地点"></a>📍 优越地点</h2><ul><li>3分钟直达 Crest Austin 商圈</li><li>邻近 Setia Indah、JP Perdana、Austin Heights</li><li>周边生活机能完善，餐饮、超市、银行一应俱全</li></ul><hr><h2 id="📋-房屋资料"><a href="#📋-房屋资料" class="headerlink" title="📋 房屋资料"></a>📋 房屋资料</h2><table><thead><tr><th>项目</th><th>详情</th></tr></thead><tbody><tr><td>类型</td><td>双层排屋（Intermediate Lot）</td></tr><tr><td>土地面积</td><td>18’ x 65’（1,170 sqft）</td></tr><tr><td>卧室</td><td>4 间</td></tr><tr><td>浴室</td><td>3 间</td></tr><tr><td>地契</td><td>永久地契（Freehold）</td></tr><tr><td>社区</td><td>Gated &amp; Guarded</td></tr><tr><td>保安费</td><td>RM80 &#x2F; 月</td></tr><tr><td>状态</td><td>保养良好，可直接入住 ✅</td></tr></tbody></table><hr><h2 id="🎬-视频介绍"><a href="#🎬-视频介绍" class="headerlink" title="🎬 视频介绍"></a>🎬 视频介绍</h2><div style="position:relative;width:100%;padding-top:56.25%;border-radius:16px;overflow:hidden;margin:16px 0;">  <iframe     style="position:absolute;top:0;left:0;width:100%;height:100%;border:0;"    src="https://www.youtube.com/embed/aO8c4rCyu24"    allowfullscreen>  </iframe></div><hr><h2 id="📞-立即联系"><a href="#📞-立即联系" class="headerlink" title="📞 立即联系"></a>📞 立即联系</h2><div style="text-align:center;margin:24px 0;">  <a href="https://wa.me/60137568799" target="_blank"     style="display:inline-flex;align-items:center;gap:16px;padding:20px 32px;background:linear-gradient(135deg,#25D366,#128C7E);border-radius:20px;text-decoration:none;box-shadow:0 4px 20px rgba(37,211,102,0.4);">    <svg width="28" height="28" viewBox="0 0 24 24" fill="#fff"><path d="M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 00-3.48-8.413z"/></svg>    <div style="text-align:left;">      <div style="font-size:12px;color:rgba(255,255,255,0.8);letter-spacing:2px;">CONTACT US</div>      <div style="font-size:18px;font-weight:700;color:#fff;">WhatsApp 立即咨询</div>    </div>  </a></div>]]>
      </content:encoded>
    </item>
    <item>
      <title>Taman Mutiara Gading Double Storey Terrace</title>
      <link>https://alenwee.xyz/2026/05/31/taman-mutiara-gading-terrace/</link>
      <description>峇株巴辖 Sri Gading 成熟住宅区，Taman Mutiara Gading 双层排屋 End Lot 出售，4房4厕，永久地契，售价 RM 535,000。</description>
      <author>校花的手</author>
      <category domain="https://alenwee.xyz/categories/Second/">Second</category>
      <category domain="https://alenwee.xyz/tags/Subsale/">Subsale</category>
      <pubDate>Sun, 31 May 2026 11:57:44 GMT</pubDate>
      <content:encoded>
        <![CDATA[<span id="more"></span><style>@import url('https://fonts.googleapis.com/css2?family=Space+Mono:wght@700&display=swap');.sc-text {  font-family: 'Space Mono', monospace;  font-size: clamp(1.8rem, 5vw, 3rem);  font-weight: 700;  background: linear-gradient(90deg, #a78bfa, #60a5fa, #34d399, #f472b6);  background-size: 300% 100%;  -webkit-background-clip: text;  -webkit-text-fill-color: transparent;  background-clip: text;  animation: sc-hue 4s linear infinite;  letter-spacing: -0.02em;  display: inline-block;  line-height: 1.2;}.sc-cursor {  display: inline-block;  width: 3px;  height: 1em;  background: #a78bfa;  vertical-align: middle;  margin-left: 4px;  animation: sc-blink 0.7s step-end infinite;  border-radius: 2px;}@keyframes sc-blink {  50% { opacity: 0; }}@keyframes sc-hue {  0%   { background-position: 0% 50%; }  100% { background-position: 300% 50%; }}.video-container {  position: relative;  width: 100%;  padding-top: 56.25%;}.video-container iframe {  position: absolute;  top: 0;  left: 0;  width: 100%;  height: 100%;}</style><!-- 打字动画 --><div class="sc-block" style="text-align:center; padding: 2rem 0;">  <span class="sc-text"></span><span class="sc-cursor"></span></div><script>(function () {  const chars = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789@#$%!?';  const phrases = [    '欢迎来到我的博客~',    'Selamat Datang',    'Taman Mutiara Gading Double Storey',    'End lot 535,000 Only'  ];  function scramble(el, text, dur, cb) {    const len = text.length;    const t0 = performance.now();    function f(now) {      const p = Math.min((now - t0) / dur, 1);      const rev = Math.floor(p * len);      let s = '';      for (let i = 0; i < len; i++) {        s += i < rev ? text[i] : chars[Math.floor(Math.random() * chars.length)];      }      el.textContent = s;      p < 1 ? requestAnimationFrame(f) : cb && cb();    }    requestAnimationFrame(f);  }  function initBlock(block) {    const el = block.querySelector('.sc-text');    if (!el) return;    let idx = 0;    function loop() {      scramble(el, phrases[idx % phrases.length], 900, () => {        setTimeout(() => { idx++; loop(); }, 2200);      });    }    loop();  }  document.querySelectorAll('.sc-block').forEach(initBlock);})();</script><hr><!-- 正文从这里开始 --><p><img src="https://raw.githubusercontent.com/Alen-property/photo/main/img/mutiara%20gading%20double%20storey.webp" alt="image"></p><h2 id="🏡-为什么越来越多人，买排屋都指定要-End-Lot？"><a href="#🏡-为什么越来越多人，买排屋都指定要-End-Lot？" class="headerlink" title="🏡 为什么越来越多人，买排屋都指定要 End Lot？"></a>🏡 为什么越来越多人，买排屋都指定要 End Lot？</h2><p>因为多一边空间，不只是”比较大”那么简单，而是住起来真的差很多。</p><p>✨ 想象一下：</p><ul><li>孩子有更多活动空间</li><li>家里通风更好</li><li>停车更方便</li><li>邻居不再紧贴一边，生活自然更舒服</li></ul><p>而且，在成熟住宅区里，真正好的角头单位，是不是越来越难找了？</p><hr><h2 id="📍-Taman-Mutiara-Gading-双层排屋-End-Lot-出售"><a href="#📍-Taman-Mutiara-Gading-双层排屋-End-Lot-出售" class="headerlink" title="📍 Taman Mutiara Gading 双层排屋 End Lot 出售"></a>📍 Taman Mutiara Gading 双层排屋 End Lot 出售</h2><p><strong>地址：</strong> Jalan Mutiara Gading Utama 3&#x2F;5, Taman Mutiara Gading, 83300 Sri Gading, Johor</p><table><thead><tr><th>项目</th><th>详情</th></tr></thead><tbody><tr><td>面积</td><td>20’ × 70’</td></tr><tr><td>房间 &#x2F; 浴室</td><td>4 房 4 厕</td></tr><tr><td>地契</td><td>Freehold 永久地契</td></tr><tr><td>地段类型</td><td>International Lot</td></tr><tr><td>朝向</td><td>面向西北</td></tr><tr><td>环境</td><td>成熟住宅区</td></tr></tbody></table><hr><h2 id="💰-价格"><a href="#💰-价格" class="headerlink" title="💰 价格"></a>💰 价格</h2><table><thead><tr><th>类型</th><th>价格</th></tr></thead><tbody><tr><td>银行估价</td><td>RM 580,000</td></tr><tr><td><strong>售价</strong></td><td><strong>RM 535,000</strong></td></tr></tbody></table><p>有些人买房，只是买一个”能住”的地方。<br>有些人买房，则更在意空间感、隐私感，还有未来的升值潜力。</p><p>如果同样是双层排屋，为什么不直接选择更稀有、更舒适的 End Lot？ 🏡✨</p><hr><!-- WhatsApp 联系按钮 --><div style="text-align:center; padding:20px 0;">  <div style="position:relative; display:inline-block; padding:20px; border-radius:24px;">    <div style="position:absolute; width:200px; height:200px; background:radial-gradient(circle,rgba(37,211,102,0.4),transparent 70%); border-radius:50%; top:50%; left:50%; transform:translate(-50%,-50%); filter:blur(40px); pointer-events:none;"></div>    <a href="https://wa.me/0137568799"       target="_blank"       style="position:relative; display:inline-flex; align-items:center; gap:16px; padding:20px 32px; background:rgba(255,255,255,0.05); backdrop-filter:blur(20px); border:1px solid rgba(37,211,102,0.3); border-radius:20px; text-decoration:none;">      <div style="width:48px; height:48px; background:linear-gradient(135deg,#25D366,#128C7E); border-radius:14px; display:flex; align-items:center; justify-content:center; flex-shrink:0;">        <svg width="26" height="26" viewBox="0 0 24 24" fill="#fff">          <path d="M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 00-3.48-8.413z"/>        </svg>      </div>      <div>        <div style="font-size:11px; letter-spacing:3px; color:#25D366; margin-bottom:4px;">Chat with Us</div>        <div style="font-size:18px; font-weight:700; color:inherit;">Contact on WhatsApp</div>      </div>    </a>  </div></div><hr><!-- 视频嵌入（替换下方占位符） --><div class="video-container">  [up主专用，视频内嵌代码贴在这]</div>]]>
      </content:encoded>
    </item>
    <item>
      <title>Tanah minyak beku</title>
      <link>https://alenwee.xyz/2026/05/29/Tanah-minyak-beku/</link>
      <description>柔佛 Minyak Beku 地皮出售，适合投资或自建，欢迎 WhatsApp 询问详情。</description>
      <author>校花的手</author>
      <category domain="https://alenwee.xyz/categories/Landing/">Landing</category>
      <category domain="https://alenwee.xyz/tags/Land/">Land</category>
      <pubDate>Fri, 29 May 2026 09:33:43 GMT</pubDate>
      <content:encoded>
        <![CDATA[<span id="more"></span><div class="text-scramble__content">  <p id="scramble-text-original">这是一遍新的博文.</p>  <p class="text-scramble__text" aria-hidden="true">    <span id="scramble-text-1"></span>    <span id="scramble-text-2"></span>    <span id="scramble-text-3"></span>    <span id="scramble-text-4"></span>    <span id="scramble-text-5"></span>    <img id="scramble-cursor" src="https://assets.codepen.io/16327/scramble-cursor.png" alt="" />  </p></div><button class="scramble-btn" id="replay">repeat</button><script>const CHAR_SETS = {  lowerCase: "abcdefghijklmnopqrstuvwxyz",  upperCase: "ABCDEFGHIJKLMNOPQRSTUVWXYZ",  XO: "XO",  numbers: "0123456789"};const segments = [  { id: "scramble-text-1", text: "Tanah Mukim Minyak Beku. ", chars: CHAR_SETS.lowerCase, duration: 2000, speed: 1 },  { id: "scramble-text-2", text: "Selamat Datang Blogger", chars: CHAR_SETS.XO, duration: 2000, speed: 0.4 },  { id: "scramble-text-3", text: "  ", chars: CHAR_SETS.numbers, duration: 2000, speed: 1 },];let cursorInterval = null;let running = false;let activeIntervals = [];function randomChar(chars) {  return chars[Math.floor(Math.random() * chars.length)];}function scrambleSegment(seg) {  return new Promise(resolve => {    const el = document.getElementById(seg.id);    el.innerHTML = "";    const fps = 30;    const totalFrames = Math.round((seg.duration / 1000) * fps);    const revealDelay = 1 - seg.speed * 0.5;    let frame = 0;    const iv = setInterval(() => {      frame++;      const progress = frame / totalFrames;      const revealProgress = Math.max(0, (progress - revealDelay) / (1 - revealDelay));      const revealCount = Math.floor(revealProgress * seg.text.length);      let output = "";      for (let i = 0; i < seg.text.length; i++) {        if (i < revealCount) {          output += seg.text[i];        } else if (seg.text[i] === " ") {          output += " ";        } else {          output += `<span>${randomChar(seg.chars)}</span>`;        }      }      el.innerHTML = output;      if (frame >= totalFrames) {        clearInterval(iv);        activeIntervals = activeIntervals.filter(x => x !== iv);        el.textContent = seg.text;        resolve();      }    }, 1000 / fps);    activeIntervals.push(iv);  });}function startCursorBlink() {  const cursor = document.getElementById("scramble-cursor");  cursor.style.opacity = "1";  let visible = true;  cursorInterval = setInterval(() => {    visible = !visible;    cursor.style.opacity = visible ? "1" : "0";  }, 500);}function stopCursor() {  clearInterval(cursorInterval);  document.getElementById("scramble-cursor").style.opacity = "0";}async function playAll() {  if (running) return;  running = true;  activeIntervals.forEach(iv => clearInterval(iv));  activeIntervals = [];  stopCursor();  segments.forEach(seg => {    document.getElementById(seg.id).textContent = "";  });  for (const seg of segments) {    await scrambleSegment(seg);  }  startCursorBlink();  running = false;}playAll();document.getElementById("replay").addEventListener("click", () => {  if (!running) playAll();});</script><style>.text-scramble__content {  font-size: 1.4em;  font-weight: 500;  line-height: 1.6;  margin: 1.5rem 0;  min-height: 3em;}#scramble-text-original { display: none; }.text-scramble__text { margin: 0; display: block; }.text-scramble__text span { color: #000000 !important; }#scramble-cursor {  display: inline-block;  height: 1em;  vertical-align: middle;  margin-left: 2px;  opacity: 0;}.scramble-btn {  padding: 8px 20px;  font-size: 15px;  cursor: pointer;  border: 1px solid #ccc;  border-radius: 6px;  background: transparent;}.scramble-btn:hover { background: #f5f5f5; }</style><div style="position:relative;display:inline-block;padding:20px;border-radius:24px;margin:20px 0;">  <div style="position:absolute;width:200px;height:200px;background:radial-gradient(circle,rgba(37,211,102,0.4),transparent 70%);border-radius:50%;top:50%;left:50%;transform:translate(-50%,-50%);filter:blur(40px);pointer-events:none;"></div>  <a href="https://wa.me/0137568799"      target="_blank"     style="position:relative;display:inline-flex;align-items:center;gap:16px;padding:20px 32px;background:rgba(255,255,255,0.05);backdrop-filter:blur(20px);border:1px solid rgba(37,211,102,0.3);border-radius:20px;text-decoration:none;">    <div style="width:48px;height:48px;background:linear-gradient(135deg,#25D366,#128C7E);border-radius:14px;display:flex;align-items:center;justify-content:center;flex-shrink:0;">      <svg width="26" height="26" viewBox="0 0 24 24" fill="#fff"><path d="M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 00-3.48-8.413z"/></svg>    </div>    <div>      <div style="font-size:11px;letter-spacing:3px;color:#25D366;margin-bottom:4px;">Chat with Us</div>      <div style="font-size:18px;font-weight:700;color:inherit;">Contact on WhatsApp</div>    </div>  </a></div><p><img src="https://raw.githubusercontent.com/Alen-property/photo/main/img/tanah%20minyak%20beku1.jpg" alt="image"></p><h1 id="Location-Link"><a href="#Location-Link" class="headerlink" title="Location Link"></a><a href="https://maps.app.goo.gl/Gbe7moMsiUePPjKW6?g_st=com.microsoft.onenote.shareextension">Location Link</a></h1><h1 id="Bawah-Harga-Pasaran‼️-Beli-Terus-Ada-Income"><a href="#Bawah-Harga-Pasaran‼️-Beli-Terus-Ada-Income" class="headerlink" title="Bawah Harga Pasaran‼️ Beli Terus Ada Income"></a>Bawah Harga Pasaran‼️ Beli Terus Ada Income</h1><p>🔥 Tanah Kelapa Sawit Untuk Dijual – Teluk Buloh, Batu Pahat 🔥</p><p>🌴 1¼ Ekar Tanah Pertanian<br>🌴 60–70 pokok kelapa sawit matang<br>🌴 Hasil bulanan stabil &#x3D; aliran tunai<br>🌴 Tak perlu bangunkan, terus kutip hasil</p><p>💥 Owner nak jual cepat | Harga BAWAH PASARAN<br>💥 Sesuai untuk pelaburan &#x2F; simpan nilai &#x2F; pendapatan pasif</p><p>🚨 【Bawah Harga Pasaran‼️ Beli Terus Ada Income】 🚨<br>🔥 Tanah Kelapa Sawit Untuk Dijual – Teluk Buloh, Batu Pahat 🔥</p><p>🌴 1¼ Ekar Tanah Pertanian<br>🌴 60–70 pokok kelapa sawit matang<br>🌴 Hasil bulanan stabil &#x3D; aliran tunai<br>🌴 Tak perlu bangunkan, terus kutip hasil</p><p>💥 Owner nak jual cepat | Harga BAWAH PASARAN<br>💥 Sesuai untuk pelaburan &#x2F; simpan nilai &#x2F; pendapatan pasif</p><h2 id="📞-Alen-013-7568799"><a href="#📞-Alen-013-7568799" class="headerlink" title="📞 Alen 013-7568799"></a>📞 Alen 013-7568799</h2><div class="video-container">[up主专用，视频内嵌代码贴在这]</div><style>.video-container {    position: relative;    width: 100%;    padding-top: 56.25%; /* 16:9 aspect ratio (height/width = 9/16 * 100%) */}.video-container iframe {    position: absolute;    top: 0;    left: 0;    width: 100%;    height: 100%;}</style>]]>
      </content:encoded>
    </item>
    <item>
      <title>RNF Jln Tanjung Puteri Room For Rent</title>
      <link>https://alenwee.xyz/2026/05/28/Rnf-room/</link>
      <description>
        <![CDATA[<p><img src="https://raw.githubusercontent.com/Alen-property/photo/main/img/rnf%20room%20album.webp" alt="image"></p>
<p>RNF Room For Rent<b]]>
      </description>
      <author>校花的手</author>
      <category domain="https://alenwee.xyz/categories/Renting/">Renting</category>
      <category domain="https://alenwee.xyz/tags/Jb-Rental-Double/">Jb Rental Double</category>
      <pubDate>Thu, 28 May 2026 05:34:29 GMT</pubDate>
      <content:encoded>
        <![CDATA[<p><img src="https://raw.githubusercontent.com/Alen-property/photo/main/img/rnf%20room%20album.webp" alt="image"></p><p>RNF Room For Rent<br>有房出租</p><p>Location : JALAN TANJUNG PUTERI, R&amp;F TANJUNG PUTERI, 80300 JOHOR BAHRU, JOHOR</p><p>Room type:P.Balcony<br>Bedsize:Queen<br>Monthly:Rm 1400</p><p>Rent Included （房间设施）<br>1 Bathroom With Water Heater （热水器）<br>Washing Machine, Fridge （洗衣机、冰箱）<br>Cooking Is Allowed (Light cook only)<br>Rent Included Wifi<br>bedroom&#x2F;cupboard (床、衣橱）<br> Alen<br> <a href="https://wa.me/message/XNVN4S3466CXC1">WhatsApp</a></p><div style="position:relative;display:inline-block;padding:20px;border-radius:24px;margin:20px 0;">  <div style="position:absolute;width:200px;height:200px;background:radial-gradient(circle,rgba(37,211,102,0.4),transparent 70%);border-radius:50%;top:50%;left:50%;transform:translate(-50%,-50%);filter:blur(40px);pointer-events:none;"></div>  <a href="https://wa.me/0137568799//?text=Hi%2C%20I%27m%20interested%20in%20RNFRoom%20Room%20For%20Rent%20%F0%9F%8F%A0%20Please%20share%20more%20details%21""      target="_blank"     style="position:relative;display:inline-flex;align-items:center;gap:16px;padding:20px 32px;background:rgba(255,255,255,0.05);backdrop-filter:blur(20px);border:1px solid rgba(37,211,102,0.3);border-radius:20px;text-decoration:none;">    <div style="width:48px;height:48px;background:linear-gradient(135deg,#25D366,#128C7E);border-radius:14px;display:flex;align-items:center;justify-content:center;flex-shrink:0;">      <svg width="26" height="26" viewBox="0 0 24 24" fill="#fff"><path d="M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 00-3.48-8.413z"/></svg>    </div>    <div>      <div style="font-size:11px;letter-spacing:3px;color:#25D366;margin-bottom:4px;">Chat with Us</div>      <div style="font-size:18px;font-weight:700;color:inherit;">Contact on WhatsApp</div>    </div>  </a></div><div class="video-container">[up主专用，视频内嵌代码贴在这]</div><style>.video-container {    position: relative;    width: 100%;    padding-top: 56.25%; /* 16:9 aspect ratio (height/width = 9/16 * 100%) */}.video-container iframe {    position: absolute;    top: 0;    left: 0;    width: 100%;    height: 100%;}</style>]]>
      </content:encoded>
    </item>
    <item>
      <title>Central Park Tampoi Room For Rent</title>
      <link>https://alenwee.xyz/2026/05/25/Centralpark-tampoi-room/</link>
      <description>
        <![CDATA[<p><img src="https://raw.githubusercontent.com/Alen-property/photo/main/img/jbcentralpark%20room%201.webp" alt="iamge"></p>
<h1 id="Environm]]>
      </description>
      <author>校花的手</author>
      <category domain="https://alenwee.xyz/categories/Renting/">Renting</category>
      <category domain="https://alenwee.xyz/tags/Jb-Rental-Double/">Jb Rental Double</category>
      <pubDate>Mon, 25 May 2026 10:17:16 GMT</pubDate>
      <content:encoded>
        <![CDATA[<p><img src="https://raw.githubusercontent.com/Alen-property/photo/main/img/jbcentralpark%20room%201.webp" alt="iamge"></p><h1 id="Environment"><a href="#Environment" class="headerlink" title="Environment"></a>Environment</h1><p><img src="https://raw.githubusercontent.com/Alen-property/photo/main/img/jbcentralparkroom2.webp" alt="image"></p><h1 id="Centralpark-Tampoi-Room-For-Rent"><a href="#Centralpark-Tampoi-Room-For-Rent" class="headerlink" title="Centralpark Tampoi Room For Rent"></a>Centralpark Tampoi Room For Rent</h1><h1 id="有房出租"><a href="#有房出租" class="headerlink" title="有房出租"></a>有房出租</h1><p>Location :<br>CENTRAL PARK, PERSIARAN ALIFF HARMONI UTAMA, TAMAN DAMANSARA ALIFF, JOHOR BAHRU, 81200 JOHOR</p><p>Room type:Queen&#x2F;Twin Single<br>Monthly:Rm 900</p><p>Rent Included （房间设施）<br>1 Bathroom With Water Heater （热水器）<br>Washing Machine, Fridge （洗衣机、冰箱）<br>Cooking Is Allowed (Light cook only)<br>Rent Included Wifi<br>bedroom&#x2F;cupboard (床、衣橱）</p><p>Room area Also include :Tampoi&#x2F;Larkin&#x2F;Bkt Indah&#x2F;Pusat Bandaraya And More<br>Alen<br><a href="https://wa.me/message/XNVN4S3466CXC1">whatsapp</a></p><div style="position:relative;display:inline-block;padding:20px;border-radius:24px;margin:20px 0;">  <div style="position:absolute;width:200px;height:200px;background:radial-gradient(circle,rgba(37,211,102,0.4),transparent 70%);border-radius:50%;top:50%;left:50%;transform:translate(-50%,-50%);filter:blur(40px);pointer-events:none;"></div>  <a href="https://wa.me/60137568799/?text=Hi%2C%20I%27m%20interested%20in%20centralpark%20Room%20For%20Rent%20%F0%9F%8F%A0%20Please%20share%20more%20details%21"     target="_blank"     style="position:relative;display:inline-flex;align-items:center;gap:16px;padding:20px 32px;background:rgba(255,255,255,0.05);backdrop-filter:blur(20px);border:1px solid rgba(37,211,102,0.3);border-radius:20px;text-decoration:none;">    <div style="width:48px;height:48px;background:linear-gradient(135deg,#25D366,#128C7E);border-radius:14px;display:flex;align-items:center;justify-content:center;flex-shrink:0;">      <svg width="26" height="26" viewBox="0 0 24 24" fill="#fff"><path d="M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 00-3.48-8.413z"/></svg>    </div>    <div>      <div style="font-size:11px;letter-spacing:3px;color:#25D366;margin-bottom:4px;">Chat on Watsapp</div>      <div style="font-size:18px;font-weight:700;color:inherit;">Contact on WhatsApp</div>    </div>  </a></div><div class="video-container">[up主专用，视频内嵌代码贴在这]</div><style>.video-container {    position: relative;    width: 100%;    padding-top: 56.25%; /* 16:9 aspect ratio (height/width = 9/16 * 100%) */}.video-container iframe {    position: absolute;    top: 0;    left: 0;    width: 100%;    height: 100%;}</style>]]>
      </content:encoded>
    </item>
    <item>
      <title>Larkin Room For Rent</title>
      <link>https://alenwee.xyz/2026/05/23/Larkin-room-for-rent/</link>
      <description>
        <![CDATA[<p><img src="https://raw.githubusercontent.com/Alen-property/photo/main/img/larkin%20room3x3.webp" alt="image"></p>
<p>Larkin Room For Rent<]]>
      </description>
      <author>校花的手</author>
      <category domain="https://alenwee.xyz/categories/Renting/">Renting</category>
      <category domain="https://alenwee.xyz/tags/Jb-Rental-Double/">Jb Rental Double</category>
      <pubDate>Sat, 23 May 2026 11:41:13 GMT</pubDate>
      <content:encoded>
        <![CDATA[<p><img src="https://raw.githubusercontent.com/Alen-property/photo/main/img/larkin%20room3x3.webp" alt="image"></p><p>Larkin Room For Rent<br>有房出租</p><p>Location : SURIAMAS APARTMENT, JALAN SERANTAU, TAMAN DATO ONN, 80350 JOHOR BAHRU, JOHOR<br>Room type:middle<br>Bed size:Queen size<br>Monthly:Rm 700</p><p>Rent Included （房间设施）<br>1 Bathroom With Water Heater （热水器）<br>Washing Machine, Fridge （洗衣机、冰箱）<br>Cooking Is Allowed (Light cook only)<br>Rent Included Wifi<br>bedroom&#x2F;cupboard (床、衣橱）</p><p>Room area Also include :Tampoi&#x2F;Larkin&#x2F;Bkt Indah&#x2F;Pusat Bandaraya And More<br>Alen</p><div style="position:relative;display:inline-block;padding:20px;border-radius:24px;margin:20px 0;">  <div style="position:absolute;width:200px;height:200px;background:radial-gradient(circle,rgba(37,211,102,0.4),transparent 70%);border-radius:50%;top:50%;left:50%;transform:translate(-50%,-50%);filter:blur(40px);pointer-events:none;"></div>  <a href="https://wa.me/60137568799/?text=Hi%2C%20I%27m%20interested%20in%20larkin%20Room%20For%20Rent%20%F0%9F%8F%A0%20Please%20share%20more%20details%21"     target="_blank"     style="position:relative;display:inline-flex;align-items:center;gap:16px;padding:20px 32px;background:rgba(255,255,255,0.05);backdrop-filter:blur(20px);border:1px solid rgba(37,211,102,0.3);border-radius:20px;text-decoration:none;">    <div style="width:48px;height:48px;background:linear-gradient(135deg,#25D366,#128C7E);border-radius:14px;display:flex;align-items:center;justify-content:center;flex-shrink:0;">      <svg width="26" height="26" viewBox="0 0 24 24" fill="#fff"><path d="M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 00-3.48-8.413z"/></svg>    </div>    <div>      <div style="font-size:11px;letter-spacing:3px;color:#25D366;margin-bottom:4px;">Click to Chat</div>      <div style="font-size:18px;font-weight:700;color:inherit;">Contact on WhatsApp</div>    </div>  </a></div><div class="video-container">[up主专用，视频内嵌代码贴在这]</div><style>.video-container {    position: relative;    width: 100%;    padding-top: 56.25%; /* 16:9 aspect ratio (height/width = 9/16 * 100%) */}.video-container iframe {    position: absolute;    top: 0;    left: 0;    width: 100%;    height: 100%;}</style>]]>
      </content:encoded>
    </item>
    <item>
      <title>Masai Room For Rent</title>
      <link>https://alenwee.xyz/2026/05/23/masai-room-for-rent/</link>
      <description>
        <![CDATA[<p><img src="https://raw.githubusercontent.com/Alen-property/photo/main/img/masai%20room%20photo%20album.webp" alt="image"></p>
<p>Masai Roo]]>
      </description>
      <author>校花的手</author>
      <category domain="https://alenwee.xyz/categories/Renting/">Renting</category>
      <category domain="https://alenwee.xyz/tags/Jb-Rental-Single-And-Double/">Jb Rental Single And Double</category>
      <pubDate>Sat, 23 May 2026 07:03:07 GMT</pubDate>
      <content:encoded>
        <![CDATA[<p><img src="https://raw.githubusercontent.com/Alen-property/photo/main/img/masai%20room%20photo%20album.webp" alt="image"></p><p>Masai Room For Rent<br>有房出租</p><p>Location : JALAN KOTA PUTERI, KAWASAN PERINDUSTRIAN KOTA PUTERI, 81750 MASAI, JOHOR<br>Room type:Queen&#x2F;Twin Single<br>Monthly:Rm 500</p><p>Rent Included （房间设施）<br>1 Bathroom With Water Heater （热水器）<br>Washing Machine, Fridge （洗衣机、冰箱）<br>Cooking Is Allowed (Light cook only)<br>Rent Included Wifi<br>bedroom&#x2F;cupboard 床、衣橱</p><p>Room area Also include :Tampoi&#x2F;Larkin&#x2F;Bkt Indah&#x2F;Pusat Bandaraya And More<br>Alen</p><div style="position:relative;display:inline-block;padding:20px;border-radius:24px;margin:20px 0;">  <div style="position:absolute;width:200px;height:200px;background:radial-gradient(circle,rgba(37,211,102,0.4),transparent 70%);border-radius:50%;top:50%;left:50%;transform:translate(-50%,-50%);filter:blur(40px);pointer-events:none;"></div>  <a href="https://wa.me/60137568799/masairoomforrent     target="_blank"     style="position:relative;display:inline-flex;align-items:center;gap:16px;padding:20px 32px;background:rgba(255,255,255,0.05);backdrop-filter:blur(20px);border:1px solid rgba(37,211,102,0.3);border-radius:20px;text-decoration:none;">    <div style="width:48px;height:48px;background:linear-gradient(135deg,#25D366,#128C7E);border-radius:14px;display:flex;align-items:center;justify-content:center;flex-shrink:0;">      <svg width="26" height="26" viewBox="0 0 24 24" fill="#fff"><path d="M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 00-3.48-8.413z"/></svg>    </div>    <div>      <div style="font-size:11px;letter-spacing:3px;color:#25D366;margin-bottom:4px;">Chat on Watsapp</div>      <div style="font-size:18px;font-weight:700;color:inherit;">Contact on WhatsApp</div>    </div>  </a></div><div class="video-container">[up主专用，视频内嵌代码贴在这]</div><style>.video-container {    position: relative;    width: 100%;    padding-top: 56.25%; /* 16:9 aspect ratio (height/width = 9/16 * 100%) */}.video-container iframe {    position: absolute;    top: 0;    left: 0;    width: 100%;    height: 100%;}</style>]]>
      </content:encoded>
    </item>
    <item>
      <title>峇株巴辖 Semi-D | Jalan Tanjung Laboh 双层半独立洋房</title>
      <link>https://alenwee.xyz/2026/05/19/Parkland-Bukit-Indah/</link>
      <description>峇株巴辖 Jalan Tanjung Laboh 全新双层半独立洋房，4房5厕，40×85尺地，太阳能系统+EV充电，售价 RM 1,028,000，仅剩5间。</description>
      <author>校花的手</author>
      <category domain="https://alenwee.xyz/categories/Brand-new/">Brand-new</category>
      <category domain="https://alenwee.xyz/tags/Double-storey/">Double-storey</category>
      <pubDate>Tue, 19 May 2026 05:45:06 GMT</pubDate>
      <content:encoded>
        <![CDATA[<span id="more"></span><link href="https://fonts.googleapis.com/css2?family=Space+Mono:wght@700&display=swap" rel="stylesheet"><style>  .sc-text {    font-family: 'Space Mono', monospace;    font-size: clamp(1.8rem, 5vw, 3rem);    font-weight: 700;    background: linear-gradient(90deg, #a78bfa, #60a5fa, #34d399, #f472b6);    background-size: 300% 100%;    -webkit-background-clip: text;    -webkit-text-fill-color: transparent;    background-clip: text;    animation: sc-hue 4s linear infinite;    letter-spacing: -0.02em;    display: inline-block;    line-height: 1.2;  }  .sc-cursor {    display: inline-block;    width: 3px;    height: 1em;    background: #a78bfa;    vertical-align: middle;    margin-left: 4px;    animation: sc-blink 0.7s step-end infinite;    border-radius: 2px;  }  @keyframes sc-blink { 50% { opacity: 0; } }  @keyframes sc-hue {    0%   { background-position: 0% 50%; }    100% { background-position: 300% 50%; }  }</style><div style="text-align:center; padding: 2rem 0;">  <span class="sc-text"></span><span class="sc-cursor"></span></div><script>(function(){  const chars='ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789@#$%!?';  const phrases=["Welcome to my blogger","Selamat datang","Taman Bukit Indah"];  function scramble(el,text,dur,cb){    const len=text.length,t0=performance.now();    function f(now){      const p=Math.min((now-t0)/dur,1),rev=Math.floor(p*len);      let s='';      for(let i=0;i<len;i++) s+=i<rev?text[i]:chars[Math.floor(Math.random()*chars.length)];      el.textContent=s;      p<1?requestAnimationFrame(f):cb&&cb();    }    requestAnimationFrame(f);  }  const el=document.querySelector('.sc-text');  let idx=0;  function loop(){    scramble(el,phrases[idx%phrases.length],900,()=>{      setTimeout(()=>{ idx++; loop(); },2200);    });  }  loop();})();</script><div style="background:#1a1a2e; border-radius:12px; padding:2rem; min-height:160px; display:flex; align-items:center; justify-content:center; margin-bottom:1rem;">  <p id="quote-stzwbb5" style="font-size:1.4rem; font-weight:500; color:white; text-align:center; line-height:1.6; max-width:520px;">Welcome Taman Bukit Indah</p></div><div style="display:flex; flex-wrap:wrap; gap:10px; justify-content:center; margin-bottom:2rem;">  <button onclick="animChars_stzwbb5()" class="st-btn-stzwbb5">✦ Chars</button>  <button onclick="animWords_stzwbb5()" class="st-btn-stzwbb5">✦ Words</button>  <button onclick="animLines_stzwbb5()" class="st-btn-stzwbb5">✦ Price</button>  <button onclick="animCombo_stzwbb5()" class="st-btn-stzwbb5">✦ Combo</button>  <button onclick="revert_stzwbb5()" class="st-btn-stzwbb5" style="opacity:0.6;">↺ Revert</button></div><style>  .st-btn-stzwbb5 {    padding: 8px 18px;    font-size: 14px;    border-radius: 8px;    cursor: pointer;    border: 1.5px solid currentColor;    background: transparent;    color: inherit;    transition: background 0.2s, color 0.2s;  }  .st-btn-stzwbb5:hover {    background: rgba(128,128,128,0.15);  }</style><script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.12.5/gsap.min.js"></script><script>(function() {  const el = document.getElementById('quote-stzwbb5');  const texts = {    chars: "Welcome Taman Bukit Indah",    words: "4 Room 5 Bathroom Double Storey Semi-D",    lines: "Selling Price RM 1,028,000",    combo: "现在入场还为你准备了 11 项隐形惊喜配置 + 4 大专属买房优惠！"  };  let tl = null;  function setText(t) {    el.removeAttribute('data-original');    el.innerHTML = t;  }  function splitByChars(el) {    const text = el.getAttribute('data-original') || el.innerText;    el.setAttribute('data-original', text);    el.innerHTML = '';    const spans = [];    for (let i = 0; i < text.length; i++) {      const ch = text[i];      const sp = document.createElement('span');      sp.style.display = 'inline-block';      sp.textContent = ch === ' ' ? ' ' : ch;      el.appendChild(sp);      if (ch !== ' ') spans.push(sp);    }    return spans;  }  function splitByWords(el) {    const text = el.getAttribute('data-original') || el.innerText;    el.setAttribute('data-original', text);    el.innerHTML = '';    const spans = [];    text.split(' ').forEach((w, i, arr) => {      const sp = document.createElement('span');      sp.style.display = 'inline-block';      sp.textContent = w;      el.appendChild(sp);      spans.push(sp);      if (i < arr.length - 1) el.appendChild(document.createTextNode(' '));    });    return spans;  }  function splitByLines(el) {    const text = el.getAttribute('data-original') || el.innerText;    el.setAttribute('data-original', text);    el.innerHTML = '';    const wordSpans = text.split(' ').map((w, i, arr) => {      const sp = document.createElement('span');      sp.style.display = 'inline-block';      sp.textContent = w;      el.appendChild(sp);      if (i < arr.length - 1) el.appendChild(document.createTextNode(' '));      return sp;    });    const lines = [];    let currentLine = [], currentTop = null;    wordSpans.forEach(sp => {      const top = sp.getBoundingClientRect().top;      if (currentTop === null) currentTop = top;      if (Math.abs(top - currentTop) > 5) {        lines.push(currentLine); currentLine = [sp]; currentTop = top;      } else currentLine.push(sp);    });    if (currentLine.length) lines.push(currentLine);    return lines.map(line => {      const div = document.createElement('div');      line.forEach(sp => div.appendChild(sp.cloneNode(true)));      return div;    });  }  function kill() {    if (tl) { tl.kill(); tl = null; }  }  window['animChars_stzwbb5'] = function() {    kill(); setText(texts.chars);    const chars = splitByChars(el);    tl = gsap.timeline();    tl.from(chars, { duration: 0.8, scale: 4, autoAlpha: 0, rotationX: -180, transformOrigin: '100% 50%', ease: 'back', stagger: 0.02 });  };  window['animWords_stzwbb5'] = function() {    kill(); setText(texts.words);    const words = splitByWords(el);    tl = gsap.timeline();    words.forEach((word, i) => {      tl.from(word, { duration: 0.8, opacity: 0, force3D: true }, i * 0.08);      tl.from(word, { duration: 0.8, scale: i % 2 === 0 ? 0 : 2 }, i * 0.08);    });  };  window['animLines_stzwbb5'] = function() {    kill(); setText(texts.lines);    const lines = splitByLines(el);    el.innerHTML = '';    lines.forEach(l => el.appendChild(l));    tl = gsap.from(lines, { duration: 1.2, opacity: 0, x: -80, stagger: 0.15, ease: 'expo.out' });  };  window['animCombo_stzwbb5'] = function() {    kill(); setText(texts.combo);    const words = splitByWords(el);    const chars = [];    words.forEach(w => {      const t = w.textContent;      w.innerHTML = '';      for (let i = 0; i < t.length; i++) {        const sp = document.createElement('span');        sp.style.display = 'inline-block';        sp.textContent = t[i];        w.appendChild(sp);        chars.push(sp);      }    });    tl = gsap.timeline();    tl.from(chars, { duration: 0.6, autoAlpha: 0, scale: 3, force3D: true, stagger: 0.02 }, 0.3)      .to(words, { duration: 0.2, color: '#ff8709', scale: 0.9, stagger: 0.1 }, 'words')      .to(words, { duration: 0.4, color: 'white', scale: 1, stagger: 0.1 }, 'words+=0.1')      .to(words, { duration: 0.5, x: 100, autoAlpha: 0, stagger: 0.2 });  };  window['revert_stzwbb5'] = function() {    kill(); setText(texts.chars);  };})();</script><hr><h2 id="还在向往，松弛自在的理想居家生活？"><a href="#还在向往，松弛自在的理想居家生活？" class="headerlink" title="还在向往，松弛自在的理想居家生活？"></a>还在向往，松弛自在的理想居家生活？</h2><blockquote><p><strong>峇株巴辖 · Jalan Tanjung Laboh · 绝佳置业机会 · 正式来袭</strong></p></blockquote><p><img src="https://raw.githubusercontent.com/Alen-property/photo/main/img/parkland%E5%8F%8C%E5%B1%82%E5%8D%8A%E7%8B%AC%E7%AB%8B%E6%B4%8B%E6%88%BF%E5%AE%A3%E4%BC%A0%E6%96%87%E6%A1%881.webp" alt="封面"></p><p>💡 你以为在峇株巴辖买的只是房？不，你买的是未来 10 年的生活阶层！</p><p>总觉得生活少了一点松弛感？早晨醒来，阳光总是照不进狭窄的客厅？每次想在院子办个 BBQ，却发现空间局促得连桌椅都摆不下？更别提开着心爱的 EV 电动车回了家，却还要拉着长长的插线板狼狈充电？</p><p>如果有一种生活，能把这些烦恼一次性解决，你还要等多久？</p><hr><h2 id="🏡-隐藏在华中路的终极答案"><a href="#🏡-隐藏在华中路的终极答案" class="headerlink" title="🏡 隐藏在华中路的终极答案"></a>🏡 隐藏在华中路的终极答案</h2><blockquote><p><strong>清盘阶段 · 仅剩最后 5 间</strong></p></blockquote><p>这栋位于 Jalan Tanjung Laboh, Batu Pahat 的双层半独立洋房，堪称媲美独立洋房的奢阔标准。它虽然叫半独立，但你见过全程按独立式洋房（Bungalow）高标准打造的艺术品吗？</p><table><thead><tr><th>亮点</th><th>详情</th></tr></thead><tbody><tr><td>🏠 产品类型</td><td>双层半独立洋房</td></tr><tr><td>📐 土地面积</td><td><strong>40 × 85 尺</strong> 阔绰地块</td></tr><tr><td>🛏️ 房间配置</td><td><strong>4 房 4 厕</strong>，卫浴完全独立</td></tr><tr><td>💰 限时特惠</td><td><strong>RM 1,028,000</strong></td></tr></tbody></table><hr><h2 id="📐-无法抗拒的空间尺度"><a href="#📐-无法抗拒的空间尺度" class="headerlink" title="📐 无法抗拒的空间尺度"></a>📐 无法抗拒的空间尺度</h2><h3 id="室内空间-·-开阔通透"><a href="#室内空间-·-开阔通透" class="headerlink" title="室内空间 · 开阔通透"></a>室内空间 · 开阔通透</h3><table><thead><tr><th>☀️ 采光通风出众，告别压抑感</th><th>🛡️ 4 房 5 厕，卫浴独立，保障隐私</th></tr></thead></table><p>一踏入屋里，那份敞亮通透的采光与高度，难道不是你脑海中无数次浮现过的家的模样？</p><h3 id="户外空间-·-随心打造"><a href="#户外空间-·-随心打造" class="headerlink" title="户外空间 · 随心打造"></a>户外空间 · 随心打造</h3><table><thead><tr><th>🌿 侧边大面积私家绿地</th><th>☕ 屋后 10 尺，可打造私人茶室</th><th>🔥 家庭 BBQ 聚会轻松实现</th></tr></thead></table><p><img src="https://raw.githubusercontent.com/Alen-property/photo/main/img/parklandsiteplan.webp" alt="平面图"></p><hr><h2 id="✨-11-项隐形惊喜配置"><a href="#✨-11-项隐形惊喜配置" class="headerlink" title="✨ 11 项隐形惊喜配置"></a>✨ 11 项隐形惊喜配置</h2><blockquote><p><strong>每一处细节，都是对生活品质的坚持</strong></p></blockquote><table><thead><tr><th>配置</th><th>配置</th></tr></thead><tbody><tr><td>☀️ 太阳能系统</td><td>🏛️ 大厅石膏顶特设计</td></tr><tr><td>💧 热水器增压泵</td><td>⚡ 三相交流电 + 电动车充电点</td></tr><tr><td>🔒 智能门锁</td><td>🟫 800×800mm 大砖</td></tr><tr><td>🪜 不锈钢玻璃楼梯</td><td>🚿 600×600mm 浴室砖升级</td></tr><tr><td>🚧 自动铁闸</td><td>🪟 阳台钢化玻璃</td></tr><tr><td>🚿 全浴室花洒浴屏</td><td></td></tr></tbody></table><hr><h2 id="🌱-绿能科技配置"><a href="#🌱-绿能科技配置" class="headerlink" title="🌱 绿能科技配置"></a>🌱 绿能科技配置</h2><blockquote><p><strong>在峇株巴辖，属于少见的高端配置</strong></p></blockquote><h3 id="☀️-8-千瓦峰值太阳能系统"><a href="#☀️-8-千瓦峰值太阳能系统" class="headerlink" title="☀️ 8 千瓦峰值太阳能系统"></a>☀️ 8 千瓦峰值太阳能系统</h3><p>节能环保，大幅降低长期电费支出。</p><h3 id="🚗-电动车充电设施"><a href="#🚗-电动车充电设施" class="headerlink" title="🚗 电动车充电设施"></a>🚗 电动车充电设施</h3><p>专属三相交流电电源，无缝对接智能出行。</p><p>在峇株巴辖，有多少住宅能同时配齐太阳能系统和 EV 电动车充电设备？答案是：<strong>少之又少</strong>。而在这里，别人眼中的奢配，只是你科技、环保日常的低调标配。</p><hr><h2 id="💰-绝佳机会-·-0-首付-·-轻松置业"><a href="#💰-绝佳机会-·-0-首付-·-轻松置业" class="headerlink" title="💰 绝佳机会 · 0% 首付 · 轻松置业"></a>💰 绝佳机会 · 0% 首付 · 轻松置业</h2><table><thead><tr><th>优惠项目</th><th>详情</th></tr></thead><tbody><tr><td>✅ 轻松获批</td><td>多家主流银行已批准贷款（Ambank &#x2F; HLBB &#x2F; Public Bank &#x2F; CIMB &#x2F; Maybank）</td></tr><tr><td>🎁 极致优惠</td><td>发展商全额承担买卖合约法律费用及印花税</td></tr><tr><td>🏠 无忧入住</td><td>免费赠送 2 年社区安保费</td></tr><tr><td>⏰ 限时良机</td><td>贷款利率低至 <strong>3.7%</strong> 起</td></tr></tbody></table><h3 id="算一算，真的-0-首付！"><a href="#算一算，真的-0-首付！" class="headerlink" title="算一算，真的 0% 首付！"></a>算一算，真的 0% 首付！</h3><p>净价：              RM 1,028,000<br>最高贷款额 (90%)：  RM 1,035,000<br>─────────────────────────────────<br>最终结果：0% 首付 + RM 7,000 现金回扣 💸<br><img src="https://raw.githubusercontent.com/Alen-property/photo/main/img/parkland%20loans%20document.webp" alt="贷款资料"></p><hr><h2 id="📍-峇株巴辖-·-城市稳步发展"><a href="#📍-峇株巴辖-·-城市稳步发展" class="headerlink" title="📍 峇株巴辖 · 城市稳步发展"></a>📍 峇株巴辖 · 城市稳步发展</h2><ul><li>📌 <strong>成熟地段</strong>：坐落 Jalan Tanjung Laboh，配套完善</li><li>📈 <strong>永久地契</strong>：优质永久地契资产，助力进阶生活阶层</li><li>🏙️ <strong>宜居优选</strong>：投资与自住两相宜</li></ul><p><img src="https://raw.githubusercontent.com/Alen-property/photo/main/img/parkland%20facility.webp" alt="设施"></p><hr><h2 id="🔴-仅剩最后-5-间-·-稀缺席位分秒递减"><a href="#🔴-仅剩最后-5-间-·-稀缺席位分秒递减" class="headerlink" title="🔴 仅剩最后 5 间 · 稀缺席位分秒递减"></a>🔴 仅剩最后 5 间 · 稀缺席位分秒递减</h2><blockquote><p><strong>别错过你的理想家园</strong></p></blockquote><p>那些藏在房子里的细节与小美好，你真的不想亲自来华中路实地解锁一下吗？</p><p>别让你的理想生活，永远只停留在别人的朋友圈里！</p><p><img src="https://raw.githubusercontent.com/Alen-property/photo/main/img/parkland%20semid.webp" alt="image"></p><hr><h2 id="📲-立即预约看房"><a href="#📲-立即预约看房" class="headerlink" title="📲 立即预约看房"></a>📲 立即预约看房</h2><blockquote><p>锁定优惠利率 · 享受四重置业好礼</p></blockquote><div style="text-align:center; padding:20px 0;">  <div style="position:relative; display:inline-block; padding:20px; border-radius:24px;">    <div style="position:absolute; width:200px; height:200px; background:radial-gradient(circle,rgba(37,211,102,0.4),transparent 70%); border-radius:50%; top:50%; left:50%; transform:translate(-50%,-50%); filter:blur(40px); pointer-events:none;"></div>    <a href="https://wa.me/0137568799"       target="_blank"       style="position:relative; display:inline-flex; align-items:center; gap:16px; padding:20px 32px; background:rgba(255,255,255,0.05); backdrop-filter:blur(20px); border:1px solid rgba(37,211,102,0.3); border-radius:20px; text-decoration:none;">      <div style="width:48px; height:48px; background:linear-gradient(135deg,#25D366,#128C7E); border-radius:14px; display:flex; align-items:center; justify-content:center; flex-shrink:0;">        <svg width="26" height="26" viewBox="0 0 24 24" fill="#fff">          <path d="M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 00-3.48-8.413z"/>        </svg>      </div>      <div>        <div style="font-size:11px; letter-spacing:3px; color:#25D366; margin-bottom:4px;">Chat with Us</div>        <div style="font-size:18px; font-weight:700; color:inherit;">Contact on WhatsApp</div>      </div>    </a>  </div></div><hr><h2 id="🎬-项目视频"><a href="#🎬-项目视频" class="headerlink" title="🎬 项目视频"></a>🎬 项目视频</h2><div class="video-container">  <iframe    src="https://www.youtube.com/embed/8P7D96wCwXY"    title="Batu Pahat 新项目"    frameborder="0"    allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share"    referrerpolicy="strict-origin-when-cross-origin"    allowfullscreen>  </iframe></div><style>.video-container {  position: relative;  width: 100%;  padding-top: 56.25%;}.video-container iframe {  position: absolute;  top: 0;  left: 0;  width: 100%;  height: 100%;}</style>]]>
      </content:encoded>
    </item>
    <item>
      <title>Mutiara Gading Double Storey</title>
      <link>https://alenwee.xyz/2026/05/15/New-Taman-Mutiara-Gading/</link>
      <description>
        <![CDATA[<p><img src="https://i.ibb.co/1YHxwSbs/IMG-9025.webp" alt="image"><img src="https://i.ibb.co/SwcFj07Z/siteplanmutiara.webp" alt="image"> </p]]>
      </description>
      <author>校花的手</author>
      <category domain="https://alenwee.xyz/categories/Brand-new/">Brand-new</category>
      <category domain="https://alenwee.xyz/tags/Double-Storey/">Double-Storey</category>
      <pubDate>Fri, 15 May 2026 08:16:54 GMT</pubDate>
      <content:encoded>
        <![CDATA[<p><img src="https://i.ibb.co/1YHxwSbs/IMG-9025.webp" alt="image"><img src="https://i.ibb.co/SwcFj07Z/siteplanmutiara.webp" alt="image"> </p><p>还在纠结峇株置业，该选什么样的家？<br>你真的愿意将就普通户型，忍受一房多户共用卫浴、隐私全无的局促？<br>难道不想拥有一套每间房都带独立卫浴，家人起居互不打扰的舒适居所？</p><p>你是否想过，安家峇株，地段与安全缺一不可？<br>热门核心区位+围篱保安Gated &amp; Guarded社区，全天候守护居家安心，这样的居住安全感，谁能拒绝？<br>距离BPMALL仅5km，日常购物、休闲出行一键搞定，便利生活触手可及，何必舍近求远？</p><p>20’x70’方正户型，建面1836sqft超大空间，<br>现代简约设计，格局通透开阔，还带专属阳台，西北&#x2F;东南双朝向任选，采光通风面面俱到<br>就连卫生间都做到瓷砖通铺至天花板，细节质感直接拉满，<br>这样兼顾颜值、实用与品质的新家，你还要错过吗？</p><p>更难得的是永久地契Freehold+国际地段International lot，资产稳稳保值<br>4房4厕全独立卫浴配置，多孩家庭、三代同堂都能从容居住<br>宽敞不拥挤、私密不将就、便利不偏远、安全有保障</p><p>安家峇株，与其反复对比犹豫，<br>何不直接拿下这套全新发售的黄金好房<br>现在公开发售，席位有限，你确定不抢占先机？</p><p>欢迎直接 PM &#x2F; WhatsApp 联系<br>单位有限，先到先得！<br>WhatsApp 咨询：<br>👤 Alen<br><a href="https://wa.me/message/XNVN4S3466CXC1">watsapp</a></p><div class="video-container">[up主专用，视频内嵌代码贴在这]</div><style>.video-container {    position: relative;    width: 100%;    padding-top: 56.25%; /* 16:9 aspect ratio (height/width = 9/16 * 100%) */}.video-container iframe {    position: absolute;    top: 0;    left: 0;    width: 100%;    height: 100%;}</style>]]>
      </content:encoded>
    </item>
    <item>
      <title>Evergreen Single Storey</title>
      <link>https://alenwee.xyz/2026/05/13/Evergreen-Terrace/</link>
      <description>
        <![CDATA[<span id="more"></span>
<p><img src="https://i.ibb.co/0j6B3KGH/evergreen-terrace.webp" alt="image"></p>
<p>为您的人生和家庭，添加上更充满生机，碧绿盎然的家园生活吧！！<br]]>
      </description>
      <author>校花的手</author>
      <category domain="https://alenwee.xyz/categories/Brand-new/">Brand-new</category>
      <category domain="https://alenwee.xyz/tags/single-storey/">single-storey</category>
      <pubDate>Wed, 13 May 2026 10:44:08 GMT</pubDate>
      <content:encoded>
        <![CDATA[<span id="more"></span><p><img src="https://i.ibb.co/0j6B3KGH/evergreen-terrace.webp" alt="image"></p><p>为您的人生和家庭，添加上更充满生机，碧绿盎然的家园生活吧！！<br>寻找 Batu Pahat 价格合理、位置优越的单层排屋吗？</p><p>🔥【Kampung Rahmat 临近Evergreen】<br>单层排屋现正热卖中！</p><p>📍 潜力地段｜现在入手更划算<br>想用更好的价格，锁定未来更有价值的房子？</p><p>这正是你等待的机会👇</p><p>🏡 Single Storey Terrace | Intermediate Lot<br>▪ 土地尺寸：22 x 70<br>▪ 建筑面积：约1540 sqft<br>▪ 3房2浴｜实用舒适布局</p><p>📍 优越位置<br>✔ 约15分钟直达 Batu Pahat 市区<br>✔ 直通 Jalan Tanjung Laboh &amp; Jalan Kluang<br>✔ 靠近学校｜生活便利</p><p><img src="https://i.ibb.co/3yJDrk2V/siteplan-evergreen.webp" alt="image"><br>💥 Early Bird 优惠开放中！<br>现在下订 &#x3D; 更优惠价格 + 更多单位选择</p><p>欢迎直接 PM &#x2F; WhatsApp 联系<br>单位有限，先到先得！<br>WhatsApp 咨询：<br>👤 Alen<br> <a href="https://wa.me/message/XNVN4S3466CXC1">WhatsApp</a></p><div class="video-container">[up主专用，视频内嵌代码贴在这]</div><style>.video-container {    position: relative;    width: 100%;    padding-top: 56.25%; /* 16:9 aspect ratio (height/width = 9/16 * 100%) */}.video-container iframe {    position: absolute;    top: 0;    left: 0;    width: 100%;    height: 100%;}</style>]]>
      </content:encoded>
    </item>
    <item>
      <title>Evergreen Semi-D</title>
      <link>https://alenwee.xyz/2026/05/13/Evergreen-semi-d/</link>
      <description>
        <![CDATA[<span id="more"></span>

<p><img src="https://i.ibb.co/TBYq6CvW/Batu-Pahat-Kampung-Rahmat-Evergreen-Semi-D-Single-Storey-Se.webp" alt="image]]>
      </description>
      <author>校花的手</author>
      <category domain="https://alenwee.xyz/categories/Brand-new/">Brand-new</category>
      <category domain="https://alenwee.xyz/tags/single-storey/">single-storey</category>
      <pubDate>Wed, 13 May 2026 08:59:15 GMT</pubDate>
      <content:encoded>
        <![CDATA[<span id="more"></span><p><img src="https://i.ibb.co/TBYq6CvW/Batu-Pahat-Kampung-Rahmat-Evergreen-Semi-D-Single-Storey-Se.webp" alt="image"></p><h1 id="Batu-Pahat-全新项目｜Kampung-Rahmat-Evergreen"><a href="#Batu-Pahat-全新项目｜Kampung-Rahmat-Evergreen" class="headerlink" title="Batu Pahat 全新项目｜Kampung Rahmat Evergreen"></a>Batu Pahat 全新项目｜Kampung Rahmat Evergreen</h1><p>还在寻找地点好、空间宽敞又舒适的 Semi-D 吗？</p><p>🏡 全新单层半独立式<br>（Single Storey Semi-D）<br>现已开放登记！</p><p>⸻<br>✨ 项目亮点</p><p>✅ Intermediate Lot 中间单位<br>✅ 土地面积 40 × 80（约3200 sqft）<br>✅ 建筑面积 30 × 50<br>✅ 4房3浴｜空间宽敞实用<br>✅ 保安社区｜居住更安心<br>✅ 环境舒适宁静｜适合自住</p><p>⸻</p><p><img src="https://i.ibb.co/HTjW4mdZ/image-eb96a867.webp" alt="image"></p><h1 id="📍-地理优势"><a href="#📍-地理优势" class="headerlink" title="📍 地理优势"></a>📍 地理优势</h1><p>📌 距离 Batu Pahat 市区约15分钟<br>📌 生活便利，兼顾舒适与宁静</p><p>⸻</p><p>💰 为什么值得考虑？</p><p>⭐ 单层设计，生活更方便<br>⭐ 高性价比 Semi-D<br>⭐ 自住舒适，投资也适合<br>⭐ 优质单位有限</p><p>⸻</p><p>🤝 我们提供</p><p>✔ 无额外 Agent Fees<br>✔ 一对一专业服务<br>✔ 从了解项目到成交全程协助</p><p>⸻</p><p>欢迎直接 PM &#x2F; WhatsApp 联系<br>单位有限，先到先得！<br>WhatsApp 咨询：<br>👤 Alen<br> <a href="https://wa.me/message/XNVN4S3466CXC1">WhatsApp</a></p><div class="video-container">[up主专用，视频内嵌代码贴在这]</div><style>.video-container {    position: relative;    width: 100%;    padding-top: 56.25%; /* 16:9 aspect ratio (height/width = 9/16 * 100%) */}.video-container iframe {    position: absolute;    top: 0;    left: 0;    width: 100%;    height: 100%;}</style>]]>
      </content:encoded>
    </item>
    <item>
      <title>Tanah Sri Gading</title>
      <link>https://alenwee.xyz/2026/05/11/Tanah-Sri-Gading/</link>
      <description>
        <![CDATA[<p><img src="https://i.ibb.co/Y4SDDrZH/Untitled-design.webp" alt="image"></p>
<p>📣 【柔佛 Sri Gading 优质油棕园出售】柏油路旁 · 黄金地段<br>位于 Kampung Seri Be]]>
      </description>
      <author>校花的手</author>
      <category domain="https://alenwee.xyz/categories/Landing/">Landing</category>
      <category domain="https://alenwee.xyz/tags/Land/">Land</category>
      <pubDate>Mon, 11 May 2026 11:51:11 GMT</pubDate>
      <content:encoded>
        <![CDATA[<p><img src="https://i.ibb.co/Y4SDDrZH/Untitled-design.webp" alt="image"></p><p>📣 【柔佛 Sri Gading 优质油棕园出售】柏油路旁 · 黄金地段<br>位于 Kampung Seri Bengkal (Jalan Parit Ismail) 的三片相连油棕园现正寻找新主人！地段漂亮，交通便利，是投资地皮或扩充农务的绝佳选择。<br>地皮亮点：<br>📍 地点优越：坐落在 Jalan Parit Ismail 柏油路旁，交通极其方便，罗里进出运果无压力。<br>📜 地契性质：Freehold 永久地契（无需担心年限，代代相传的资产）。<br>🌍 身份限制：International Lot 国际单位（开放给所有符合资格的买家）。<br>📏 土地面积：总面积约 3.5英亩（3张 Geran 相连一起卖，格局工整）。</p><ul><li>Geran 1: 1英亩 30pole</li><li>Geran 2: 1英亩 15pole</li><li>Geran 3: 1英亩 35pole</li><li></li></ul><p>现有农作物：<br>🌴 树龄：约 15 年左右的成熟油棕树，正值壮年产果期。<br>💰 收成稳定：目前每月产量约 3 吨左右，买下即刻享有被动收入！</p><p>投资建议：<br>这里不仅适合继续经营油棕，由于地处路边且属于永久地契，其土地增值潜力非常巨大，未来转型或长期持货都极具价值。<br>欢迎联系咨询详情或安排看地：<br>📲 点击 WhatsApp 询问:<br>👤 Alen<br><a href="https://wa.me/message/XNVN4S3466CXC1">watsapp</a></p><div class="video-container">[up主专用，视频内嵌代码贴在这]</div><style>.video-container {    position: relative;    width: 100%;    padding-top: 56.25%; /* 16:9 aspect ratio (height/width = 9/16 * 100%) */}.video-container iframe {    position: absolute;    top: 0;    left: 0;    width: 100%;    height: 100%;}</style>]]>
      </content:encoded>
    </item>
    <item>
      <title>Terrace Tongkang Pecah</title>
      <link>https://alenwee.xyz/2026/05/11/zhong-jiang-corner-house/</link>
      <description>
        <![CDATA[<p><img src="https://i.ibb.co/907yfB0/terracetk.webp" alt="image"></p>
<p>Tongkang Pecah Single Storey Terrace Corner</p>
<p>📍 LOcation：Ton]]>
      </description>
      <author>校花的手</author>
      <category domain="https://alenwee.xyz/categories/Second/">Second</category>
      <category domain="https://alenwee.xyz/tags/Subsale/">Subsale</category>
      <pubDate>Mon, 11 May 2026 09:35:34 GMT</pubDate>
      <content:encoded>
        <![CDATA[<p><img src="https://i.ibb.co/907yfB0/terracetk.webp" alt="image"></p><p>Tongkang Pecah Single Storey Terrace Corner</p><p>📍 LOcation：Tongkang Pecah<br>环境成熟，生活便利</p><p>🏡 房屋资料 Detail House：<br>✅ 单层排屋 Single Storey Terrace<br>✅ 4房 2厕 4rooms 2bathroom<br>✅ 适合家庭居住 Suitable for families</p><p>📲 欢迎私信 &#x2F; WhatsApp 了解详情或预约看房<br>watsapp umtuk dapat information lebih teliti<br>👤 Alen<br>📲 WhatsApp:<br><a href="https://wa.me/message/XNVN4S3466CXC1">watsapp</a></p><div class="video-container">[up主专用，视频内嵌代码贴在这]</div><style>.video-container {    position: relative;    width: 100%;    padding-top: 56.25%; /* 16:9 aspect ratio (height/width = 9/16 * 100%) */}.video-container iframe {    position: absolute;    top: 0;    left: 0;    width: 100%;    height: 100%;}</style>]]>
      </content:encoded>
    </item>
    <item>
      <title>Tanah Bagan</title>
      <link>https://alenwee.xyz/2026/05/11/Tanah-Bagan/</link>
      <description>
        <![CDATA[<h1 id="限量出售】Bagan-Laut-油棕地"><a href="#限量出售】Bagan-Laut-油棕地" class="headerlink" title="限量出售】Bagan Laut 油棕地"></a>限量出售】Bagan Laut 油棕地</h1><p>💡]]>
      </description>
      <author>校花的手</author>
      <category domain="https://alenwee.xyz/categories/Landing/">Landing</category>
      <category domain="https://alenwee.xyz/tags/Land/">Land</category>
      <pubDate>Mon, 11 May 2026 09:35:28 GMT</pubDate>
      <content:encoded>
        <![CDATA[<h1 id="限量出售】Bagan-Laut-油棕地"><a href="#限量出售】Bagan-Laut-油棕地" class="headerlink" title="限量出售】Bagan Laut 油棕地"></a>限量出售】Bagan Laut 油棕地</h1><p>💡 这种地越来越少，占据价格优势<br>💡入手容易，出手简单，<br>💡现在不买以后更贵！</p><p>📍 靠近 Bagan Laut｜黄金农业地段<br>💰 Freehold 永久地契｜投资首选！<br>2xxk</p><p>✔ 0.5489 Hektar<br>✔ 内路直达（方便进出）<br>✔ 适合种植 &#x2F; 投资 &#x2F; 长期持有<br>✔️固定月收成 600<br>宽大概120ft 深大概500ft</p><p>📲 立即 WhatsApp 咨询：<br>👤 Alen<br><a href="https://wa.me/message/XNVN4S3466CXC1">watsapp</a></p><div class="video-container"><iframe width="357" height="643" src="https://www.youtube.com/embed/T4W47uelUIk" title="11 May 2026" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe></div><style>.video-container {    position: relative;    width: 100%;    padding-top: 56.25%; /* 16:9 aspect ratio (height/width = 9/16 * 100%) */}.video-container iframe {    position: absolute;    top: 0;    left: 0;    width: 100%;    height: 100%;}</style>]]>
      </content:encoded>
    </item>
    <item>
      <title>Taman Kajang Indah Single Storey</title>
      <link>https://alenwee.xyz/2026/05/11/Taman-Kajang-Indah/</link>
      <description>
        <![CDATA[<span id="more"></span>
<p><img src="https://raw.githubusercontent.com/Alen-property/photo/main/img/Untitled%20design.webp" alt="image"></p>]]>
      </description>
      <author>校花的手</author>
      <category domain="https://alenwee.xyz/categories/Brand-new/">Brand-new</category>
      <category domain="https://alenwee.xyz/tags/single-storey/">single-storey</category>
      <pubDate>Mon, 11 May 2026 08:38:24 GMT</pubDate>
      <content:encoded>
        <![CDATA[<span id="more"></span><p><img src="https://raw.githubusercontent.com/Alen-property/photo/main/img/Untitled%20design.webp" alt="image"></p><p>🔥 BP Peserai 全新项目 | 22’x85’ 超深地段震撼来袭！🔥<br>还在挤窄窄的排屋？来看看这间 Sungai Kajang 新建排屋<br>真正的大车库、长格局、黄金位！<br>🏠 【项目亮点】<br>✨ 够深：85尺 - 115尺深度，空间感直接拉满！<br>✨ 够稳：Freehold 永久地契，国际单位 (Non-Bumi) 也有！<br>✨ 够近：3-5分钟搞定学校、医院、油站，生活超 Easy。<br>💼 【为什么选这里？】</p><p><img src="https://raw.githubusercontent.com/Alen-property/photo/main/img/photo-grid-1x3.jpg" alt="image"></p><ol><li>首购族首选：格局方正，3房2厕刚刚好。</li><li>投资保值：地段好 + 永久地契 &#x3D; 升值王牌。</li><li>空间自由：那个大车库，不管是停车还是以后扩建都爽！<br>⚠️ 重点：新房名额不多，先到先得！<br>与其看别人搬新家，不如自己先下手！<br>📩 马上 WhatsApp 预约看房：<br>👤 Alen<br><a href="https://wa.me/message/XNVN4S3466CXC1">watsapp</a></li></ol><div class="video-container">[up主专用，视频内嵌代码贴在这]</div><style>.video-container {    position: relative;    width: 100%;    padding-top: 56.25%; /* 16:9 aspect ratio (height/width = 9/16 * 100%) */}.video-container iframe {    position: absolute;    top: 0;    left: 0;    width: 100%;    height: 100%;}</style>]]>
      </content:encoded>
    </item>
    <item>
      <title>Taman Wangsa Indah Double Storey</title>
      <link>https://alenwee.xyz/2026/05/11/Taman-Wangsa-Indah/</link>
      <description>
        <![CDATA[<link href="https://fonts.googleapis.com/css2?family=Space+Mono:wght@700&display=swap" rel="stylesheet">
<style>
  .sc-text {
    font-fami]]>
      </description>
      <author>校花的手</author>
      <category domain="https://alenwee.xyz/categories/Brand-new/">Brand-new</category>
      <category domain="https://alenwee.xyz/tags/Double-storey/">Double-storey</category>
      <pubDate>Mon, 11 May 2026 08:11:23 GMT</pubDate>
      <content:encoded>
        <![CDATA[<link href="https://fonts.googleapis.com/css2?family=Space+Mono:wght@700&display=swap" rel="stylesheet"><style>  .sc-text {    font-family: 'Space Mono', monospace;    font-size: clamp(1.8rem, 5vw, 3rem);    font-weight: 700;    background: linear-gradient(90deg, #a78bfa, #60a5fa, #34d399, #f472b6);    background-size: 300% 100%;    -webkit-background-clip: text;    -webkit-text-fill-color: transparent;    background-clip: text;    animation: sc-hue 4s linear infinite;    letter-spacing: -0.02em;    display: inline-block;    line-height: 1.2;  }  .sc-cursor {    display: inline-block;    width: 3px;    height: 1em;    background: #a78bfa;    vertical-align: middle;    margin-left: 4px;    animation: sc-blink 0.7s step-end infinite;    border-radius: 2px;  }  @keyframes sc-blink { 50% { opacity: 0; } }  @keyframes sc-hue {    0%   { background-position: 0% 50%; }    100% { background-position: 300% 50%; }  }</style><div style="text-align:center; padding: 2rem 0;">  <span class="sc-text"></span><span class="sc-cursor"></span></div><script>(function(){  const chars='ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789@#$%!?';  const phrases=["Welcome to my blogger","Selamat datang","Taman Wangsa Indah Double Storey"];  function scramble(el,text,dur,cb){    const len=text.length,t0=performance.now();    function f(now){      const p=Math.min((now-t0)/dur,1),rev=Math.floor(p*len);      let s='';      for(let i=0;i<len;i++) s+=i<rev?text[i]:chars[Math.floor(Math.random()*chars.length)];      el.textContent=s;      p<1?requestAnimationFrame(f):cb&&cb();    }    requestAnimationFrame(f);  }  const el=document.querySelector('.sc-text');  let idx=0;  function loop(){    scramble(el,phrases[idx%phrases.length],900,()=>{      setTimeout(()=>{ idx++; loop(); },2200);    });  }  loop();})();</script><div style="background:#1a1a2e; border-radius:12px; padding:2rem; min-height:160px; display:flex; align-items:center; justify-content:center; margin-bottom:1rem;">  <p id="quote-st0nb6o" style="font-size:1.4rem; font-weight:500; color:white; text-align:center; line-height:1.6; max-width:520px;">第四期双层排楼正式登场,永久地契</p></div><div style="display:flex; flex-wrap:wrap; gap:10px; justify-content:center; margin-bottom:2rem;">  <button onclick="animChars_st0nb6o()" class="st-btn-st0nb6o">✦ Chars</button>  <button onclick="animWords_st0nb6o()" class="st-btn-st0nb6o">✦ Words</button>  <button onclick="animLines_st0nb6o()" class="st-btn-st0nb6o">✦ Price</button>  <button onclick="animCombo_st0nb6o()" class="st-btn-st0nb6o">✦ Combo</button>  <button onclick="revert_st0nb6o()" class="st-btn-st0nb6o" style="opacity:0.6;">↺ Revert</button></div><style>  .st-btn-st0nb6o {    padding: 8px 18px;    font-size: 14px;    border-radius: 8px;    cursor: pointer;    border: 1.5px solid currentColor;    background: transparent;    color: inherit;    transition: background 0.2s, color 0.2s;  }  .st-btn-st0nb6o:hover {    background: rgba(128,128,128,0.15);  }</style><script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.12.5/gsap.min.js"></script><script>(function() {  const el = document.getElementById('quote-st0nb6o');  const texts = {    chars: "第四期双层排楼正式登场,永久地契",    words: "太阳能系统（附送+免安装）",    lines: "Selling Price RM768,000",    combo: "免买卖合同及贷款律师费（不包括印花税)"  };  let tl = null;  function setText(t) {    el.removeAttribute('data-original');    el.innerHTML = t;  }  function splitByChars(el) {    const text = el.getAttribute('data-original') || el.innerText;    el.setAttribute('data-original', text);    el.innerHTML = '';    const spans = [];    for (let i = 0; i < text.length; i++) {      const ch = text[i];      const sp = document.createElement('span');      sp.style.display = 'inline-block';      sp.textContent = ch === ' ' ? ' ' : ch;      el.appendChild(sp);      if (ch !== ' ') spans.push(sp);    }    return spans;  }  function splitByWords(el) {    const text = el.getAttribute('data-original') || el.innerText;    el.setAttribute('data-original', text);    el.innerHTML = '';    const spans = [];    text.split(' ').forEach((w, i, arr) => {      const sp = document.createElement('span');      sp.style.display = 'inline-block';      sp.textContent = w;      el.appendChild(sp);      spans.push(sp);      if (i < arr.length - 1) el.appendChild(document.createTextNode(' '));    });    return spans;  }  function splitByLines(el) {    const text = el.getAttribute('data-original') || el.innerText;    el.setAttribute('data-original', text);    el.innerHTML = '';    const wordSpans = text.split(' ').map((w, i, arr) => {      const sp = document.createElement('span');      sp.style.display = 'inline-block';      sp.textContent = w;      el.appendChild(sp);      if (i < arr.length - 1) el.appendChild(document.createTextNode(' '));      return sp;    });    const lines = [];    let currentLine = [], currentTop = null;    wordSpans.forEach(sp => {      const top = sp.getBoundingClientRect().top;      if (currentTop === null) currentTop = top;      if (Math.abs(top - currentTop) > 5) {        lines.push(currentLine); currentLine = [sp]; currentTop = top;      } else currentLine.push(sp);    });    if (currentLine.length) lines.push(currentLine);    return lines.map(line => {      const div = document.createElement('div');      line.forEach(sp => div.appendChild(sp.cloneNode(true)));      return div;    });  }  function kill() {    if (tl) { tl.kill(); tl = null; }  }  window['animChars_st0nb6o'] = function() {    kill(); setText(texts.chars);    const chars = splitByChars(el);    tl = gsap.timeline();    tl.from(chars, { duration: 0.8, scale: 4, autoAlpha: 0, rotationX: -180, transformOrigin: '100% 50%', ease: 'back', stagger: 0.02 });  };  window['animWords_st0nb6o'] = function() {    kill(); setText(texts.words);    const words = splitByWords(el);    tl = gsap.timeline();    words.forEach((word, i) => {      tl.from(word, { duration: 0.8, opacity: 0, force3D: true }, i * 0.08);      tl.from(word, { duration: 0.8, scale: i % 2 === 0 ? 0 : 2 }, i * 0.08);    });  };  window['animLines_st0nb6o'] = function() {    kill(); setText(texts.lines);    const lines = splitByLines(el);    el.innerHTML = '';    lines.forEach(l => el.appendChild(l));    tl = gsap.from(lines, { duration: 1.2, opacity: 0, x: -80, stagger: 0.15, ease: 'expo.out' });  };  window['animCombo_st0nb6o'] = function() {    kill(); setText(texts.combo);    const words = splitByWords(el);    const chars = [];    words.forEach(w => {      const t = w.textContent;      w.innerHTML = '';      for (let i = 0; i < t.length; i++) {        const sp = document.createElement('span');        sp.style.display = 'inline-block';        sp.textContent = t[i];        w.appendChild(sp);        chars.push(sp);      }    });    tl = gsap.timeline();    tl.from(chars, { duration: 0.6, autoAlpha: 0, scale: 3, force3D: true, stagger: 0.02 }, 0.3)      .to(words, { duration: 0.2, color: '#ff8709', scale: 0.9, stagger: 0.1 }, 'words')      .to(words, { duration: 0.4, color: 'white', scale: 1, stagger: 0.1 }, 'words+=0.1')      .to(words, { duration: 0.5, x: 100, autoAlpha: 0, stagger: 0.2 });  };  window['revert_st0nb6o'] = function() {    kill(); setText(texts.chars);  };})();</script><p><img src="https://raw.githubusercontent.com/Alen-property/photo/main/img/tmn%20wangsa%20indah.webp" alt="Banner"></p><hr><h2 id="Siteplan"><a href="#Siteplan" class="headerlink" title="Siteplan"></a>Siteplan</h2><p><img src="https://i.ibb.co/609pc6xn/photo-grid-1x2.jpg" alt="Siteplan"></p><hr><h2 id="Free-Furniture"><a href="#Free-Furniture" class="headerlink" title="Free Furniture"></a>Free Furniture</h2><p><img src="https://raw.githubusercontent.com/Alen-property/photo/main/img/wangsa%20indah%20furniture.webp" alt="Free Furniture"></p><hr><h2 id="新-Wangsa-Indah-第四期｜全新升级双层排楼"><a href="#新-Wangsa-Indah-第四期｜全新升级双层排楼" class="headerlink" title="新 Wangsa Indah 第四期｜全新升级双层排楼"></a>新 Wangsa Indah 第四期｜全新升级双层排楼</h2><p>经过第一期至第三期住户真实反馈全面优化，第四期双层排楼正式登场！🔥</p><h3 id="📐-22’-x-77’-超实用宽敞设计"><a href="#📐-22’-x-77’-超实用宽敞设计" class="headerlink" title="📐 22’ x 77’ 超实用宽敞设计"></a>📐 22’ x 77’ 超实用宽敞设计</h3><ul><li>✔ 更宽大的客厅空间</li><li>✔ 干湿厨房分离设计</li><li>✔ 主人房超宽敞舒适</li><li>✔ 4房4厕，满足全家需求 👨‍👩‍👧‍👦</li></ul><p><img src="https://raw.githubusercontent.com/Alen-property/photo/main/img/taman%20wangsa%20indah.JPG" alt="Interior"></p><hr><h3 id="🎁-发展商诚意附送"><a href="#🎁-发展商诚意附送" class="headerlink" title="🎁 发展商诚意附送"></a>🎁 发展商诚意附送</h3><table><thead><tr><th>项目</th><th>说明</th></tr></thead><tbody><tr><td>✅ 太阳能系统</td><td>附送 + 免安装</td></tr><tr><td>✅ 衣帽间橱柜</td><td>附送 + 免安装</td></tr><tr><td>✅ 厨房橱柜（直做到石膏顶）</td><td>附送 + 免安装</td></tr><tr><td>✅ 全部浴室橱柜 + 镜子</td><td>附送 + 免安装</td></tr><tr><td>✅ 免买卖合同及贷款律师费</td><td>不包括印花税</td></tr></tbody></table><hr><h3 id="✨-3D-示范屋参观"><a href="#✨-3D-示范屋参观" class="headerlink" title="✨ 3D 示范屋参观"></a>✨ 3D 示范屋参观</h3><p>不仅是买房，future showroom 示范屋，更是一步到位拥有高品质生活！</p><p>👉 <a href="https://yun.kujiale.com/design/3FO3G7OEP69K/show">点击查看 3D 示范屋</a></p><p>📍 地点优越｜设计升级｜配套齐全<br><strong>适合自住、投资、家庭升级首选！</strong></p><hr><h2 id="📞-立即咨询"><a href="#📞-立即咨询" class="headerlink" title="📞 立即咨询"></a>📞 立即咨询</h2><div style="text-align:center;margin:24px 0;">  <a href="https://wa.me/60137568799/?text=Hi%2C%20I%27m%20interested%20in%20tmn%20wangsaindah%20For%20sale%20%F0%9F%8F%A0%20Please%20share%20more%20details%21"     style="display:inline-flex;align-items:center;gap:16px;padding:20px 32px;background:linear-gradient(135deg,#25D366,#128C7E);border-radius:20px;text-decoration:none;box-shadow:0 4px 20px rgba(37,211,102,0.4);">    <svg width="28" height="28" viewBox="0 0 24 24" fill="#fff">      <path d="M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 00-3.48-8.413z"/>    </svg>    <div style="text-align:left;">      <div style="font-size:12px;color:rgba(255,255,255,0.8);letter-spacing:2px;">CONTACT US</div>      <div style="font-size:18px;font-weight:700;color:#fff;">WhatsApp 立即咨询</div>    </div>  </a></div><hr><h2 id="🎬-项目视频"><a href="#🎬-项目视频" class="headerlink" title="🎬 项目视频"></a>🎬 项目视频</h2><div class="video-container">  <iframe    src="https://www.youtube.com/embed/Ml7Qs0fAjZM"    title="Batu Pahat 新项目"    frameborder="0"    allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share"    referrerpolicy="strict-origin-when-cross-origin"    allowfullscreen>  </iframe></div><style>.video-container {  position: relative;  width: 100%;  padding-top: 56.25%;}.video-container iframe {  position: absolute;  top: 0;  left: 0;  width: 100%;  height: 100%;}</style>]]>
      </content:encoded>
    </item>
    <item>
      <title>Taman Putera Indah Single Storey</title>
      <link>https://alenwee.xyz/2026/05/11/Taman-Putera-Indah/</link>
      <description>
        <![CDATA[<span id="more"></span>

<p><img src="https://i.ibb.co/wFQJvgNK/Untitled-design.webp" alt="image"></p>
<p>🏡 Batu Pahat 单层排屋出售 | 📍 Taman Pu]]>
      </description>
      <author>校花的手</author>
      <category domain="https://alenwee.xyz/categories/Brand-new/">Brand-new</category>
      <category domain="https://alenwee.xyz/tags/single-storey/">single-storey</category>
      <pubDate>Mon, 11 May 2026 08:02:34 GMT</pubDate>
      <content:encoded>
        <![CDATA[<span id="more"></span><p><img src="https://i.ibb.co/wFQJvgNK/Untitled-design.webp" alt="image"></p><p>🏡 Batu Pahat 单层排屋出售 | 📍 Taman Putera Indah</p><p>✨ 低供期 · 直接拿屋 · 单位有限！</p><p>💰 每月供期约 RM1,8xx±<br>👉 头期 &#x2F; 律师费 &#x2F; 印花税<br>👉 甚至装修费都有方案帮您解决！</p><p>📐 房屋资料<br>✅ 22 × 70<br>✅ 3房 2厕<br>✅ 围篱保安社区，居住更安心<br>✅ 只剩最后几间，先到先得！</p><p>📲 想知道能不能买？<br>PM &#x2F; WhatsApp 我<br>✔ 免费计算供期<br>✔ 免费评估贷款资格</p><p>🔥 供期低 · 机会少 · 错过不再！<br>👤 Alen<br><a href="https://wa.me/message/XNVN4S3466CXC1">watsapp</a></p><div class="video-container">[up主专用，视频内嵌代码贴在这]</div><style>.video-container {    position: relative;    width: 100%;    padding-top: 56.25%; /* 16:9 aspect ratio (height/width = 9/16 * 100%) */}.video-container iframe {    position: absolute;    top: 0;    left: 0;    width: 100%;    height: 100%;}</style>]]>
      </content:encoded>
    </item>
    <item>
      <title>Taman Banang Jaya Double Storey</title>
      <link>https://alenwee.xyz/2026/05/11/Taman-Banang-Jaya/</link>
      <description>峇株巴辖市中心双层排屋，4房4厕，22'x70'，永久地契，近学校商圈，价格亲民，欢迎 WhatsApp 询问。</description>
      <author>校花的手</author>
      <category domain="https://alenwee.xyz/categories/Brand-new/">Brand-new</category>
      <category domain="https://alenwee.xyz/tags/Double-storey/">Double-storey</category>
      <pubDate>Mon, 11 May 2026 07:54:59 GMT</pubDate>
      <content:encoded>
        <![CDATA[<span id="more"></span><p><img src="https://pic.vvfree.de/i/2026/05/10/w4jerd.jpeg" alt="Taman Banang Jaya"></p><h2 id="🏡-峇株巴辖市中心-·-高端双层排屋"><a href="#🏡-峇株巴辖市中心-·-高端双层排屋" class="headerlink" title="🏡 峇株巴辖市中心 · 高端双层排屋"></a>🏡 峇株巴辖市中心 · 高端双层排屋</h2><p>✨ 一次到位的理想家！</p><table><thead><tr><th>项目</th><th>详情</th></tr></thead><tbody><tr><td>类型</td><td>双层排屋</td></tr><tr><td>房间 &#x2F; 浴室</td><td>4 房 4 厕</td></tr><tr><td>土地面积</td><td>22’ × 70’</td></tr><tr><td>地契</td><td>Freehold 永久地契</td></tr><tr><td>环境</td><td>市中心成熟社区</td></tr></tbody></table><h2 id="📍-周边配套"><a href="#📍-周边配套" class="headerlink" title="📍 周边配套"></a>📍 周边配套</h2><ul><li>🏫 邻近学校</li><li>☕ 咖啡馆林立</li><li>⛳ 高尔夫球场</li><li>🚶 人行道 &amp; 脚车道，安全舒适</li></ul><h2 id="💰-价格亲民"><a href="#💰-价格亲民" class="headerlink" title="💰 价格亲民"></a>💰 价格亲民</h2><p>市中心稀有单位，打工族也买得起。</p><hr><h2 id="📞-立即联系"><a href="#📞-立即联系" class="headerlink" title="📞 立即联系"></a>📞 立即联系</h2><div style="text-align:center; margin:24px 0;">  <a href="https://wa.me/message/XNVN4S3466CXC1" target="_blank"     style="display:inline-flex;align-items:center;gap:16px;padding:20px 32px;background:linear-gradient(135deg,#25D366,#128C7E);border-radius:20px;text-decoration:none;box-shadow:0 4px 20px rgba(37,211,102,0.4);">    <svg width="28" height="28" viewBox="0 0 24 24" fill="#fff"><path d="M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 00-3.48-8.413z"/></svg>    <div style="text-align:left;">      <div style="font-size:12px;color:rgba(255,255,255,0.8);letter-spacing:2px;">CONTACT US</div>      <div style="font-size:18px;font-weight:700;color:#fff;">WhatsApp 立即咨询</div>    </div>  </a></div><hr><h2 id="🎬-视频介绍"><a href="#🎬-视频介绍" class="headerlink" title="🎬 视频介绍"></a>🎬 视频介绍</h2><div style="position:relative;width:100%;padding-top:56.25%;border-radius:16px;overflow:hidden;margin:16px 0;">  <iframe    style="position:absolute;top:0;left:0;width:100%;height:100%;border:0;"    src="你的YouTube嵌入链接"    allowfullscreen>  </iframe></div>]]>
      </content:encoded>
    </item>
  </channel>
</rss>
