HSIAO-FAN YEH
    • Create new note
    • Create a note from template
      • Sharing URL Link copied
      • /edit
      • View mode
        • Edit mode
        • View mode
        • Book mode
        • Slide mode
        Edit mode View mode Book mode Slide mode
      • Customize slides
      • Note Permission
      • Read
        • Only me
        • Signed-in users
        • Everyone
        Only me Signed-in users Everyone
      • Write
        • Only me
        • Signed-in users
        • Everyone
        Only me Signed-in users Everyone
    • Invite by email
      Invitee

      This note has no invitees

    • Publish Note

      Share your work with the world Congratulations! 🎉 Your note is out in the world Publish Note No publishing access yet

      Your note will be visible on your profile and discoverable by anyone.
      Your note is now live.
      This note is visible on your profile and discoverable online.
      Everyone on the web can find and read all notes of this public team.

      Your account was recently created. Publishing will be available soon, allowing you to share notes on your public page and in search results.

      Your team account was recently created. Publishing will be available soon, allowing you to share notes on your public page and in search results.

      Explore these features while you wait
      Complete general settings
      Bookmark and like published notes
      Write a few more notes
      Complete general settings
      Write a few more notes
      See published notes
      Unpublish note
      Please check the box to agree to the Community Guidelines.
      View profile
    • Commenting
      Permission
      Disabled Forbidden Owners Signed-in users Everyone
    • Enable
    • Permission
      • Forbidden
      • Owners
      • Signed-in users
      • Everyone
    • Suggest edit
      Permission
      Disabled Forbidden Owners Signed-in users Everyone
    • Enable
    • Permission
      • Forbidden
      • Owners
      • Signed-in users
    • Emoji Reply
    • Enable
    • Versions and GitHub Sync
    • Note settings
    • Note Insights New
    • Make a copy
    • Transfer ownership
    • Delete this note
    • Save as template
    • Insert from template
    • Import from
      • Dropbox
      • Google Drive
      • Gist
      • Clipboard
    • Export to
      • Dropbox
      • Google Drive
      • Gist
    • Download
      • Markdown
      • HTML
      • Raw HTML
Menu Note settings Note Insights Versions and GitHub Sync Sharing URL Create Help
Create Create new note Create a note from template
Menu
Options
Make a copy Transfer ownership Delete this note
Import from
Dropbox Google Drive Gist Clipboard
Export to
Dropbox Google Drive Gist
Download
Markdown HTML Raw HTML
Back
Sharing URL Link copied
/edit
View mode
  • Edit mode
  • View mode
  • Book mode
  • Slide mode
Edit mode View mode Book mode Slide mode
Customize slides
Note Permission
Read
Only me
  • Only me
  • Signed-in users
  • Everyone
Only me Signed-in users Everyone
Write
Only me
  • Only me
  • Signed-in users
  • Everyone
Only me Signed-in users Everyone
  • Invite by email
    Invitee

    This note has no invitees

  • Publish Note

    Share your work with the world Congratulations! 🎉 Your note is out in the world Publish Note No publishing access yet

    Your note will be visible on your profile and discoverable by anyone.
    Your note is now live.
    This note is visible on your profile and discoverable online.
    Everyone on the web can find and read all notes of this public team.

    Your account was recently created. Publishing will be available soon, allowing you to share notes on your public page and in search results.

    Your team account was recently created. Publishing will be available soon, allowing you to share notes on your public page and in search results.

    Explore these features while you wait
    Complete general settings
    Bookmark and like published notes
    Write a few more notes
    Complete general settings
    Write a few more notes
    See published notes
    Unpublish note
    Please check the box to agree to the Community Guidelines.
    View profile
    Engagement control
    Commenting
    Permission
    Disabled Forbidden Owners Signed-in users Everyone
    Enable
    Permission
    • Forbidden
    • Owners
    • Signed-in users
    • Everyone
    Suggest edit
    Permission
    Disabled Forbidden Owners Signed-in users Everyone
    Enable
    Permission
    • Forbidden
    • Owners
    • Signed-in users
    Emoji Reply
    Enable
    Import from Dropbox Google Drive Gist Clipboard
       Owned this note    Owned this note      
    Published Linked with GitHub
    • Any changes
      Be notified of any changes
    • Mention me
      Be notified of mention me
    • Unsubscribe
    <!DOCTYPE html> <html lang="zh-TW"> <head> <meta charset="utf-8"><meta name="viewport" content="width=device-width, initial-scale=1" /> </head> <style> :root{ --btn-bg: #007BFF; /* 原本蓝色 */ --btn-bg-hover: #0a6ce8; /* hover 稍微加深 */ --btn-text: #fff; /* 白字 */ } /* 右下容器 */ .fixed-nextpage{ position: fixed; right: 20px; bottom: 20px; z-index: 1000; display: flex; align-items: center; /* 垂直对齐,三颗同高 */ gap: 10px; isolation: isolate; } /* 按钮几何 + 颜色(强制复写) */ .fixed-nextpage .shiny-button{ position: relative; box-sizing: border-box; display: flex; align-items: center; justify-content: center; height: 40px; /* 想更高就改 44/48 */ min-width: 120px; padding: 0 16px; /* 以高度为主,拿掉上下 padding 的高度影响 */ border-radius: 4px; background: var(--btn-bg) !important; /* 还原蓝底 */ color: var(--btn-text) !important; /* 还原白字(含 visited) */ text-decoration: none !important; border: 0; box-shadow: 0 2px 5px rgba(0,0,0,.2); overflow: hidden; line-height: 1; transition: background 0.3s ease; } /* 不做整颗 translateY,避免一高一低;仍有 hover 变色 */ .fixed-nextpage .shiny-button:hover{ background: var(--btn-bg-hover) !important; transform: none; } /* —— 光泽条(回来了) —— */ .fixed-nextpage .shiny-button::before{ content:""; position:absolute; top:0; bottom:0; left:-50%; width:30%; background: linear-gradient(120deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.6) 50%, rgba(255,255,255,0) 100%); transform: skewX(-20deg); pointer-events:none; } .fixed-nextpage .shiny-button:hover::before{ animation: shine 1s forwards; } @keyframes shine{ to{ left:150%; } } /* 箭头互动与间距(沿用你的写法) */ .fixed-nextpage .shiny-button .arrow{ display:inline-block; color: inherit !important; transition: transform .3s ease; } .fixed-nextpage .next:hover .arrow{ transform: translateX(5px); } .fixed-nextpage .prev:hover .arrow{ transform: translateX(-5px); } .fixed-nextpage .middle:hover .arrow { transform: scale(1.1); } .fixed-nextpage .prev .arrow{ margin-right:.4em; } .fixed-nextpage .next .arrow{ margin-left:.4em; } .fixed-nextpage .middle .arrow{ margin: 0 .4em; } /* 键盘可及性 */ .fixed-nextpage .shiny-button:focus-visible{ outline: 2px solid #fff; outline-offset: 2px; box-shadow: 0 0 0 3px rgba(0,123,255,.45); } /* 示例页面内容样式 */ body { font-family: Arial, sans-serif; margin: 0; padding: 20px; background-color: #f5f5f5; min-height: 150vh; /* 确保页面足够长以展示固定按钮效果 */ } .content { max-width: 800px; margin: 0 auto; background: white; padding: 30px; border-radius: 8px; box-shadow: 0 2px 10px rgba(0,0,0,0.1); } h1 { color: #333; border-bottom: 2px solid #007BFF; padding-bottom: 10px; } p { line-height: 1.6; color: #555; } </style> <body> <div class="section" style="text-align: center;"> <h1> 狗狗界中的圣书-军犬 </h1><p style="text-align: center; "><i><b><span style="font-size: 15px;">military dog</span></b></i></p><hr> <div class="blockContent"> <p style="text-align: right;"> View the book with <i class="fa fa-book fa-fw" style="font-size: 15px;"></i> <b><a href="https://hackmd.io/" target="_blank" style="text-decoration: none; color: inherit;">Power by HackMD</a></b> </p> <title>军犬介绍</title> <div class="section" style="text-align: right;"><p>中國特版 </p> &nbsp; <div class="section" style="text-align: left;"> <p><span style="font-size:26px;"><b style="font-size: 20px;">《军犬》出版史总览</b></span> </p> <div class="section" style="text-align: left;"> <div class="blockContent"> <div class="section" style=""> <h4 data-end="201" data-start="167"><span style="color:#000000;"><span style="font-family: arial;">一、</span>2003 伪译本</span> </h4> <ul data-end="662" data-start="202"> <li data-end="387" data-start="202"> <p data-end="213" data-start="204"><span style="font-size:20px;"><span style="color:#000000;"><strong data-end="213" data-start="204"><span style="font-family: Arial;">出版背景:</span></strong></span></span> </p> <ul> <li data-end="231" data-start="218"><span style="font-size:18px;"><span style="color:#000000;"><span style="font-family: Arial;">原作者:夏慕聪(本名沿用)</span></span></span></li> <li data-end="245" data-start="236"><span style="font-size:18px;"><span style="color:#000000;"><span style="font-family: Arial;">出版社:小知堂文化</span></span></span></li> <li data-end="297" data-start="250"><span style="font-size:18px;"><span style="color:#000000;"><span style="font-family: Arial;">为了避开当时市场对「本土情色/同志文学」的保守态度,出版社建议以「</span><strong data-end="290" data-start="283"><span style="font-family: Arial;">伪译本</span></strong><span style="font-family: Arial;">」的形式包装。</span></span></span></li> <li data-end="340" data-start="302"><span style="font-size:18px;"><span style="color:#000000;"><span style="font-family: Arial;">书籍署名译者为「</span><strong data-end="320" data-start="310"><span style="font-family: Arial;">G.L.简体</span></strong><span style="font-family: Arial;">」,并以「译自英语作品」的姿态登场。</span></span></span></li> <li data-end="387" data-start="345"><span style="font-size:18px;"><span style="color:#000000;"><span style="font-family: Arial;">封底、扉页皆标註「译者」、「原着国外书名」等设定,甚至模彷了欧美译书的排版习惯。</span></span></span></li> </ul> </li> <li data-end="512" data-start="389"> <p data-end="404" data-start="391"><span style="font-size:20px;"><span style="color:#000000;"><strong data-end="404" data-start="391"><span style="font-family: Arial;">「海棠本」的来源:</span></strong></span></span> </p> <ul> <li data-end="464" data-start="409"><span style="font-size:18px;"><span style="color:#000000;"><span style="font-family: Arial;">此称呼源自该书印刷、流通时的特定封面风格(封面以海棠红色调、模糊人物剪影为主),以及后来读者圈内对初版的戏称。</span></span></span></li> <li data-end="512" data-start="469"><span style="font-size:18px;"><span style="color:#000000;"><span style="font-family: Arial;">「海棠本」在收藏界常被视为「被掩藏的原形」,即那个假装是「翻译」但实为本土创作的版本。</span></span></span></li> </ul> </li> <li data-end="662" data-start="514"> <p data-end="527" data-start="516"><span style="font-size:20px;"><span style="color:#000000;"><strong data-end="527" data-start="516"><span style="font-family: Arial;">文化策略意义:</span></strong></span></span> </p> <ul> <li data-end="565" data-start="532"><span style="font-size:18px;"><span style="color:#000000;"><span style="font-family: Arial;">当时「翻译文学」比「原创情色文学」更容易通过书店审核、上架与销售。</span></span></span></li> <li data-end="617" data-start="570"><span style="font-size:18px;"><span style="color:#000000;"><span style="font-family: Arial;">小知堂与作者选择这种方式,实际上是一种「市场伪装」策略——以「国外译本」的面貌,争取出版空间。</span></span></span></li> <li data-end="662" data-start="622"><span style="font-size:18px;"><span style="color:#000000;"><span style="font-family: Arial;">这类做法在 2000 年代初台湾出版界并非孤例,尤其涉及同性/情色议题时更常见。</span></span></span></li> </ul> </li> </ul> <hr data-end="667" data-start="664" /> <h4 data-end="699" data-start="669" style="color: rgb(0, 0, 0);"><span style="color:#000000;"><span style="font-family: Arial;">二、2013 盖亚文化精装版</span></span> </h4> <ul data-end="1061" data-start="700"> <li data-end="780" data-start="700"> <p data-end="780" data-start="702"><span style="color:#000000;"><span style="font-size:20px;"><strong data-end="711" data-start="702"><span style="font-family: Arial;">出版宗旨:</span></strong></span> <br data-end="714" data-start="711" /> <span style="font-size:18px;">「拨乱反正」,以「<strong data-end="737" data-start="725">原创台湾同志文学</strong>」的身分重新登场。 <br data-end="749" data-start="746" /> 作者在后记明言,这个版本是要让书「<strong data-end="778" data-start="768">回归真实身份</strong>」。</span></span> </p> </li> <li data-end="1061" data-start="782"> <p data-end="794" data-start="784"><span style="font-size:20px;"><span style="color:#000000;"><strong data-end="794" data-start="784">新增与变化:</strong></span></span> </p> </li> </ul> <ol> <li data-end="826" data-start="800"><span style="font-size:18px;"><span style="color:#000000;"><strong data-end="811" data-start="800">新增「结局二」</strong>:为全新改写的双结局版本。</span></span></li> <li data-end="856" data-start="832"><span style="font-size:18px;"><span style="color:#000000;"><strong data-end="842" data-start="832">倒装印刷设计</strong>:结局二需从封底倒过反向从后面往前翻越阅读。</span></span></li> </ol> <ul data-end="917" data-start="862"> <li data-end="879" data-start="864"><span style="font-size:20px;"><span style="color:#000000;">象徵「将当年的伪装倒转回来」。</span></span> <ul> <li data-end="917" data-start="885"> <p data-end="917" data-start="887"><span style="font-size:18px;"><span style="color:#000000;">亦是一种「阅读仪式」迫使读者亲身感受「反转真相」的体验。</span></span> </p> </li> </ul> </li> </ul> <p data-end="984" data-start="923"><span style="font-size:20px;"><span style="color:#000000;"><strong data-end="936" data-start="923">新版后记与作者说明</strong>:</span></span> </p> <ol> <li data-end="984" data-start="923"><span style="font-size:18px;"><span style="color:#000000;">夏慕聪明确揭露 2003 年的出版伪装,详细解释当时市场压力、出版社决策过程。</span></span></li> <li data-end="1032" data-start="990"><span style="font-size:18px;"><span style="color:#000000;"><strong data-end="998" data-start="990">精装封面</strong>:以黑色,象徵荣耀与矛盾,与早期「海棠红」形成对比。</span></span></li> <li data-end="1061" data-start="1038"><span style="font-size:18px;"><span style="color:#000000;"><strong data-end="1044" data-start="1038">附录</strong>:收录当年编辑笔记与重製访谈。</span></span></li> </ol> <hr data-end="1066" data-start="1063" /> <h4 data-end="1084" data-start="1068" style="color: rgb(0, 0, 0);"><span style="color:#000000;">&nbsp;三、文化与学术意义</span> </h4> <ul data-end="1226" data-start="1106"> <li><span style="font-size:20px;"><span style="color:#000000;"><strong data-end="1103" data-start="1087">在学界与出版史中的定位:</strong></span></span> <ul> <li data-end="1137" data-start="1108"><span style="font-size:18px;"><span style="color:#000000;">被视为台湾同志文学在商业出版体系中「伪装求生」的代表案例。</span></span></li> <li data-end="1189" data-start="1142"><span style="font-size:18px;"><span style="color:#000000;">亦属于「元小说(metafiction)」现象的真实体现——文本的出版史本身即是文本的一部分。</span></span></li> <li data-end="1226" data-start="1194"><span style="font-size:18px;"><span style="color:#000000;">学者在研究台湾文学市场、性别文化、出版伦理时,几乎都会提及此案。</span></span></li> </ul> </li> <li data-end="1239" data-start="1230"><span style="font-size:20px;"><span style="color:#000000;"><strong data-end="1239" data-start="1230">象徵层面:</strong></span></span> <ul> <li data-end="1267" data-start="1244"><span style="font-size:18px;"><span style="color:#000000;">「倒装印刷」是形式创新。</span></span></li> <li data-end="1300" data-start="1272"><span style="font-size:18px;"><span style="color:#000000;">它把「真相被倒置」的历史,以物理方式刻在书本结构里。</span></span></li> <li data-end="1340" data-start="1305"><span style="font-size:18px;"><span style="color:#000000;">因此,2013 精装版不仅是修正版,而是一件「行动艺术级的文学作品」。</span></span></li> </ul> </li> </ul> <hr data-end="1345" data-start="1342" /> <h4 data-end="1382" data-start="1347" style="color: rgb(0, 0, 0);"><span style="color:#000000;">&nbsp;四、补充:作者与 Podcast 访谈中提及的「海棠本」</span> </h4> <ul> <li data-end="1415" data-start="1385"><span style="font-size:20px;"><span style="color:#000000;">夏慕聪曾在某次 Podcast 音讯讲座中提及「海棠本」:</span></span> <ul> <li data-end="1435" data-start="1420"><span style="font-size:20px;"><span style="color:#000000;">他称那是「当时不得不的选择,出版社想要营销手段」;</span></span></li> <li data-end="1514" data-start="1474"><span style="font-size:20px;"><span style="color:#000000;">所以精装版的倒装排版,是一种「后设致敬」,让读者重新意识到出版史。</span></span></li> </ul> </li> </ul> <hr data-end="1519" data-start="1516" /> <h5 data-end="1539" data-start="1521" style="color: rgb(0, 0, 0);"><span style="font-size:16px;"><span style="color:#000000;">总结</span></span> </h5> <div class="_tableContainer_1rjym_1"> <div class="group _tableWrapper_1rjym_13 flex w-fit flex-col-reverse" tabindex="-1"> <table class="w-fit min-w-(--thread-content-width)" data-end="1800" data-start="1541"> <thead data-end="1577" data-start="1541"> <tr data-end="1577" data-start="1541"> <td data-col-size="sm" data-end="1546" data-start="1541"><span style="font-size:18px;"><span style="color:#000000;">项目</span></span> </td> <td data-col-size="sm" data-end="1562" data-start="1546"><span style="font-size:18px;"><span style="color:#000000;">2003(海棠本/伪译本)</span></span> </td> <td data-col-size="sm" data-end="1577" data-start="1562"><span style="font-size:18px;"><span style="color:#000000;">2013(精装珍藏版)</span></span> </td> </tr> </thead> <tbody data-end="1800" data-start="1636"> <tr data-end="1658" data-start="1636"> <td data-col-size="sm" data-end="1642" data-start="1636"><span style="font-size:18px;"><span style="color:#000000;">出版社</span></span> </td> <td data-col-size="sm" data-end="1650" data-start="1642"><span style="font-size:18px;"><span style="color:#000000;">小知堂文化</span></span> </td> <td data-col-size="sm" data-end="1658" data-start="1650"><span style="font-size:18px;"><span style="color:#000000;">盖亚文化</span></span> </td> </tr> <tr data-end="1692" data-start="1659"> <td data-col-size="sm" data-end="1664" data-start="1659"><span style="font-size:18px;"><span style="color:#000000;">署名</span></span> </td> <td data-col-size="sm" data-end="1680" data-start="1664"><span style="font-size:18px;"><span style="color:#000000;">伪译本「G.L.简体 译」</span></span> </td> <td data-col-size="sm" data-end="1692" data-start="1680"><span style="font-size:18px;"><span style="color:#000000;">作者正名 夏慕聪</span></span> </td> </tr> <tr data-end="1722" data-start="1693"> <td data-col-size="sm" data-end="1700" data-start="1693"><span style="font-size:18px;"><span style="color:#000000;">市场策略</span></span> </td> <td data-col-size="sm" data-end="1710" data-start="1700"><span style="font-size:18px;"><span style="color:#000000;">伪装为外国译作</span></span> </td> <td data-col-size="sm" data-end="1722" data-start="1710"><span style="font-size:18px;"><span style="color:#000000;">正式回归台湾原创</span></span> </td> </tr> <tr data-end="1748" data-start="1723"> <td data-col-size="sm" data-end="1728" data-start="1723"><span style="font-size:18px;"><span style="color:#000000;">设计</span></span> </td> <td data-col-size="sm" data-end="1737" data-start="1728"><span style="font-size:18px;"><span style="color:#000000;">传统直排印刷</span></span> </td> <td data-col-size="sm" data-end="1748" data-start="1737"><span style="font-size:18px;"><span style="color:#000000;">倒装双结局印刷</span></span> </td> </tr> <tr data-end="1772" data-start="1749"> <td data-col-size="sm" data-end="1756" data-start="1749"><span style="font-size:18px;"><span style="color:#000000;">文学象徵</span></span> </td> <td data-col-size="sm" data-end="1763" data-start="1756"><span style="font-size:18px;"><span style="color:#000000;">掩藏身份</span></span> </td> <td data-col-size="sm" data-end="1772" data-start="1763"><span style="font-size:18px;"><span style="color:#000000;">正名与重生</span></span> </td> </tr> <tr data-end="1800" data-start="1773"> <td data-col-size="sm" data-end="1780" data-start="1773"><span style="font-size:18px;"><span style="color:#000000;">文化意义</span></span> </td> <td data-col-size="sm" data-end="1788" data-start="1780"><span style="font-size:18px;"><span style="color:#000000;">出版及隐藏自己</span></span> </td> <td data-col-size="sm" data-end="1800" data-start="1788"><span style="font-size:18px;"><span style="color:#000000;">文学与真相的自白</span></span> </td> </tr> </tbody> </table> </div> </div> <hr data-end="1805" data-start="1802" /> <p data-end="1855" data-start="1807"><span style="font-size:18px;"><span style="color:#000000;"><span style="text-align: var(--bs-body-text-align);">「《军犬》从『伪译本』到『正名本』,是一场从市场伪装到真实自我揭露的十年旅程。」</span></span></span> </p> <hr data-end="1904" data-start="1901" /> <h4 data-end="165" data-start="140" style="color: rgb(0, 0, 0);"><span style="color:#000000;"><span style="font-family: &quot;Comic Sans MS&quot;;">《军犬》简介</span></span> </h4> <p style="text-align: right;">&nbsp;<img alt="军犬小说" src="https://s.eslite.com/Upload/Product/201308/o/635126707994707500.jpg" style="width: 300px; height: 342px;" /> </p> <p style="text-align: right;"><span style="font-size:14px;"><strong>军犬小说</strong></span> </p> <h4 data-end="165" data-start="140"><span style="color:#000000;"><span style="text-align: var(--bs-body-text-align); font-family: &quot;Comic Sans MS&quot;;">「我是您的犬」</span></span> </h4> <p style="box-sizing: inherit; margin-right: 0px; margin-bottom: 32px; margin-left: 0px; font-variant-ligatures: normal; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;"><span style="color:#000000;"><span style="font-family: &quot;Comic Sans MS&quot;;"> <span style="font-size:18px;">《军犬》是夏慕聪以&nbsp;<span style="font-family: Arial;">BDSM 为题材创作的小说,内容描述主角李军忠因为一场阴错阳差成为 DT 的犬</span>奴,后续在犬奴与主人身分间挣扎的故事。故事过程中多涉及一些性与调教的描写,但整体而言并没有太浮夸的剧情,相对于其他以此题材的作品来说,显得有点平淡。或许也是因为正个缘故,而显得格外贴近现实。</span></span></span> </p> <p style="box-sizing: inherit; margin-right: 0px; margin-bottom: 32px; margin-left: 0px; font-variant-ligatures: normal; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;"><span style="font-size:18px;"><span style="color:#000000;"><span style="font-family: &quot;Comic Sans MS&quot;;">从一层层的训练过程,就是不断的、重複的加深主人对于犬奴的铭印。所以当后来<span style="font-family: Arial;">dt</span>失去联繫时,李军忠才会觉得痛苦,甚至下意识的追随dt的脚步,成为一个像<span style="font-family: Arial;">dt的人。这种关係与其说是爱情或者亲情,或许更像是信仰。精神上对dt的绝对崇拜,最终使自己丧失主体的自主性,而成为其的衍生物。</span></span><span style="text-align: var(--bs-body-text-align); font-family: &quot;Comic Sans MS&quot;;"><span style="font-family: Arial;">所以在 dt 离开以后,他成为第二个「dt」,使「dt」</span>作为一个角色、符码得以被延续。</span></span></span> </p> <p style="box-sizing: inherit; margin-right: 0px; margin-bottom: 32px; margin-left: 0px; font-variant-ligatures: normal; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;"><span style="font-size:18px;"><span style="color:#000000;"><span style="font-family: &quot;Comic Sans MS&quot;;">超越爱情的支配关係:</span><span style="text-align: var(--bs-body-text-align); font-family: &quot;Comic Sans MS&quot;;">如您所说,他们的关係与其说是爱情或亲情,不如说更像一种信仰关係。</span><span style="font-family: &quot;Comic Sans MS&quot;; text-align: var(--bs-body-text-align);">李军忠对<span style="font-family: Arial;">DT</span>是「绝对崇拜」,这是一种超越情感连结的、更为纯粹和绝对的权力结构。</span></span></span> </p> <p style="box-sizing: inherit; margin-right: 0px; margin-bottom: 32px; margin-left: 0px; font-variant-ligatures: normal; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;"><span style="font-size:18px;"><span style="color:#000000;"><span style="font-variant-ligatures: normal; orphans: 2; widows: 2; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;"><span style="text-align: var(--bs-body-text-align); font-family: &quot;Comic Sans MS&quot;;">「</span><span style="font-family: &quot;Comic Sans MS&quot;;">你很努力。弯下腰来。」</span><span style="font-family: Arial;">dt&nbsp;</span><span style="font-family: &quot;Comic Sans MS&quot;;">在我脖子上套了项鍊。 「狗牌。上面写着我的名字,下面一排数字,前六个是我在<span style="font-family: Arial;">SM</span>网站的会员编号,后六码是你的。」 像极美国大兵的狗牌正挂在我脖子上。我得到&nbsp;</span><span style="font-family: Arial;">dt&nbsp;</span><span style="font-family: &quot;Comic Sans MS&quot;;">的认可,这是我的狗牌。 证明自己有能力成为一条训练有素的犬。 「还想被我调教吗?」</span><span style="font-family: Arial;">dt&nbsp;</span><span style="font-family: &quot;Comic Sans MS&quot;;">问。 「主人,我是您的军犬。」我听见自己的回答。 职业军人李军忠,在&nbsp;<span style="font-family: Arial;">SM&nbsp;</span>网站遇见军主&nbsp;</span><span style="font-family: Arial;">dt</span><span style="font-family: &quot;Comic Sans MS&quot;;">,召唤出他体内骚动却坚强的狗性。</span></span><span style="font-family: &quot;Comic Sans MS&quot;; orphans: 2; widows: 2; text-align: var(--bs-body-text-align);">他/ 牠立誓成为一隻忠心耿耿、能让主人为他骄傲的军犬,即使要受再多的责罚和磨练, 也甘之若饴。被主人处罚,就能深刻的感受到主人希望他好,要他遵守规则,在处罚中, 他强烈感受到主人对他的爱。他的屁股是主人爱的受器。&nbsp;</span></span></span> </p> <h4 style="font-stretch: normal; line-height: 28px; font-kerning: auto; font-variant-alternates: normal; font-variant-ligatures: normal; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-position: normal; font-feature-settings: normal; font-optical-sizing: auto; font-variation-settings: normal; margin-top: 16px; margin-bottom: 8px; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;"><span style="color:#000000;"><span style="font-family: &quot;Comic Sans MS&quot;;">作品风格与评价</span></span> </h4> <ul> <li class="ds-markdown-paragraph" style="margin-right: 0px; margin-bottom: 0px; margin-left: 0px;"><span style="font-size:18px;"><span style="color:#000000;"><b><span style="font-family: &quot;Comic Sans MS&quot;;">写实平淡</span></b><span style="font-family: &quot;Comic Sans MS&quot;;">:相对于其他<span style="font-family: Arial;">BDSM</span>题材作品的浮夸,本作的平淡风格反而强化了其真实感和压迫感,让读者能更专注于角色内心的细微变化。</span></span></span></li> <li class="ds-markdown-paragraph" style="margin: 6px 0px 0px;"><span style="font-size:18px;"><span style="color:#000000;"><b><span style="font-family: &quot;Comic Sans MS&quot;;">心理深度</span></b><span style="font-family: &quot;Comic Sans MS&quot;;">:这不仅是一部情色小说,更是一部深入探讨权力心理学、身份认同与精神依赖的严肃文学作品。</span></span></span></li> </ul> <p style="box-sizing: inherit; margin-right: 0px; margin-bottom: 32px; margin-left: 0px; font-variant-ligatures: normal; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;"><span style="font-size:18px;"><span style="color:#000000;"><span style="font-family: quote-cjk-patch, inter, system-ui, -apple-system, system-ui, &quot;segoe ui&quot;, roboto, oxygen, ubuntu, cantarell, &quot;open sans&quot;, &quot;helvetica neue&quot;, sans-serif;"><span style="text-align: var(--bs-body-text-align); orphans: 2; widows: 2; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; font-family: &quot;Comic Sans MS&quot;;"><b>总结</b></span></span><span style="text-align: var(--bs-body-text-align); font-variant-ligatures: normal; orphans: 2; widows: 2; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; font-family: &quot;Comic Sans MS&quot;;">:</span><span style="text-align: var(--bs-body-text-align); font-variant-ligatures: normal; orphans: 2; widows: 2; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; font-family: &quot;Comic Sans MS&quot;;">夏慕聪的《军犬》通过一个<span style="font-family: Arial;">BDSM</span>的故事框架,进行了一场关于「自我」如何被解构,又如何被他者意志所重构。它揭示了权力关係中最极致的状态,</span><span style="font-family: quote-cjk-patch, inter, system-ui, -apple-system, system-ui, &quot;segoe ui&quot;, roboto, oxygen, ubuntu, cantarell, &quot;open sans&quot;, &quot;helvetica neue&quot;, sans-serif;"><span style="text-align: var(--bs-body-text-align); orphans: 2; widows: 2; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; font-family: &quot;Comic Sans MS&quot;;"><b>不是被迫的服从,而是主动的、将他者意志内化为自身信仰,并最终通过「成为他者」来完成这种服从。</b></span></span><span style="text-align: var(--bs-body-text-align); font-variant-ligatures: normal; orphans: 2; widows: 2; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; font-family: &quot;Comic Sans MS&quot;;">&nbsp;您的分析完美地捕捉到了这一精髓。</span></span></span> </p> <div style="text-align: center;"> <p><span style="font-size:16px;"><span style="color:#000000;"><strong>封面版本</strong></span></span> </p> <table border="1" cellpadding="0" cellspacing="0" class="table table-bordered table-hover table-condensed table-sm" style="border-collapse: collapse; width: 100%;"> <tbody> <tr> <td><img alt="军犬 Military Dog (2018)" src="https://www.qafone.cc/attachments/forumid_65/2404301038c59dff2b35eecf43.jpg" /> </td> </tr> <tr> <td>中国版 </td> </tr> </tbody> </table> <table border="1" cellpadding="0" cellspacing="0" class="table table-bordered table-hover table-condensed table-sm" style="border-collapse: collapse; width: 100%;"> <tbody> <tr> <td><img alt="军犬- 线上看| GagaOOLala" src="https://img.gagaoolala.com/media/e37fca99-818441-lg.jpg" /> </td> </tr> <tr> <td>台湾原始版 </td> </tr> </tbody> </table> <p>&nbsp; </p> <div class="video-title">Military Dog | 军犬 你准备好面对真实的自己了吗</div> <iframe allowfullscreen="true" frameborder="0" framespacing="0" height="432" width="752" scrolling="no" src="//player.bilibili.com/player.html?isOutside=true&amp;aid=587287797&amp;bvid=BV1AB4y1P7kr&amp;cid=316082216&amp;p=1" title="Military Dog | 军犬 你准备好面对真实的自己了吗"></iframe><br> <p>中国版 B站 </p><br> <iframe width="755" height="432" width="752" src="https://www.youtube.com/embed/V7xihv4jvoc" title="《軍犬 Military Dog》|2019女性影展" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe><br> <p>台湾原始版 油管 </p><br> </div> <span style="color:#000000;"></span> <h1 class="style-scope ytd-watch-metadata" style="text-align: center; margin-top: 0px; margin-bottom: 0px; padding: 0px; border: 0px; background-image: none; background-position: 0% 0%; background-size: auto; background-repeat: repeat; background-attachment: scroll; background-origin: padding-box; background-clip: border-box; word-break: break-word; line-height: 2.8rem; overflow: hidden; max-height: 5.6rem; -webkit-line-clamp: 2; display: -webkit-box; -webkit-box-orient: vertical; text-overflow: ellipsis; font-variant-ligatures: normal; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;"><a href="https://www.bilibili.com/video/BV1AB4y1P7kr/?share_source=copy_web" title="【Military Dog | 军犬 你准备好面对真实的自己了吗】线上看 中国版 B站"> <span style="color:#000000;"><span style="font-size: 1rem;">《军犬 Military Dog》线上看 中国版 B站</span></span></a> </h1> <p><strong><span style="font-size:18px;">電影簡介:</span></strong> </p> <p><span style="font-size:18px;">“当我睁开双眼,身边的Dt已经不在。空荡的房子,留下的是Dt的纸条还有为我准备的早餐。放在桌上的牛奶跟三明治,他要我坐在椅子上吃完再离开。坐在主人平常的位子,心情起伏的吃完了Dt为我准备的早餐。</span> </p> <hr /> <h4 style="text-align: center;"><span style="color:#000000;"><span style="box-sizing: inherit; font-family: Arial;">军犬&nbsp;</span><span style="font-family: &quot;Comic Sans MS&quot;; font-size: 1.6rem; text-align: var(--bs-body-text-align);">《</span><span style="font-size: 1.6rem; text-align: var(--bs-body-text-align); box-sizing: inherit; font-family: Arial;">部分内容</span><span style="font-family: &quot;Comic Sans MS&quot;; font-size: 1.6rem; text-align: var(--bs-body-text-align);">》</span></span> </h4> <p style="text-align: center;"><span style="font-size:12px;"><span style="color:#000000;"><span style="font-family: constantia; font-variant-ligatures: normal; orphans: 2; widows: 2; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;">By Petit 夏慕聪</span><span style="font-family: constantia; font-variant-ligatures: normal; orphans: 2; widows: 2; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;"></span></span></span> </p> <p style="text-align: right;"><span style="font-size:14px;"><span style="color:#000000;">因为中国法规没有线上版本,所以现在提供内容文献是从国外及台湾这里取得,</span></span> </p> <p style="text-align: right;"><span style="font-size:14px;"><span style="color:#000000;">如果想看完整版,建议购买纸本书,请支持正版观看</span></span> </p> <hr /> <h4 style="text-align: center;"><strong><span style="color:#000000;">&nbsp;第一部</span></strong> </h4> <hr /> <p style="text-indent:24.0pt"><span style="font-size:18px;"><span style="color:#000000;"><span style="font-family:新细明体,serif">当我第一次在网咖浏览网页跑到SM网站时,心脏彷佛都快要跳出来了。吞了口水,小心 <br /> 翼丽的趁着路人不注意之间观赏一页又一页的网页。迷彩裤裆部的膨胀,令人难以忍受。其中 <br /> 主奴交往区,在我好奇之下,留了资料:主175/68等。因为突然来了一群下课的学生,所以赶紧送出后关闭视窗。背起洽公包,准备返回营区,路上边骑车边想着不知道会不会有漂亮的女奴来应徵。</span></span></span> </p> <p style="text-indent:24.0pt"><span style="font-size:18px;"><span style="color:#000000;"><span style="font-family:新细明体,serif">休假的时候,按照着 SM 网站系统配对的 Mail 前往约定地点,可是没有半个女奴,却只有一个留满鬍渣年过三十、穿着西装的男人。</span></span></span> </p> <p style="text-indent:24.0pt"><span style="font-size:18px;"><span style="color:#000000;"><span style="font-family:新细明体,serif">「有没有搞错?我要找女奴。」</span></span></span> </p> <p style="text-indent:24.0pt"><span style="font-size:18px;"><span style="color:#000000;"><span style="font-family:新细明体,serif">他笑着拿出他列印出来的网员。「系统给我的资料上面写着你是要我主人。」当我讶异的抢过他手上的资料,才发现上面写的资料竟然一堆是有问题的。从身高、年龄、找寻对象全部出了问题。「我想应该是系统出了错。」尴尬的笑着。</span></span></span> </p> <p style="text-indent:24.0pt"><span style="font-size:18px;"><span style="color:#000000;"><span style="font-family:新细明体,serif">「如果你愿意当奴,我倒很想调教你。你应该在当兵吧?」「我是职业军人。」于是开始不耐烦,系统搞错了,实在也不想跟眼前的男人继继续聊下去。「你有没有兴趣当条军犬?我一直想调教军官。在其他人面前是雄壮威武的男人,在主人面前却是一条军犬。」</span></span></span> </p> <p style="text-indent:24.0pt"><span style="font-size:18px;"><span style="color:#000000;"><span style="font-family:新细明体,serif">别开玩笑了,他到底知不知道自己在说什麽。</span></span></span> </p> <p style="text-indent:24.0pt"><span style="font-size:18px;"><span style="color:#000000;"><span style="font-family:新细明体,serif"></span></span></span> </p> <p style="text-indent:24.0pt"><span style="font-size:18px;"><span style="color:#000000;"><span style="font-family:新细明体,serif">下次上网登人,我修正了错谈的资料,相信很快就会有奴来应徵。一个月下来竟然没有女奴,这是怎么一回事;倒是上次的那个男人持续的写信过来关心我的状况。第一次还笨笨的打开他的信,之后知道他的帐号后连看都不看就刚掉了。无聊之馀,开始浏览着 SM 网站上关于调教的讨论。 <br /> 「你好。」上次的那个男人传了讯息过来。基于礼貌的回复招呼。 <br /> 「你找到奴了吗?」他丢了让我觉得有点关心的话。 <br /> 告诉了他。「没有,没有奴隶上门。」 <br /> 「当然不会有奴想找你这种初心主囃。你什麽经验都没有,搞不好会弄死人。」 <br /> 「怎麽会啊……」于是跟他狡辩。 <br /> 「你要是再没有奴隶上门,考虑一下,来当我的军犬吧。」 <br /> 「你还没死心啊!」真是不要脸的男人。 <br /> 「光是想到你卑微赤裸的跪在我面前,我就觉得很有趣,不会死心的。」</span></span></span> <br /> &nbsp; </p> <p><span style="font-size:18px;"><span style="color:#000000;"><span style="font-family:新细明体,serif"></span></span></span> </p> <p style="margin-left:32px"><span style="font-size:18px;"><span style="color:#000000;"><span style="font-family:新细明体,serif">「你作梦。」他脑里到底装什么。 <br /> 「想当狗的时候,记得要想到我啊。」正准备开骂的讯息文字,他便已经下线了。真是个 <br /> 异想天开的男人。</span></span></span> </p> <p style="text-indent:24.0pt"><span style="font-size:18px;"><span style="color:#000000;"><span style="font-family:新细明体,serif">只要我上这个SM网站,好死不死就会遇到这个男人,我们其实搭不上话,讲没两三句, <br /> 他始终想把话题扯到我我当他的狗,几次不理他后,他也就不爱跟我谈什么军大的事情。有天 <br /> 洽公无事上了网站发现了个训犬的主题区,发现了找军犬男人的 ID 竟然挂在区主的位置。</span></span></span> </p> <p style="margin-left:32px"><span style="font-size:18px;"><span style="color:#000000;"><span style="font-family:新细明体,serif">「爱犬,你想通。跑来训犬区看文章。」他一丢讯息过来。 <br /> 「你怎麽知道?」彷彿被看穿了行动。 <br /> 「我是训犬区的管理者,当然看得到你在浏览锣。乖。」 <br /> 「你少在言语上估便宜了。」</span></span></span> </p> <p><span style="font-size:18px;"><span style="color:#000000;"><span style="font-family:新细明体,serif"></span></span></span> </p> <p style="text-indent:24.0pt"><span style="font-size:18px;"><span style="color:#000000;"><span style="font-family:新细明体,serif">放假上健身房,才刚踏上跑步机没多久,镜子便照射出后面有人不断的注视着自己。大概又是个迷恋男体、企图搭讪的同性恋。他看见了我也没躲藏,反而往我这走来。</span></span></span> </p> <p style="text-indent:24.0pt"><span style="font-size:18px;"><span style="color:#000000;"><span style="font-family:新细明体,serif">「很好。这样臀部会翘一点!」他说这句话话时还不怎么想理他,当我看出他是谁时,差点在 跑步机上跌倒,他一把抓着我。「果然狗在主人面前用两隻脚的话会容易跌倒。」给了白眼,甩甩毛巾,便准备离开。「狗儿,你要去哪里啊!」</span></span></span> </p> <p style="text-indent:24.0pt"><span style="font-size:18px;"><span style="color:#000000;"><span style="font-family:新细明体,serif">翻脸跟他吼着:「我有名有姓,再者我不是你的狗。」说完立刻掉头去盥洗准备离开。他一直跟着我。「你到底要跟我到什麽时候?我要去盥洗,你可以不用跟着我了吧。」</span></span></span> </p> <p style="text-indent:24.0pt"><span style="font-size:18px;"><span style="color:#000000;"><span style="font-family:新细明体,serif">「我也可以去盥洗室啊。狗儿害羞啊!在主人面前,狗是没有隐私可言的唷。」</span></span></span> </p> <p style="margin-left:32px"><span style="font-size:18px;"><span style="color:#000000;"><span style="font-family:新细明体,serif">「你别再提狗啊狗的!」</span></span></span> </p> <p style="text-indent:24.0pt"><span style="font-size:18px;"><span style="color:#000000;"><span style="font-family:新细明体,serif">「我看得到你心灵上的奴性,你在我面前就是条狗的型。」</span></span></span> </p> <p style="text-indent:24.0pt"><span style="font-size:18px;"><span style="color:#000000;"><span style="font-family:新细明体,serif"></span></span></span> </p> <p style="text-indent:24.0pt"><span style="font-size:18px;"><span style="color:#000000;"><span style="font-family:新细明体,serif">之后这个男人再也没有骚扰过我。他坐在盥洗室注视着我脱衣围毛巾、走出浴室到穿衣,他的眼神始终在我身上,那种寸步不离,炯炯有神的眼睛彷彿看穿了身体之外的衣物,在他面前有如赤裸着身体,令人起鸡皮。他没有追上离开健身房的我,网路上也不再传讯息过来,这样也好,莫名其妙的男人还是少接触的好。</span></span></span> </p> <p style="text-indent:24.0pt"><span style="font-size:18px;"><span style="color:#000000;"><span style="font-family:新细明体,serif">自从没有骚扰后, SM 网站成了每次休假或者洽公闲暇极度渴望上来的地方。压力越大的时候越想上来,即使没有奴来应徵也没关係,光是看到些小说或者别人调教的经验,就很让人嚮往。 SM 网站都逛遍了,只有训犬区不想进去。因为那个男人看得到使用者,所以即使其他区域都看腻了,也不想进去。</span></span></span> </p> <p style="text-indent:24.0pt"><span style="font-size:18px;"><span style="color:#000000;"><span style="font-family:新细明体,serif">年底业务量遽增,随着营上准备专精下基地,什么事情都变得複杂,营长三天两头的批干幕僚,休假越来越不容易,健身房的钱好像白缴了似的很少使用。好不容易期盼到的假期,还没换回便服,就被营长叫过去夹懒蛋,被痛批一顿业务上的疏失,休假时间自动延后,能够在晚间两么前出营区,真该痛哭流涕。在市区吃个饭,准备搭车回家。不知道是假日前夕还是怎么了,人潮汹涌,离我班次还有好长一段时间,趁着时间空档,便熘进网咖。习惯性的连上 SM 网站,好久没上去了。</span></span></span> </p> <p style="text-indent:24.0pt"><span style="font-size:18px;"><span style="color:#000000;"><span style="font-family:新细明体,serif">一连上去,首页都换了。是张大图,网页跑了几秒。电脑前面出现了张穿着皮革的男人和一个全身赤裸跪在地板上的男人,跪着的男人脖子上挂着项圈被牵着。不知道是太久没上网站了还是怎么了,我竟然瞬间勃起,牛仔裤阻挡了阴茎勃起空间,弄得我得在座位上遮遮拖掩掩的调整胯下。</span></span></span> </p> <p style="text-indent:24.0pt"><span style="font-size:18px;"><span style="color:#000000;"><span style="font-family:新细明体,serif">这是我第一次看到所谓的狗奴调教照片,没想到是如此震惊,胯下的阴茎彷彿说明了什麽。首页的图是庆祝他们训犬区聚会成功的文章,将滑鼠移动到链结处,掌心不断冒汗。网站上摆了几张他们聚会时的照片还有段像似新闻稿的文字纪录,最下方有参与者的心得分享;那些照片中,一眼便看到了那个男人。他在心得分享中感谢着参与者及参与的龙物们。他们你来我往的文字中,自己有如缺少了什么。那个男人写着:身为训犬区主,竟然没带宠物出席,真是太不应该了。这段文字瞬间让我在脑里将首页的图片换成了那个男人,而赤裸跪在地上的人……我想都不想赶紧把网页直接关关掉。</span></span></span> </p> <p style="text-indent:24.0pt"><span style="font-size:18px;"><span style="color:#000000;"><span style="font-family:新细明体,serif">当梦见那个男人在聚会上牵着他的龙物亮相,而我竟然就那样光着屁股,脖子上着项圈被铁錬拉着时,我吓醒了。同时我也发现四角裤上湿了一块,梦遣了,量还满大的,右大腿内侧一大块湿黏,太久没发洩,储存太久。脱掉了内裤,站在洗脸台前清洗着裤子。镜子前是赤裸的男人。</span></span></span> </p> <p style="text-indent:24.0pt"><span style="font-size:18px;"><span style="color:#000000;"><span style="font-family:新细明体,serif">下次上网时,首页的狗奴照片依旧让我瞬间勃起。意外的发现了使用者清单列表,而我所註册的 ID 和那个男人的 ID 在众使用者名单内竟如此清楚,一般人不是应该只会注意到自己的名字吗?颤抖的连进了训犬区,他会看得到我正在训大区吗?他会不会和以前一样传来骚扰的讯息。</span></span></span> </p> <p style="text-indent:24.0pt"><span style="font-size:18px;"><span style="color:#000000;"><span style="font-family:新细明体,serif">他始终没有传讯息给我。训犬区的资料我还没看完,身体就有种快支撑不住的感觉,尤其是裆部肿胀得令人快抓狂。其实很想到厕所去打一把,只是碍于这里是公众场所,所以不停的压制慾望。他彷彿对我失去兴趣般,不像从前热络。我颤抖的点选了他的 ID,想主动传讯息给他。</span></span></span> </p> <p style="text-indent:24.0pt"><span style="font-size:18px;"><span style="color:#000000;"><span style="font-family:新细明体,serif">「hi」简单的讯息,因为我不知道要跟他说些什么。等了一两分钟,他始终没有回应。直 <br /> 到我点选了训犬区的照片,他才回了讯息。</span></span></span> </p> <p style="margin-left:32px"><span style="font-size:18px;"><span style="color:#000000;"><span style="font-family:新细明体,serif">「你好。」看到他的讯息,觉得好像不太一样。 <br /> 「你好……」犹豫了会。「我正在看训犬区的照片。」 <br /> 「我知道你在看训犬区。有什么事吗?」 <br /> 「我……」不知道是怎么,连看着死板板的电脑萤幕都会紧张。「我想跟你交个朋友,顺便请教一些关于 SM 的知识。」我在说谎吧,我其实想问关于狗奴调教方面的事情。也不是自己想当狗,只是想知道为什么看到图片竟然会如此兴奋。 <br /> 「嗯。」他简洁有力的回答。而他给了他的手机号码。</span></span></span> </p> <p style="margin-left:32px"><span style="font-size:18px;"><span style="color:#000000;"><span style="font-family:新细明体,serif"></span></span></span> </p> <p style="text-indent:24.0pt"><span style="font-size:18px;"><span style="color:#000000;"><span style="font-family:新细明体,serif">将他的号码跟 ID 记录下后,想在网路跟他多聊些什么,不过他似乎很忙,忙到没什么时 <br /> 间理我,时间过晚之馀我便离开了网咖。在收假前的晚上,我看着着手机、电话里他的号码,心里不断犹豫着该不该打电话过去。之前是他主动找我,我不想理他,现在我主动找他,会不会……</span></span></span> </p> <p align="right" style="text-align:right; text-indent:24.0pt"><span style="color:#000000;"><span style="font-size:12pt"><span style="font-family:新细明体,serif">(以下内容,请购买书籍即可观看完整版,请支持正版)</span></span></span> </p> <hr /> <h4 style="text-align: center;"><strong>&nbsp;<span style="color:#000000;">第二部</span></strong> </h4> <hr /> <p style="text-indent:24.0pt"><span style="font-size:18px;"><span style="color:#000000;"><span style="font-family:Calibri,sans-serif"><span style="font-family:&quot;新细明体&quot;,serif">我真的要成为一条狗吗?床上辗转难眠,手掌和膝盖的红肿像是注射了兴奋剂,它们最后都集中在双腿之间,肿胀得难以忍受。四角裤跟帐棚没什么两样,脱掉了裤子,弹出的阴茎缠绕着慾望,手才放上去,才开始轻揉懒蛋,会阴处像是爆裂般,精液像砲弹般发射,强到喷上我的脖子,差点变成自体颜射。空气里有我的喘息声,慾望没有因此消减:从床上爬起,视线在浴室,踏下第一步,人整个跪了下去,双膝触碰冰凉的地板,那裸身在院子爬行的记忆瞬间袭击,射完精、软趴的阴茎再度硬起。打了电话给</span> dt <span style="font-family:&quot;新细明体&quot;,serif">。</span></span></span></span> </p> <p style="text-indent:24.0pt"><span style="font-size:18px;"><span style="color:#000000;"><span style="font-family:Calibri,sans-serif"><span style="font-family:&quot;新细明体&quot;,serif">「对不起,这么晚打电话给你</span><span lang="EN-US" style="font-family:&quot;新细明体&quot;,serif">……</span><span style="font-family:&quot;新细明体&quot;,serif">」</span></span></span></span> </p> <p style="text-indent:24.0pt"><span style="font-size:18px;"><span style="color:#000000;"><span style="font-family:Calibri,sans-serif"><span style="font-family:&quot;新细明体&quot;,serif">「没关係,我还没睡。」听着他讲话,于是我这里沉默了。「很硬,睡不着是吧?」接触电话筒的耳朵瞬间红热,热到隔个头颅的另个耳朵一块烧红。</span></span></span></span> </p> <p style="text-indent:24.0pt"><span style="font-size:18px;"><span style="color:#000000;"><span style="font-family:Calibri,sans-serif"><span style="font-family:&quot;新细明体&quot;,serif">「你怎么知道</span><span lang="EN-US" style="font-family:&quot;新细明体&quot;,serif">……</span><span style="font-family:&quot;新细明体&quot;,serif">」羞愧的说着。</span></span></span></span> </p> <p style="text-indent:24.0pt"><span style="font-size:18px;"><span style="color:#000000;"><span style="font-family:Calibri,sans-serif"><span style="font-family:&quot;新细明体&quot;,serif">「你又不是我第一隻调教的狗,你们的心态我抓得非常准确。」</span></span></span></span> </p> <p style="text-indent:24.0pt"><span style="font-size:18px;"><span style="color:#000000;"><span style="font-family:Calibri,sans-serif"><span style="font-family:&quot;新细明体&quot;,serif">「我睡不着</span><span lang="EN-US" style="font-family:&quot;新细明体&quot;,serif">……</span><span style="font-family:&quot;新细明体&quot;,serif">我刚刚已经射过一次了,现在还是硬着的</span><span lang="EN-US" style="font-family:&quot;新细明体&quot;,serif">……</span><span style="font-family:&quot;新细明体&quot;,serif">」</span></span></span></span> </p> <p style="text-indent:24.0pt"><span style="font-size:18px;"><span style="color:#000000;"><span style="font-family:Calibri,sans-serif"><span style="font-family:&quot;新细明体&quot;,serif">「趁着还可以自由打手枪的时候多自慰吧,真的成了主人的狗就不可以打手枪,不然就等着接受处罚。」</span> dt <span style="font-family:&quot;新细明体&quot;,serif">冷冷的声音外加口口声声的主人、狗、处罚</span>,<span style="font-family:&quot;新细明体&quot;,serif">身体激激动得带着呻吼声,射精。「射啦?」</span></span></span></span> </p> <p><span style="font-size:18px;"><span style="color:#000000;"><span style="font-family:Calibri,sans-serif"></span></span></span> </p> <p style="text-indent:24.0pt"><span style="font-size:18px;"><span style="color:#000000;"><span style="font-family:Calibri,sans-serif"><span style="font-family:&quot;新细明体&quot;,serif">低着头,羞愧的回答。这是第一次让人听见我的呻吟声。「</span><span lang="EN-US" style="font-family:&quot;新细明体&quot;,serif">……</span><span style="font-family:&quot;新细明体&quot;,serif">主人</span><span lang="EN-US" style="font-family:&quot;新细明体&quot;,serif">……</span><span style="font-family:&quot;新细明体&quot;,serif">对不起</span><span lang="EN-US" style="font-family:&quot;新细明体&quot;,serif">……</span><span style="font-family:&quot;新细明体&quot;,serif">」在心里已经将</span> dt <span style="font-family:&quot;新细明体&quot;,serif">视为自己的主人。</span></span></span></span> </p> <p style="text-indent:24.0pt"><span style="font-size:18px;"><span style="color:#000000;"><span style="font-family:Calibri,sans-serif"><span style="font-family:&quot;新细明体&quot;,serif">「主人还不需要叫得这么早。你真的想成为一条狗?真的想被调教?你知道狗奴调教要做些什么?」</span> dt <span style="font-family:&quot;新细明体&quot;,serif">的每一个问题都问得我心虚。</span> <span style="font-family:&quot;新细明体&quot;,serif">「时间不早了,既然睡不着,做一百下的伏地挺身再睡。」收到了命令。</span></span></span></span> </p> <p style="text-indent:24.0pt"><span style="font-size:18px;"><span style="color:#000000;"><span style="font-family:Calibri,sans-serif"><span style="font-family:&quot;新细明体&quot;,serif">「是。」两手撑着地板,裸体的伏地挺身。硬着的屌、垂下的懒蛋撞击地板时,隐约的与冒汗的身体产生和谐。充血的生殖器官,暂时得到释放。</span></span></span></span> </p> <p style="text-indent:24.0pt"><span style="font-size:18px;"><span style="color:#000000;"><span style="font-family:Calibri,sans-serif"></span></span></span> </p> <p style="text-indent:24.0pt"><span style="font-size:18px;"><span style="color:#000000;"><span style="font-family:Calibri,sans-serif"><span style="font-family:&quot;新细明体&quot;,serif">隔天上网浏览着训犬区的文章,我极度渴望了解所谓的狗奴调教,看着网页上关于狗奴调教的点点滴滴,我不只是冒汗而且嵴椎整个凉了上来,裤裆肿胀得像是在内库里射精般,还热难受。</span> dt <span style="font-family:&quot;新细明体&quot;,serif">传了讯息过来,要我到他家一趟,我很快的答应了。当他开了大门,我准备路进第一步时,昨晚赤裸的自己,跟狗一样的爬向大门口的身影历历在目。耳朵旁还听见昨晚</span> dt <span style="font-family:&quot;新细明体&quot;,serif">的声音:</span> <span style="font-family:&quot;新细明体&quot;,serif">「在这院子里,你就是条狗。」</span></span></span></span> </p> <p style="text-indent:24.0pt"><span style="font-size:18px;"><span style="color:#000000;"><span style="font-family:Calibri,sans-serif"><span style="font-family:&quot;新细明体&quot;,serif">身体似乎成了自然反应,穿在身上的衣裤都变得多馀。在院子里将自己扒得精光后,在</span> dt <span style="font-family:&quot;新细明体&quot;,serif">面前跪了下去。他笑着:「越来越有狗奴的样子囉。」跟着</span> dt <span style="font-family:&quot;新细明体&quot;,serif">爬进了屋内。「你想要成爲我的狗吗</span>?<span style="font-family:&quot;新细明体&quot;,serif">」</span></span></span></span> </p> <p style="text-indent:24.0pt"><span style="font-size:18px;"><span style="color:#000000;"><span style="font-family:Calibri,sans-serif"><span style="font-family:&quot;新细明体&quot;,serif">「是。」抬头看着主人。</span></span></span></span> </p> <p style="text-indent:24.0pt"><span style="font-size:18px;"><span style="color:#000000;"><span style="font-family:Calibri,sans-serif"><span style="font-family:&quot;新细明体&quot;,serif">「嗯。可是我要你先搞清楚是不是只是一时的兴趣。」主人打量着狗奴的身体,主人的视线停在勃起的狗屌上。「我要的是一隻完完全全的狗、一隻训练有素的军犬,你做不做得到?」</span></span></span></span> </p> <p style="text-indent:24.0pt"><span style="font-size:18px;"><span style="color:#000000;"><span style="font-family:Calibri,sans-serif"><span style="font-family:&quot;新细明体&quot;,serif">「是。」我回答。</span> <span style="font-family:&quot;新细明体&quot;,serif">「可以。」</span></span></span></span> </p> <p style="text-indent:24.0pt"><span style="font-size:18px;"><span style="color:#000000;"><span style="font-family:Calibri,sans-serif"><span style="font-family:&quot;新细明体&quot;,serif">「大声的回答。」</span> dt <span style="font-family:&quot;新细明体&quot;,serif">声音低沉严肃的说着。</span></span></span></span> </p> <p style="text-indent:24.0pt"><span style="font-size:18px;"><span style="color:#000000;"><span style="font-family:Calibri,sans-serif"><span style="font-family:&quot;新细明体&quot;,serif">挺起了腰杆,从腹部使力的喊着:「是。」</span></span></span></span> </p> <p style="text-indent:24.0pt"><span style="font-size:18px;"><span style="color:#000000;"><span style="font-family:Calibri,sans-serif"><span style="font-family:&quot;新细明体&quot;,serif">主人锐利的眼光看着赤裸的狗奴说:「是什么?」</span></span></span></span> </p> <p style="text-indent:24.0pt"><span style="font-size:18px;"><span style="color:#000000;"><span style="font-family:Calibri,sans-serif"><span style="font-family:&quot;新细明体&quot;,serif">用尽全身的力气大喊着;「我要成为主人的一隻军犬!」呐喊过后,我听得见自己心跳得如此激动。「我要成为主人的一隻军犬、我要成为主人的一隻军犬」的声音在自己四周周环何。</span></span></span></span> </p> <p style="text-indent:24.0pt"><span style="font-size:18px;"><span style="color:#000000;"><span style="font-family:Calibri,sans-serif"><span style="font-family:&quot;新细明体&quot;,serif">「记住你现在说的话。」主人在树柜里找着东西。「以后你没有资格说『我』这一个主词。」</span></span></span></span> </p> <p style="text-indent:24.0pt"><span style="font-size:18px;"><span style="color:#000000;"><span style="font-family:Calibri,sans-serif"><span style="font-family:&quot;新细明体&quot;,serif">「是。」肯定的回答。</span></span></span></span> </p> <p style="text-indent:24.0pt"><span style="font-size:18px;"><span style="color:#000000;"><span style="font-family:Calibri,sans-serif"><span style="font-family:&quot;新细明体&quot;,serif">「在主人面前,就是一条狗。完完全全的一条狗,主人要你说话,你才可以说话。」主人走到军犬面前。</span></span></span></span> </p> <p style="text-indent:24.0pt"><span style="font-size:18px;"><span style="color:#000000;"><span style="font-family:Calibri,sans-serif"><span style="font-family:&quot;新细明体&quot;,serif">「是。」</span></span></span></span> </p> <p><span style="font-size:18px;"><span style="color:#000000;"><span style="font-family:Calibri,sans-serif"></span></span></span> </p> <p style="text-indent:24.0pt"><span style="font-size:18px;"><span style="color:#000000;"><span style="font-family:Calibri,sans-serif"><span style="font-family:&quot;新细明体&quot;,serif">主人手持着厉剪,闪耀得让人害怕。「</span><span lang="EN-US" style="font-family:&quot;新细明体&quot;,serif">……</span><span style="font-family:&quot;新细明体&quot;,serif">主人</span><span lang="EN-US" style="font-family:&quot;新细明体&quot;,serif">……</span><span style="font-family:&quot;新细明体&quot;,serif">」主人起了军犬双腿间的狗毛剪了几刀后,狗毛一丛丛落到地板,那瞬间我的眼泪在眼眶眶里打转。毫无警的被剪掉了男人双腿间的毛发,原本是毛茸茸的一片,现在只剩短短一两公分的长度。</span></span></span></span> </p> <p style="text-indent:24.0pt"><span style="font-size:18px;"><span style="color:#000000;"><span style="font-family:Calibri,sans-serif"><span style="font-family:&quot;新细明体&quot;,serif">「右手拍起来。」心里难过,但是右手即随主人的命令抬起,剪刀剪掉了右手胳肢窝的腋毛,左手腋毛在下一刻也被剪掉。于是军大成了短毛犬。「等正式调教再全部剃掉。」主人说完,军犬立刻全身打冷颤:要成为无毛犬,男人被剃掉身上的体毛,还有没有所谓的尊严?</span></span></span></span> </p> <p style="text-indent:24.0pt"><span style="font-size:18px;"><span style="color:#000000;"><span style="font-family:Calibri,sans-serif"><span style="font-family:&quot;新细明体&quot;,serif">主人在军犬身边绕了绕,目光依旧犀利。主人在军犬后方蹲下,左手一推让原本挺直腰杆的军犬往前趴下。「开过屁股了没有</span>?<span style="font-family:&quot;新细明体&quot;,serif">」军大不懂。「我说你被干过了没有?开过苞了吗?」男人的屁股只有同性恋才会被开,没有异性恋男人会喜欢自己的肛门放进另个男人的阳具。</span></span></span></span> </p> <p style="text-indent:24.0pt"><span style="font-size:18px;"><span style="color:#000000;"><span style="font-family:Calibri,sans-serif"><span style="font-family:&quot;新细明体&quot;,serif">「回答我!」</span></span></span></span> </p> <p style="text-indent:24.0pt"><span style="font-size:18px;"><span style="color:#000000;"><span style="font-family:Calibri,sans-serif"><span style="font-family:&quot;新细明体&quot;,serif">「没有。」</span></span></span></span> </p> <p style="text-indent:24.0pt"><span style="font-size:18px;"><span style="color:#000000;"><span style="font-family:Calibri,sans-serif"><span style="font-family:&quot;新细明体&quot;,serif">才回答完,主人便往屁股打下去。</span> <span style="font-family:&quot;新细明体&quot;,serif">「不会喊报告吗?既然是职业军人,跟主人说话不会喊报告?」</span></span></span></span> </p> <p style="text-indent:24.0pt"><span style="font-size:18px;"><span style="color:#000000;"><span style="font-family:Calibri,sans-serif"><span style="font-family:&quot;新细明体&quot;,serif">「报告主人,没有。」自己大喊没有时,被剪掉散落在地板上的阴毛就正在眼前,而自己正在另个男人面前高高的翘起屁股。主人将我的臀肉扳开,指头顶着肛门口绕啊、抠的。「不要</span><span style="font-family:&quot;新细明体&quot;,serif">!</span><span style="font-family:&quot;新细明体&quot;,serif">」</span></span></span></span> </p> <p style="text-indent:24.0pt"><span style="font-size:18px;"><span style="color:#000000;"><span style="font-family:Calibri,sans-serif"><span style="font-family:&quot;新细明体&quot;,serif">脱口而出的话立刻机来屁股一顿打。「没规矩。」主人远远的走开,只留下自己跪在那里、翘着屁股,而臀部还留着主人手掌痕迹。好一段时间的寂静,主人没有回来或者发出什麽声音,只剩下自己跪在那、依然翘着屁股。像是被遗弃般无助,抬头东张西望。主人不在视线内。</span></span></span></span> </p> <p style="text-indent:24.0pt"><span style="font-size:18px;"><span style="color:#000000;"><span style="font-family:Calibri,sans-serif"><span style="font-family:&quot;新细明体&quot;,serif">「主人!」开了口喊着。「主人</span><span style="font-family:&quot;新细明体&quot;,serif">……</span><span style="font-family:&quot;新细明体&quot;,serif">」依旧没有任何的回应,主人在生气吗</span>?<span style="font-family:&quot;新细明体&quot;,serif">「对不起。对不起,主人。」在这间屋内,大声的喊着,喊到回音不断的听见。终于,军大听见了脚步声。</span></span></span></span> </p> <p><span style="font-size:18px;"><span style="color:#000000;"><span style="font-family:Calibri,sans-serif"><span style="font-family:&quot;新细明体&quot;,serif">主人出现在视线内</span>,<span style="font-family:&quot;新细明体&quot;,serif">手上还拿着根长条物。主人走到了军犬面前。</span></span></span></span> </p> <p style="text-indent:24.0pt"><span style="font-size:18px;"><span style="color:#000000;"><span style="font-family:Calibri,sans-serif"><span style="font-family:&quot;新细明体&quot;,serif">「这是我调教狗奴时用的『打狗棒』,平常放在餐桌旁的角落,以后做错事,自己去咬过来,讨处罚。」主人用棍子将军大身体压低,敲敲屁股,要屁股翘得再高点。「这次就意思意意思。」</span></span></span></span> </p> <p><span style="font-size:18px;"><span style="color:#000000;"><span style="font-family:Calibri,sans-serif"><span style="font-family:&quot;新细明体&quot;,serif">主人高举起打狗棒,狠狠的落下,屁股瞬时间一条红色的痕迹烙上,带染过整个屁股,军大唉叫得流下眼泪。</span></span></span></span> </p> <p style="text-indent:24.0pt"><span style="font-size:18px;"><span style="color:#000000;"><span style="font-family:Calibri,sans-serif"><span style="font-family:&quot;新细明体&quot;,serif">「没有什么要不要的,既然是条狗,就全听主人的安排。等一下到厨房拿扫把,把地上的狗毛扫乾淨。」语毕,主人及打狗棒使离开。身体一动也不动,不知道是因为太痛了还是怎么,身体竟然不听使唤,想用双脚站起,可是却无法让膝盖离开地面。「李军忠</span>!<span style="font-family:&quot;新细明体&quot;,serif">」在主人喊过两声自己的人名后,整个人才算回过神来&nbsp; &nbsp;<span style="color:#000000;"><span style="font-family:Calibri,sans-serif"><span style="font-family:&quot;新细明体&quot;,serif">……</span></span></span>。</span></span></span></span> </p> <p style="text-indent: 24pt; text-align: right;"><span style="color:#000000;"><span style="font-size:12pt"><span style="font-family:新细明体,serif">(以下内容,请购买书籍即可观看完整版,请支持正版)</span></span></span> </p> <hr /> <h4 style="text-align: center;"><strong>&nbsp;第三、四篇</strong> </h4> <hr /> <p><span style="font-size:18px;"><span style="color:#000000;">主人家的铁门深锁,有种不可预知的未来惶恐。颤抖的按下电铃,话筒传出主人的声音后,急忙的吠叫;按照主人的规定,以吠叫作为回应方式。当主人开启了铁门,一踏入后急忙的脱光自己身上的衣裤,只留下了主人为军犬选定的三角裤。「伏地挺身预备。」主人发号着命令,于是双手撑着地板,就准备姿势。「一下、二上。一。」双手将身体压下,直到裆部快接近地面。主人翻着军犬的背包,做安全检查。用塑胶袋包着的精液内裤,主人抽了其中一条,摊在手上。「量还满大的嘛⋯⋯二。」于是双手撑起。平日营区内的体能训练还足够应付主人的要求。当主人将精液痕迹的内裤摆在军犬狗鼻前时,军犬突然羞愧了起来。主人捏着军犬的耳朵、脸颊。「闻闻自己的味道。」闭上眼睛的军犬,喜不喜欢这味道。「一。」双臂将身体压低。来回一二一二,撑着身体、压低身体,直到身上的遮羞裤溼透,溼得无法遮掩、溼得贴上臀部陷入股沟。汗水滴答的溼满地,主人才喊停。「脱光。」&nbsp;</span></span> </p> <p><span style="font-size:18px;"><span style="color:#000000;">「是。主人。」跪在地上,脱掉了溼答答的内裤,正准备将它折好。&nbsp;</span></span> </p> <p><span style="font-size:18px;"><span style="color:#000000;">「把内裤戴在头上。」主人说着。军犬疑惑的看着主人,随即一巴掌赏下。「怀疑我的命令啊。」军犬分不清是汗水还是泪水,将溼透内裤盖上头,狗屌的窝正贴在狗鼻上,两颗眼睛透过两隻大腿的缝露出。「进来吧。」主人将行李放上军犬背上,军犬小心翼翼的跟着主人。&nbsp;</span></span> </p> <p><span style="font-size:18px;"><span style="color:#000000;">客厅玄关处多了面镜子,主人的打狗棒伫立在旁,军犬见了狗棒颤抖的无法前进。主人卸下了军犬身上的重物,一手握起狗棒,一手抚摸着军犬的躯干。「乖。很好,看到狗棒会怕。」主人在军犬眼前晃了晃狗棒,吓得军犬全身颤慄。那日狗棒在屁股留下的痛楚,只要看见狗棒便有如再打在身上。镜子里,一个赤裸、脸上挂着溼透内裤、双腿间半勃起阴茎和半短阴毛的男人,他到底还是不是个男人?主人拍着军犬身体,镜子里的主人动作像是抚摸着爱狗毛发般自然。「手。」军犬伸了前肢。「另外一肢。」像是新兵身体检查般,每个角落都被注意。头上内裤被主人拉起,主人手抓着下巴,硬撑起狗嘴,彷彿检查着狗牙,「吐舌头。」军犬伸长舌头。发出嘿嘿声音。「舌头尽量拉长。」于是嘿嘿吠吠声外加着口水。军犬想伸手擦时,手立刻被狗棒打了下。主人蹲了下来,扯扯半短狗毛。「狗屌还满大的嘛。」主人弄过狗懒蛋的手,往后庭一伸,扯着外露卫生棉条棉线。「肛门最好缩紧点,要是被我拉出来,就死定了。」于是军犬努力的紧闭、死命的抵抗主人的拉扯。&nbsp;</span></span> </p> <p><span style="font-size:18px;"><span style="color:#000000;">打狗棒轻轻打在狗屁股上,军犬疑惑的看着主人。「Good boy。咬着。」主人手抓着那团汗水味的内裤。军犬撑大嘴巴咬起。主人摸着军犬的头毛。「来。主人帮清洗身体。洗掉那一身男人味。」&nbsp;</span></span> </p> <p><span style="font-size:18px;"><span style="color:#000000;">军犬害怕的跟着主人进了浴室。浴室里一面大镜子,旁边摆着一篮盥洗用具。「趴下。」军犬整个身体趴下。「转身。」于是军犬转了身,正面朝上。打狗棒敲着四肢。「狗四肢要弯曲。」被提醒的军犬赶紧照主人命令。主人拉了小凳子坐在军犬后腿间。「看着镜子,刚出生的人型犬不应该有体毛。没资格拥有狗毛,该剃。」&nbsp;</span></span> </p> <p><span style="font-size:18px;"><span style="color:#000000;">「汪呜~」军犬负面情绪的声音。呜音是主人约定的负面情绪声音。主人抚摸着狗屌、狗懒蛋。&nbsp;</span></span> </p> <p><span style="font-size:18px;"><span style="color:#000000;">没有好谈的。」狗毛再次被剪刀修短,狗腿已经被打上刮鬍泡沫,军犬身上毛发处都被打上泡沫。刮鬍刀第一刀下去,刮掉大腿内侧,阴毛连接腿毛处时,军犬已经知道被主人剃毛是无法避免的,狗嘴里的内裤沾染了一大片的口水。主人熟练的技巧,快速将原本两条毛茸茸男人双腿刮得乾淨;原本男人腋下的毛发亦被刮得乾乾淨淨,军犬身上仅剩双腿间的狗毛。军犬看着镜子里自己腋下已经无毛,眼泪已经在打转。&nbsp;</span></span> </p> <p><span style="font-size:18px;"><span style="color:#000000;">「乖。」主人拾起了狗屌,刮鬍刀已经刮掉了狗屌上方的短毛。一刀一刀刮得乾淨。军犬窸窣的抽咽。「狗是这样哭的吗?」主人冷淡的眼神瞪着。&nbsp;</span></span> </p> <p><span style="font-size:18px;"><span style="color:#000000;">「汪呜~汪呜~」军犬双腿间的棉条,毫无预警的被主人抽出,疼痛得扭着身体。&nbsp;</span></span> </p> <p><span style="font-size:18px;"><span style="color:#000000;">「我现在手上拿着刮鬍刀,最好安分点。」主人手拾着之前塞在军犬体内的卫生棉条晃在军犬脸上方。「上完厕所,没洗屁股啊!翻过来。」应着主人翻身,翘着屁股。主人扳开两片臀肉,刮着全身仅剩的肛毛,刮掉肛毛后,军犬已经被剃光了狗毛,是隻无毛犬。「狗被剃毛是不会哭的!再哭,嘴里的内裤就换成刚刚塞在体内的卫生棉条。」军犬企图止住哭泣,全身打了沐浴乳泡沫,全身上下被主人刷得乾淨。「差点忘了的屁股里面还有当人类时产生的粪便。」灌了肠的军犬被恩赐蹲在马桶上。「狗其实是不会蹲马桶的,而且也不该在这里排便。」军犬蹲在马桶上,刚被剃毛的阴部清楚可见,现在主人站在面前,排便丢脸的模样毫无遗露的展现于主人眼底。肛门喷出的液体混杂着黄色的水,粪便随即喷出。军犬颤抖着身体,排便这麽隐私的事情都在主人面前了,到底还要做到什麽程度,军犬只能服从。&nbsp;</span></span> </p> <p><span style="font-size:18px;"><span style="color:#000000;">后面的洞跟身体被完完全全洗乾淨后,主人手抓着军犬下巴,撑起狗嘴。「来,狗嘴。」主人手抓着狗,另隻手拾着牙刷侵入口腔刷洗着狗牙,呛着了军犬。主人拍拍躯干安抚。「漱口。」指指脸盆的水,半人半狗的喝水漱口后,该清洁的地方都清洗完。「乾淨的狗,主人才爱。」&nbsp;</span></span> </p> <p><span style="font-size:18px;"><span style="color:#000000;">爬回了客厅,在镜子里的面貌连自己都认不出来。主人两声的李军忠,让我赶紧站起立正,膝盖麻得快站不稳。「是。主人。」主人双手按着我的肩膀、捏捏胸部、在乳头处打转、腹肌一块块被抓过;当主人的手再往下时,身体下意识的扭捏抗拒。镜子里主人的脸色大变。&nbsp;</span></span> </p> <p><span style="font-size:18px;"><span style="color:#000000;">「很好。实在不能对你好。」主人丢了张纸,惹火主人的我颤抖的弯下腰捡落在地上的纸。「谁叫你动作的。」主人一说,立刻收回了手。「跪下。」砰的声,两膝撞击地板。没有转圜空间。惹火了主人,只能听话。「弯下腰,把纸咬住。」于是,双手撑住上半身,伸长脖子、张开嘴。「屁股翘高。」当打狗棒敲着我身体时,便知道主人下一刻要做什麽,镜子里的主人狠狠挥着狗棒打着翘高屁股的军犬,狗咬紧牙根,不敢发出不悦,让主人打上几棍,打红了狗屁股,整个身体都变热了。「起来。面对镜子立正站好。」听到命令,即使屁股很麻,很痛,但还是赶紧在镜子前立正站好。脚掌微开,两膝併拢,双手贴紧,这平日在营区熟悉得不能再熟悉的动作,却在此时此刻变得极为陌生。镜子里的自己、镜子里的男人赤裸身体,下半身毛茸茸遍布的阴毛刮除得乾乾淨淨,和小男孩般,而身体却是发育完成的,不禁微微充血。 &nbsp; &nbsp;「在军营里宣誓过吧。嘴里的纸是誓词,也就是一般所谓的主奴契约。」于是赤裸的站在主人跟镜子面前,举手大声朗诵。&nbsp;</span></span> </p> <p><span style="font-size:18px;"><span style="color:#000000;">「吾誓以至诚—我—李军忠—从今尔后奉dt为毕生之主、为主人饲养之军犬。第一条」宣誓后,向后转,向主人行军礼。在主人回礼后,递上誓词。&nbsp;</span></span> </p> <p><span style="font-size:18px;"><span style="color:#000000;">「军犬,跪下。」于是双膝再度跪在主人面前,以往的军礼成为了主人跟军犬之间的礼节,这一刻没有任何嬉戏,如此的庄严。在dt宣誓完主人的誓词后,主人拿出当日在宠物店购买的项圈,替军犬戴上,拍拍军犬腋下方腰际。正想举手回礼时,主人疑问的声音,立刻收了回去。「这时候该用的叫声回应。」&nbsp;</span></span> </p> <p><span style="font-size:18px;"><span style="color:#000000;">&nbsp;「汪!」从腹部用力发声。&nbsp;</span></span> </p> <p><span style="font-size:18px;"><span style="color:#000000;">「很好。手伸出来。」军犬伸了手,两肢被纱布缠绕。「这样才可以让丧失人类手掌的功能。屁股翘高,额头贴到地面。」军犬挪着身体,按照主人命令。当视觉只在地板上时,听觉就变得极为敏锐,主人离开了身边又回到了身边,接着狗屁股便被主人扳开。好奇的抬头,镜子里的主人眼神敏锐得杀死人。「既然抬头,就仔细看着。」此时军犬第一次看见主人赤裸的男体。主人身体的震撼后,屁股一股凉劲上身。主人的手指头戳进了狗屁股。「汪呜~」&nbsp;</span></span> </p> <p><span style="font-size:18px;"><span style="color:#000000;">还来不及反应,狗屁股便被根东西给插了进去,远比卫生棉条来得粗大,狗屁股快裂成两半。难道狗屁股被主人干了,流下眼泪之际,主人在镜子前抚摸着军犬。「看镜子。看着翘高的屁股多了什麽。」当眼睛看着,双臀间竟多出了根黑色的小尾巴。主人抚摸着军犬:「乖。」主人要军犬以坐姿在镜子前,仔细瞧瞧自己模样。镜子里头,真的是赤裸的主人和主人心爱的军犬。李军忠这个男人彻底在主人面前变成了一条狗。&nbsp;</span></span> </p> <p style="text-align: right;"><span style="color:#000000;"><span style="font-size:12pt"><span style="font-family:新细明体,serif">(以下内容,请购买书籍即可观看完整版,请支持正版)</span></span></span><span style="color:#000000;"><span style="font-size:12pt"><span style="font-family:新细明体,serif"></span></span></span> </p> <hr /> <p style="text-align: right;">&nbsp;以上小说文章内容来自国外网站:&nbsp;Asian American Writers' Workshop </p> <hr /> <p style="text-align: right;">&nbsp;<a href="https://aaww.org/military-dog/">点击后即可开启原始文献网页</a> </p> <hr /> <p style="text-align: center;"><span style="color:#000000;"><span style="font-size: var(--bs-body-font-size); text-align: var(--bs-body-text-align);"></span></span> </p> <div class="box box-green" data-box="1" style="text-align: right;"> <div class="box-body" contenteditable="true" style="text-align: right;"> <div class="alert alert-success" style="caret-color: rgb(0, 0, 0); color: rgb(0, 0, 0); text-align: left;"> <p style="caret-color: rgb(0, 0, 0); color: rgb(0, 0, 0); text-align: right;"><span style="font-size:14px;">本站作者基于 尊重智慧财产权 之考量,期待读者有喜欢小说内容,请支持正版可以去各大通路平台购买书籍支持作者,</span> </p> <p style="caret-color: rgb(0, 0, 0); color: rgb(0, 0, 0); text-align: right;"><span style="font-size:14px;">且以上文章分享基于教学与学术分享,以参考智慧财产局的教育部对于教学之定义,此提供内容资料没有超过此书籍15%之内容范围,</span> </p> <p style="caret-color: rgb(0, 0, 0); color: rgb(0, 0, 0); text-align: right;"><span style="font-size:14px;">然后文章内容是複製此篇文章内容 网址:<a href="https://aaww.org/military-dog/" title="军犬线上看">https://aaww.org/military-dog/</a></span> </p> </div> </div> </div> </div> </div> </div> <p><span style="color:#000000;"></span> </p> <div class="alert alert-danger"><span style="font-size:16px;"><strong>+18 警示:</strong>文献含有限制级内容贴文,点开视为同意如未满十八岁者请谨慎评估本页内容,若评估后觉不妥,未满十八岁者须离开本页,严禁点阅本页任何文献文章。</span> </div> <div class="section" style=""> <div class="blockContent"> <div class="section" style="">&nbsp; </div> </div> </div> &nbsp; <footer> <div class="export-footer" style="position:fixed;right:10px;bottom:8px;font:12px/1.2 system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,'Noto Sans',sans-serif;color:#374151;opacity:.75;pointer-events:none;">编辑系统:小皮编辑器 &amp; Tad_book3(线上书籍) | HackMD | 标题:军犬介绍 | 作者:小皮 | 角色:狗狗 | 汇出:2025-10-30 16:19:50 </div> </footer> </div> <!-- 版权宣告(CC + All Rights Reserved 同时存在) --> <footer style="text-align:center;font-size:14px;color:#888;margin-top:40px;line-height:1.6;"> <div> <a href="https://hackmd.io/@yehhsiaofan2017/pypdcmb" target="_blank" rel="noopener noreferrer" style="text-decoration:none;color:inherit;"> BDSM里的人形犬 </a> · <span>© 2025 小皮 All Rights Reserved.</span> </div> <div> 除另有註明外,本页内容採用 <a href="https://creativecommons.org/licenses/by-nc-sa/4.0/" target="_blank" rel="noopener noreferrer" style="text-decoration:none;">CC BY-NC-SA 4.0</a>授权</div> <div style="font-size:12px;color:#9aa4b2;margin-top:4px;"> Except where otherwise noted, content is licensed under CC BY-NC-SA 4.0 Trademarks, logos, and site design © BDSM Puppies in BDSM Book. All Rights Reserved. </div> <div style="margin-top:8px;"> 本系统使用 <a href="https://hackmd.io/" target="_blank" rel="noopener noreferrer" style="text-decoration:none;color:inherit;"> HackMD </a> </div> </footer> <!-- 固定在右下角的按钮容器 --> <nav class="fixed-nextpage" aria-label="页面导览"> <a href="https://hackmd.io/@yehhsiaofan2017/Skr1VCdeWg" class="shiny-button prev" target="_blank" rel="noopener noreferrer"> <span class="arrow">←</span> 上一页 星契的语言 </a> <a href="https://script.google.com/macros/s/AKfycbxeZWlbUabZi0FVfJxgR0_p7pw4pPnYNa2dYmGiR3JGTPwnKDk80qcmXELE7pRk1G2P/exec" class="shiny-button prev" target="_blank" rel="noopener noreferrer"> <span class="arrow">←</span> 返回目录 Google Apps Script 版 </a> <a href="https://hackmd.io/@yehhsiaofan2017/pypdnmm" class="shiny-button prev" target="_blank" rel="noopener noreferrer"> <span class="arrow">←</span> 返回目录 HackMD 版 </a> </nav>

    Import from clipboard

    Paste your markdown or webpage here...

    Advanced permission required

    Your current role can only read. Ask the system administrator to acquire write and comment permission.

    This team is disabled

    Sorry, this team is disabled. You can't edit this note.

    This note is locked

    Sorry, only owner can edit this note.

    Reach the limit

    Sorry, you've reached the max length this note can be.
    Please reduce the content or divide it to more notes, thank you!

    Import from Gist

    Import from Snippet

    or

    Export to Snippet

    Are you sure?

    Do you really want to delete this note?
    All users will lose their connection.

    Create a note from template

    Create a note from template

    Oops...
    This template has been removed or transferred.
    Upgrade
    All
    • All
    • Team
    No template.

    Create a template

    Upgrade

    Delete template

    Do you really want to delete this template?
    Turn this template into a regular note and keep its content, versions, and comments.

    This page need refresh

    You have an incompatible client version.
    Refresh to update.
    New version available!
    See releases notes here
    Refresh to enjoy new features.
    Your user state has changed.
    Refresh to load new user state.

    Sign in

    Forgot password
    or
    Sign in via Google Sign in via Facebook Sign in via X(Twitter) Sign in via GitHub Sign in via Dropbox Sign in with Wallet
    Wallet ( )
    Connect another wallet

    New to HackMD? Sign up

    By signing in, you agree to our terms of service.

    Help

    • English
    • 中文
    • Français
    • Deutsch
    • 日本語
    • Español
    • Català
    • Ελληνικά
    • Português
    • italiano
    • Türkçe
    • Русский
    • Nederlands
    • hrvatski jezik
    • język polski
    • Українська
    • हिन्दी
    • svenska
    • Esperanto
    • dansk

    Documents

    Help & Tutorial

    How to use Book mode

    Slide Example

    API Docs

    Edit in VSCode

    Install browser extension

    Contacts

    Feedback

    Discord

    Send us email

    Resources

    Releases

    Pricing

    Blog

    Policy

    Terms

    Privacy

    Cheatsheet

    Syntax Example Reference
    # Header Header 基本排版
    - Unordered List
    • Unordered List
    1. Ordered List
    1. Ordered List
    - [ ] Todo List
    • Todo List
    > Blockquote
    Blockquote
    **Bold font** Bold font
    *Italics font* Italics font
    ~~Strikethrough~~ Strikethrough
    19^th^ 19th
    H~2~O H2O
    ++Inserted text++ Inserted text
    ==Marked text== Marked text
    [link text](https:// "title") Link
    ![image alt](https:// "title") Image
    `Code` Code 在筆記中貼入程式碼
    ```javascript
    var i = 0;
    ```
    var i = 0;
    :smile: :smile: Emoji list
    {%youtube youtube_id %} Externals
    $L^aT_eX$ LaTeX
    :::info
    This is a alert area.
    :::

    This is a alert area.

    Versions and GitHub Sync
    Get Full History Access

    • Edit version name
    • Delete

    revision author avatar     named on  

    More Less

    Note content is identical to the latest version.
    Compare
      Choose a version
      No search result
      Version not found
    Sign in to link this note to GitHub
    Learn more
    This note is not linked with GitHub
     

    Feedback

    Submission failed, please try again

    Thanks for your support.

    On a scale of 0-10, how likely is it that you would recommend HackMD to your friends, family or business associates?

    Please give us some advice and help us improve HackMD.

     

    Thanks for your feedback

    Remove version name

    Do you want to remove this version name and description?

    Transfer ownership

    Transfer to
      Warning: is a public team. If you transfer note to this team, everyone on the web can find and read this note.

        Link with GitHub

        Please authorize HackMD on GitHub
        • Please sign in to GitHub and install the HackMD app on your GitHub repo.
        • HackMD links with GitHub through a GitHub App. You can choose which repo to install our App.
        Learn more  Sign in to GitHub

        Push the note to GitHub Push to GitHub Pull a file from GitHub

          Authorize again
         

        Choose which file to push to

        Select repo
        Refresh Authorize more repos
        Select branch
        Select file
        Select branch
        Choose version(s) to push
        • Save a new version and push
        • Choose from existing versions
        Include title and tags
        Available push count

        Pull from GitHub

         
        File from GitHub
        File from HackMD

        GitHub Link Settings

        File linked

        Linked by
        File path
        Last synced branch
        Available push count

        Danger Zone

        Unlink
        You will no longer receive notification when GitHub file changes after unlink.

        Syncing

        Push failed

        Push successfully